@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
|
@@ -3,15 +3,11 @@ export type TableRowProps = BoxProps<'tr'>;
|
|
|
3
3
|
export declare const TableRow: import('react').ForwardRefExoticComponent<Omit<NonNullable<{
|
|
4
4
|
borderColor?: "decorative.default" | "decorative.transparent" | "decorative.inverted" | "interactive.default" | "interactive.success" | "interactive.error" | "interactive.warning" | "interactive.active" | "interactive.upsell" | "interactive.focused";
|
|
5
5
|
borderStyle?: "dashed" | "solid";
|
|
6
|
-
borderLeftWidth?: "1" | "2" | "3";
|
|
7
6
|
borderRadius?: "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7";
|
|
8
7
|
borderTopLeftRadius?: "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7";
|
|
9
8
|
borderTopRightRadius?: "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7";
|
|
10
9
|
borderBottomLeftRadius?: "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7";
|
|
11
10
|
borderBottomRightRadius?: "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7";
|
|
12
|
-
borderRightWidth?: "1" | "2" | "3";
|
|
13
|
-
borderTopWidth?: "1" | "2" | "3";
|
|
14
|
-
borderBottomWidth?: "1" | "2" | "3";
|
|
15
11
|
boxShadow?: "0" | "1" | "2" | "3" | "4" | "5";
|
|
16
12
|
cursor?: "default" | "pointer" | "not-allowed";
|
|
17
13
|
overflowX?: "hidden" | "auto" | "visible";
|
|
@@ -31,7 +27,7 @@ export declare const TableRow: import('react').ForwardRefExoticComponent<Omit<No
|
|
|
31
27
|
textTransform?: "none" | "capitalize" | "uppercase";
|
|
32
28
|
textDecoration?: "underline";
|
|
33
29
|
visibility?: "hidden" | "visible";
|
|
34
|
-
wordBreak?: "break-word";
|
|
30
|
+
wordBreak?: "break-word" | "break-all";
|
|
35
31
|
wordWrap?: "normal" | "break-word";
|
|
36
32
|
textAlign?: "center" | "start" | "end" | "justify";
|
|
37
33
|
transitionProperty?: "all" | "none" | "default" | "opacity" | "transform" | "colors" | "shadow";
|
|
@@ -40,11 +36,6 @@ export declare const TableRow: import('react').ForwardRefExoticComponent<Omit<No
|
|
|
40
36
|
whiteSpace?: "nowrap";
|
|
41
37
|
zIndex?: "0" | "10" | "20" | "auto" | "30" | "40" | "50" | "100" | "75";
|
|
42
38
|
overflow?: "hidden" | "auto" | "visible";
|
|
43
|
-
border?: "1" | "2" | "3";
|
|
44
|
-
borderB?: "1" | "2" | "3";
|
|
45
|
-
borderL?: "1" | "2" | "3";
|
|
46
|
-
borderR?: "1" | "2" | "3";
|
|
47
|
-
borderT?: "1" | "2" | "3";
|
|
48
39
|
shadow?: "0" | "1" | "2" | "3" | "4" | "5";
|
|
49
40
|
rounded?: "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7";
|
|
50
41
|
roundedT?: "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7";
|
|
@@ -54,281 +45,335 @@ export declare const TableRow: import('react').ForwardRefExoticComponent<Omit<No
|
|
|
54
45
|
z?: "0" | "10" | "20" | "auto" | "30" | "40" | "50" | "100" | "75";
|
|
55
46
|
} & {
|
|
56
47
|
alignItems?: "center" | "flex-end" | "flex-start" | "baseline" | "stretch" | {
|
|
57
|
-
|
|
48
|
+
base?: "center" | "flex-end" | "flex-start" | "baseline" | "stretch";
|
|
58
49
|
md?: "center" | "flex-end" | "flex-start" | "baseline" | "stretch";
|
|
59
50
|
lg?: "center" | "flex-end" | "flex-start" | "baseline" | "stretch";
|
|
60
51
|
xl?: "center" | "flex-end" | "flex-start" | "baseline" | "stretch";
|
|
61
52
|
};
|
|
62
53
|
alignSelf?: "center" | "flex-end" | "flex-start" | "baseline" | "stretch" | {
|
|
63
|
-
|
|
54
|
+
base?: "center" | "flex-end" | "flex-start" | "baseline" | "stretch";
|
|
64
55
|
md?: "center" | "flex-end" | "flex-start" | "baseline" | "stretch";
|
|
65
56
|
lg?: "center" | "flex-end" | "flex-start" | "baseline" | "stretch";
|
|
66
57
|
xl?: "center" | "flex-end" | "flex-start" | "baseline" | "stretch";
|
|
67
58
|
};
|
|
68
59
|
justifyContent?: "center" | "unset" | "flex-end" | "flex-start" | "space-around" | "space-between" | "space-evenly" | {
|
|
69
|
-
|
|
60
|
+
base?: "center" | "unset" | "flex-end" | "flex-start" | "space-around" | "space-between" | "space-evenly";
|
|
70
61
|
md?: "center" | "unset" | "flex-end" | "flex-start" | "space-around" | "space-between" | "space-evenly";
|
|
71
62
|
lg?: "center" | "unset" | "flex-end" | "flex-start" | "space-around" | "space-between" | "space-evenly";
|
|
72
63
|
xl?: "center" | "unset" | "flex-end" | "flex-start" | "space-around" | "space-between" | "space-evenly";
|
|
73
64
|
};
|
|
74
65
|
flexWrap?: "wrap" | "nowrap" | "wrap-reverse" | {
|
|
75
|
-
|
|
66
|
+
base?: "wrap" | "nowrap" | "wrap-reverse";
|
|
76
67
|
md?: "wrap" | "nowrap" | "wrap-reverse";
|
|
77
68
|
lg?: "wrap" | "nowrap" | "wrap-reverse";
|
|
78
69
|
xl?: "wrap" | "nowrap" | "wrap-reverse";
|
|
79
70
|
};
|
|
80
71
|
display?: "grid" | "none" | "flex" | "block" | "inline-block" | "inline-flex" | "inline-grid" | "contents" | {
|
|
81
|
-
|
|
72
|
+
base?: "grid" | "none" | "flex" | "block" | "inline-block" | "inline-flex" | "inline-grid" | "contents";
|
|
82
73
|
md?: "grid" | "none" | "flex" | "block" | "inline-block" | "inline-flex" | "inline-grid" | "contents";
|
|
83
74
|
lg?: "grid" | "none" | "flex" | "block" | "inline-block" | "inline-flex" | "inline-grid" | "contents";
|
|
84
75
|
xl?: "grid" | "none" | "flex" | "block" | "inline-block" | "inline-flex" | "inline-grid" | "contents";
|
|
85
76
|
};
|
|
86
77
|
flex?: "none" | "1" | "initial" | "auto" | {
|
|
87
|
-
|
|
78
|
+
base?: "none" | "1" | "initial" | "auto";
|
|
88
79
|
md?: "none" | "1" | "initial" | "auto";
|
|
89
80
|
lg?: "none" | "1" | "initial" | "auto";
|
|
90
81
|
xl?: "none" | "1" | "initial" | "auto";
|
|
91
82
|
};
|
|
92
83
|
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" | {
|
|
93
|
-
|
|
84
|
+
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";
|
|
94
85
|
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";
|
|
95
86
|
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";
|
|
96
87
|
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";
|
|
97
88
|
};
|
|
98
89
|
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" | {
|
|
99
|
-
|
|
90
|
+
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";
|
|
100
91
|
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";
|
|
101
92
|
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";
|
|
102
93
|
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";
|
|
103
94
|
};
|
|
104
95
|
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" | {
|
|
105
|
-
|
|
96
|
+
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";
|
|
106
97
|
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";
|
|
107
98
|
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";
|
|
108
99
|
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";
|
|
109
100
|
};
|
|
110
101
|
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" | {
|
|
111
|
-
|
|
102
|
+
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";
|
|
112
103
|
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";
|
|
113
104
|
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";
|
|
114
105
|
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";
|
|
115
106
|
};
|
|
116
107
|
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" | {
|
|
117
|
-
|
|
108
|
+
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";
|
|
118
109
|
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";
|
|
119
110
|
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";
|
|
120
111
|
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";
|
|
121
112
|
};
|
|
122
113
|
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" | {
|
|
123
|
-
|
|
114
|
+
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";
|
|
124
115
|
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";
|
|
125
116
|
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";
|
|
126
117
|
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";
|
|
127
118
|
};
|
|
128
119
|
flexDirection?: "row" | "column" | "row-reverse" | "column-reverse" | {
|
|
129
|
-
|
|
120
|
+
base?: "row" | "column" | "row-reverse" | "column-reverse";
|
|
130
121
|
md?: "row" | "column" | "row-reverse" | "column-reverse";
|
|
131
122
|
lg?: "row" | "column" | "row-reverse" | "column-reverse";
|
|
132
123
|
xl?: "row" | "column" | "row-reverse" | "column-reverse";
|
|
133
124
|
};
|
|
134
125
|
flexShrink?: "0" | "1" | {
|
|
135
|
-
|
|
126
|
+
base?: "0" | "1";
|
|
136
127
|
md?: "0" | "1";
|
|
137
128
|
lg?: "0" | "1";
|
|
138
129
|
xl?: "0" | "1";
|
|
139
130
|
};
|
|
140
131
|
position?: "absolute" | "fixed" | "relative" | "sticky" | {
|
|
141
|
-
|
|
132
|
+
base?: "absolute" | "fixed" | "relative" | "sticky";
|
|
142
133
|
md?: "absolute" | "fixed" | "relative" | "sticky";
|
|
143
134
|
lg?: "absolute" | "fixed" | "relative" | "sticky";
|
|
144
135
|
xl?: "absolute" | "fixed" | "relative" | "sticky";
|
|
145
136
|
};
|
|
146
137
|
gap?: "none" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "sm" | "md" | "lg" | "xl" | "xs" | "2xs" | "2xl" | "3xl" | "4xl" | {
|
|
147
|
-
|
|
138
|
+
base?: "none" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "sm" | "md" | "lg" | "xl" | "xs" | "2xs" | "2xl" | "3xl" | "4xl";
|
|
148
139
|
md?: "none" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "sm" | "md" | "lg" | "xl" | "xs" | "2xs" | "2xl" | "3xl" | "4xl";
|
|
149
140
|
lg?: "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
|
xl?: "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
|
};
|
|
152
143
|
gridGap?: "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
|
+
base?: "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
|
md?: "none" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "sm" | "md" | "lg" | "xl" | "xs" | "2xs" | "2xl" | "3xl" | "4xl";
|
|
155
146
|
lg?: "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
|
xl?: "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
|
};
|
|
158
149
|
margin?: "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
|
+
base?: "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
|
md?: "none" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "sm" | "md" | "lg" | "xl" | "xs" | "2xs" | "2xl" | "3xl" | "4xl";
|
|
161
152
|
lg?: "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
|
xl?: "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
|
};
|
|
164
155
|
marginBottom?: "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
|
+
base?: "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
|
md?: "none" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "sm" | "md" | "lg" | "xl" | "xs" | "2xs" | "2xl" | "3xl" | "4xl";
|
|
167
158
|
lg?: "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
|
xl?: "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
|
};
|
|
170
161
|
marginLeft?: "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
|
+
base?: "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
|
md?: "none" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "sm" | "md" | "lg" | "xl" | "xs" | "2xs" | "2xl" | "3xl" | "4xl";
|
|
173
164
|
lg?: "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
|
xl?: "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
|
};
|
|
176
167
|
marginRight?: "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
|
+
base?: "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
|
md?: "none" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "sm" | "md" | "lg" | "xl" | "xs" | "2xs" | "2xl" | "3xl" | "4xl";
|
|
179
170
|
lg?: "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
|
xl?: "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
|
};
|
|
182
173
|
marginTop?: "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
|
+
base?: "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
|
md?: "none" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "sm" | "md" | "lg" | "xl" | "xs" | "2xs" | "2xl" | "3xl" | "4xl";
|
|
185
176
|
lg?: "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
|
xl?: "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
|
};
|
|
188
179
|
padding?: "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
|
+
base?: "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
|
md?: "none" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "sm" | "md" | "lg" | "xl" | "xs" | "2xs" | "2xl" | "3xl" | "4xl";
|
|
191
182
|
lg?: "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
|
xl?: "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
|
};
|
|
194
185
|
paddingBottom?: "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
|
+
base?: "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
|
md?: "none" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "sm" | "md" | "lg" | "xl" | "xs" | "2xs" | "2xl" | "3xl" | "4xl";
|
|
197
188
|
lg?: "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
|
xl?: "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
|
};
|
|
200
191
|
paddingLeft?: "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
|
+
base?: "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
|
md?: "none" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "sm" | "md" | "lg" | "xl" | "xs" | "2xs" | "2xl" | "3xl" | "4xl";
|
|
203
194
|
lg?: "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
|
xl?: "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
|
};
|
|
206
197
|
paddingRight?: "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
|
+
base?: "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
|
md?: "none" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "sm" | "md" | "lg" | "xl" | "xs" | "2xs" | "2xl" | "3xl" | "4xl";
|
|
209
200
|
lg?: "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
|
xl?: "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
|
};
|
|
212
203
|
paddingTop?: "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
|
+
base?: "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
|
md?: "none" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "sm" | "md" | "lg" | "xl" | "xs" | "2xs" | "2xl" | "3xl" | "4xl";
|
|
215
206
|
lg?: "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
|
xl?: "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
|
};
|
|
209
|
+
borderTopWidth?: "0" | "1" | "2" | "3" | {
|
|
210
|
+
base?: "0" | "1" | "2" | "3";
|
|
211
|
+
md?: "0" | "1" | "2" | "3";
|
|
212
|
+
lg?: "0" | "1" | "2" | "3";
|
|
213
|
+
xl?: "0" | "1" | "2" | "3";
|
|
214
|
+
};
|
|
215
|
+
borderRightWidth?: "0" | "1" | "2" | "3" | {
|
|
216
|
+
base?: "0" | "1" | "2" | "3";
|
|
217
|
+
md?: "0" | "1" | "2" | "3";
|
|
218
|
+
lg?: "0" | "1" | "2" | "3";
|
|
219
|
+
xl?: "0" | "1" | "2" | "3";
|
|
220
|
+
};
|
|
221
|
+
borderBottomWidth?: "0" | "1" | "2" | "3" | {
|
|
222
|
+
base?: "0" | "1" | "2" | "3";
|
|
223
|
+
md?: "0" | "1" | "2" | "3";
|
|
224
|
+
lg?: "0" | "1" | "2" | "3";
|
|
225
|
+
xl?: "0" | "1" | "2" | "3";
|
|
226
|
+
};
|
|
227
|
+
borderLeftWidth?: "0" | "1" | "2" | "3" | {
|
|
228
|
+
base?: "0" | "1" | "2" | "3";
|
|
229
|
+
md?: "0" | "1" | "2" | "3";
|
|
230
|
+
lg?: "0" | "1" | "2" | "3";
|
|
231
|
+
xl?: "0" | "1" | "2" | "3";
|
|
232
|
+
};
|
|
218
233
|
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" | {
|
|
219
|
-
|
|
234
|
+
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";
|
|
220
235
|
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";
|
|
221
236
|
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";
|
|
222
237
|
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";
|
|
223
238
|
};
|
|
224
239
|
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" | {
|
|
225
|
-
|
|
240
|
+
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";
|
|
226
241
|
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";
|
|
227
242
|
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";
|
|
228
243
|
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";
|
|
229
244
|
};
|
|
230
245
|
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" | {
|
|
231
|
-
|
|
246
|
+
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";
|
|
232
247
|
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";
|
|
233
248
|
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";
|
|
234
249
|
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";
|
|
235
250
|
};
|
|
236
251
|
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" | {
|
|
237
|
-
|
|
252
|
+
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";
|
|
238
253
|
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";
|
|
239
254
|
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";
|
|
240
255
|
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";
|
|
241
256
|
};
|
|
242
257
|
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" | {
|
|
243
|
-
|
|
258
|
+
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";
|
|
244
259
|
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";
|
|
245
260
|
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";
|
|
246
261
|
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";
|
|
247
262
|
};
|
|
248
263
|
p?: "none" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "sm" | "md" | "lg" | "xl" | "xs" | "2xs" | "2xl" | "3xl" | "4xl" | {
|
|
249
|
-
|
|
264
|
+
base?: "none" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "sm" | "md" | "lg" | "xl" | "xs" | "2xs" | "2xl" | "3xl" | "4xl";
|
|
250
265
|
md?: "none" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "sm" | "md" | "lg" | "xl" | "xs" | "2xs" | "2xl" | "3xl" | "4xl";
|
|
251
266
|
lg?: "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
|
xl?: "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
|
};
|
|
254
269
|
pt?: "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
|
+
base?: "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
|
md?: "none" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "sm" | "md" | "lg" | "xl" | "xs" | "2xs" | "2xl" | "3xl" | "4xl";
|
|
257
272
|
lg?: "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
|
xl?: "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
|
};
|
|
260
275
|
pb?: "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
|
+
base?: "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
|
md?: "none" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "sm" | "md" | "lg" | "xl" | "xs" | "2xs" | "2xl" | "3xl" | "4xl";
|
|
263
278
|
lg?: "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
|
xl?: "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
|
};
|
|
266
281
|
pl?: "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
|
+
base?: "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
|
md?: "none" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "sm" | "md" | "lg" | "xl" | "xs" | "2xs" | "2xl" | "3xl" | "4xl";
|
|
269
284
|
lg?: "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
|
xl?: "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
|
};
|
|
272
287
|
pr?: "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
|
+
base?: "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
|
md?: "none" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "sm" | "md" | "lg" | "xl" | "xs" | "2xs" | "2xl" | "3xl" | "4xl";
|
|
275
290
|
lg?: "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
|
xl?: "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
|
};
|
|
278
293
|
px?: "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
|
+
base?: "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
|
md?: "none" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "sm" | "md" | "lg" | "xl" | "xs" | "2xs" | "2xl" | "3xl" | "4xl";
|
|
281
296
|
lg?: "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
|
xl?: "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
|
};
|
|
284
299
|
py?: "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
|
+
base?: "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
|
md?: "none" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "sm" | "md" | "lg" | "xl" | "xs" | "2xs" | "2xl" | "3xl" | "4xl";
|
|
287
302
|
lg?: "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
|
xl?: "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
|
};
|
|
290
305
|
m?: "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
|
+
base?: "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
|
md?: "none" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "sm" | "md" | "lg" | "xl" | "xs" | "2xs" | "2xl" | "3xl" | "4xl";
|
|
293
308
|
lg?: "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
|
xl?: "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
|
};
|
|
296
311
|
mt?: "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
|
+
base?: "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
|
md?: "none" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "sm" | "md" | "lg" | "xl" | "xs" | "2xs" | "2xl" | "3xl" | "4xl";
|
|
299
314
|
lg?: "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
|
xl?: "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
|
};
|
|
302
317
|
mb?: "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
|
+
base?: "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
|
md?: "none" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "sm" | "md" | "lg" | "xl" | "xs" | "2xs" | "2xl" | "3xl" | "4xl";
|
|
305
320
|
lg?: "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
|
xl?: "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
|
};
|
|
308
323
|
ml?: "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
|
+
base?: "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
|
md?: "none" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "sm" | "md" | "lg" | "xl" | "xs" | "2xs" | "2xl" | "3xl" | "4xl";
|
|
311
326
|
lg?: "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
|
xl?: "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
|
};
|
|
314
329
|
mr?: "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
|
+
base?: "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
|
md?: "none" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "sm" | "md" | "lg" | "xl" | "xs" | "2xs" | "2xl" | "3xl" | "4xl";
|
|
317
332
|
lg?: "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
|
xl?: "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
|
};
|
|
320
335
|
mx?: "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
|
+
base?: "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
|
md?: "none" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "sm" | "md" | "lg" | "xl" | "xs" | "2xs" | "2xl" | "3xl" | "4xl";
|
|
323
338
|
lg?: "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
|
xl?: "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
|
};
|
|
326
341
|
my?: "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
|
+
base?: "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
|
md?: "none" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "10" | "11" | "12" | "sm" | "md" | "lg" | "xl" | "xs" | "2xs" | "2xl" | "3xl" | "4xl";
|
|
329
344
|
lg?: "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
|
xl?: "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
|
};
|
|
347
|
+
border?: "0" | "1" | "2" | "3" | {
|
|
348
|
+
base?: "0" | "1" | "2" | "3";
|
|
349
|
+
md?: "0" | "1" | "2" | "3";
|
|
350
|
+
lg?: "0" | "1" | "2" | "3";
|
|
351
|
+
xl?: "0" | "1" | "2" | "3";
|
|
352
|
+
};
|
|
353
|
+
borderB?: "0" | "1" | "2" | "3" | {
|
|
354
|
+
base?: "0" | "1" | "2" | "3";
|
|
355
|
+
md?: "0" | "1" | "2" | "3";
|
|
356
|
+
lg?: "0" | "1" | "2" | "3";
|
|
357
|
+
xl?: "0" | "1" | "2" | "3";
|
|
358
|
+
};
|
|
359
|
+
borderL?: "0" | "1" | "2" | "3" | {
|
|
360
|
+
base?: "0" | "1" | "2" | "3";
|
|
361
|
+
md?: "0" | "1" | "2" | "3";
|
|
362
|
+
lg?: "0" | "1" | "2" | "3";
|
|
363
|
+
xl?: "0" | "1" | "2" | "3";
|
|
364
|
+
};
|
|
365
|
+
borderR?: "0" | "1" | "2" | "3" | {
|
|
366
|
+
base?: "0" | "1" | "2" | "3";
|
|
367
|
+
md?: "0" | "1" | "2" | "3";
|
|
368
|
+
lg?: "0" | "1" | "2" | "3";
|
|
369
|
+
xl?: "0" | "1" | "2" | "3";
|
|
370
|
+
};
|
|
371
|
+
borderT?: "0" | "1" | "2" | "3" | {
|
|
372
|
+
base?: "0" | "1" | "2" | "3";
|
|
373
|
+
md?: "0" | "1" | "2" | "3";
|
|
374
|
+
lg?: "0" | "1" | "2" | "3";
|
|
375
|
+
xl?: "0" | "1" | "2" | "3";
|
|
376
|
+
};
|
|
332
377
|
} & {
|
|
333
378
|
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" | {
|
|
334
379
|
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";
|