@@ -94,61 +94,73 @@ export class Col implements ComponentInterface {
9494 /**
9595 * The amount to pull the column, in terms of how many columns it should shift to the start of
9696 * the total available.
97+ * @deprecated Use the combination of `size` and `order` properties to achieve the same effect.
9798 */
9899 @Prop ( ) pull ?: string ;
99100 /**
100101 * The amount to pull the column for xs screens, in terms of how many columns it should shift
101102 * to the start of the total available.
103+ * @deprecated Use the combination of `size` and `order` properties to achieve the same effect.
102104 */
103105 @Prop ( ) pullXs ?: string ;
104106 /**
105107 * The amount to pull the column for sm screens, in terms of how many columns it should shift
106108 * to the start of the total available.
109+ * @deprecated Use the combination of `size` and `order` properties to achieve the same effect.
107110 */
108111 @Prop ( ) pullSm ?: string ;
109112 /**
110113 * The amount to pull the column for md screens, in terms of how many columns it should shift
111114 * to the start of the total available.
115+ * @deprecated Use the combination of `size` and `order` properties to achieve the same effect.
112116 */
113117 @Prop ( ) pullMd ?: string ;
114118 /**
115119 * The amount to pull the column for lg screens, in terms of how many columns it should shift
116120 * to the start of the total available.
121+ * @deprecated Use the combination of `size` and `order` properties to achieve the same effect.
117122 */
118123 @Prop ( ) pullLg ?: string ;
119124 /**
120125 * The amount to pull the column for xl screens, in terms of how many columns it should shift
121126 * to the start of the total available.
127+ * @deprecated Use the combination of `size` and `order` properties to achieve the same effect.
122128 */
123129 @Prop ( ) pullXl ?: string ;
124130 /**
125131 * The amount to push the column, in terms of how many columns it should shift to the end
126132 * of the total available.
133+ * @deprecated Use the combination of `size` and `order` properties to achieve the same effect.
127134 */
128135 @Prop ( ) push ?: string ;
129136 /**
130137 * The amount to push the column for xs screens, in terms of how many columns it should shift
131138 * to the end of the total available.
139+ * @deprecated Use the combination of `size` and `order` properties to achieve the same effect.
132140 */
133141 @Prop ( ) pushXs ?: string ;
134142 /**
135143 * The amount to push the column for sm screens, in terms of how many columns it should shift
136144 * to the end of the total available.
145+ * @deprecated Use the combination of `size` and `order` properties to achieve the same effect.
137146 */
138147 @Prop ( ) pushSm ?: string ;
139148 /**
140149 * The amount to push the column for md screens, in terms of how many columns it should shift
141150 * to the end of the total available.
151+ * @deprecated Use the combination of `size` and `order` properties to achieve the same effect.
142152 */
143153 @Prop ( ) pushMd ?: string ;
144154 /**
145155 * The amount to push the column for lg screens, in terms of how many columns it should shift
146156 * to the end of the total available.
157+ * @deprecated Use the combination of `size` and `order` properties to achieve the same effect.
147158 */
148159 @Prop ( ) pushLg ?: string ;
149160 /**
150161 * The amount to push the column for xl screens, in terms of how many columns it should shift
151162 * to the end of the total available.
163+ * @deprecated Use the combination of `size` and `order` properties to achieve the same effect.
152164 */
153165 @Prop ( ) pushXl ?: string ;
154166
0 commit comments