@orfium/ictinus 5.41.4 → 5.42.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.turbo/turbo-build.log +905 -899
- package/CHANGELOG.md +11 -0
- package/dist/components/Link/Link.js +18 -18
- package/dist/components/Link/Link.style.js +6 -6
- package/dist/index.js +248 -242
- package/dist/layers/layers.css.js +9 -0
- package/dist/layers/layers.css.ts.vanilla.css +1 -0
- package/dist/sprinkles/properties.css.js +9 -0
- package/dist/sprinkles/properties.css.ts.vanilla.css +1 -0
- package/dist/sprinkles/sprinkles.js +8 -0
- package/dist/src/index.d.ts +2 -0
- package/dist/src/sprinkles/properties.css.d.ts +648 -542
- package/dist/src/sprinkles/sprinkles.d.ts +1394 -999
- package/dist/src/vanilla/Box/Box.d.ts +101 -56
- package/dist/src/vanilla/Box/extractBoxProps.d.ts +2 -2
- package/dist/src/vanilla/Table/Table.d.ts +101 -56
- package/dist/src/vanilla/Table/TableBody.d.ts +101 -56
- package/dist/src/vanilla/Table/TableCell.d.ts +101 -56
- package/dist/src/vanilla/Table/TableFooter.d.ts +101 -56
- package/dist/src/vanilla/Table/TableHeader.d.ts +101 -56
- package/dist/src/vanilla/Table/TableHeaderCell.d.ts +101 -56
- package/dist/src/vanilla/Table/TableRow.d.ts +101 -56
- package/dist/src/vanilla/Text/Text.d.ts +101 -56
- package/dist/vanilla/Table/Table-css.js +3 -3
- package/dist/vanilla/Table/TableCell-css.js +3 -3
- package/dist/vanilla/Table/TableHeaderCell-css.js +3 -3
- package/dist/vanilla/Table/TableRow-css.js +1 -1
- package/dist/vanilla/Tooltip/Tooltip-css.js +2 -2
- package/dist/vanilla/assets/src/sprinkles/{properties.css.ts.vanilla-Ckyezauv.css → properties.css.ts.vanilla-X1_krF6y.css} +1478 -1319
- package/dist/vanilla/index.d.ts +2333 -1883
- package/dist/vanilla/package.json.js +1 -1
- package/dist/vanilla/src/sprinkles/properties-css.js +4 -4
- package/dist/vanilla-extract/global.css.ts.vanilla.css +1 -0
- package/package.json +2 -2
- package/src/components/Link/Link.style.ts +2 -3
- package/src/components/Link/Link.tsx +3 -3
- package/src/index.ts +3 -0
- package/src/sprinkles/properties.css.ts +13 -19
|
@@ -6,15 +6,11 @@ export declare const Table: import('react').ForwardRefExoticComponent<{
|
|
|
6
6
|
} & Omit<NonNullable<{
|
|
7
7
|
borderColor?: "decorative.default" | "decorative.transparent" | "decorative.inverted" | "interactive.default" | "interactive.success" | "interactive.error" | "interactive.warning" | "interactive.active" | "interactive.upsell" | "interactive.focused";
|
|
8
8
|
borderStyle?: "dashed" | "solid";
|
|
9
|
-
borderLeftWidth?: "1" | "2" | "3";
|
|
10
9
|
borderRadius?: "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7";
|
|
11
10
|
borderTopLeftRadius?: "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7";
|
|
12
11
|
borderTopRightRadius?: "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7";
|
|
13
12
|
borderBottomLeftRadius?: "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7";
|
|
14
13
|
borderBottomRightRadius?: "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7";
|
|
15
|
-
borderRightWidth?: "1" | "2" | "3";
|
|
16
|
-
borderTopWidth?: "1" | "2" | "3";
|
|
17
|
-
borderBottomWidth?: "1" | "2" | "3";
|
|
18
14
|
boxShadow?: "0" | "1" | "2" | "3" | "4" | "5";
|
|
19
15
|
cursor?: "default" | "pointer" | "not-allowed";
|
|
20
16
|
overflowX?: "hidden" | "auto" | "visible";
|
|
@@ -34,7 +30,7 @@ export declare const Table: import('react').ForwardRefExoticComponent<{
|
|
|
34
30
|
textTransform?: "none" | "capitalize" | "uppercase";
|
|
35
31
|
textDecoration?: "underline";
|
|
36
32
|
visibility?: "hidden" | "visible";
|
|
37
|
-
wordBreak?: "break-word";
|
|
33
|
+
wordBreak?: "break-word" | "break-all";
|
|
38
34
|
wordWrap?: "normal" | "break-word";
|
|
39
35
|
textAlign?: "center" | "start" | "end" | "justify";
|
|
40
36
|
transitionProperty?: "all" | "none" | "default" | "opacity" | "transform" | "colors" | "shadow";
|
|
@@ -43,11 +39,6 @@ export declare const Table: import('react').ForwardRefExoticComponent<{
|
|
|
43
39
|
whiteSpace?: "nowrap";
|
|
44
40
|
zIndex?: "0" | "10" | "20" | "auto" | "30" | "40" | "50" | "100" | "75";
|
|
45
41
|
overflow?: "hidden" | "auto" | "visible";
|
|
46
|
-
border?: "1" | "2" | "3";
|
|
47
|
-
borderB?: "1" | "2" | "3";
|
|
48
|
-
borderL?: "1" | "2" | "3";
|
|
49
|
-
borderR?: "1" | "2" | "3";
|
|
50
|
-
borderT?: "1" | "2" | "3";
|
|
51
42
|
shadow?: "0" | "1" | "2" | "3" | "4" | "5";
|
|
52
43
|
rounded?: "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7";
|
|
53
44
|
roundedT?: "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7";
|
|
@@ -57,281 +48,335 @@ export declare const Table: import('react').ForwardRefExoticComponent<{
|
|
|
57
48
|
z?: "0" | "10" | "20" | "auto" | "30" | "40" | "50" | "100" | "75";
|
|
58
49
|
} & {
|
|
59
50
|
alignItems?: "center" | "flex-end" | "flex-start" | "baseline" | "stretch" | {
|
|
60
|
-
|
|
51
|
+
base?: "center" | "flex-end" | "flex-start" | "baseline" | "stretch";
|
|
61
52
|
md?: "center" | "flex-end" | "flex-start" | "baseline" | "stretch";
|
|
62
53
|
lg?: "center" | "flex-end" | "flex-start" | "baseline" | "stretch";
|
|
63
54
|
xl?: "center" | "flex-end" | "flex-start" | "baseline" | "stretch";
|
|
64
55
|
};
|
|
65
56
|
alignSelf?: "center" | "flex-end" | "flex-start" | "baseline" | "stretch" | {
|
|
66
|
-
|
|
57
|
+
base?: "center" | "flex-end" | "flex-start" | "baseline" | "stretch";
|
|
67
58
|
md?: "center" | "flex-end" | "flex-start" | "baseline" | "stretch";
|
|
68
59
|
lg?: "center" | "flex-end" | "flex-start" | "baseline" | "stretch";
|
|
69
60
|
xl?: "center" | "flex-end" | "flex-start" | "baseline" | "stretch";
|
|
70
61
|
};
|
|
71
62
|
justifyContent?: "center" | "unset" | "flex-end" | "flex-start" | "space-around" | "space-between" | "space-evenly" | {
|
|
72
|
-
|
|
63
|
+
base?: "center" | "unset" | "flex-end" | "flex-start" | "space-around" | "space-between" | "space-evenly";
|
|
73
64
|
md?: "center" | "unset" | "flex-end" | "flex-start" | "space-around" | "space-between" | "space-evenly";
|
|
74
65
|
lg?: "center" | "unset" | "flex-end" | "flex-start" | "space-around" | "space-between" | "space-evenly";
|
|
75
66
|
xl?: "center" | "unset" | "flex-end" | "flex-start" | "space-around" | "space-between" | "space-evenly";
|
|
76
67
|
};
|
|
77
68
|
flexWrap?: "wrap" | "nowrap" | "wrap-reverse" | {
|
|
78
|
-
|
|
69
|
+
base?: "wrap" | "nowrap" | "wrap-reverse";
|
|
79
70
|
md?: "wrap" | "nowrap" | "wrap-reverse";
|
|
80
71
|
lg?: "wrap" | "nowrap" | "wrap-reverse";
|
|
81
72
|
xl?: "wrap" | "nowrap" | "wrap-reverse";
|
|
82
73
|
};
|
|
83
74
|
display?: "grid" | "none" | "flex" | "block" | "inline-block" | "inline-flex" | "inline-grid" | "contents" | {
|
|
84
|
-
|
|
75
|
+
base?: "grid" | "none" | "flex" | "block" | "inline-block" | "inline-flex" | "inline-grid" | "contents";
|
|
85
76
|
md?: "grid" | "none" | "flex" | "block" | "inline-block" | "inline-flex" | "inline-grid" | "contents";
|
|
86
77
|
lg?: "grid" | "none" | "flex" | "block" | "inline-block" | "inline-flex" | "inline-grid" | "contents";
|
|
87
78
|
xl?: "grid" | "none" | "flex" | "block" | "inline-block" | "inline-flex" | "inline-grid" | "contents";
|
|
88
79
|
};
|
|
89
80
|
flex?: "none" | "1" | "initial" | "auto" | {
|
|
90
|
-
|
|
81
|
+
base?: "none" | "1" | "initial" | "auto";
|
|
91
82
|
md?: "none" | "1" | "initial" | "auto";
|
|
92
83
|
lg?: "none" | "1" | "initial" | "auto";
|
|
93
84
|
xl?: "none" | "1" | "initial" | "auto";
|
|
94
85
|
};
|
|
95
86
|
width?: "screen" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "20" | "21" | "22" | "full" | {
|
|
96
|
-
|
|
87
|
+
base?: "screen" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "20" | "21" | "22" | "full";
|
|
97
88
|
md?: "screen" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "20" | "21" | "22" | "full";
|
|
98
89
|
lg?: "screen" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "20" | "21" | "22" | "full";
|
|
99
90
|
xl?: "screen" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "20" | "21" | "22" | "full";
|
|
100
91
|
};
|
|
101
92
|
height?: "screen" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "20" | "21" | "22" | "full" | {
|
|
102
|
-
|
|
93
|
+
base?: "screen" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "20" | "21" | "22" | "full";
|
|
103
94
|
md?: "screen" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "20" | "21" | "22" | "full";
|
|
104
95
|
lg?: "screen" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "20" | "21" | "22" | "full";
|
|
105
96
|
xl?: "screen" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "20" | "21" | "22" | "full";
|
|
106
97
|
};
|
|
107
98
|
minWidth?: "screen" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "20" | "21" | "22" | "full" | {
|
|
108
|
-
|
|
99
|
+
base?: "screen" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "20" | "21" | "22" | "full";
|
|
109
100
|
md?: "screen" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "20" | "21" | "22" | "full";
|
|
110
101
|
lg?: "screen" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "20" | "21" | "22" | "full";
|
|
111
102
|
xl?: "screen" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "20" | "21" | "22" | "full";
|
|
112
103
|
};
|
|
113
104
|
minHeight?: "screen" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "20" | "21" | "22" | "full" | {
|
|
114
|
-
|
|
105
|
+
base?: "screen" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "20" | "21" | "22" | "full";
|
|
115
106
|
md?: "screen" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "20" | "21" | "22" | "full";
|
|
116
107
|
lg?: "screen" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "20" | "21" | "22" | "full";
|
|
117
108
|
xl?: "screen" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "20" | "21" | "22" | "full";
|
|
118
109
|
};
|
|
119
110
|
maxWidth?: "screen" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "20" | "21" | "22" | "full" | {
|
|
120
|
-
|
|
111
|
+
base?: "screen" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "20" | "21" | "22" | "full";
|
|
121
112
|
md?: "screen" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "20" | "21" | "22" | "full";
|
|
122
113
|
lg?: "screen" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "20" | "21" | "22" | "full";
|
|
123
114
|
xl?: "screen" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "20" | "21" | "22" | "full";
|
|
124
115
|
};
|
|
125
116
|
maxHeight?: "screen" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "20" | "21" | "22" | "full" | {
|
|
126
|
-
|
|
117
|
+
base?: "screen" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "20" | "21" | "22" | "full";
|
|
127
118
|
md?: "screen" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "20" | "21" | "22" | "full";
|
|
128
119
|
lg?: "screen" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "20" | "21" | "22" | "full";
|
|
129
120
|
xl?: "screen" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "20" | "21" | "22" | "full";
|
|
130
121
|
};
|
|
131
122
|
flexDirection?: "row" | "column" | "row-reverse" | "column-reverse" | {
|
|
132
|
-
|
|
123
|
+
base?: "row" | "column" | "row-reverse" | "column-reverse";
|
|
133
124
|
md?: "row" | "column" | "row-reverse" | "column-reverse";
|
|
134
125
|
lg?: "row" | "column" | "row-reverse" | "column-reverse";
|
|
135
126
|
xl?: "row" | "column" | "row-reverse" | "column-reverse";
|
|
136
127
|
};
|
|
137
128
|
flexShrink?: "0" | "1" | {
|
|
138
|
-
|
|
129
|
+
base?: "0" | "1";
|
|
139
130
|
md?: "0" | "1";
|
|
140
131
|
lg?: "0" | "1";
|
|
141
132
|
xl?: "0" | "1";
|
|
142
133
|
};
|
|
143
134
|
position?: "absolute" | "fixed" | "relative" | "sticky" | {
|
|
144
|
-
|
|
135
|
+
base?: "absolute" | "fixed" | "relative" | "sticky";
|
|
145
136
|
md?: "absolute" | "fixed" | "relative" | "sticky";
|
|
146
137
|
lg?: "absolute" | "fixed" | "relative" | "sticky";
|
|
147
138
|
xl?: "absolute" | "fixed" | "relative" | "sticky";
|
|
148
139
|
};
|
|
149
140
|
gap?: "none" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "sm" | "md" | "lg" | "xl" | "xs" | "2xs" | "2xl" | "3xl" | "4xl" | {
|
|
150
|
-
|
|
141
|
+
base?: "none" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "sm" | "md" | "lg" | "xl" | "xs" | "2xs" | "2xl" | "3xl" | "4xl";
|
|
151
142
|
md?: "none" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "sm" | "md" | "lg" | "xl" | "xs" | "2xs" | "2xl" | "3xl" | "4xl";
|
|
152
143
|
lg?: "none" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "sm" | "md" | "lg" | "xl" | "xs" | "2xs" | "2xl" | "3xl" | "4xl";
|
|
153
144
|
xl?: "none" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "sm" | "md" | "lg" | "xl" | "xs" | "2xs" | "2xl" | "3xl" | "4xl";
|
|
154
145
|
};
|
|
155
146
|
gridGap?: "none" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "sm" | "md" | "lg" | "xl" | "xs" | "2xs" | "2xl" | "3xl" | "4xl" | {
|
|
156
|
-
|
|
147
|
+
base?: "none" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "sm" | "md" | "lg" | "xl" | "xs" | "2xs" | "2xl" | "3xl" | "4xl";
|
|
157
148
|
md?: "none" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "sm" | "md" | "lg" | "xl" | "xs" | "2xs" | "2xl" | "3xl" | "4xl";
|
|
158
149
|
lg?: "none" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "sm" | "md" | "lg" | "xl" | "xs" | "2xs" | "2xl" | "3xl" | "4xl";
|
|
159
150
|
xl?: "none" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "sm" | "md" | "lg" | "xl" | "xs" | "2xs" | "2xl" | "3xl" | "4xl";
|
|
160
151
|
};
|
|
161
152
|
margin?: "none" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "sm" | "md" | "lg" | "xl" | "xs" | "2xs" | "2xl" | "3xl" | "4xl" | {
|
|
162
|
-
|
|
153
|
+
base?: "none" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "sm" | "md" | "lg" | "xl" | "xs" | "2xs" | "2xl" | "3xl" | "4xl";
|
|
163
154
|
md?: "none" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "sm" | "md" | "lg" | "xl" | "xs" | "2xs" | "2xl" | "3xl" | "4xl";
|
|
164
155
|
lg?: "none" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "sm" | "md" | "lg" | "xl" | "xs" | "2xs" | "2xl" | "3xl" | "4xl";
|
|
165
156
|
xl?: "none" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "sm" | "md" | "lg" | "xl" | "xs" | "2xs" | "2xl" | "3xl" | "4xl";
|
|
166
157
|
};
|
|
167
158
|
marginBottom?: "none" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "sm" | "md" | "lg" | "xl" | "xs" | "2xs" | "2xl" | "3xl" | "4xl" | {
|
|
168
|
-
|
|
159
|
+
base?: "none" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "sm" | "md" | "lg" | "xl" | "xs" | "2xs" | "2xl" | "3xl" | "4xl";
|
|
169
160
|
md?: "none" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "sm" | "md" | "lg" | "xl" | "xs" | "2xs" | "2xl" | "3xl" | "4xl";
|
|
170
161
|
lg?: "none" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "sm" | "md" | "lg" | "xl" | "xs" | "2xs" | "2xl" | "3xl" | "4xl";
|
|
171
162
|
xl?: "none" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "sm" | "md" | "lg" | "xl" | "xs" | "2xs" | "2xl" | "3xl" | "4xl";
|
|
172
163
|
};
|
|
173
164
|
marginLeft?: "none" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "sm" | "md" | "lg" | "xl" | "xs" | "2xs" | "2xl" | "3xl" | "4xl" | {
|
|
174
|
-
|
|
165
|
+
base?: "none" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "sm" | "md" | "lg" | "xl" | "xs" | "2xs" | "2xl" | "3xl" | "4xl";
|
|
175
166
|
md?: "none" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "sm" | "md" | "lg" | "xl" | "xs" | "2xs" | "2xl" | "3xl" | "4xl";
|
|
176
167
|
lg?: "none" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "sm" | "md" | "lg" | "xl" | "xs" | "2xs" | "2xl" | "3xl" | "4xl";
|
|
177
168
|
xl?: "none" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "sm" | "md" | "lg" | "xl" | "xs" | "2xs" | "2xl" | "3xl" | "4xl";
|
|
178
169
|
};
|
|
179
170
|
marginRight?: "none" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "sm" | "md" | "lg" | "xl" | "xs" | "2xs" | "2xl" | "3xl" | "4xl" | {
|
|
180
|
-
|
|
171
|
+
base?: "none" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "sm" | "md" | "lg" | "xl" | "xs" | "2xs" | "2xl" | "3xl" | "4xl";
|
|
181
172
|
md?: "none" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "sm" | "md" | "lg" | "xl" | "xs" | "2xs" | "2xl" | "3xl" | "4xl";
|
|
182
173
|
lg?: "none" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "sm" | "md" | "lg" | "xl" | "xs" | "2xs" | "2xl" | "3xl" | "4xl";
|
|
183
174
|
xl?: "none" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "sm" | "md" | "lg" | "xl" | "xs" | "2xs" | "2xl" | "3xl" | "4xl";
|
|
184
175
|
};
|
|
185
176
|
marginTop?: "none" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "sm" | "md" | "lg" | "xl" | "xs" | "2xs" | "2xl" | "3xl" | "4xl" | {
|
|
186
|
-
|
|
177
|
+
base?: "none" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "sm" | "md" | "lg" | "xl" | "xs" | "2xs" | "2xl" | "3xl" | "4xl";
|
|
187
178
|
md?: "none" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "sm" | "md" | "lg" | "xl" | "xs" | "2xs" | "2xl" | "3xl" | "4xl";
|
|
188
179
|
lg?: "none" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "sm" | "md" | "lg" | "xl" | "xs" | "2xs" | "2xl" | "3xl" | "4xl";
|
|
189
180
|
xl?: "none" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "sm" | "md" | "lg" | "xl" | "xs" | "2xs" | "2xl" | "3xl" | "4xl";
|
|
190
181
|
};
|
|
191
182
|
padding?: "none" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "sm" | "md" | "lg" | "xl" | "xs" | "2xs" | "2xl" | "3xl" | "4xl" | {
|
|
192
|
-
|
|
183
|
+
base?: "none" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "sm" | "md" | "lg" | "xl" | "xs" | "2xs" | "2xl" | "3xl" | "4xl";
|
|
193
184
|
md?: "none" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "sm" | "md" | "lg" | "xl" | "xs" | "2xs" | "2xl" | "3xl" | "4xl";
|
|
194
185
|
lg?: "none" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "sm" | "md" | "lg" | "xl" | "xs" | "2xs" | "2xl" | "3xl" | "4xl";
|
|
195
186
|
xl?: "none" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "sm" | "md" | "lg" | "xl" | "xs" | "2xs" | "2xl" | "3xl" | "4xl";
|
|
196
187
|
};
|
|
197
188
|
paddingBottom?: "none" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "sm" | "md" | "lg" | "xl" | "xs" | "2xs" | "2xl" | "3xl" | "4xl" | {
|
|
198
|
-
|
|
189
|
+
base?: "none" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "sm" | "md" | "lg" | "xl" | "xs" | "2xs" | "2xl" | "3xl" | "4xl";
|
|
199
190
|
md?: "none" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "sm" | "md" | "lg" | "xl" | "xs" | "2xs" | "2xl" | "3xl" | "4xl";
|
|
200
191
|
lg?: "none" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "sm" | "md" | "lg" | "xl" | "xs" | "2xs" | "2xl" | "3xl" | "4xl";
|
|
201
192
|
xl?: "none" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "sm" | "md" | "lg" | "xl" | "xs" | "2xs" | "2xl" | "3xl" | "4xl";
|
|
202
193
|
};
|
|
203
194
|
paddingLeft?: "none" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "sm" | "md" | "lg" | "xl" | "xs" | "2xs" | "2xl" | "3xl" | "4xl" | {
|
|
204
|
-
|
|
195
|
+
base?: "none" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "sm" | "md" | "lg" | "xl" | "xs" | "2xs" | "2xl" | "3xl" | "4xl";
|
|
205
196
|
md?: "none" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "sm" | "md" | "lg" | "xl" | "xs" | "2xs" | "2xl" | "3xl" | "4xl";
|
|
206
197
|
lg?: "none" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "sm" | "md" | "lg" | "xl" | "xs" | "2xs" | "2xl" | "3xl" | "4xl";
|
|
207
198
|
xl?: "none" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "sm" | "md" | "lg" | "xl" | "xs" | "2xs" | "2xl" | "3xl" | "4xl";
|
|
208
199
|
};
|
|
209
200
|
paddingRight?: "none" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "sm" | "md" | "lg" | "xl" | "xs" | "2xs" | "2xl" | "3xl" | "4xl" | {
|
|
210
|
-
|
|
201
|
+
base?: "none" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "sm" | "md" | "lg" | "xl" | "xs" | "2xs" | "2xl" | "3xl" | "4xl";
|
|
211
202
|
md?: "none" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "sm" | "md" | "lg" | "xl" | "xs" | "2xs" | "2xl" | "3xl" | "4xl";
|
|
212
203
|
lg?: "none" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "sm" | "md" | "lg" | "xl" | "xs" | "2xs" | "2xl" | "3xl" | "4xl";
|
|
213
204
|
xl?: "none" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "sm" | "md" | "lg" | "xl" | "xs" | "2xs" | "2xl" | "3xl" | "4xl";
|
|
214
205
|
};
|
|
215
206
|
paddingTop?: "none" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "sm" | "md" | "lg" | "xl" | "xs" | "2xs" | "2xl" | "3xl" | "4xl" | {
|
|
216
|
-
|
|
207
|
+
base?: "none" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "sm" | "md" | "lg" | "xl" | "xs" | "2xs" | "2xl" | "3xl" | "4xl";
|
|
217
208
|
md?: "none" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "sm" | "md" | "lg" | "xl" | "xs" | "2xs" | "2xl" | "3xl" | "4xl";
|
|
218
209
|
lg?: "none" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "sm" | "md" | "lg" | "xl" | "xs" | "2xs" | "2xl" | "3xl" | "4xl";
|
|
219
210
|
xl?: "none" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "sm" | "md" | "lg" | "xl" | "xs" | "2xs" | "2xl" | "3xl" | "4xl";
|
|
220
211
|
};
|
|
212
|
+
borderTopWidth?: "0" | "1" | "2" | "3" | {
|
|
213
|
+
base?: "0" | "1" | "2" | "3";
|
|
214
|
+
md?: "0" | "1" | "2" | "3";
|
|
215
|
+
lg?: "0" | "1" | "2" | "3";
|
|
216
|
+
xl?: "0" | "1" | "2" | "3";
|
|
217
|
+
};
|
|
218
|
+
borderRightWidth?: "0" | "1" | "2" | "3" | {
|
|
219
|
+
base?: "0" | "1" | "2" | "3";
|
|
220
|
+
md?: "0" | "1" | "2" | "3";
|
|
221
|
+
lg?: "0" | "1" | "2" | "3";
|
|
222
|
+
xl?: "0" | "1" | "2" | "3";
|
|
223
|
+
};
|
|
224
|
+
borderBottomWidth?: "0" | "1" | "2" | "3" | {
|
|
225
|
+
base?: "0" | "1" | "2" | "3";
|
|
226
|
+
md?: "0" | "1" | "2" | "3";
|
|
227
|
+
lg?: "0" | "1" | "2" | "3";
|
|
228
|
+
xl?: "0" | "1" | "2" | "3";
|
|
229
|
+
};
|
|
230
|
+
borderLeftWidth?: "0" | "1" | "2" | "3" | {
|
|
231
|
+
base?: "0" | "1" | "2" | "3";
|
|
232
|
+
md?: "0" | "1" | "2" | "3";
|
|
233
|
+
lg?: "0" | "1" | "2" | "3";
|
|
234
|
+
xl?: "0" | "1" | "2" | "3";
|
|
235
|
+
};
|
|
221
236
|
maxH?: "screen" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "20" | "21" | "22" | "full" | {
|
|
222
|
-
|
|
237
|
+
base?: "screen" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "20" | "21" | "22" | "full";
|
|
223
238
|
md?: "screen" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "20" | "21" | "22" | "full";
|
|
224
239
|
lg?: "screen" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "20" | "21" | "22" | "full";
|
|
225
240
|
xl?: "screen" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "20" | "21" | "22" | "full";
|
|
226
241
|
};
|
|
227
242
|
maxW?: "screen" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "20" | "21" | "22" | "full" | {
|
|
228
|
-
|
|
243
|
+
base?: "screen" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "20" | "21" | "22" | "full";
|
|
229
244
|
md?: "screen" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "20" | "21" | "22" | "full";
|
|
230
245
|
lg?: "screen" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "20" | "21" | "22" | "full";
|
|
231
246
|
xl?: "screen" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "20" | "21" | "22" | "full";
|
|
232
247
|
};
|
|
233
248
|
size?: "screen" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "20" | "21" | "22" | "full" | {
|
|
234
|
-
|
|
249
|
+
base?: "screen" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "20" | "21" | "22" | "full";
|
|
235
250
|
md?: "screen" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "20" | "21" | "22" | "full";
|
|
236
251
|
lg?: "screen" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "20" | "21" | "22" | "full";
|
|
237
252
|
xl?: "screen" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "20" | "21" | "22" | "full";
|
|
238
253
|
};
|
|
239
254
|
w?: "screen" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "20" | "21" | "22" | "full" | {
|
|
240
|
-
|
|
255
|
+
base?: "screen" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "20" | "21" | "22" | "full";
|
|
241
256
|
md?: "screen" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "20" | "21" | "22" | "full";
|
|
242
257
|
lg?: "screen" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "20" | "21" | "22" | "full";
|
|
243
258
|
xl?: "screen" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "20" | "21" | "22" | "full";
|
|
244
259
|
};
|
|
245
260
|
h?: "screen" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "20" | "21" | "22" | "full" | {
|
|
246
|
-
|
|
261
|
+
base?: "screen" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "20" | "21" | "22" | "full";
|
|
247
262
|
md?: "screen" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "20" | "21" | "22" | "full";
|
|
248
263
|
lg?: "screen" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "20" | "21" | "22" | "full";
|
|
249
264
|
xl?: "screen" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "13" | "14" | "15" | "16" | "17" | "18" | "19" | "20" | "21" | "22" | "full";
|
|
250
265
|
};
|
|
251
266
|
p?: "none" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "sm" | "md" | "lg" | "xl" | "xs" | "2xs" | "2xl" | "3xl" | "4xl" | {
|
|
252
|
-
|
|
267
|
+
base?: "none" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "sm" | "md" | "lg" | "xl" | "xs" | "2xs" | "2xl" | "3xl" | "4xl";
|
|
253
268
|
md?: "none" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "sm" | "md" | "lg" | "xl" | "xs" | "2xs" | "2xl" | "3xl" | "4xl";
|
|
254
269
|
lg?: "none" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "sm" | "md" | "lg" | "xl" | "xs" | "2xs" | "2xl" | "3xl" | "4xl";
|
|
255
270
|
xl?: "none" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "sm" | "md" | "lg" | "xl" | "xs" | "2xs" | "2xl" | "3xl" | "4xl";
|
|
256
271
|
};
|
|
257
272
|
pt?: "none" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "sm" | "md" | "lg" | "xl" | "xs" | "2xs" | "2xl" | "3xl" | "4xl" | {
|
|
258
|
-
|
|
273
|
+
base?: "none" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "sm" | "md" | "lg" | "xl" | "xs" | "2xs" | "2xl" | "3xl" | "4xl";
|
|
259
274
|
md?: "none" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "sm" | "md" | "lg" | "xl" | "xs" | "2xs" | "2xl" | "3xl" | "4xl";
|
|
260
275
|
lg?: "none" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "sm" | "md" | "lg" | "xl" | "xs" | "2xs" | "2xl" | "3xl" | "4xl";
|
|
261
276
|
xl?: "none" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "sm" | "md" | "lg" | "xl" | "xs" | "2xs" | "2xl" | "3xl" | "4xl";
|
|
262
277
|
};
|
|
263
278
|
pb?: "none" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "sm" | "md" | "lg" | "xl" | "xs" | "2xs" | "2xl" | "3xl" | "4xl" | {
|
|
264
|
-
|
|
279
|
+
base?: "none" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "sm" | "md" | "lg" | "xl" | "xs" | "2xs" | "2xl" | "3xl" | "4xl";
|
|
265
280
|
md?: "none" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "sm" | "md" | "lg" | "xl" | "xs" | "2xs" | "2xl" | "3xl" | "4xl";
|
|
266
281
|
lg?: "none" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "sm" | "md" | "lg" | "xl" | "xs" | "2xs" | "2xl" | "3xl" | "4xl";
|
|
267
282
|
xl?: "none" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "sm" | "md" | "lg" | "xl" | "xs" | "2xs" | "2xl" | "3xl" | "4xl";
|
|
268
283
|
};
|
|
269
284
|
pl?: "none" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "sm" | "md" | "lg" | "xl" | "xs" | "2xs" | "2xl" | "3xl" | "4xl" | {
|
|
270
|
-
|
|
285
|
+
base?: "none" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "sm" | "md" | "lg" | "xl" | "xs" | "2xs" | "2xl" | "3xl" | "4xl";
|
|
271
286
|
md?: "none" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "sm" | "md" | "lg" | "xl" | "xs" | "2xs" | "2xl" | "3xl" | "4xl";
|
|
272
287
|
lg?: "none" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "sm" | "md" | "lg" | "xl" | "xs" | "2xs" | "2xl" | "3xl" | "4xl";
|
|
273
288
|
xl?: "none" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "sm" | "md" | "lg" | "xl" | "xs" | "2xs" | "2xl" | "3xl" | "4xl";
|
|
274
289
|
};
|
|
275
290
|
pr?: "none" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "sm" | "md" | "lg" | "xl" | "xs" | "2xs" | "2xl" | "3xl" | "4xl" | {
|
|
276
|
-
|
|
291
|
+
base?: "none" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "sm" | "md" | "lg" | "xl" | "xs" | "2xs" | "2xl" | "3xl" | "4xl";
|
|
277
292
|
md?: "none" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "sm" | "md" | "lg" | "xl" | "xs" | "2xs" | "2xl" | "3xl" | "4xl";
|
|
278
293
|
lg?: "none" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "sm" | "md" | "lg" | "xl" | "xs" | "2xs" | "2xl" | "3xl" | "4xl";
|
|
279
294
|
xl?: "none" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "sm" | "md" | "lg" | "xl" | "xs" | "2xs" | "2xl" | "3xl" | "4xl";
|
|
280
295
|
};
|
|
281
296
|
px?: "none" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "sm" | "md" | "lg" | "xl" | "xs" | "2xs" | "2xl" | "3xl" | "4xl" | {
|
|
282
|
-
|
|
297
|
+
base?: "none" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "sm" | "md" | "lg" | "xl" | "xs" | "2xs" | "2xl" | "3xl" | "4xl";
|
|
283
298
|
md?: "none" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "sm" | "md" | "lg" | "xl" | "xs" | "2xs" | "2xl" | "3xl" | "4xl";
|
|
284
299
|
lg?: "none" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "sm" | "md" | "lg" | "xl" | "xs" | "2xs" | "2xl" | "3xl" | "4xl";
|
|
285
300
|
xl?: "none" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "sm" | "md" | "lg" | "xl" | "xs" | "2xs" | "2xl" | "3xl" | "4xl";
|
|
286
301
|
};
|
|
287
302
|
py?: "none" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "sm" | "md" | "lg" | "xl" | "xs" | "2xs" | "2xl" | "3xl" | "4xl" | {
|
|
288
|
-
|
|
303
|
+
base?: "none" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "sm" | "md" | "lg" | "xl" | "xs" | "2xs" | "2xl" | "3xl" | "4xl";
|
|
289
304
|
md?: "none" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "sm" | "md" | "lg" | "xl" | "xs" | "2xs" | "2xl" | "3xl" | "4xl";
|
|
290
305
|
lg?: "none" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "sm" | "md" | "lg" | "xl" | "xs" | "2xs" | "2xl" | "3xl" | "4xl";
|
|
291
306
|
xl?: "none" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "sm" | "md" | "lg" | "xl" | "xs" | "2xs" | "2xl" | "3xl" | "4xl";
|
|
292
307
|
};
|
|
293
308
|
m?: "none" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "sm" | "md" | "lg" | "xl" | "xs" | "2xs" | "2xl" | "3xl" | "4xl" | {
|
|
294
|
-
|
|
309
|
+
base?: "none" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "sm" | "md" | "lg" | "xl" | "xs" | "2xs" | "2xl" | "3xl" | "4xl";
|
|
295
310
|
md?: "none" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "sm" | "md" | "lg" | "xl" | "xs" | "2xs" | "2xl" | "3xl" | "4xl";
|
|
296
311
|
lg?: "none" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "sm" | "md" | "lg" | "xl" | "xs" | "2xs" | "2xl" | "3xl" | "4xl";
|
|
297
312
|
xl?: "none" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "sm" | "md" | "lg" | "xl" | "xs" | "2xs" | "2xl" | "3xl" | "4xl";
|
|
298
313
|
};
|
|
299
314
|
mt?: "none" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "sm" | "md" | "lg" | "xl" | "xs" | "2xs" | "2xl" | "3xl" | "4xl" | {
|
|
300
|
-
|
|
315
|
+
base?: "none" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "sm" | "md" | "lg" | "xl" | "xs" | "2xs" | "2xl" | "3xl" | "4xl";
|
|
301
316
|
md?: "none" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "sm" | "md" | "lg" | "xl" | "xs" | "2xs" | "2xl" | "3xl" | "4xl";
|
|
302
317
|
lg?: "none" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "sm" | "md" | "lg" | "xl" | "xs" | "2xs" | "2xl" | "3xl" | "4xl";
|
|
303
318
|
xl?: "none" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "sm" | "md" | "lg" | "xl" | "xs" | "2xs" | "2xl" | "3xl" | "4xl";
|
|
304
319
|
};
|
|
305
320
|
mb?: "none" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "sm" | "md" | "lg" | "xl" | "xs" | "2xs" | "2xl" | "3xl" | "4xl" | {
|
|
306
|
-
|
|
321
|
+
base?: "none" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "sm" | "md" | "lg" | "xl" | "xs" | "2xs" | "2xl" | "3xl" | "4xl";
|
|
307
322
|
md?: "none" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "sm" | "md" | "lg" | "xl" | "xs" | "2xs" | "2xl" | "3xl" | "4xl";
|
|
308
323
|
lg?: "none" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "sm" | "md" | "lg" | "xl" | "xs" | "2xs" | "2xl" | "3xl" | "4xl";
|
|
309
324
|
xl?: "none" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "sm" | "md" | "lg" | "xl" | "xs" | "2xs" | "2xl" | "3xl" | "4xl";
|
|
310
325
|
};
|
|
311
326
|
ml?: "none" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "sm" | "md" | "lg" | "xl" | "xs" | "2xs" | "2xl" | "3xl" | "4xl" | {
|
|
312
|
-
|
|
327
|
+
base?: "none" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "sm" | "md" | "lg" | "xl" | "xs" | "2xs" | "2xl" | "3xl" | "4xl";
|
|
313
328
|
md?: "none" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "sm" | "md" | "lg" | "xl" | "xs" | "2xs" | "2xl" | "3xl" | "4xl";
|
|
314
329
|
lg?: "none" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "sm" | "md" | "lg" | "xl" | "xs" | "2xs" | "2xl" | "3xl" | "4xl";
|
|
315
330
|
xl?: "none" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "sm" | "md" | "lg" | "xl" | "xs" | "2xs" | "2xl" | "3xl" | "4xl";
|
|
316
331
|
};
|
|
317
332
|
mr?: "none" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "sm" | "md" | "lg" | "xl" | "xs" | "2xs" | "2xl" | "3xl" | "4xl" | {
|
|
318
|
-
|
|
333
|
+
base?: "none" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "sm" | "md" | "lg" | "xl" | "xs" | "2xs" | "2xl" | "3xl" | "4xl";
|
|
319
334
|
md?: "none" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "sm" | "md" | "lg" | "xl" | "xs" | "2xs" | "2xl" | "3xl" | "4xl";
|
|
320
335
|
lg?: "none" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "sm" | "md" | "lg" | "xl" | "xs" | "2xs" | "2xl" | "3xl" | "4xl";
|
|
321
336
|
xl?: "none" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "sm" | "md" | "lg" | "xl" | "xs" | "2xs" | "2xl" | "3xl" | "4xl";
|
|
322
337
|
};
|
|
323
338
|
mx?: "none" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "sm" | "md" | "lg" | "xl" | "xs" | "2xs" | "2xl" | "3xl" | "4xl" | {
|
|
324
|
-
|
|
339
|
+
base?: "none" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "sm" | "md" | "lg" | "xl" | "xs" | "2xs" | "2xl" | "3xl" | "4xl";
|
|
325
340
|
md?: "none" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "sm" | "md" | "lg" | "xl" | "xs" | "2xs" | "2xl" | "3xl" | "4xl";
|
|
326
341
|
lg?: "none" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "sm" | "md" | "lg" | "xl" | "xs" | "2xs" | "2xl" | "3xl" | "4xl";
|
|
327
342
|
xl?: "none" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "sm" | "md" | "lg" | "xl" | "xs" | "2xs" | "2xl" | "3xl" | "4xl";
|
|
328
343
|
};
|
|
329
344
|
my?: "none" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "sm" | "md" | "lg" | "xl" | "xs" | "2xs" | "2xl" | "3xl" | "4xl" | {
|
|
330
|
-
|
|
345
|
+
base?: "none" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "sm" | "md" | "lg" | "xl" | "xs" | "2xs" | "2xl" | "3xl" | "4xl";
|
|
331
346
|
md?: "none" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "sm" | "md" | "lg" | "xl" | "xs" | "2xs" | "2xl" | "3xl" | "4xl";
|
|
332
347
|
lg?: "none" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "sm" | "md" | "lg" | "xl" | "xs" | "2xs" | "2xl" | "3xl" | "4xl";
|
|
333
348
|
xl?: "none" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "sm" | "md" | "lg" | "xl" | "xs" | "2xs" | "2xl" | "3xl" | "4xl";
|
|
334
349
|
};
|
|
350
|
+
border?: "0" | "1" | "2" | "3" | {
|
|
351
|
+
base?: "0" | "1" | "2" | "3";
|
|
352
|
+
md?: "0" | "1" | "2" | "3";
|
|
353
|
+
lg?: "0" | "1" | "2" | "3";
|
|
354
|
+
xl?: "0" | "1" | "2" | "3";
|
|
355
|
+
};
|
|
356
|
+
borderB?: "0" | "1" | "2" | "3" | {
|
|
357
|
+
base?: "0" | "1" | "2" | "3";
|
|
358
|
+
md?: "0" | "1" | "2" | "3";
|
|
359
|
+
lg?: "0" | "1" | "2" | "3";
|
|
360
|
+
xl?: "0" | "1" | "2" | "3";
|
|
361
|
+
};
|
|
362
|
+
borderL?: "0" | "1" | "2" | "3" | {
|
|
363
|
+
base?: "0" | "1" | "2" | "3";
|
|
364
|
+
md?: "0" | "1" | "2" | "3";
|
|
365
|
+
lg?: "0" | "1" | "2" | "3";
|
|
366
|
+
xl?: "0" | "1" | "2" | "3";
|
|
367
|
+
};
|
|
368
|
+
borderR?: "0" | "1" | "2" | "3" | {
|
|
369
|
+
base?: "0" | "1" | "2" | "3";
|
|
370
|
+
md?: "0" | "1" | "2" | "3";
|
|
371
|
+
lg?: "0" | "1" | "2" | "3";
|
|
372
|
+
xl?: "0" | "1" | "2" | "3";
|
|
373
|
+
};
|
|
374
|
+
borderT?: "0" | "1" | "2" | "3" | {
|
|
375
|
+
base?: "0" | "1" | "2" | "3";
|
|
376
|
+
md?: "0" | "1" | "2" | "3";
|
|
377
|
+
lg?: "0" | "1" | "2" | "3";
|
|
378
|
+
xl?: "0" | "1" | "2" | "3";
|
|
379
|
+
};
|
|
335
380
|
} & {
|
|
336
381
|
backgroundColor?: "default" | "transparent" | "alt" | "inverted" | "invertedAlt" | "backdrop.default" | "palette.primary.muted" | "palette.primary.contrast" | "palette.secondary.muted" | "palette.secondary.contrast" | "palette.success.muted" | "palette.success.contrast" | "palette.error.muted" | "palette.error.contrast" | "palette.warning.muted" | "palette.warning.contrast" | "palette.tertiary.muted" | "palette.tertiary.contrast" | "palette.upsell.muted" | "palette.upsell.contrast" | "blue.1" | "blue.2" | "blue.3" | "blue.4" | "blue.5" | "blue.6" | "blue.7" | "blue.8" | "blue.9" | "blue.10" | "orange.1" | "orange.4" | "orange.5" | "orange.6" | "orange.7" | "orange.8" | "orange.9" | "orange.10" | "purple.1" | "purple.4" | "purple.5" | "purple.6" | "purple.7" | "purple.8" | "purple.9" | "purple.10" | "red.1" | "red.4" | "red.5" | "red.6" | "red.7" | "red.8" | "red.9" | "red.10" | "teal.1" | "teal.4" | "teal.5" | "teal.6" | "teal.7" | "teal.8" | "teal.9" | "teal.10" | "neutral.1" | "neutral.2" | "neutral.3" | "neutral.4" | "neutral.5" | "neutral.6" | "indicator.brand" | "indicator.success" | "indicator.pending" | "indicator.warning" | "indicator.error" | "indicator.inactive" | "palette.primary" | "palette.secondary" | "palette.tertiary" | "palette.error" | "palette.warning" | "palette.success" | "palette.upsell" | "palette.primary-alt" | "palette.primary-alt.muted" | "palette.primary-alt.contrast" | "backdrop.alt" | {
|
|
337
382
|
base?: "default" | "transparent" | "alt" | "inverted" | "invertedAlt" | "backdrop.default" | "palette.primary.muted" | "palette.primary.contrast" | "palette.secondary.muted" | "palette.secondary.contrast" | "palette.success.muted" | "palette.success.contrast" | "palette.error.muted" | "palette.error.contrast" | "palette.warning.muted" | "palette.warning.contrast" | "palette.tertiary.muted" | "palette.tertiary.contrast" | "palette.upsell.muted" | "palette.upsell.contrast" | "blue.1" | "blue.2" | "blue.3" | "blue.4" | "blue.5" | "blue.6" | "blue.7" | "blue.8" | "blue.9" | "blue.10" | "orange.1" | "orange.4" | "orange.5" | "orange.6" | "orange.7" | "orange.8" | "orange.9" | "orange.10" | "purple.1" | "purple.4" | "purple.5" | "purple.6" | "purple.7" | "purple.8" | "purple.9" | "purple.10" | "red.1" | "red.4" | "red.5" | "red.6" | "red.7" | "red.8" | "red.9" | "red.10" | "teal.1" | "teal.4" | "teal.5" | "teal.6" | "teal.7" | "teal.8" | "teal.9" | "teal.10" | "neutral.1" | "neutral.2" | "neutral.3" | "neutral.4" | "neutral.5" | "neutral.6" | "indicator.brand" | "indicator.success" | "indicator.pending" | "indicator.warning" | "indicator.error" | "indicator.inactive" | "palette.primary" | "palette.secondary" | "palette.tertiary" | "palette.error" | "palette.warning" | "palette.success" | "palette.upsell" | "palette.primary-alt" | "palette.primary-alt.muted" | "palette.primary-alt.contrast" | "backdrop.alt";
|