We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d780b43 commit 926c7cfCopy full SHA for 926c7cf
src/Col.tsx
@@ -23,7 +23,8 @@ type NumberAttr =
23
| '11'
24
| '12';
25
26
-type ColOrder = 'first' | 'last' | NumberAttr;
+type ColOrderNumber = number | '1' | '2' | '3' | '4' | '5';
27
+type ColOrder = ColOrderNumber | 'first' | 'last';
28
type ColSize = boolean | 'auto' | NumberAttr;
29
type ColSpec =
30
| ColSize
www/src/pages/migrating.mdx
@@ -32,6 +32,10 @@ Below is a _rough_ account of the breaking API changes as well as the minimal ch
32
33
- removed `toggle`.
34
35
+### Col
36
+
37
+- `ColOrder` is now maximum 5 instead of 12.
38
39
### Form
40
41
- removed `inline`.
0 commit comments