@jackbernnie/hiyf 0.1.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/LICENSE +191 -0
- package/NOTICE +12 -0
- package/README.md +47 -0
- package/dist/components/Accordion.d.ts +38 -0
- package/dist/components/Accordion.js +38 -0
- package/dist/components/Alert.d.ts +29 -0
- package/dist/components/Alert.js +39 -0
- package/dist/components/AlertDialog.d.ts +37 -0
- package/dist/components/AlertDialog.js +38 -0
- package/dist/components/AspectRatio.d.ts +15 -0
- package/dist/components/AspectRatio.js +15 -0
- package/dist/components/Avatar.d.ts +26 -0
- package/dist/components/Avatar.js +13 -0
- package/dist/components/Badge.d.ts +18 -0
- package/dist/components/Badge.js +17 -0
- package/dist/components/Box.d.ts +13 -0
- package/dist/components/Box.js +52 -0
- package/dist/components/Breadcrumb.d.ts +33 -0
- package/dist/components/Breadcrumb.js +16 -0
- package/dist/components/Button.d.ts +40 -0
- package/dist/components/Button.js +33 -0
- package/dist/components/ButtonGroup.d.ts +18 -0
- package/dist/components/ButtonGroup.js +8 -0
- package/dist/components/Card.d.ts +46 -0
- package/dist/components/Card.js +24 -0
- package/dist/components/Carousel.d.ts +27 -0
- package/dist/components/Carousel.js +13 -0
- package/dist/components/Chart.d.ts +17 -0
- package/dist/components/Chart.js +94 -0
- package/dist/components/Checkbox.d.ts +26 -0
- package/dist/components/Checkbox.js +9 -0
- package/dist/components/Collapsible.d.ts +27 -0
- package/dist/components/Collapsible.js +26 -0
- package/dist/components/Combobox.d.ts +36 -0
- package/dist/components/Combobox.js +41 -0
- package/dist/components/Command.d.ts +37 -0
- package/dist/components/Command.js +32 -0
- package/dist/components/ContextMenu.d.ts +34 -0
- package/dist/components/ContextMenu.js +23 -0
- package/dist/components/Dialog.d.ts +20 -0
- package/dist/components/Dialog.js +34 -0
- package/dist/components/Drawer.d.ts +28 -0
- package/dist/components/Drawer.js +25 -0
- package/dist/components/DropdownMenu.d.ts +42 -0
- package/dist/components/DropdownMenu.js +32 -0
- package/dist/components/Empty.d.ts +28 -0
- package/dist/components/Empty.js +15 -0
- package/dist/components/Field.d.ts +30 -0
- package/dist/components/Field.js +13 -0
- package/dist/components/Grid.d.ts +32 -0
- package/dist/components/Grid.js +37 -0
- package/dist/components/GridItem.d.ts +30 -0
- package/dist/components/GridItem.js +40 -0
- package/dist/components/HoverCard.d.ts +22 -0
- package/dist/components/HoverCard.js +12 -0
- package/dist/components/Input.d.ts +34 -0
- package/dist/components/Input.js +8 -0
- package/dist/components/InputGroup.d.ts +28 -0
- package/dist/components/InputGroup.js +13 -0
- package/dist/components/InputOTP.d.ts +26 -0
- package/dist/components/InputOTP.js +25 -0
- package/dist/components/Kbd.d.ts +26 -0
- package/dist/components/Kbd.js +11 -0
- package/dist/components/Label.d.ts +20 -0
- package/dist/components/Label.js +17 -0
- package/dist/components/Menubar.d.ts +35 -0
- package/dist/components/Menubar.js +19 -0
- package/dist/components/NativeSelect.d.ts +33 -0
- package/dist/components/NativeSelect.js +37 -0
- package/dist/components/NavigationMenu.d.ts +32 -0
- package/dist/components/NavigationMenu.js +14 -0
- package/dist/components/Pagination.d.ts +28 -0
- package/dist/components/Pagination.js +62 -0
- package/dist/components/Popover.d.ts +28 -0
- package/dist/components/Popover.js +19 -0
- package/dist/components/Progress.d.ts +25 -0
- package/dist/components/Progress.js +37 -0
- package/dist/components/RadioGroup.d.ts +35 -0
- package/dist/components/RadioGroup.js +44 -0
- package/dist/components/Resizable.d.ts +31 -0
- package/dist/components/Resizable.js +17 -0
- package/dist/components/ScrollArea.d.ts +8 -0
- package/dist/components/ScrollArea.js +14 -0
- package/dist/components/Select.d.ts +35 -0
- package/dist/components/Select.js +33 -0
- package/dist/components/Separator.d.ts +10 -0
- package/dist/components/Separator.js +30 -0
- package/dist/components/Sheet.d.ts +31 -0
- package/dist/components/Sheet.js +26 -0
- package/dist/components/Sidebar.d.ts +52 -0
- package/dist/components/Sidebar.js +96 -0
- package/dist/components/Skeleton.d.ts +40 -0
- package/dist/components/Skeleton.js +42 -0
- package/dist/components/Slider.d.ts +26 -0
- package/dist/components/Slider.js +9 -0
- package/dist/components/Spinner.d.ts +7 -0
- package/dist/components/Spinner.js +13 -0
- package/dist/components/Status.d.ts +30 -0
- package/dist/components/Status.js +27 -0
- package/dist/components/Switch.d.ts +27 -0
- package/dist/components/Switch.js +9 -0
- package/dist/components/Table.d.ts +39 -0
- package/dist/components/Table.js +22 -0
- package/dist/components/Tabs.d.ts +32 -0
- package/dist/components/Tabs.js +21 -0
- package/dist/components/Text.d.ts +2 -0
- package/dist/components/Text.js +5 -0
- package/dist/components/Textarea.d.ts +32 -0
- package/dist/components/Textarea.js +15 -0
- package/dist/components/Toaster.d.ts +30 -0
- package/dist/components/Toaster.js +9 -0
- package/dist/components/Toggle.d.ts +34 -0
- package/dist/components/Toggle.js +31 -0
- package/dist/components/ToggleGroup.d.ts +46 -0
- package/dist/components/ToggleGroup.js +26 -0
- package/dist/components/Tooltip.d.ts +25 -0
- package/dist/components/Tooltip.js +12 -0
- package/dist/components/ui/accordion.d.ts +7 -0
- package/dist/components/ui/accordion.js +81 -0
- package/dist/components/ui/alert-dialog.d.ts +18 -0
- package/dist/components/ui/alert-dialog.js +154 -0
- package/dist/components/ui/alert.d.ts +10 -0
- package/dist/components/ui/alert.js +64 -0
- package/dist/components/ui/aspect-ratio.d.ts +3 -0
- package/dist/components/ui/aspect-ratio.js +11 -0
- package/dist/components/ui/avatar.d.ts +11 -0
- package/dist/components/ui/avatar.js +57 -0
- package/dist/components/ui/badge.d.ts +9 -0
- package/dist/components/ui/badge.js +42 -0
- package/dist/components/ui/breadcrumb.d.ts +11 -0
- package/dist/components/ui/breadcrumb.js +87 -0
- package/dist/components/ui/button-group.d.ts +11 -0
- package/dist/components/ui/button-group.js +37 -0
- package/dist/components/ui/button.d.ts +10 -0
- package/dist/components/ui/button.js +55 -0
- package/dist/components/ui/card.d.ts +11 -0
- package/dist/components/ui/card.js +82 -0
- package/dist/components/ui/carousel.d.ts +28 -0
- package/dist/components/ui/carousel.js +196 -0
- package/dist/components/ui/chart.d.ts +44 -0
- package/dist/components/ui/chart.js +198 -0
- package/dist/components/ui/checkbox.d.ts +4 -0
- package/dist/components/ui/checkbox.js +33 -0
- package/dist/components/ui/collapsible.d.ts +5 -0
- package/dist/components/ui/collapsible.js +33 -0
- package/dist/components/ui/combobox.d.ts +24 -0
- package/dist/components/ui/combobox.js +160 -0
- package/dist/components/ui/command.d.ts +18 -0
- package/dist/components/ui/command.js +142 -0
- package/dist/components/ui/context-menu.d.ts +31 -0
- package/dist/components/ui/context-menu.js +73 -0
- package/dist/components/ui/dialog.d.ts +17 -0
- package/dist/components/ui/dialog.js +138 -0
- package/dist/components/ui/direction.d.ts +7 -0
- package/dist/components/ui/direction.js +14 -0
- package/dist/components/ui/drawer.d.ts +13 -0
- package/dist/components/ui/drawer.js +101 -0
- package/dist/components/ui/dropdown-menu.d.ts +29 -0
- package/dist/components/ui/dropdown-menu.js +98 -0
- package/dist/components/ui/empty.d.ts +11 -0
- package/dist/components/ui/empty.js +97 -0
- package/dist/components/ui/field.d.ts +24 -0
- package/dist/components/ui/field.js +110 -0
- package/dist/components/ui/hover-card.d.ts +6 -0
- package/dist/components/ui/hover-card.js +37 -0
- package/dist/components/ui/input-group.d.ts +16 -0
- package/dist/components/ui/input-group.js +111 -0
- package/dist/components/ui/input-otp.d.ts +11 -0
- package/dist/components/ui/input-otp.js +66 -0
- package/dist/components/ui/input.d.ts +3 -0
- package/dist/components/ui/input.js +19 -0
- package/dist/components/ui/item.d.ts +23 -0
- package/dist/components/ui/item.js +181 -0
- package/dist/components/ui/kbd.d.ts +3 -0
- package/dist/components/ui/kbd.js +28 -0
- package/dist/components/ui/label.d.ts +4 -0
- package/dist/components/ui/label.js +23 -0
- package/dist/components/ui/menubar.d.ts +30 -0
- package/dist/components/ui/menubar.js +119 -0
- package/dist/components/ui/native-select.d.ts +8 -0
- package/dist/components/ui/native-select.js +49 -0
- package/dist/components/ui/navigation-menu.d.ts +14 -0
- package/dist/components/ui/navigation-menu.js +139 -0
- package/dist/components/ui/pagination.d.ts +17 -0
- package/dist/components/ui/pagination.js +120 -0
- package/dist/components/ui/popover.d.ts +10 -0
- package/dist/components/ui/popover.js +37 -0
- package/dist/components/ui/progress.d.ts +4 -0
- package/dist/components/ui/radio-group.d.ts +5 -0
- package/dist/components/ui/radio-group.js +44 -0
- package/dist/components/ui/resizable.d.ts +7 -0
- package/dist/components/ui/resizable.js +44 -0
- package/dist/components/ui/scroll-area.d.ts +5 -0
- package/dist/components/ui/scroll-area.js +59 -0
- package/dist/components/ui/select.d.ts +15 -0
- package/dist/components/ui/select.js +131 -0
- package/dist/components/ui/separator.d.ts +4 -0
- package/dist/components/ui/separator.js +27 -0
- package/dist/components/ui/sheet.d.ts +14 -0
- package/dist/components/ui/sheet.js +113 -0
- package/dist/components/ui/sidebar.d.ts +69 -0
- package/dist/components/ui/sidebar.js +459 -0
- package/dist/components/ui/skeleton.d.ts +2 -0
- package/dist/components/ui/slider.d.ts +4 -0
- package/dist/components/ui/slider.js +60 -0
- package/dist/components/ui/sonner.d.ts +3 -0
- package/dist/components/ui/sonner.js +38 -0
- package/dist/components/ui/spinner.d.ts +2 -0
- package/dist/components/ui/spinner.js +13 -0
- package/dist/components/ui/switch.d.ts +6 -0
- package/dist/components/ui/switch.js +32 -0
- package/dist/components/ui/table.d.ts +10 -0
- package/dist/components/ui/table.js +95 -0
- package/dist/components/ui/tabs.d.ts +11 -0
- package/dist/components/ui/tabs.js +87 -0
- package/dist/components/ui/textarea.d.ts +3 -0
- package/dist/components/ui/textarea.js +18 -0
- package/dist/components/ui/toggle-group.d.ts +10 -0
- package/dist/components/ui/toggle-group.js +76 -0
- package/dist/components/ui/toggle.d.ts +9 -0
- package/dist/components/ui/toggle.js +43 -0
- package/dist/components/ui/tooltip.d.ts +7 -0
- package/dist/components/ui/tooltip.js +53 -0
- package/dist/hooks/use-mobile.d.ts +1 -0
- package/dist/hooks/use-mobile.js +18 -0
- package/dist/index.d.ts +122 -0
- package/dist/index.js +61 -0
- package/dist/lib/utils.d.ts +2 -0
- package/dist/lib/utils.js +8 -0
- package/dist/primitives/createText.d.ts +103 -0
- package/dist/primitives/createText.js +183 -0
- package/dist/primitives/resolveProperties.d.ts +17 -0
- package/dist/stylex.css +1450 -0
- package/dist/tokens/animations.d.ts +126 -0
- package/dist/tokens/animations.js +61 -0
- package/dist/tokens/tokens.stylex.d.ts +85 -0
- package/dist/tokens/tokens.stylex.js +81 -0
- package/dist/utils/box-styles.d.ts +1117 -0
- package/dist/utils/box-styles.js +1455 -0
- package/dist/utils/grid.d.ts +4 -0
- package/dist/utils/resolvers.d.ts +10 -0
- package/dist/utils/resolvers.js +356 -0
- package/dist/utils/types.d.ts +133 -0
- package/package.json +80 -0
- package/src/theme.css +206 -0
|
@@ -0,0 +1,1117 @@
|
|
|
1
|
+
import * as stylex from '@stylexjs/stylex';
|
|
2
|
+
export declare const TRANSITION_PROPERTY_VALUES: {
|
|
3
|
+
readonly none: "none";
|
|
4
|
+
readonly all: "all";
|
|
5
|
+
readonly common: "color, background-color, border-color, box-shadow, opacity, transform";
|
|
6
|
+
readonly colors: "color, background-color, border-color";
|
|
7
|
+
readonly opacity: "opacity";
|
|
8
|
+
readonly shadow: "box-shadow";
|
|
9
|
+
readonly transform: "transform";
|
|
10
|
+
};
|
|
11
|
+
export declare const paddingStyles: Readonly<{
|
|
12
|
+
readonly none: Readonly<{
|
|
13
|
+
readonly padding: stylex.StyleXClassNameFor<"padding", string>;
|
|
14
|
+
}>;
|
|
15
|
+
readonly xs: Readonly<{
|
|
16
|
+
readonly padding: stylex.StyleXClassNameFor<"padding", string>;
|
|
17
|
+
}>;
|
|
18
|
+
readonly s: Readonly<{
|
|
19
|
+
readonly padding: stylex.StyleXClassNameFor<"padding", string>;
|
|
20
|
+
}>;
|
|
21
|
+
readonly m: Readonly<{
|
|
22
|
+
readonly padding: stylex.StyleXClassNameFor<"padding", string>;
|
|
23
|
+
}>;
|
|
24
|
+
readonly l: Readonly<{
|
|
25
|
+
readonly padding: stylex.StyleXClassNameFor<"padding", string>;
|
|
26
|
+
}>;
|
|
27
|
+
readonly xl: Readonly<{
|
|
28
|
+
readonly padding: stylex.StyleXClassNameFor<"padding", string>;
|
|
29
|
+
}>;
|
|
30
|
+
readonly '2xl': Readonly<{
|
|
31
|
+
readonly padding: stylex.StyleXClassNameFor<"padding", string>;
|
|
32
|
+
}>;
|
|
33
|
+
readonly '3xl': Readonly<{
|
|
34
|
+
readonly padding: stylex.StyleXClassNameFor<"padding", string>;
|
|
35
|
+
}>;
|
|
36
|
+
readonly '4xl': Readonly<{
|
|
37
|
+
readonly padding: stylex.StyleXClassNameFor<"padding", string>;
|
|
38
|
+
}>;
|
|
39
|
+
readonly '5xl': Readonly<{
|
|
40
|
+
readonly padding: stylex.StyleXClassNameFor<"padding", string>;
|
|
41
|
+
}>;
|
|
42
|
+
}>;
|
|
43
|
+
export declare const paddingTopStyles: Readonly<{
|
|
44
|
+
readonly none: Readonly<{
|
|
45
|
+
readonly paddingTop: stylex.StyleXClassNameFor<"paddingTop", string>;
|
|
46
|
+
}>;
|
|
47
|
+
readonly xs: Readonly<{
|
|
48
|
+
readonly paddingTop: stylex.StyleXClassNameFor<"paddingTop", string>;
|
|
49
|
+
}>;
|
|
50
|
+
readonly s: Readonly<{
|
|
51
|
+
readonly paddingTop: stylex.StyleXClassNameFor<"paddingTop", string>;
|
|
52
|
+
}>;
|
|
53
|
+
readonly m: Readonly<{
|
|
54
|
+
readonly paddingTop: stylex.StyleXClassNameFor<"paddingTop", string>;
|
|
55
|
+
}>;
|
|
56
|
+
readonly l: Readonly<{
|
|
57
|
+
readonly paddingTop: stylex.StyleXClassNameFor<"paddingTop", string>;
|
|
58
|
+
}>;
|
|
59
|
+
readonly xl: Readonly<{
|
|
60
|
+
readonly paddingTop: stylex.StyleXClassNameFor<"paddingTop", string>;
|
|
61
|
+
}>;
|
|
62
|
+
readonly '2xl': Readonly<{
|
|
63
|
+
readonly paddingTop: stylex.StyleXClassNameFor<"paddingTop", string>;
|
|
64
|
+
}>;
|
|
65
|
+
readonly '3xl': Readonly<{
|
|
66
|
+
readonly paddingTop: stylex.StyleXClassNameFor<"paddingTop", string>;
|
|
67
|
+
}>;
|
|
68
|
+
readonly '4xl': Readonly<{
|
|
69
|
+
readonly paddingTop: stylex.StyleXClassNameFor<"paddingTop", string>;
|
|
70
|
+
}>;
|
|
71
|
+
readonly '5xl': Readonly<{
|
|
72
|
+
readonly paddingTop: stylex.StyleXClassNameFor<"paddingTop", string>;
|
|
73
|
+
}>;
|
|
74
|
+
}>;
|
|
75
|
+
export declare const paddingRightStyles: Readonly<{
|
|
76
|
+
readonly none: Readonly<{
|
|
77
|
+
readonly paddingRight: stylex.StyleXClassNameFor<"paddingRight", string>;
|
|
78
|
+
}>;
|
|
79
|
+
readonly xs: Readonly<{
|
|
80
|
+
readonly paddingRight: stylex.StyleXClassNameFor<"paddingRight", string>;
|
|
81
|
+
}>;
|
|
82
|
+
readonly s: Readonly<{
|
|
83
|
+
readonly paddingRight: stylex.StyleXClassNameFor<"paddingRight", string>;
|
|
84
|
+
}>;
|
|
85
|
+
readonly m: Readonly<{
|
|
86
|
+
readonly paddingRight: stylex.StyleXClassNameFor<"paddingRight", string>;
|
|
87
|
+
}>;
|
|
88
|
+
readonly l: Readonly<{
|
|
89
|
+
readonly paddingRight: stylex.StyleXClassNameFor<"paddingRight", string>;
|
|
90
|
+
}>;
|
|
91
|
+
readonly xl: Readonly<{
|
|
92
|
+
readonly paddingRight: stylex.StyleXClassNameFor<"paddingRight", string>;
|
|
93
|
+
}>;
|
|
94
|
+
readonly '2xl': Readonly<{
|
|
95
|
+
readonly paddingRight: stylex.StyleXClassNameFor<"paddingRight", string>;
|
|
96
|
+
}>;
|
|
97
|
+
readonly '3xl': Readonly<{
|
|
98
|
+
readonly paddingRight: stylex.StyleXClassNameFor<"paddingRight", string>;
|
|
99
|
+
}>;
|
|
100
|
+
readonly '4xl': Readonly<{
|
|
101
|
+
readonly paddingRight: stylex.StyleXClassNameFor<"paddingRight", string>;
|
|
102
|
+
}>;
|
|
103
|
+
readonly '5xl': Readonly<{
|
|
104
|
+
readonly paddingRight: stylex.StyleXClassNameFor<"paddingRight", string>;
|
|
105
|
+
}>;
|
|
106
|
+
}>;
|
|
107
|
+
export declare const paddingBottomStyles: Readonly<{
|
|
108
|
+
readonly none: Readonly<{
|
|
109
|
+
readonly paddingBottom: stylex.StyleXClassNameFor<"paddingBottom", string>;
|
|
110
|
+
}>;
|
|
111
|
+
readonly xs: Readonly<{
|
|
112
|
+
readonly paddingBottom: stylex.StyleXClassNameFor<"paddingBottom", string>;
|
|
113
|
+
}>;
|
|
114
|
+
readonly s: Readonly<{
|
|
115
|
+
readonly paddingBottom: stylex.StyleXClassNameFor<"paddingBottom", string>;
|
|
116
|
+
}>;
|
|
117
|
+
readonly m: Readonly<{
|
|
118
|
+
readonly paddingBottom: stylex.StyleXClassNameFor<"paddingBottom", string>;
|
|
119
|
+
}>;
|
|
120
|
+
readonly l: Readonly<{
|
|
121
|
+
readonly paddingBottom: stylex.StyleXClassNameFor<"paddingBottom", string>;
|
|
122
|
+
}>;
|
|
123
|
+
readonly xl: Readonly<{
|
|
124
|
+
readonly paddingBottom: stylex.StyleXClassNameFor<"paddingBottom", string>;
|
|
125
|
+
}>;
|
|
126
|
+
readonly '2xl': Readonly<{
|
|
127
|
+
readonly paddingBottom: stylex.StyleXClassNameFor<"paddingBottom", string>;
|
|
128
|
+
}>;
|
|
129
|
+
readonly '3xl': Readonly<{
|
|
130
|
+
readonly paddingBottom: stylex.StyleXClassNameFor<"paddingBottom", string>;
|
|
131
|
+
}>;
|
|
132
|
+
readonly '4xl': Readonly<{
|
|
133
|
+
readonly paddingBottom: stylex.StyleXClassNameFor<"paddingBottom", string>;
|
|
134
|
+
}>;
|
|
135
|
+
readonly '5xl': Readonly<{
|
|
136
|
+
readonly paddingBottom: stylex.StyleXClassNameFor<"paddingBottom", string>;
|
|
137
|
+
}>;
|
|
138
|
+
}>;
|
|
139
|
+
export declare const paddingLeftStyles: Readonly<{
|
|
140
|
+
readonly none: Readonly<{
|
|
141
|
+
readonly paddingLeft: stylex.StyleXClassNameFor<"paddingLeft", string>;
|
|
142
|
+
}>;
|
|
143
|
+
readonly xs: Readonly<{
|
|
144
|
+
readonly paddingLeft: stylex.StyleXClassNameFor<"paddingLeft", string>;
|
|
145
|
+
}>;
|
|
146
|
+
readonly s: Readonly<{
|
|
147
|
+
readonly paddingLeft: stylex.StyleXClassNameFor<"paddingLeft", string>;
|
|
148
|
+
}>;
|
|
149
|
+
readonly m: Readonly<{
|
|
150
|
+
readonly paddingLeft: stylex.StyleXClassNameFor<"paddingLeft", string>;
|
|
151
|
+
}>;
|
|
152
|
+
readonly l: Readonly<{
|
|
153
|
+
readonly paddingLeft: stylex.StyleXClassNameFor<"paddingLeft", string>;
|
|
154
|
+
}>;
|
|
155
|
+
readonly xl: Readonly<{
|
|
156
|
+
readonly paddingLeft: stylex.StyleXClassNameFor<"paddingLeft", string>;
|
|
157
|
+
}>;
|
|
158
|
+
readonly '2xl': Readonly<{
|
|
159
|
+
readonly paddingLeft: stylex.StyleXClassNameFor<"paddingLeft", string>;
|
|
160
|
+
}>;
|
|
161
|
+
readonly '3xl': Readonly<{
|
|
162
|
+
readonly paddingLeft: stylex.StyleXClassNameFor<"paddingLeft", string>;
|
|
163
|
+
}>;
|
|
164
|
+
readonly '4xl': Readonly<{
|
|
165
|
+
readonly paddingLeft: stylex.StyleXClassNameFor<"paddingLeft", string>;
|
|
166
|
+
}>;
|
|
167
|
+
readonly '5xl': Readonly<{
|
|
168
|
+
readonly paddingLeft: stylex.StyleXClassNameFor<"paddingLeft", string>;
|
|
169
|
+
}>;
|
|
170
|
+
}>;
|
|
171
|
+
export declare const paddingInlineStyles: Readonly<{
|
|
172
|
+
readonly none: Readonly<{
|
|
173
|
+
readonly paddingInline: stylex.StyleXClassNameFor<"paddingInline", string>;
|
|
174
|
+
}>;
|
|
175
|
+
readonly xs: Readonly<{
|
|
176
|
+
readonly paddingInline: stylex.StyleXClassNameFor<"paddingInline", string>;
|
|
177
|
+
}>;
|
|
178
|
+
readonly s: Readonly<{
|
|
179
|
+
readonly paddingInline: stylex.StyleXClassNameFor<"paddingInline", string>;
|
|
180
|
+
}>;
|
|
181
|
+
readonly m: Readonly<{
|
|
182
|
+
readonly paddingInline: stylex.StyleXClassNameFor<"paddingInline", string>;
|
|
183
|
+
}>;
|
|
184
|
+
readonly l: Readonly<{
|
|
185
|
+
readonly paddingInline: stylex.StyleXClassNameFor<"paddingInline", string>;
|
|
186
|
+
}>;
|
|
187
|
+
readonly xl: Readonly<{
|
|
188
|
+
readonly paddingInline: stylex.StyleXClassNameFor<"paddingInline", string>;
|
|
189
|
+
}>;
|
|
190
|
+
readonly '2xl': Readonly<{
|
|
191
|
+
readonly paddingInline: stylex.StyleXClassNameFor<"paddingInline", string>;
|
|
192
|
+
}>;
|
|
193
|
+
readonly '3xl': Readonly<{
|
|
194
|
+
readonly paddingInline: stylex.StyleXClassNameFor<"paddingInline", string>;
|
|
195
|
+
}>;
|
|
196
|
+
readonly '4xl': Readonly<{
|
|
197
|
+
readonly paddingInline: stylex.StyleXClassNameFor<"paddingInline", string>;
|
|
198
|
+
}>;
|
|
199
|
+
readonly '5xl': Readonly<{
|
|
200
|
+
readonly paddingInline: stylex.StyleXClassNameFor<"paddingInline", string>;
|
|
201
|
+
}>;
|
|
202
|
+
}>;
|
|
203
|
+
export declare const paddingBlockStyles: Readonly<{
|
|
204
|
+
readonly none: Readonly<{
|
|
205
|
+
readonly paddingBlock: stylex.StyleXClassNameFor<"paddingBlock", string>;
|
|
206
|
+
}>;
|
|
207
|
+
readonly xs: Readonly<{
|
|
208
|
+
readonly paddingBlock: stylex.StyleXClassNameFor<"paddingBlock", string>;
|
|
209
|
+
}>;
|
|
210
|
+
readonly s: Readonly<{
|
|
211
|
+
readonly paddingBlock: stylex.StyleXClassNameFor<"paddingBlock", string>;
|
|
212
|
+
}>;
|
|
213
|
+
readonly m: Readonly<{
|
|
214
|
+
readonly paddingBlock: stylex.StyleXClassNameFor<"paddingBlock", string>;
|
|
215
|
+
}>;
|
|
216
|
+
readonly l: Readonly<{
|
|
217
|
+
readonly paddingBlock: stylex.StyleXClassNameFor<"paddingBlock", string>;
|
|
218
|
+
}>;
|
|
219
|
+
readonly xl: Readonly<{
|
|
220
|
+
readonly paddingBlock: stylex.StyleXClassNameFor<"paddingBlock", string>;
|
|
221
|
+
}>;
|
|
222
|
+
readonly '2xl': Readonly<{
|
|
223
|
+
readonly paddingBlock: stylex.StyleXClassNameFor<"paddingBlock", string>;
|
|
224
|
+
}>;
|
|
225
|
+
readonly '3xl': Readonly<{
|
|
226
|
+
readonly paddingBlock: stylex.StyleXClassNameFor<"paddingBlock", string>;
|
|
227
|
+
}>;
|
|
228
|
+
readonly '4xl': Readonly<{
|
|
229
|
+
readonly paddingBlock: stylex.StyleXClassNameFor<"paddingBlock", string>;
|
|
230
|
+
}>;
|
|
231
|
+
readonly '5xl': Readonly<{
|
|
232
|
+
readonly paddingBlock: stylex.StyleXClassNameFor<"paddingBlock", string>;
|
|
233
|
+
}>;
|
|
234
|
+
}>;
|
|
235
|
+
export declare const marginStyles: Readonly<{
|
|
236
|
+
readonly none: Readonly<{
|
|
237
|
+
readonly margin: stylex.StyleXClassNameFor<"margin", string>;
|
|
238
|
+
}>;
|
|
239
|
+
readonly xs: Readonly<{
|
|
240
|
+
readonly margin: stylex.StyleXClassNameFor<"margin", string>;
|
|
241
|
+
}>;
|
|
242
|
+
readonly s: Readonly<{
|
|
243
|
+
readonly margin: stylex.StyleXClassNameFor<"margin", string>;
|
|
244
|
+
}>;
|
|
245
|
+
readonly m: Readonly<{
|
|
246
|
+
readonly margin: stylex.StyleXClassNameFor<"margin", string>;
|
|
247
|
+
}>;
|
|
248
|
+
readonly l: Readonly<{
|
|
249
|
+
readonly margin: stylex.StyleXClassNameFor<"margin", string>;
|
|
250
|
+
}>;
|
|
251
|
+
readonly xl: Readonly<{
|
|
252
|
+
readonly margin: stylex.StyleXClassNameFor<"margin", string>;
|
|
253
|
+
}>;
|
|
254
|
+
readonly '2xl': Readonly<{
|
|
255
|
+
readonly margin: stylex.StyleXClassNameFor<"margin", string>;
|
|
256
|
+
}>;
|
|
257
|
+
readonly '3xl': Readonly<{
|
|
258
|
+
readonly margin: stylex.StyleXClassNameFor<"margin", string>;
|
|
259
|
+
}>;
|
|
260
|
+
readonly '4xl': Readonly<{
|
|
261
|
+
readonly margin: stylex.StyleXClassNameFor<"margin", string>;
|
|
262
|
+
}>;
|
|
263
|
+
readonly '5xl': Readonly<{
|
|
264
|
+
readonly margin: stylex.StyleXClassNameFor<"margin", string>;
|
|
265
|
+
}>;
|
|
266
|
+
readonly auto: Readonly<{
|
|
267
|
+
readonly margin: stylex.StyleXClassNameFor<"margin", "auto">;
|
|
268
|
+
}>;
|
|
269
|
+
}>;
|
|
270
|
+
export declare const marginTopStyles: Readonly<{
|
|
271
|
+
readonly none: Readonly<{
|
|
272
|
+
readonly marginTop: stylex.StyleXClassNameFor<"marginTop", string>;
|
|
273
|
+
}>;
|
|
274
|
+
readonly xs: Readonly<{
|
|
275
|
+
readonly marginTop: stylex.StyleXClassNameFor<"marginTop", string>;
|
|
276
|
+
}>;
|
|
277
|
+
readonly s: Readonly<{
|
|
278
|
+
readonly marginTop: stylex.StyleXClassNameFor<"marginTop", string>;
|
|
279
|
+
}>;
|
|
280
|
+
readonly m: Readonly<{
|
|
281
|
+
readonly marginTop: stylex.StyleXClassNameFor<"marginTop", string>;
|
|
282
|
+
}>;
|
|
283
|
+
readonly l: Readonly<{
|
|
284
|
+
readonly marginTop: stylex.StyleXClassNameFor<"marginTop", string>;
|
|
285
|
+
}>;
|
|
286
|
+
readonly xl: Readonly<{
|
|
287
|
+
readonly marginTop: stylex.StyleXClassNameFor<"marginTop", string>;
|
|
288
|
+
}>;
|
|
289
|
+
readonly '2xl': Readonly<{
|
|
290
|
+
readonly marginTop: stylex.StyleXClassNameFor<"marginTop", string>;
|
|
291
|
+
}>;
|
|
292
|
+
readonly '3xl': Readonly<{
|
|
293
|
+
readonly marginTop: stylex.StyleXClassNameFor<"marginTop", string>;
|
|
294
|
+
}>;
|
|
295
|
+
readonly '4xl': Readonly<{
|
|
296
|
+
readonly marginTop: stylex.StyleXClassNameFor<"marginTop", string>;
|
|
297
|
+
}>;
|
|
298
|
+
readonly '5xl': Readonly<{
|
|
299
|
+
readonly marginTop: stylex.StyleXClassNameFor<"marginTop", string>;
|
|
300
|
+
}>;
|
|
301
|
+
readonly auto: Readonly<{
|
|
302
|
+
readonly marginTop: stylex.StyleXClassNameFor<"marginTop", "auto">;
|
|
303
|
+
}>;
|
|
304
|
+
}>;
|
|
305
|
+
export declare const marginRightStyles: Readonly<{
|
|
306
|
+
readonly none: Readonly<{
|
|
307
|
+
readonly marginRight: stylex.StyleXClassNameFor<"marginRight", string>;
|
|
308
|
+
}>;
|
|
309
|
+
readonly xs: Readonly<{
|
|
310
|
+
readonly marginRight: stylex.StyleXClassNameFor<"marginRight", string>;
|
|
311
|
+
}>;
|
|
312
|
+
readonly s: Readonly<{
|
|
313
|
+
readonly marginRight: stylex.StyleXClassNameFor<"marginRight", string>;
|
|
314
|
+
}>;
|
|
315
|
+
readonly m: Readonly<{
|
|
316
|
+
readonly marginRight: stylex.StyleXClassNameFor<"marginRight", string>;
|
|
317
|
+
}>;
|
|
318
|
+
readonly l: Readonly<{
|
|
319
|
+
readonly marginRight: stylex.StyleXClassNameFor<"marginRight", string>;
|
|
320
|
+
}>;
|
|
321
|
+
readonly xl: Readonly<{
|
|
322
|
+
readonly marginRight: stylex.StyleXClassNameFor<"marginRight", string>;
|
|
323
|
+
}>;
|
|
324
|
+
readonly '2xl': Readonly<{
|
|
325
|
+
readonly marginRight: stylex.StyleXClassNameFor<"marginRight", string>;
|
|
326
|
+
}>;
|
|
327
|
+
readonly '3xl': Readonly<{
|
|
328
|
+
readonly marginRight: stylex.StyleXClassNameFor<"marginRight", string>;
|
|
329
|
+
}>;
|
|
330
|
+
readonly '4xl': Readonly<{
|
|
331
|
+
readonly marginRight: stylex.StyleXClassNameFor<"marginRight", string>;
|
|
332
|
+
}>;
|
|
333
|
+
readonly '5xl': Readonly<{
|
|
334
|
+
readonly marginRight: stylex.StyleXClassNameFor<"marginRight", string>;
|
|
335
|
+
}>;
|
|
336
|
+
readonly auto: Readonly<{
|
|
337
|
+
readonly marginRight: stylex.StyleXClassNameFor<"marginRight", "auto">;
|
|
338
|
+
}>;
|
|
339
|
+
}>;
|
|
340
|
+
export declare const marginBottomStyles: Readonly<{
|
|
341
|
+
readonly none: Readonly<{
|
|
342
|
+
readonly marginBottom: stylex.StyleXClassNameFor<"marginBottom", string>;
|
|
343
|
+
}>;
|
|
344
|
+
readonly xs: Readonly<{
|
|
345
|
+
readonly marginBottom: stylex.StyleXClassNameFor<"marginBottom", string>;
|
|
346
|
+
}>;
|
|
347
|
+
readonly s: Readonly<{
|
|
348
|
+
readonly marginBottom: stylex.StyleXClassNameFor<"marginBottom", string>;
|
|
349
|
+
}>;
|
|
350
|
+
readonly m: Readonly<{
|
|
351
|
+
readonly marginBottom: stylex.StyleXClassNameFor<"marginBottom", string>;
|
|
352
|
+
}>;
|
|
353
|
+
readonly l: Readonly<{
|
|
354
|
+
readonly marginBottom: stylex.StyleXClassNameFor<"marginBottom", string>;
|
|
355
|
+
}>;
|
|
356
|
+
readonly xl: Readonly<{
|
|
357
|
+
readonly marginBottom: stylex.StyleXClassNameFor<"marginBottom", string>;
|
|
358
|
+
}>;
|
|
359
|
+
readonly '2xl': Readonly<{
|
|
360
|
+
readonly marginBottom: stylex.StyleXClassNameFor<"marginBottom", string>;
|
|
361
|
+
}>;
|
|
362
|
+
readonly '3xl': Readonly<{
|
|
363
|
+
readonly marginBottom: stylex.StyleXClassNameFor<"marginBottom", string>;
|
|
364
|
+
}>;
|
|
365
|
+
readonly '4xl': Readonly<{
|
|
366
|
+
readonly marginBottom: stylex.StyleXClassNameFor<"marginBottom", string>;
|
|
367
|
+
}>;
|
|
368
|
+
readonly '5xl': Readonly<{
|
|
369
|
+
readonly marginBottom: stylex.StyleXClassNameFor<"marginBottom", string>;
|
|
370
|
+
}>;
|
|
371
|
+
readonly auto: Readonly<{
|
|
372
|
+
readonly marginBottom: stylex.StyleXClassNameFor<"marginBottom", "auto">;
|
|
373
|
+
}>;
|
|
374
|
+
}>;
|
|
375
|
+
export declare const marginLeftStyles: Readonly<{
|
|
376
|
+
readonly none: Readonly<{
|
|
377
|
+
readonly marginLeft: stylex.StyleXClassNameFor<"marginLeft", string>;
|
|
378
|
+
}>;
|
|
379
|
+
readonly xs: Readonly<{
|
|
380
|
+
readonly marginLeft: stylex.StyleXClassNameFor<"marginLeft", string>;
|
|
381
|
+
}>;
|
|
382
|
+
readonly s: Readonly<{
|
|
383
|
+
readonly marginLeft: stylex.StyleXClassNameFor<"marginLeft", string>;
|
|
384
|
+
}>;
|
|
385
|
+
readonly m: Readonly<{
|
|
386
|
+
readonly marginLeft: stylex.StyleXClassNameFor<"marginLeft", string>;
|
|
387
|
+
}>;
|
|
388
|
+
readonly l: Readonly<{
|
|
389
|
+
readonly marginLeft: stylex.StyleXClassNameFor<"marginLeft", string>;
|
|
390
|
+
}>;
|
|
391
|
+
readonly xl: Readonly<{
|
|
392
|
+
readonly marginLeft: stylex.StyleXClassNameFor<"marginLeft", string>;
|
|
393
|
+
}>;
|
|
394
|
+
readonly '2xl': Readonly<{
|
|
395
|
+
readonly marginLeft: stylex.StyleXClassNameFor<"marginLeft", string>;
|
|
396
|
+
}>;
|
|
397
|
+
readonly '3xl': Readonly<{
|
|
398
|
+
readonly marginLeft: stylex.StyleXClassNameFor<"marginLeft", string>;
|
|
399
|
+
}>;
|
|
400
|
+
readonly '4xl': Readonly<{
|
|
401
|
+
readonly marginLeft: stylex.StyleXClassNameFor<"marginLeft", string>;
|
|
402
|
+
}>;
|
|
403
|
+
readonly '5xl': Readonly<{
|
|
404
|
+
readonly marginLeft: stylex.StyleXClassNameFor<"marginLeft", string>;
|
|
405
|
+
}>;
|
|
406
|
+
readonly auto: Readonly<{
|
|
407
|
+
readonly marginLeft: stylex.StyleXClassNameFor<"marginLeft", "auto">;
|
|
408
|
+
}>;
|
|
409
|
+
}>;
|
|
410
|
+
export declare const marginInlineStyles: Readonly<{
|
|
411
|
+
readonly none: Readonly<{
|
|
412
|
+
readonly marginInline: stylex.StyleXClassNameFor<"marginInline", string>;
|
|
413
|
+
}>;
|
|
414
|
+
readonly xs: Readonly<{
|
|
415
|
+
readonly marginInline: stylex.StyleXClassNameFor<"marginInline", string>;
|
|
416
|
+
}>;
|
|
417
|
+
readonly s: Readonly<{
|
|
418
|
+
readonly marginInline: stylex.StyleXClassNameFor<"marginInline", string>;
|
|
419
|
+
}>;
|
|
420
|
+
readonly m: Readonly<{
|
|
421
|
+
readonly marginInline: stylex.StyleXClassNameFor<"marginInline", string>;
|
|
422
|
+
}>;
|
|
423
|
+
readonly l: Readonly<{
|
|
424
|
+
readonly marginInline: stylex.StyleXClassNameFor<"marginInline", string>;
|
|
425
|
+
}>;
|
|
426
|
+
readonly xl: Readonly<{
|
|
427
|
+
readonly marginInline: stylex.StyleXClassNameFor<"marginInline", string>;
|
|
428
|
+
}>;
|
|
429
|
+
readonly '2xl': Readonly<{
|
|
430
|
+
readonly marginInline: stylex.StyleXClassNameFor<"marginInline", string>;
|
|
431
|
+
}>;
|
|
432
|
+
readonly '3xl': Readonly<{
|
|
433
|
+
readonly marginInline: stylex.StyleXClassNameFor<"marginInline", string>;
|
|
434
|
+
}>;
|
|
435
|
+
readonly '4xl': Readonly<{
|
|
436
|
+
readonly marginInline: stylex.StyleXClassNameFor<"marginInline", string>;
|
|
437
|
+
}>;
|
|
438
|
+
readonly '5xl': Readonly<{
|
|
439
|
+
readonly marginInline: stylex.StyleXClassNameFor<"marginInline", string>;
|
|
440
|
+
}>;
|
|
441
|
+
readonly auto: Readonly<{
|
|
442
|
+
readonly marginInline: stylex.StyleXClassNameFor<"marginInline", "auto">;
|
|
443
|
+
}>;
|
|
444
|
+
}>;
|
|
445
|
+
export declare const marginBlockStyles: Readonly<{
|
|
446
|
+
readonly none: Readonly<{
|
|
447
|
+
readonly marginBlock: stylex.StyleXClassNameFor<"marginBlock", string>;
|
|
448
|
+
}>;
|
|
449
|
+
readonly xs: Readonly<{
|
|
450
|
+
readonly marginBlock: stylex.StyleXClassNameFor<"marginBlock", string>;
|
|
451
|
+
}>;
|
|
452
|
+
readonly s: Readonly<{
|
|
453
|
+
readonly marginBlock: stylex.StyleXClassNameFor<"marginBlock", string>;
|
|
454
|
+
}>;
|
|
455
|
+
readonly m: Readonly<{
|
|
456
|
+
readonly marginBlock: stylex.StyleXClassNameFor<"marginBlock", string>;
|
|
457
|
+
}>;
|
|
458
|
+
readonly l: Readonly<{
|
|
459
|
+
readonly marginBlock: stylex.StyleXClassNameFor<"marginBlock", string>;
|
|
460
|
+
}>;
|
|
461
|
+
readonly xl: Readonly<{
|
|
462
|
+
readonly marginBlock: stylex.StyleXClassNameFor<"marginBlock", string>;
|
|
463
|
+
}>;
|
|
464
|
+
readonly '2xl': Readonly<{
|
|
465
|
+
readonly marginBlock: stylex.StyleXClassNameFor<"marginBlock", string>;
|
|
466
|
+
}>;
|
|
467
|
+
readonly '3xl': Readonly<{
|
|
468
|
+
readonly marginBlock: stylex.StyleXClassNameFor<"marginBlock", string>;
|
|
469
|
+
}>;
|
|
470
|
+
readonly '4xl': Readonly<{
|
|
471
|
+
readonly marginBlock: stylex.StyleXClassNameFor<"marginBlock", string>;
|
|
472
|
+
}>;
|
|
473
|
+
readonly '5xl': Readonly<{
|
|
474
|
+
readonly marginBlock: stylex.StyleXClassNameFor<"marginBlock", string>;
|
|
475
|
+
}>;
|
|
476
|
+
readonly auto: Readonly<{
|
|
477
|
+
readonly marginBlock: stylex.StyleXClassNameFor<"marginBlock", "auto">;
|
|
478
|
+
}>;
|
|
479
|
+
}>;
|
|
480
|
+
export declare const gapStyles: Readonly<{
|
|
481
|
+
readonly none: Readonly<{
|
|
482
|
+
readonly gap: stylex.StyleXClassNameFor<"gap", string>;
|
|
483
|
+
}>;
|
|
484
|
+
readonly xs: Readonly<{
|
|
485
|
+
readonly gap: stylex.StyleXClassNameFor<"gap", string>;
|
|
486
|
+
}>;
|
|
487
|
+
readonly s: Readonly<{
|
|
488
|
+
readonly gap: stylex.StyleXClassNameFor<"gap", string>;
|
|
489
|
+
}>;
|
|
490
|
+
readonly m: Readonly<{
|
|
491
|
+
readonly gap: stylex.StyleXClassNameFor<"gap", string>;
|
|
492
|
+
}>;
|
|
493
|
+
readonly l: Readonly<{
|
|
494
|
+
readonly gap: stylex.StyleXClassNameFor<"gap", string>;
|
|
495
|
+
}>;
|
|
496
|
+
readonly xl: Readonly<{
|
|
497
|
+
readonly gap: stylex.StyleXClassNameFor<"gap", string>;
|
|
498
|
+
}>;
|
|
499
|
+
readonly '2xl': Readonly<{
|
|
500
|
+
readonly gap: stylex.StyleXClassNameFor<"gap", string>;
|
|
501
|
+
}>;
|
|
502
|
+
readonly '3xl': Readonly<{
|
|
503
|
+
readonly gap: stylex.StyleXClassNameFor<"gap", string>;
|
|
504
|
+
}>;
|
|
505
|
+
readonly '4xl': Readonly<{
|
|
506
|
+
readonly gap: stylex.StyleXClassNameFor<"gap", string>;
|
|
507
|
+
}>;
|
|
508
|
+
readonly '5xl': Readonly<{
|
|
509
|
+
readonly gap: stylex.StyleXClassNameFor<"gap", string>;
|
|
510
|
+
}>;
|
|
511
|
+
}>;
|
|
512
|
+
export declare const rowGapStyles: Readonly<{
|
|
513
|
+
readonly none: Readonly<{
|
|
514
|
+
readonly rowGap: stylex.StyleXClassNameFor<"rowGap", string>;
|
|
515
|
+
}>;
|
|
516
|
+
readonly xs: Readonly<{
|
|
517
|
+
readonly rowGap: stylex.StyleXClassNameFor<"rowGap", string>;
|
|
518
|
+
}>;
|
|
519
|
+
readonly s: Readonly<{
|
|
520
|
+
readonly rowGap: stylex.StyleXClassNameFor<"rowGap", string>;
|
|
521
|
+
}>;
|
|
522
|
+
readonly m: Readonly<{
|
|
523
|
+
readonly rowGap: stylex.StyleXClassNameFor<"rowGap", string>;
|
|
524
|
+
}>;
|
|
525
|
+
readonly l: Readonly<{
|
|
526
|
+
readonly rowGap: stylex.StyleXClassNameFor<"rowGap", string>;
|
|
527
|
+
}>;
|
|
528
|
+
readonly xl: Readonly<{
|
|
529
|
+
readonly rowGap: stylex.StyleXClassNameFor<"rowGap", string>;
|
|
530
|
+
}>;
|
|
531
|
+
readonly '2xl': Readonly<{
|
|
532
|
+
readonly rowGap: stylex.StyleXClassNameFor<"rowGap", string>;
|
|
533
|
+
}>;
|
|
534
|
+
readonly '3xl': Readonly<{
|
|
535
|
+
readonly rowGap: stylex.StyleXClassNameFor<"rowGap", string>;
|
|
536
|
+
}>;
|
|
537
|
+
readonly '4xl': Readonly<{
|
|
538
|
+
readonly rowGap: stylex.StyleXClassNameFor<"rowGap", string>;
|
|
539
|
+
}>;
|
|
540
|
+
readonly '5xl': Readonly<{
|
|
541
|
+
readonly rowGap: stylex.StyleXClassNameFor<"rowGap", string>;
|
|
542
|
+
}>;
|
|
543
|
+
}>;
|
|
544
|
+
export declare const columnGapStyles: Readonly<{
|
|
545
|
+
readonly none: Readonly<{
|
|
546
|
+
readonly columnGap: stylex.StyleXClassNameFor<"columnGap", string>;
|
|
547
|
+
}>;
|
|
548
|
+
readonly xs: Readonly<{
|
|
549
|
+
readonly columnGap: stylex.StyleXClassNameFor<"columnGap", string>;
|
|
550
|
+
}>;
|
|
551
|
+
readonly s: Readonly<{
|
|
552
|
+
readonly columnGap: stylex.StyleXClassNameFor<"columnGap", string>;
|
|
553
|
+
}>;
|
|
554
|
+
readonly m: Readonly<{
|
|
555
|
+
readonly columnGap: stylex.StyleXClassNameFor<"columnGap", string>;
|
|
556
|
+
}>;
|
|
557
|
+
readonly l: Readonly<{
|
|
558
|
+
readonly columnGap: stylex.StyleXClassNameFor<"columnGap", string>;
|
|
559
|
+
}>;
|
|
560
|
+
readonly xl: Readonly<{
|
|
561
|
+
readonly columnGap: stylex.StyleXClassNameFor<"columnGap", string>;
|
|
562
|
+
}>;
|
|
563
|
+
readonly '2xl': Readonly<{
|
|
564
|
+
readonly columnGap: stylex.StyleXClassNameFor<"columnGap", string>;
|
|
565
|
+
}>;
|
|
566
|
+
readonly '3xl': Readonly<{
|
|
567
|
+
readonly columnGap: stylex.StyleXClassNameFor<"columnGap", string>;
|
|
568
|
+
}>;
|
|
569
|
+
readonly '4xl': Readonly<{
|
|
570
|
+
readonly columnGap: stylex.StyleXClassNameFor<"columnGap", string>;
|
|
571
|
+
}>;
|
|
572
|
+
readonly '5xl': Readonly<{
|
|
573
|
+
readonly columnGap: stylex.StyleXClassNameFor<"columnGap", string>;
|
|
574
|
+
}>;
|
|
575
|
+
}>;
|
|
576
|
+
export declare const backgroundColorStyles: Readonly<{
|
|
577
|
+
readonly 'background-primary': Readonly<{
|
|
578
|
+
readonly backgroundColor: stylex.StyleXClassNameFor<"backgroundColor", string>;
|
|
579
|
+
}>;
|
|
580
|
+
readonly 'background-secondary': Readonly<{
|
|
581
|
+
readonly backgroundColor: stylex.StyleXClassNameFor<"backgroundColor", string>;
|
|
582
|
+
}>;
|
|
583
|
+
readonly 'background-card': Readonly<{
|
|
584
|
+
readonly backgroundColor: stylex.StyleXClassNameFor<"backgroundColor", string>;
|
|
585
|
+
}>;
|
|
586
|
+
readonly 'background-inverse': Readonly<{
|
|
587
|
+
readonly backgroundColor: stylex.StyleXClassNameFor<"backgroundColor", string>;
|
|
588
|
+
}>;
|
|
589
|
+
readonly 'background-warning': Readonly<{
|
|
590
|
+
readonly backgroundColor: stylex.StyleXClassNameFor<"backgroundColor", string>;
|
|
591
|
+
}>;
|
|
592
|
+
readonly 'background-success': Readonly<{
|
|
593
|
+
readonly backgroundColor: stylex.StyleXClassNameFor<"backgroundColor", string>;
|
|
594
|
+
}>;
|
|
595
|
+
readonly 'background-danger': Readonly<{
|
|
596
|
+
readonly backgroundColor: stylex.StyleXClassNameFor<"backgroundColor", string>;
|
|
597
|
+
}>;
|
|
598
|
+
readonly 'background-pending': Readonly<{
|
|
599
|
+
readonly backgroundColor: stylex.StyleXClassNameFor<"backgroundColor", string>;
|
|
600
|
+
}>;
|
|
601
|
+
}>;
|
|
602
|
+
export declare const colorStyles: Readonly<{
|
|
603
|
+
readonly 'text-primary': Readonly<{
|
|
604
|
+
readonly color: stylex.StyleXClassNameFor<"color", string>;
|
|
605
|
+
}>;
|
|
606
|
+
readonly 'text-secondary': Readonly<{
|
|
607
|
+
readonly color: stylex.StyleXClassNameFor<"color", string>;
|
|
608
|
+
}>;
|
|
609
|
+
readonly 'text-tertiary': Readonly<{
|
|
610
|
+
readonly color: stylex.StyleXClassNameFor<"color", string>;
|
|
611
|
+
}>;
|
|
612
|
+
readonly 'text-success': Readonly<{
|
|
613
|
+
readonly color: stylex.StyleXClassNameFor<"color", string>;
|
|
614
|
+
}>;
|
|
615
|
+
readonly 'text-danger': Readonly<{
|
|
616
|
+
readonly color: stylex.StyleXClassNameFor<"color", string>;
|
|
617
|
+
}>;
|
|
618
|
+
readonly 'text-warning': Readonly<{
|
|
619
|
+
readonly color: stylex.StyleXClassNameFor<"color", string>;
|
|
620
|
+
}>;
|
|
621
|
+
readonly 'text-pending': Readonly<{
|
|
622
|
+
readonly color: stylex.StyleXClassNameFor<"color", string>;
|
|
623
|
+
}>;
|
|
624
|
+
}>;
|
|
625
|
+
export declare const borderColorStyles: Readonly<{
|
|
626
|
+
readonly 'border-primary': Readonly<{
|
|
627
|
+
readonly borderColor: stylex.StyleXClassNameFor<"borderColor", string>;
|
|
628
|
+
}>;
|
|
629
|
+
readonly 'border-secondary': Readonly<{
|
|
630
|
+
readonly borderColor: stylex.StyleXClassNameFor<"borderColor", string>;
|
|
631
|
+
}>;
|
|
632
|
+
readonly 'border-warning': Readonly<{
|
|
633
|
+
readonly borderColor: stylex.StyleXClassNameFor<"borderColor", string>;
|
|
634
|
+
}>;
|
|
635
|
+
}>;
|
|
636
|
+
export declare const borderRadiusStyles: Readonly<{
|
|
637
|
+
readonly none: Readonly<{
|
|
638
|
+
readonly borderRadius: stylex.StyleXClassNameFor<"borderRadius", string>;
|
|
639
|
+
}>;
|
|
640
|
+
readonly s: Readonly<{
|
|
641
|
+
readonly borderRadius: stylex.StyleXClassNameFor<"borderRadius", string>;
|
|
642
|
+
}>;
|
|
643
|
+
readonly m: Readonly<{
|
|
644
|
+
readonly borderRadius: stylex.StyleXClassNameFor<"borderRadius", string>;
|
|
645
|
+
}>;
|
|
646
|
+
readonly l: Readonly<{
|
|
647
|
+
readonly borderRadius: stylex.StyleXClassNameFor<"borderRadius", string>;
|
|
648
|
+
}>;
|
|
649
|
+
readonly xl: Readonly<{
|
|
650
|
+
readonly borderRadius: stylex.StyleXClassNameFor<"borderRadius", string>;
|
|
651
|
+
}>;
|
|
652
|
+
readonly full: Readonly<{
|
|
653
|
+
readonly borderRadius: stylex.StyleXClassNameFor<"borderRadius", string>;
|
|
654
|
+
}>;
|
|
655
|
+
}>;
|
|
656
|
+
export declare const borderTopLeftRadiusStyles: Readonly<{
|
|
657
|
+
readonly none: Readonly<{
|
|
658
|
+
readonly borderTopLeftRadius: stylex.StyleXClassNameFor<"borderTopLeftRadius", string>;
|
|
659
|
+
}>;
|
|
660
|
+
readonly s: Readonly<{
|
|
661
|
+
readonly borderTopLeftRadius: stylex.StyleXClassNameFor<"borderTopLeftRadius", string>;
|
|
662
|
+
}>;
|
|
663
|
+
readonly m: Readonly<{
|
|
664
|
+
readonly borderTopLeftRadius: stylex.StyleXClassNameFor<"borderTopLeftRadius", string>;
|
|
665
|
+
}>;
|
|
666
|
+
readonly l: Readonly<{
|
|
667
|
+
readonly borderTopLeftRadius: stylex.StyleXClassNameFor<"borderTopLeftRadius", string>;
|
|
668
|
+
}>;
|
|
669
|
+
readonly xl: Readonly<{
|
|
670
|
+
readonly borderTopLeftRadius: stylex.StyleXClassNameFor<"borderTopLeftRadius", string>;
|
|
671
|
+
}>;
|
|
672
|
+
readonly full: Readonly<{
|
|
673
|
+
readonly borderTopLeftRadius: stylex.StyleXClassNameFor<"borderTopLeftRadius", string>;
|
|
674
|
+
}>;
|
|
675
|
+
}>;
|
|
676
|
+
export declare const borderTopRightRadiusStyles: Readonly<{
|
|
677
|
+
readonly none: Readonly<{
|
|
678
|
+
readonly borderTopRightRadius: stylex.StyleXClassNameFor<"borderTopRightRadius", string>;
|
|
679
|
+
}>;
|
|
680
|
+
readonly s: Readonly<{
|
|
681
|
+
readonly borderTopRightRadius: stylex.StyleXClassNameFor<"borderTopRightRadius", string>;
|
|
682
|
+
}>;
|
|
683
|
+
readonly m: Readonly<{
|
|
684
|
+
readonly borderTopRightRadius: stylex.StyleXClassNameFor<"borderTopRightRadius", string>;
|
|
685
|
+
}>;
|
|
686
|
+
readonly l: Readonly<{
|
|
687
|
+
readonly borderTopRightRadius: stylex.StyleXClassNameFor<"borderTopRightRadius", string>;
|
|
688
|
+
}>;
|
|
689
|
+
readonly xl: Readonly<{
|
|
690
|
+
readonly borderTopRightRadius: stylex.StyleXClassNameFor<"borderTopRightRadius", string>;
|
|
691
|
+
}>;
|
|
692
|
+
readonly full: Readonly<{
|
|
693
|
+
readonly borderTopRightRadius: stylex.StyleXClassNameFor<"borderTopRightRadius", string>;
|
|
694
|
+
}>;
|
|
695
|
+
}>;
|
|
696
|
+
export declare const borderBottomLeftRadiusStyles: Readonly<{
|
|
697
|
+
readonly none: Readonly<{
|
|
698
|
+
readonly borderBottomLeftRadius: stylex.StyleXClassNameFor<"borderBottomLeftRadius", string>;
|
|
699
|
+
}>;
|
|
700
|
+
readonly s: Readonly<{
|
|
701
|
+
readonly borderBottomLeftRadius: stylex.StyleXClassNameFor<"borderBottomLeftRadius", string>;
|
|
702
|
+
}>;
|
|
703
|
+
readonly m: Readonly<{
|
|
704
|
+
readonly borderBottomLeftRadius: stylex.StyleXClassNameFor<"borderBottomLeftRadius", string>;
|
|
705
|
+
}>;
|
|
706
|
+
readonly l: Readonly<{
|
|
707
|
+
readonly borderBottomLeftRadius: stylex.StyleXClassNameFor<"borderBottomLeftRadius", string>;
|
|
708
|
+
}>;
|
|
709
|
+
readonly xl: Readonly<{
|
|
710
|
+
readonly borderBottomLeftRadius: stylex.StyleXClassNameFor<"borderBottomLeftRadius", string>;
|
|
711
|
+
}>;
|
|
712
|
+
readonly full: Readonly<{
|
|
713
|
+
readonly borderBottomLeftRadius: stylex.StyleXClassNameFor<"borderBottomLeftRadius", string>;
|
|
714
|
+
}>;
|
|
715
|
+
}>;
|
|
716
|
+
export declare const borderBottomRightRadiusStyles: Readonly<{
|
|
717
|
+
readonly none: Readonly<{
|
|
718
|
+
readonly borderBottomRightRadius: stylex.StyleXClassNameFor<"borderBottomRightRadius", string>;
|
|
719
|
+
}>;
|
|
720
|
+
readonly s: Readonly<{
|
|
721
|
+
readonly borderBottomRightRadius: stylex.StyleXClassNameFor<"borderBottomRightRadius", string>;
|
|
722
|
+
}>;
|
|
723
|
+
readonly m: Readonly<{
|
|
724
|
+
readonly borderBottomRightRadius: stylex.StyleXClassNameFor<"borderBottomRightRadius", string>;
|
|
725
|
+
}>;
|
|
726
|
+
readonly l: Readonly<{
|
|
727
|
+
readonly borderBottomRightRadius: stylex.StyleXClassNameFor<"borderBottomRightRadius", string>;
|
|
728
|
+
}>;
|
|
729
|
+
readonly xl: Readonly<{
|
|
730
|
+
readonly borderBottomRightRadius: stylex.StyleXClassNameFor<"borderBottomRightRadius", string>;
|
|
731
|
+
}>;
|
|
732
|
+
readonly full: Readonly<{
|
|
733
|
+
readonly borderBottomRightRadius: stylex.StyleXClassNameFor<"borderBottomRightRadius", string>;
|
|
734
|
+
}>;
|
|
735
|
+
}>;
|
|
736
|
+
export declare const boxShadowStyles: Readonly<{
|
|
737
|
+
readonly none: Readonly<{
|
|
738
|
+
readonly boxShadow: stylex.StyleXClassNameFor<"boxShadow", string>;
|
|
739
|
+
}>;
|
|
740
|
+
readonly s: Readonly<{
|
|
741
|
+
readonly boxShadow: stylex.StyleXClassNameFor<"boxShadow", string>;
|
|
742
|
+
}>;
|
|
743
|
+
readonly m: Readonly<{
|
|
744
|
+
readonly boxShadow: stylex.StyleXClassNameFor<"boxShadow", string>;
|
|
745
|
+
}>;
|
|
746
|
+
readonly l: Readonly<{
|
|
747
|
+
readonly boxShadow: stylex.StyleXClassNameFor<"boxShadow", string>;
|
|
748
|
+
}>;
|
|
749
|
+
readonly xl: Readonly<{
|
|
750
|
+
readonly boxShadow: stylex.StyleXClassNameFor<"boxShadow", string>;
|
|
751
|
+
}>;
|
|
752
|
+
}>;
|
|
753
|
+
export declare const displayStyles: Readonly<{
|
|
754
|
+
readonly flex: Readonly<{
|
|
755
|
+
readonly display: stylex.StyleXClassNameFor<"display", "flex">;
|
|
756
|
+
}>;
|
|
757
|
+
readonly grid: Readonly<{
|
|
758
|
+
readonly display: stylex.StyleXClassNameFor<"display", "grid">;
|
|
759
|
+
}>;
|
|
760
|
+
readonly block: Readonly<{
|
|
761
|
+
readonly display: stylex.StyleXClassNameFor<"display", "block">;
|
|
762
|
+
}>;
|
|
763
|
+
readonly inline: Readonly<{
|
|
764
|
+
readonly display: stylex.StyleXClassNameFor<"display", "inline">;
|
|
765
|
+
}>;
|
|
766
|
+
readonly 'inline-flex': Readonly<{
|
|
767
|
+
readonly display: stylex.StyleXClassNameFor<"display", "inline-flex">;
|
|
768
|
+
}>;
|
|
769
|
+
readonly 'inline-grid': Readonly<{
|
|
770
|
+
readonly display: stylex.StyleXClassNameFor<"display", "inline-grid">;
|
|
771
|
+
}>;
|
|
772
|
+
readonly 'inline-block': Readonly<{
|
|
773
|
+
readonly display: stylex.StyleXClassNameFor<"display", "inline-block">;
|
|
774
|
+
}>;
|
|
775
|
+
readonly none: Readonly<{
|
|
776
|
+
readonly display: stylex.StyleXClassNameFor<"display", "none">;
|
|
777
|
+
}>;
|
|
778
|
+
readonly contents: Readonly<{
|
|
779
|
+
readonly display: stylex.StyleXClassNameFor<"display", "contents">;
|
|
780
|
+
}>;
|
|
781
|
+
}>;
|
|
782
|
+
export declare const overflowStyles: Readonly<{
|
|
783
|
+
readonly hidden: Readonly<{
|
|
784
|
+
readonly overflow: stylex.StyleXClassNameFor<"overflow", "hidden">;
|
|
785
|
+
}>;
|
|
786
|
+
readonly auto: Readonly<{
|
|
787
|
+
readonly overflow: stylex.StyleXClassNameFor<"overflow", "auto">;
|
|
788
|
+
}>;
|
|
789
|
+
readonly scroll: Readonly<{
|
|
790
|
+
readonly overflow: stylex.StyleXClassNameFor<"overflow", "scroll">;
|
|
791
|
+
}>;
|
|
792
|
+
readonly visible: Readonly<{
|
|
793
|
+
readonly overflow: stylex.StyleXClassNameFor<"overflow", "visible">;
|
|
794
|
+
}>;
|
|
795
|
+
}>;
|
|
796
|
+
export declare const overflowXStyles: Readonly<{
|
|
797
|
+
readonly hidden: Readonly<{
|
|
798
|
+
readonly overflowX: stylex.StyleXClassNameFor<"overflowX", "hidden">;
|
|
799
|
+
}>;
|
|
800
|
+
readonly auto: Readonly<{
|
|
801
|
+
readonly overflowX: stylex.StyleXClassNameFor<"overflowX", "auto">;
|
|
802
|
+
}>;
|
|
803
|
+
readonly scroll: Readonly<{
|
|
804
|
+
readonly overflowX: stylex.StyleXClassNameFor<"overflowX", "scroll">;
|
|
805
|
+
}>;
|
|
806
|
+
readonly visible: Readonly<{
|
|
807
|
+
readonly overflowX: stylex.StyleXClassNameFor<"overflowX", "visible">;
|
|
808
|
+
}>;
|
|
809
|
+
}>;
|
|
810
|
+
export declare const overflowYStyles: Readonly<{
|
|
811
|
+
readonly hidden: Readonly<{
|
|
812
|
+
readonly overflowY: stylex.StyleXClassNameFor<"overflowY", "hidden">;
|
|
813
|
+
}>;
|
|
814
|
+
readonly auto: Readonly<{
|
|
815
|
+
readonly overflowY: stylex.StyleXClassNameFor<"overflowY", "auto">;
|
|
816
|
+
}>;
|
|
817
|
+
readonly scroll: Readonly<{
|
|
818
|
+
readonly overflowY: stylex.StyleXClassNameFor<"overflowY", "scroll">;
|
|
819
|
+
}>;
|
|
820
|
+
readonly visible: Readonly<{
|
|
821
|
+
readonly overflowY: stylex.StyleXClassNameFor<"overflowY", "visible">;
|
|
822
|
+
}>;
|
|
823
|
+
}>;
|
|
824
|
+
export declare const flexDirectionStyles: Readonly<{
|
|
825
|
+
readonly row: Readonly<{
|
|
826
|
+
readonly flexDirection: stylex.StyleXClassNameFor<"flexDirection", "row">;
|
|
827
|
+
}>;
|
|
828
|
+
readonly column: Readonly<{
|
|
829
|
+
readonly flexDirection: stylex.StyleXClassNameFor<"flexDirection", "column">;
|
|
830
|
+
}>;
|
|
831
|
+
readonly 'row-reverse': Readonly<{
|
|
832
|
+
readonly flexDirection: stylex.StyleXClassNameFor<"flexDirection", "row-reverse">;
|
|
833
|
+
}>;
|
|
834
|
+
readonly 'column-reverse': Readonly<{
|
|
835
|
+
readonly flexDirection: stylex.StyleXClassNameFor<"flexDirection", "column-reverse">;
|
|
836
|
+
}>;
|
|
837
|
+
}>;
|
|
838
|
+
export declare const flexWrapStyles: Readonly<{
|
|
839
|
+
readonly wrap: Readonly<{
|
|
840
|
+
readonly flexWrap: stylex.StyleXClassNameFor<"flexWrap", "wrap">;
|
|
841
|
+
}>;
|
|
842
|
+
readonly nowrap: Readonly<{
|
|
843
|
+
readonly flexWrap: stylex.StyleXClassNameFor<"flexWrap", "nowrap">;
|
|
844
|
+
}>;
|
|
845
|
+
readonly 'wrap-reverse': Readonly<{
|
|
846
|
+
readonly flexWrap: stylex.StyleXClassNameFor<"flexWrap", "wrap-reverse">;
|
|
847
|
+
}>;
|
|
848
|
+
}>;
|
|
849
|
+
export declare const alignItemsStyles: Readonly<{
|
|
850
|
+
readonly start: Readonly<{
|
|
851
|
+
readonly alignItems: stylex.StyleXClassNameFor<"alignItems", "flex-start">;
|
|
852
|
+
}>;
|
|
853
|
+
readonly end: Readonly<{
|
|
854
|
+
readonly alignItems: stylex.StyleXClassNameFor<"alignItems", "flex-end">;
|
|
855
|
+
}>;
|
|
856
|
+
readonly center: Readonly<{
|
|
857
|
+
readonly alignItems: stylex.StyleXClassNameFor<"alignItems", "center">;
|
|
858
|
+
}>;
|
|
859
|
+
readonly baseline: Readonly<{
|
|
860
|
+
readonly alignItems: stylex.StyleXClassNameFor<"alignItems", "baseline">;
|
|
861
|
+
}>;
|
|
862
|
+
readonly stretch: Readonly<{
|
|
863
|
+
readonly alignItems: stylex.StyleXClassNameFor<"alignItems", "stretch">;
|
|
864
|
+
}>;
|
|
865
|
+
}>;
|
|
866
|
+
export declare const alignSelfStyles: Readonly<{
|
|
867
|
+
readonly start: Readonly<{
|
|
868
|
+
readonly alignSelf: stylex.StyleXClassNameFor<"alignSelf", "flex-start">;
|
|
869
|
+
}>;
|
|
870
|
+
readonly end: Readonly<{
|
|
871
|
+
readonly alignSelf: stylex.StyleXClassNameFor<"alignSelf", "flex-end">;
|
|
872
|
+
}>;
|
|
873
|
+
readonly center: Readonly<{
|
|
874
|
+
readonly alignSelf: stylex.StyleXClassNameFor<"alignSelf", "center">;
|
|
875
|
+
}>;
|
|
876
|
+
readonly baseline: Readonly<{
|
|
877
|
+
readonly alignSelf: stylex.StyleXClassNameFor<"alignSelf", "baseline">;
|
|
878
|
+
}>;
|
|
879
|
+
readonly stretch: Readonly<{
|
|
880
|
+
readonly alignSelf: stylex.StyleXClassNameFor<"alignSelf", "stretch">;
|
|
881
|
+
}>;
|
|
882
|
+
readonly auto: Readonly<{
|
|
883
|
+
readonly alignSelf: stylex.StyleXClassNameFor<"alignSelf", "auto">;
|
|
884
|
+
}>;
|
|
885
|
+
}>;
|
|
886
|
+
export declare const justifyContentStyles: Readonly<{
|
|
887
|
+
readonly start: Readonly<{
|
|
888
|
+
readonly justifyContent: stylex.StyleXClassNameFor<"justifyContent", "flex-start">;
|
|
889
|
+
}>;
|
|
890
|
+
readonly end: Readonly<{
|
|
891
|
+
readonly justifyContent: stylex.StyleXClassNameFor<"justifyContent", "flex-end">;
|
|
892
|
+
}>;
|
|
893
|
+
readonly center: Readonly<{
|
|
894
|
+
readonly justifyContent: stylex.StyleXClassNameFor<"justifyContent", "center">;
|
|
895
|
+
}>;
|
|
896
|
+
readonly between: Readonly<{
|
|
897
|
+
readonly justifyContent: stylex.StyleXClassNameFor<"justifyContent", "space-between">;
|
|
898
|
+
}>;
|
|
899
|
+
readonly around: Readonly<{
|
|
900
|
+
readonly justifyContent: stylex.StyleXClassNameFor<"justifyContent", "space-around">;
|
|
901
|
+
}>;
|
|
902
|
+
readonly evenly: Readonly<{
|
|
903
|
+
readonly justifyContent: stylex.StyleXClassNameFor<"justifyContent", "space-evenly">;
|
|
904
|
+
}>;
|
|
905
|
+
}>;
|
|
906
|
+
export declare const alignContentStyles: Readonly<{
|
|
907
|
+
readonly start: Readonly<{
|
|
908
|
+
readonly alignContent: stylex.StyleXClassNameFor<"alignContent", "flex-start">;
|
|
909
|
+
}>;
|
|
910
|
+
readonly end: Readonly<{
|
|
911
|
+
readonly alignContent: stylex.StyleXClassNameFor<"alignContent", "flex-end">;
|
|
912
|
+
}>;
|
|
913
|
+
readonly center: Readonly<{
|
|
914
|
+
readonly alignContent: stylex.StyleXClassNameFor<"alignContent", "center">;
|
|
915
|
+
}>;
|
|
916
|
+
readonly between: Readonly<{
|
|
917
|
+
readonly alignContent: stylex.StyleXClassNameFor<"alignContent", "space-between">;
|
|
918
|
+
}>;
|
|
919
|
+
readonly around: Readonly<{
|
|
920
|
+
readonly alignContent: stylex.StyleXClassNameFor<"alignContent", "space-around">;
|
|
921
|
+
}>;
|
|
922
|
+
readonly evenly: Readonly<{
|
|
923
|
+
readonly alignContent: stylex.StyleXClassNameFor<"alignContent", "space-evenly">;
|
|
924
|
+
}>;
|
|
925
|
+
readonly stretch: Readonly<{
|
|
926
|
+
readonly alignContent: stylex.StyleXClassNameFor<"alignContent", "stretch">;
|
|
927
|
+
}>;
|
|
928
|
+
}>;
|
|
929
|
+
export declare const gridAutoFlowStyles: Readonly<{
|
|
930
|
+
readonly row: Readonly<{
|
|
931
|
+
readonly gridAutoFlow: stylex.StyleXClassNameFor<"gridAutoFlow", "row">;
|
|
932
|
+
}>;
|
|
933
|
+
readonly column: Readonly<{
|
|
934
|
+
readonly gridAutoFlow: stylex.StyleXClassNameFor<"gridAutoFlow", "column">;
|
|
935
|
+
}>;
|
|
936
|
+
readonly dense: Readonly<{
|
|
937
|
+
readonly gridAutoFlow: stylex.StyleXClassNameFor<"gridAutoFlow", "dense">;
|
|
938
|
+
}>;
|
|
939
|
+
readonly 'row-dense': Readonly<{
|
|
940
|
+
readonly gridAutoFlow: stylex.StyleXClassNameFor<"gridAutoFlow", "row dense">;
|
|
941
|
+
}>;
|
|
942
|
+
readonly 'column-dense': Readonly<{
|
|
943
|
+
readonly gridAutoFlow: stylex.StyleXClassNameFor<"gridAutoFlow", "column dense">;
|
|
944
|
+
}>;
|
|
945
|
+
}>;
|
|
946
|
+
export declare const positionStyles: Readonly<{
|
|
947
|
+
readonly relative: Readonly<{
|
|
948
|
+
readonly position: stylex.StyleXClassNameFor<"position", "relative">;
|
|
949
|
+
}>;
|
|
950
|
+
readonly absolute: Readonly<{
|
|
951
|
+
readonly position: stylex.StyleXClassNameFor<"position", "absolute">;
|
|
952
|
+
}>;
|
|
953
|
+
readonly fixed: Readonly<{
|
|
954
|
+
readonly position: stylex.StyleXClassNameFor<"position", "fixed">;
|
|
955
|
+
}>;
|
|
956
|
+
readonly sticky: Readonly<{
|
|
957
|
+
readonly position: stylex.StyleXClassNameFor<"position", "sticky">;
|
|
958
|
+
}>;
|
|
959
|
+
readonly static: Readonly<{
|
|
960
|
+
readonly position: stylex.StyleXClassNameFor<"position", "static">;
|
|
961
|
+
}>;
|
|
962
|
+
}>;
|
|
963
|
+
export declare const borderStyleStyles: Readonly<{
|
|
964
|
+
readonly solid: Readonly<{
|
|
965
|
+
readonly borderStyle: stylex.StyleXClassNameFor<"borderStyle", "solid">;
|
|
966
|
+
}>;
|
|
967
|
+
readonly dashed: Readonly<{
|
|
968
|
+
readonly borderStyle: stylex.StyleXClassNameFor<"borderStyle", "dashed">;
|
|
969
|
+
}>;
|
|
970
|
+
readonly dotted: Readonly<{
|
|
971
|
+
readonly borderStyle: stylex.StyleXClassNameFor<"borderStyle", "dotted">;
|
|
972
|
+
}>;
|
|
973
|
+
readonly none: Readonly<{
|
|
974
|
+
readonly borderStyle: stylex.StyleXClassNameFor<"borderStyle", "none">;
|
|
975
|
+
}>;
|
|
976
|
+
}>;
|
|
977
|
+
export declare const cursorStyles: Readonly<{
|
|
978
|
+
readonly pointer: Readonly<{
|
|
979
|
+
readonly cursor: stylex.StyleXClassNameFor<"cursor", "pointer">;
|
|
980
|
+
}>;
|
|
981
|
+
readonly default: Readonly<{
|
|
982
|
+
readonly cursor: stylex.StyleXClassNameFor<"cursor", "default">;
|
|
983
|
+
}>;
|
|
984
|
+
readonly 'not-allowed': Readonly<{
|
|
985
|
+
readonly cursor: stylex.StyleXClassNameFor<"cursor", "not-allowed">;
|
|
986
|
+
}>;
|
|
987
|
+
readonly grab: Readonly<{
|
|
988
|
+
readonly cursor: stylex.StyleXClassNameFor<"cursor", "grab">;
|
|
989
|
+
}>;
|
|
990
|
+
readonly grabbing: Readonly<{
|
|
991
|
+
readonly cursor: stylex.StyleXClassNameFor<"cursor", "grabbing">;
|
|
992
|
+
}>;
|
|
993
|
+
readonly text: Readonly<{
|
|
994
|
+
readonly cursor: stylex.StyleXClassNameFor<"cursor", "text">;
|
|
995
|
+
}>;
|
|
996
|
+
readonly move: Readonly<{
|
|
997
|
+
readonly cursor: stylex.StyleXClassNameFor<"cursor", "move">;
|
|
998
|
+
}>;
|
|
999
|
+
readonly wait: Readonly<{
|
|
1000
|
+
readonly cursor: stylex.StyleXClassNameFor<"cursor", "wait">;
|
|
1001
|
+
}>;
|
|
1002
|
+
}>;
|
|
1003
|
+
export declare const pointerEventsStyles: Readonly<{
|
|
1004
|
+
readonly none: Readonly<{
|
|
1005
|
+
readonly pointerEvents: stylex.StyleXClassNameFor<"pointerEvents", "none">;
|
|
1006
|
+
}>;
|
|
1007
|
+
readonly auto: Readonly<{
|
|
1008
|
+
readonly pointerEvents: stylex.StyleXClassNameFor<"pointerEvents", "auto">;
|
|
1009
|
+
}>;
|
|
1010
|
+
}>;
|
|
1011
|
+
export declare const visibilityStyles: Readonly<{
|
|
1012
|
+
readonly visible: Readonly<{
|
|
1013
|
+
readonly visibility: stylex.StyleXClassNameFor<"visibility", "visible">;
|
|
1014
|
+
}>;
|
|
1015
|
+
readonly hidden: Readonly<{
|
|
1016
|
+
readonly visibility: stylex.StyleXClassNameFor<"visibility", "hidden">;
|
|
1017
|
+
}>;
|
|
1018
|
+
}>;
|
|
1019
|
+
export declare const userSelectStyles: Readonly<{
|
|
1020
|
+
readonly none: Readonly<{
|
|
1021
|
+
readonly userSelect: stylex.StyleXClassNameFor<"userSelect", "none">;
|
|
1022
|
+
}>;
|
|
1023
|
+
readonly text: Readonly<{
|
|
1024
|
+
readonly userSelect: stylex.StyleXClassNameFor<"userSelect", "text">;
|
|
1025
|
+
}>;
|
|
1026
|
+
readonly all: Readonly<{
|
|
1027
|
+
readonly userSelect: stylex.StyleXClassNameFor<"userSelect", "all">;
|
|
1028
|
+
}>;
|
|
1029
|
+
readonly auto: Readonly<{
|
|
1030
|
+
readonly userSelect: stylex.StyleXClassNameFor<"userSelect", "auto">;
|
|
1031
|
+
}>;
|
|
1032
|
+
}>;
|
|
1033
|
+
export declare const textAlignStyles: Readonly<{
|
|
1034
|
+
readonly left: Readonly<{
|
|
1035
|
+
readonly textAlign: stylex.StyleXClassNameFor<"textAlign", "left">;
|
|
1036
|
+
}>;
|
|
1037
|
+
readonly center: Readonly<{
|
|
1038
|
+
readonly textAlign: stylex.StyleXClassNameFor<"textAlign", "center">;
|
|
1039
|
+
}>;
|
|
1040
|
+
readonly right: Readonly<{
|
|
1041
|
+
readonly textAlign: stylex.StyleXClassNameFor<"textAlign", "right">;
|
|
1042
|
+
}>;
|
|
1043
|
+
readonly justify: Readonly<{
|
|
1044
|
+
readonly textAlign: stylex.StyleXClassNameFor<"textAlign", "justify">;
|
|
1045
|
+
}>;
|
|
1046
|
+
}>;
|
|
1047
|
+
export declare const transitionPropertyStyles: Readonly<{
|
|
1048
|
+
readonly none: Readonly<{
|
|
1049
|
+
readonly transitionProperty: stylex.StyleXClassNameFor<"transitionProperty", "none">;
|
|
1050
|
+
}>;
|
|
1051
|
+
readonly all: Readonly<{
|
|
1052
|
+
readonly transitionProperty: stylex.StyleXClassNameFor<"transitionProperty", "all">;
|
|
1053
|
+
}>;
|
|
1054
|
+
readonly common: Readonly<{
|
|
1055
|
+
readonly transitionProperty: stylex.StyleXClassNameFor<"transitionProperty", "color, background-color, border-color, box-shadow, opacity, transform">;
|
|
1056
|
+
}>;
|
|
1057
|
+
readonly colors: Readonly<{
|
|
1058
|
+
readonly transitionProperty: stylex.StyleXClassNameFor<"transitionProperty", "color, background-color, border-color">;
|
|
1059
|
+
}>;
|
|
1060
|
+
readonly opacity: Readonly<{
|
|
1061
|
+
readonly transitionProperty: stylex.StyleXClassNameFor<"transitionProperty", "opacity">;
|
|
1062
|
+
}>;
|
|
1063
|
+
readonly shadow: Readonly<{
|
|
1064
|
+
readonly transitionProperty: stylex.StyleXClassNameFor<"transitionProperty", "box-shadow">;
|
|
1065
|
+
}>;
|
|
1066
|
+
readonly transform: Readonly<{
|
|
1067
|
+
readonly transitionProperty: stylex.StyleXClassNameFor<"transitionProperty", "transform">;
|
|
1068
|
+
}>;
|
|
1069
|
+
}>;
|
|
1070
|
+
export declare const transitionDurationStyles: Readonly<{
|
|
1071
|
+
readonly instant: Readonly<{
|
|
1072
|
+
readonly transitionDuration: stylex.StyleXClassNameFor<"transitionDuration", string>;
|
|
1073
|
+
}>;
|
|
1074
|
+
readonly fast: Readonly<{
|
|
1075
|
+
readonly transitionDuration: stylex.StyleXClassNameFor<"transitionDuration", string>;
|
|
1076
|
+
}>;
|
|
1077
|
+
readonly base: Readonly<{
|
|
1078
|
+
readonly transitionDuration: stylex.StyleXClassNameFor<"transitionDuration", string>;
|
|
1079
|
+
}>;
|
|
1080
|
+
readonly slow: Readonly<{
|
|
1081
|
+
readonly transitionDuration: stylex.StyleXClassNameFor<"transitionDuration", string>;
|
|
1082
|
+
}>;
|
|
1083
|
+
readonly slower: Readonly<{
|
|
1084
|
+
readonly transitionDuration: stylex.StyleXClassNameFor<"transitionDuration", string>;
|
|
1085
|
+
}>;
|
|
1086
|
+
}>;
|
|
1087
|
+
export declare const transitionTimingFunctionStyles: Readonly<{
|
|
1088
|
+
readonly standard: Readonly<{
|
|
1089
|
+
readonly transitionTimingFunction: stylex.StyleXClassNameFor<"transitionTimingFunction", string>;
|
|
1090
|
+
}>;
|
|
1091
|
+
readonly decelerate: Readonly<{
|
|
1092
|
+
readonly transitionTimingFunction: stylex.StyleXClassNameFor<"transitionTimingFunction", string>;
|
|
1093
|
+
}>;
|
|
1094
|
+
readonly accelerate: Readonly<{
|
|
1095
|
+
readonly transitionTimingFunction: stylex.StyleXClassNameFor<"transitionTimingFunction", string>;
|
|
1096
|
+
}>;
|
|
1097
|
+
readonly spring: Readonly<{
|
|
1098
|
+
readonly transitionTimingFunction: stylex.StyleXClassNameFor<"transitionTimingFunction", string>;
|
|
1099
|
+
}>;
|
|
1100
|
+
}>;
|
|
1101
|
+
export declare const transitionDelayStyles: Readonly<{
|
|
1102
|
+
readonly instant: Readonly<{
|
|
1103
|
+
readonly transitionDelay: stylex.StyleXClassNameFor<"transitionDelay", string>;
|
|
1104
|
+
}>;
|
|
1105
|
+
readonly fast: Readonly<{
|
|
1106
|
+
readonly transitionDelay: stylex.StyleXClassNameFor<"transitionDelay", string>;
|
|
1107
|
+
}>;
|
|
1108
|
+
readonly base: Readonly<{
|
|
1109
|
+
readonly transitionDelay: stylex.StyleXClassNameFor<"transitionDelay", string>;
|
|
1110
|
+
}>;
|
|
1111
|
+
readonly slow: Readonly<{
|
|
1112
|
+
readonly transitionDelay: stylex.StyleXClassNameFor<"transitionDelay", string>;
|
|
1113
|
+
}>;
|
|
1114
|
+
readonly slower: Readonly<{
|
|
1115
|
+
readonly transitionDelay: stylex.StyleXClassNameFor<"transitionDelay", string>;
|
|
1116
|
+
}>;
|
|
1117
|
+
}>;
|