You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by lo...@apache.org on 2016/07/04 07:38:15 UTC

svn commit: r1751221 - /myfaces/tobago/trunk/tobago-core/src/main/java/org/apache/myfaces/tobago/component/Attributes.java

Author: lofwyr
Date: Mon Jul  4 07:38:15 2016
New Revision: 1751221

URL: http://svn.apache.org/viewvc?rev=1751221&view=rev
Log:
add some missing attributes

Modified:
    myfaces/tobago/trunk/tobago-core/src/main/java/org/apache/myfaces/tobago/component/Attributes.java

Modified: myfaces/tobago/trunk/tobago-core/src/main/java/org/apache/myfaces/tobago/component/Attributes.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-core/src/main/java/org/apache/myfaces/tobago/component/Attributes.java?rev=1751221&r1=1751220&r2=1751221&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-core/src/main/java/org/apache/myfaces/tobago/component/Attributes.java (original)
+++ myfaces/tobago/trunk/tobago-core/src/main/java/org/apache/myfaces/tobago/component/Attributes.java Mon Jul  4 07:38:15 2016
@@ -31,6 +31,7 @@ public enum Attributes {
   action,
   actionListener,
   align,
+  alignItems,
   alt,
   applicationIcon,
   autoReload,
@@ -207,7 +208,6 @@ public enum Attributes {
   scrollPosition,
   selectedIndex,
   selectedListString,
-  sortable,
   selectable,
   showDirectLinks,
   showDirectLinksArrows,
@@ -222,6 +222,8 @@ public enum Attributes {
   showRowRange,
   showSummary,
   showDetail,
+  size,
+  sortable,
   sortActionListener,
   small,
   spanX,
@@ -299,6 +301,9 @@ public enum Attributes {
   public static final String ALIGN = "align";
   /** @deprecated Since Tobago 3.0.0. Please use the enum */
   @Deprecated
+  public static final String ALIGN_ITEMS = "alignItems";
+  /** @deprecated Since Tobago 3.0.0. Please use the enum */
+  @Deprecated
   public static final String ALT = "alt";
   /** @deprecated Since Tobago 3.0.0. Please use the enum */
   @Deprecated
@@ -673,9 +678,6 @@ public enum Attributes {
   public static final String SELECTED_LIST_STRING = "selectedListString";
   /** @deprecated Since Tobago 3.0.0. Please use the enum */
   @Deprecated
-  public static final String SORTABLE = "sortable";
-  /** @deprecated Since Tobago 3.0.0. Please use the enum */
-  @Deprecated
   public static final String SELECTABLE = "selectable";
   /** @deprecated Since Tobago 3.0.0. Please use the enum */
   @Deprecated
@@ -709,9 +711,15 @@ public enum Attributes {
   public static final String SHOW_DETAIL = "showDetail";
   /** @deprecated Since Tobago 3.0.0. Please use the enum */
   @Deprecated
+  public static final String SIZE = "size";
+  /** @deprecated Since Tobago 3.0.0. Please use the enum */
+  @Deprecated
   public static final String SMALL = "small";
   /** @deprecated Since Tobago 3.0.0. Please use the enum */
   @Deprecated
+  public static final String SORTABLE = "sortable";
+  /** @deprecated Since Tobago 3.0.0. Please use the enum */
+  @Deprecated
   public static final String SPAN_X = "spanX";
   /** @deprecated Since Tobago 3.0.0. Please use the enum */
   @Deprecated