@moul-dev/ui 2026.8.26 → 2026.9.2-3.1
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/dist/assets/stylex.css +322 -28
- package/dist/moul-ui.js +11066 -3933
- package/dist/src/App.d.ts +1 -1
- package/dist/src/components/Alert/Alert.styles.d.ts +11 -14
- package/dist/src/components/Autocomplete/Autocomplete.d.ts +92 -0
- package/dist/src/components/Autocomplete/Autocomplete.styles.d.ts +200 -0
- package/dist/src/components/Autocomplete/index.d.ts +2 -0
- package/dist/src/components/ComboBox/ComboBox.d.ts +15 -4
- package/dist/src/components/ComboBox/ComboBox.styles.d.ts +3 -3
- package/dist/src/components/Drawer/Drawer.d.ts +36 -0
- package/dist/src/components/Drawer/Drawer.styles.d.ts +46 -5
- package/dist/src/components/Drawer/index.d.ts +2 -2
- package/dist/src/components/ListBox/ListBox.d.ts +44 -0
- package/dist/src/components/ListBox/ListBox.styles.d.ts +260 -0
- package/dist/src/components/ListBox/index.d.ts +2 -0
- package/dist/src/components/NumberField/NumberField.styles.d.ts +3 -3
- package/dist/src/components/SearchField/SearchField.styles.d.ts +4 -3
- package/dist/src/components/Sidebar/Sidebar.d.ts +41 -0
- package/dist/src/components/Sidebar/Sidebar.styles.d.ts +457 -10
- package/dist/src/components/Sidebar/index.d.ts +2 -2
- package/dist/src/components/Table/index.d.ts +1 -1
- package/dist/src/components/Tabs/Tabs.styles.d.ts +40 -3
- package/dist/src/index.d.ts +12 -6
- package/dist/src/sandbox/icons.d.ts +13 -0
- package/dist/src/sandbox/sections/ActionsSection.d.ts +2 -0
- package/dist/src/sandbox/sections/BlocksSection.d.ts +14 -0
- package/dist/src/sandbox/sections/ChartsSection.d.ts +2 -0
- package/dist/src/sandbox/sections/FeedbackSection.d.ts +2 -0
- package/dist/src/sandbox/sections/FormsSection.d.ts +2 -0
- package/dist/src/sandbox/sections/LayoutSection.d.ts +2 -0
- package/dist/src/sandbox/sections/NavigationSection.d.ts +2 -0
- package/dist/src/sandbox/sections/OverlaysSection.d.ts +6 -0
- package/dist/src/sandbox/types.d.ts +7 -0
- package/package.json +6 -8
|
@@ -3,23 +3,36 @@ export declare const styles: Readonly<{
|
|
|
3
3
|
readonly sidebar: Readonly<{
|
|
4
4
|
readonly display: stylex.StyleXClassNameFor<"display", "flex">;
|
|
5
5
|
readonly flexDirection: stylex.StyleXClassNameFor<"flexDirection", "column">;
|
|
6
|
-
readonly height: stylex.StyleXClassNameFor<"height", `calc(100% - ${stylex.StyleXVar<string>} * 2)`>;
|
|
7
|
-
readonly marginBlock: stylex.StyleXClassNameFor<"marginBlock", string>;
|
|
8
|
-
readonly marginInlineStart: stylex.StyleXClassNameFor<"marginInlineStart", string>;
|
|
9
|
-
readonly marginInlineEnd: stylex.StyleXClassNameFor<"marginInlineEnd", 0>;
|
|
10
6
|
readonly flexShrink: stylex.StyleXClassNameFor<"flexShrink", 0>;
|
|
11
|
-
readonly transitionProperty: stylex.StyleXClassNameFor<"transitionProperty", "width, background-color, border-color, box-shadow">;
|
|
12
|
-
readonly transitionDuration: stylex.StyleXClassNameFor<"transitionDuration", "0.25s">;
|
|
13
|
-
readonly transitionTimingFunction: stylex.StyleXClassNameFor<"transitionTimingFunction", "cubic-bezier(0.4, 0, 0.2, 1)">;
|
|
14
7
|
readonly boxSizing: stylex.StyleXClassNameFor<"boxSizing", "border-box">;
|
|
15
8
|
readonly overflow: stylex.StyleXClassNameFor<"overflow", "hidden">;
|
|
16
9
|
readonly position: stylex.StyleXClassNameFor<"position", "relative">;
|
|
17
10
|
readonly fontFamily: stylex.StyleXClassNameFor<"fontFamily", string>;
|
|
18
11
|
readonly color: stylex.StyleXClassNameFor<"color", string>;
|
|
19
|
-
|
|
12
|
+
}>;
|
|
13
|
+
readonly sidebarResponsive: Readonly<{
|
|
14
|
+
readonly display: stylex.StyleXClassNameFor<"display", "flex" | "none">;
|
|
15
|
+
}>;
|
|
16
|
+
readonly sidebarFramed: Readonly<{
|
|
17
|
+
readonly height: stylex.StyleXClassNameFor<"height", "auto" | `calc(100% - ${stylex.StyleXVar<string>} * 2)`>;
|
|
18
|
+
readonly marginBlock: stylex.StyleXClassNameFor<"marginBlock", string | 0>;
|
|
19
|
+
readonly marginInlineStart: stylex.StyleXClassNameFor<"marginInlineStart", string | 0>;
|
|
20
|
+
readonly marginInlineEnd: stylex.StyleXClassNameFor<"marginInlineEnd", 0>;
|
|
21
|
+
readonly borderRadius: stylex.StyleXClassNameFor<"borderRadius", string | 0>;
|
|
20
22
|
readonly borderWidth: stylex.StyleXClassNameFor<"borderWidth", "1px">;
|
|
21
23
|
readonly borderStyle: stylex.StyleXClassNameFor<"borderStyle", "solid">;
|
|
22
24
|
}>;
|
|
25
|
+
readonly sidebarUnframed: Readonly<{
|
|
26
|
+
readonly height: stylex.StyleXClassNameFor<"height", "auto" | `calc(100% - ${stylex.StyleXVar<string>} * 2)`>;
|
|
27
|
+
readonly marginBlock: stylex.StyleXClassNameFor<"marginBlock", string | 0>;
|
|
28
|
+
readonly marginInlineStart: stylex.StyleXClassNameFor<"marginInlineStart", string | 0>;
|
|
29
|
+
readonly marginInlineEnd: stylex.StyleXClassNameFor<"marginInlineEnd", 0>;
|
|
30
|
+
readonly borderRadius: stylex.StyleXClassNameFor<"borderRadius", 0>;
|
|
31
|
+
readonly borderWidth: stylex.StyleXClassNameFor<"borderWidth", 0>;
|
|
32
|
+
readonly borderStyle: stylex.StyleXClassNameFor<"borderStyle", "none">;
|
|
33
|
+
readonly borderColor: stylex.StyleXClassNameFor<"borderColor", "transparent">;
|
|
34
|
+
readonly backgroundColor: stylex.StyleXClassNameFor<"backgroundColor", "transparent">;
|
|
35
|
+
}>;
|
|
23
36
|
readonly expanded: Readonly<{
|
|
24
37
|
readonly width: stylex.StyleXClassNameFor<"width", "var(--sidebar-width, 260px)">;
|
|
25
38
|
}>;
|
|
@@ -58,6 +71,7 @@ export declare const styles: Readonly<{
|
|
|
58
71
|
readonly headerCollapsed: Readonly<{
|
|
59
72
|
readonly justifyContent: stylex.StyleXClassNameFor<"justifyContent", "center">;
|
|
60
73
|
readonly paddingInline: stylex.StyleXClassNameFor<"paddingInline", string>;
|
|
74
|
+
readonly paddingBlock: stylex.StyleXClassNameFor<"paddingBlock", string>;
|
|
61
75
|
}>;
|
|
62
76
|
readonly headerContent: Readonly<{
|
|
63
77
|
readonly display: stylex.StyleXClassNameFor<"display", "flex">;
|
|
@@ -74,6 +88,8 @@ export declare const styles: Readonly<{
|
|
|
74
88
|
}>;
|
|
75
89
|
readonly headerContentCollapsed: Readonly<{
|
|
76
90
|
readonly justifyContent: stylex.StyleXClassNameFor<"justifyContent", "center">;
|
|
91
|
+
readonly gap: stylex.StyleXClassNameFor<"gap", 0>;
|
|
92
|
+
readonly width: stylex.StyleXClassNameFor<"width", "100%">;
|
|
77
93
|
}>;
|
|
78
94
|
readonly footer: Readonly<{
|
|
79
95
|
readonly display: stylex.StyleXClassNameFor<"display", "flex">;
|
|
@@ -100,6 +116,7 @@ export declare const styles: Readonly<{
|
|
|
100
116
|
readonly footerCollapsed: Readonly<{
|
|
101
117
|
readonly justifyContent: stylex.StyleXClassNameFor<"justifyContent", "center">;
|
|
102
118
|
readonly paddingInline: stylex.StyleXClassNameFor<"paddingInline", string>;
|
|
119
|
+
readonly paddingBlock: stylex.StyleXClassNameFor<"paddingBlock", string>;
|
|
103
120
|
}>;
|
|
104
121
|
readonly footerContent: Readonly<{
|
|
105
122
|
readonly display: stylex.StyleXClassNameFor<"display", "flex">;
|
|
@@ -116,6 +133,147 @@ export declare const styles: Readonly<{
|
|
|
116
133
|
}>;
|
|
117
134
|
readonly footerContentCollapsed: Readonly<{
|
|
118
135
|
readonly justifyContent: stylex.StyleXClassNameFor<"justifyContent", "center">;
|
|
136
|
+
readonly gap: stylex.StyleXClassNameFor<"gap", 0>;
|
|
137
|
+
readonly width: stylex.StyleXClassNameFor<"width", "100%">;
|
|
138
|
+
}>;
|
|
139
|
+
readonly user: Readonly<{
|
|
140
|
+
readonly display: stylex.StyleXClassNameFor<"display", "flex">;
|
|
141
|
+
readonly alignItems: stylex.StyleXClassNameFor<"alignItems", "center">;
|
|
142
|
+
readonly gap: stylex.StyleXClassNameFor<"gap", string>;
|
|
143
|
+
readonly width: stylex.StyleXClassNameFor<"width", "100%">;
|
|
144
|
+
readonly minWidth: stylex.StyleXClassNameFor<"minWidth", 0>;
|
|
145
|
+
readonly overflow: stylex.StyleXClassNameFor<"overflow", "hidden">;
|
|
146
|
+
readonly boxSizing: stylex.StyleXClassNameFor<"boxSizing", "border-box">;
|
|
147
|
+
readonly borderRadius: stylex.StyleXClassNameFor<"borderRadius", string>;
|
|
148
|
+
readonly textDecoration: stylex.StyleXClassNameFor<"textDecoration", "none">;
|
|
149
|
+
readonly color: stylex.StyleXClassNameFor<"color", string>;
|
|
150
|
+
}>;
|
|
151
|
+
readonly userInteractive: Readonly<{
|
|
152
|
+
readonly cursor: stylex.StyleXClassNameFor<"cursor", "pointer">;
|
|
153
|
+
readonly userSelect: stylex.StyleXClassNameFor<"userSelect", "none">;
|
|
154
|
+
readonly paddingBlock: stylex.StyleXClassNameFor<"paddingBlock", string>;
|
|
155
|
+
readonly paddingInline: stylex.StyleXClassNameFor<"paddingInline", string>;
|
|
156
|
+
readonly marginInline: stylex.StyleXClassNameFor<"marginInline", `calc(-1 * ${stylex.StyleXVar<string>})`>;
|
|
157
|
+
readonly transitionProperty: stylex.StyleXClassNameFor<"transitionProperty", "background-color, transform">;
|
|
158
|
+
readonly transitionDuration: stylex.StyleXClassNameFor<"transitionDuration", "0.15s">;
|
|
159
|
+
readonly ':hover': stylex.StyleXClassNameFor<":hover", {
|
|
160
|
+
readonly backgroundColor: stylex.StyleXVar<string>;
|
|
161
|
+
}>;
|
|
162
|
+
readonly ':active': stylex.StyleXClassNameFor<":active", {
|
|
163
|
+
readonly transform: "scale(0.98)";
|
|
164
|
+
}>;
|
|
165
|
+
}>;
|
|
166
|
+
readonly userCollapsed: Readonly<{
|
|
167
|
+
readonly justifyContent: stylex.StyleXClassNameFor<"justifyContent", "center">;
|
|
168
|
+
readonly gap: stylex.StyleXClassNameFor<"gap", 0>;
|
|
169
|
+
readonly width: stylex.StyleXClassNameFor<"width", "100%">;
|
|
170
|
+
readonly paddingInline: stylex.StyleXClassNameFor<"paddingInline", 0>;
|
|
171
|
+
readonly marginInline: stylex.StyleXClassNameFor<"marginInline", 0>;
|
|
172
|
+
}>;
|
|
173
|
+
readonly userDense: Readonly<{
|
|
174
|
+
readonly gap: stylex.StyleXClassNameFor<"gap", string>;
|
|
175
|
+
}>;
|
|
176
|
+
readonly userAvatarWrapper: Readonly<{
|
|
177
|
+
readonly display: stylex.StyleXClassNameFor<"display", "flex">;
|
|
178
|
+
readonly alignItems: stylex.StyleXClassNameFor<"alignItems", "center">;
|
|
179
|
+
readonly justifyContent: stylex.StyleXClassNameFor<"justifyContent", "center">;
|
|
180
|
+
readonly flexShrink: stylex.StyleXClassNameFor<"flexShrink", 0>;
|
|
181
|
+
}>;
|
|
182
|
+
readonly userInfo: Readonly<{
|
|
183
|
+
readonly display: stylex.StyleXClassNameFor<"display", "flex">;
|
|
184
|
+
readonly flexDirection: stylex.StyleXClassNameFor<"flexDirection", "column">;
|
|
185
|
+
readonly minWidth: stylex.StyleXClassNameFor<"minWidth", 0>;
|
|
186
|
+
readonly flex: stylex.StyleXClassNameFor<"flex", 1>;
|
|
187
|
+
readonly overflow: stylex.StyleXClassNameFor<"overflow", "hidden">;
|
|
188
|
+
}>;
|
|
189
|
+
readonly userName: Readonly<{
|
|
190
|
+
readonly fontSize: stylex.StyleXClassNameFor<"fontSize", string>;
|
|
191
|
+
readonly fontWeight: stylex.StyleXClassNameFor<"fontWeight", string>;
|
|
192
|
+
readonly color: stylex.StyleXClassNameFor<"color", string>;
|
|
193
|
+
readonly overflow: stylex.StyleXClassNameFor<"overflow", "hidden">;
|
|
194
|
+
readonly textOverflow: stylex.StyleXClassNameFor<"textOverflow", "ellipsis">;
|
|
195
|
+
readonly whiteSpace: stylex.StyleXClassNameFor<"whiteSpace", "nowrap">;
|
|
196
|
+
}>;
|
|
197
|
+
readonly userDescription: Readonly<{
|
|
198
|
+
readonly fontSize: stylex.StyleXClassNameFor<"fontSize", string>;
|
|
199
|
+
readonly color: stylex.StyleXClassNameFor<"color", string>;
|
|
200
|
+
readonly overflow: stylex.StyleXClassNameFor<"overflow", "hidden">;
|
|
201
|
+
readonly textOverflow: stylex.StyleXClassNameFor<"textOverflow", "ellipsis">;
|
|
202
|
+
readonly whiteSpace: stylex.StyleXClassNameFor<"whiteSpace", "nowrap">;
|
|
203
|
+
readonly marginTop: stylex.StyleXClassNameFor<"marginTop", "2px">;
|
|
204
|
+
}>;
|
|
205
|
+
readonly userAction: Readonly<{
|
|
206
|
+
readonly display: stylex.StyleXClassNameFor<"display", "flex">;
|
|
207
|
+
readonly alignItems: stylex.StyleXClassNameFor<"alignItems", "center">;
|
|
208
|
+
readonly justifyContent: stylex.StyleXClassNameFor<"justifyContent", "center">;
|
|
209
|
+
readonly flexShrink: stylex.StyleXClassNameFor<"flexShrink", 0>;
|
|
210
|
+
readonly color: stylex.StyleXClassNameFor<"color", string>;
|
|
211
|
+
}>;
|
|
212
|
+
readonly brand: Readonly<{
|
|
213
|
+
readonly display: stylex.StyleXClassNameFor<"display", "flex">;
|
|
214
|
+
readonly alignItems: stylex.StyleXClassNameFor<"alignItems", "center">;
|
|
215
|
+
readonly gap: stylex.StyleXClassNameFor<"gap", string>;
|
|
216
|
+
readonly width: stylex.StyleXClassNameFor<"width", "100%">;
|
|
217
|
+
readonly minWidth: stylex.StyleXClassNameFor<"minWidth", 0>;
|
|
218
|
+
readonly overflow: stylex.StyleXClassNameFor<"overflow", "hidden">;
|
|
219
|
+
readonly boxSizing: stylex.StyleXClassNameFor<"boxSizing", "border-box">;
|
|
220
|
+
readonly borderRadius: stylex.StyleXClassNameFor<"borderRadius", string>;
|
|
221
|
+
readonly textDecoration: stylex.StyleXClassNameFor<"textDecoration", "none">;
|
|
222
|
+
readonly color: stylex.StyleXClassNameFor<"color", string>;
|
|
223
|
+
}>;
|
|
224
|
+
readonly brandInteractive: Readonly<{
|
|
225
|
+
readonly cursor: stylex.StyleXClassNameFor<"cursor", "pointer">;
|
|
226
|
+
readonly userSelect: stylex.StyleXClassNameFor<"userSelect", "none">;
|
|
227
|
+
readonly paddingBlock: stylex.StyleXClassNameFor<"paddingBlock", string>;
|
|
228
|
+
readonly paddingInline: stylex.StyleXClassNameFor<"paddingInline", string>;
|
|
229
|
+
readonly marginInline: stylex.StyleXClassNameFor<"marginInline", `calc(-1 * ${stylex.StyleXVar<string>})`>;
|
|
230
|
+
readonly transitionProperty: stylex.StyleXClassNameFor<"transitionProperty", "background-color, transform">;
|
|
231
|
+
readonly transitionDuration: stylex.StyleXClassNameFor<"transitionDuration", "0.15s">;
|
|
232
|
+
readonly ':hover': stylex.StyleXClassNameFor<":hover", {
|
|
233
|
+
readonly backgroundColor: stylex.StyleXVar<string>;
|
|
234
|
+
}>;
|
|
235
|
+
readonly ':active': stylex.StyleXClassNameFor<":active", {
|
|
236
|
+
readonly transform: "scale(0.98)";
|
|
237
|
+
}>;
|
|
238
|
+
}>;
|
|
239
|
+
readonly brandCollapsed: Readonly<{
|
|
240
|
+
readonly justifyContent: stylex.StyleXClassNameFor<"justifyContent", "center">;
|
|
241
|
+
readonly gap: stylex.StyleXClassNameFor<"gap", 0>;
|
|
242
|
+
readonly width: stylex.StyleXClassNameFor<"width", "100%">;
|
|
243
|
+
readonly paddingInline: stylex.StyleXClassNameFor<"paddingInline", 0>;
|
|
244
|
+
readonly marginInline: stylex.StyleXClassNameFor<"marginInline", 0>;
|
|
245
|
+
}>;
|
|
246
|
+
readonly brandDense: Readonly<{
|
|
247
|
+
readonly gap: stylex.StyleXClassNameFor<"gap", string>;
|
|
248
|
+
}>;
|
|
249
|
+
readonly brandLogoWrapper: Readonly<{
|
|
250
|
+
readonly display: stylex.StyleXClassNameFor<"display", "flex">;
|
|
251
|
+
readonly alignItems: stylex.StyleXClassNameFor<"alignItems", "center">;
|
|
252
|
+
readonly justifyContent: stylex.StyleXClassNameFor<"justifyContent", "center">;
|
|
253
|
+
readonly flexShrink: stylex.StyleXClassNameFor<"flexShrink", 0>;
|
|
254
|
+
}>;
|
|
255
|
+
readonly brandInfo: Readonly<{
|
|
256
|
+
readonly display: stylex.StyleXClassNameFor<"display", "flex">;
|
|
257
|
+
readonly flexDirection: stylex.StyleXClassNameFor<"flexDirection", "column">;
|
|
258
|
+
readonly minWidth: stylex.StyleXClassNameFor<"minWidth", 0>;
|
|
259
|
+
readonly flex: stylex.StyleXClassNameFor<"flex", 1>;
|
|
260
|
+
readonly overflow: stylex.StyleXClassNameFor<"overflow", "hidden">;
|
|
261
|
+
}>;
|
|
262
|
+
readonly brandTitle: Readonly<{
|
|
263
|
+
readonly fontSize: stylex.StyleXClassNameFor<"fontSize", string>;
|
|
264
|
+
readonly fontWeight: stylex.StyleXClassNameFor<"fontWeight", string>;
|
|
265
|
+
readonly color: stylex.StyleXClassNameFor<"color", string>;
|
|
266
|
+
readonly overflow: stylex.StyleXClassNameFor<"overflow", "hidden">;
|
|
267
|
+
readonly textOverflow: stylex.StyleXClassNameFor<"textOverflow", "ellipsis">;
|
|
268
|
+
readonly whiteSpace: stylex.StyleXClassNameFor<"whiteSpace", "nowrap">;
|
|
269
|
+
}>;
|
|
270
|
+
readonly brandSubtitle: Readonly<{
|
|
271
|
+
readonly fontSize: stylex.StyleXClassNameFor<"fontSize", string>;
|
|
272
|
+
readonly color: stylex.StyleXClassNameFor<"color", string>;
|
|
273
|
+
readonly overflow: stylex.StyleXClassNameFor<"overflow", "hidden">;
|
|
274
|
+
readonly textOverflow: stylex.StyleXClassNameFor<"textOverflow", "ellipsis">;
|
|
275
|
+
readonly whiteSpace: stylex.StyleXClassNameFor<"whiteSpace", "nowrap">;
|
|
276
|
+
readonly marginTop: stylex.StyleXClassNameFor<"marginTop", "2px">;
|
|
119
277
|
}>;
|
|
120
278
|
readonly group: Readonly<{
|
|
121
279
|
readonly display: stylex.StyleXClassNameFor<"display", "flex">;
|
|
@@ -346,10 +504,12 @@ export declare const styles: Readonly<{
|
|
|
346
504
|
readonly insetBlockEnd: stylex.StyleXClassNameFor<"insetBlockEnd", "auto">;
|
|
347
505
|
readonly insetInlineEnd: stylex.StyleXClassNameFor<"insetInlineEnd", "auto">;
|
|
348
506
|
readonly alignSelf: stylex.StyleXClassNameFor<"alignSelf", "center">;
|
|
349
|
-
readonly
|
|
507
|
+
readonly marginBlockStart: stylex.StyleXClassNameFor<"marginBlockStart", string>;
|
|
508
|
+
readonly marginBlockEnd: stylex.StyleXClassNameFor<"marginBlockEnd", string>;
|
|
350
509
|
}>;
|
|
351
510
|
readonly layout: Readonly<{
|
|
352
511
|
readonly display: stylex.StyleXClassNameFor<"display", "flex">;
|
|
512
|
+
readonly flexDirection: stylex.StyleXClassNameFor<"flexDirection", "column" | "row">;
|
|
353
513
|
readonly height: stylex.StyleXClassNameFor<"height", "100%">;
|
|
354
514
|
readonly maxHeight: stylex.StyleXClassNameFor<"maxHeight", "100%">;
|
|
355
515
|
readonly width: stylex.StyleXClassNameFor<"width", "100%">;
|
|
@@ -358,16 +518,303 @@ export declare const styles: Readonly<{
|
|
|
358
518
|
readonly fontFamily: stylex.StyleXClassNameFor<"fontFamily", string>;
|
|
359
519
|
readonly boxSizing: stylex.StyleXClassNameFor<"boxSizing", "border-box">;
|
|
360
520
|
readonly overflow: stylex.StyleXClassNameFor<"overflow", "hidden">;
|
|
521
|
+
readonly gap: stylex.StyleXClassNameFor<"gap", string | 0>;
|
|
522
|
+
}>;
|
|
523
|
+
readonly layoutStatic: Readonly<{
|
|
524
|
+
readonly flexDirection: stylex.StyleXClassNameFor<"flexDirection", "row">;
|
|
361
525
|
readonly gap: stylex.StyleXClassNameFor<"gap", string>;
|
|
362
526
|
}>;
|
|
527
|
+
readonly layoutMobile: Readonly<{
|
|
528
|
+
readonly flexDirection: stylex.StyleXClassNameFor<"flexDirection", "column">;
|
|
529
|
+
readonly gap: stylex.StyleXClassNameFor<"gap", 0>;
|
|
530
|
+
}>;
|
|
363
531
|
readonly mainContent: Readonly<{
|
|
364
532
|
readonly flex: stylex.StyleXClassNameFor<"flex", 1>;
|
|
365
533
|
readonly display: stylex.StyleXClassNameFor<"display", "flex">;
|
|
366
534
|
readonly flexDirection: stylex.StyleXClassNameFor<"flexDirection", "column">;
|
|
367
|
-
readonly height: stylex.StyleXClassNameFor<"height", "100%">;
|
|
368
535
|
readonly overflowY: stylex.StyleXClassNameFor<"overflowY", "auto">;
|
|
369
536
|
readonly boxSizing: stylex.StyleXClassNameFor<"boxSizing", "border-box">;
|
|
537
|
+
readonly fontFamily: stylex.StyleXClassNameFor<"fontFamily", string>;
|
|
538
|
+
readonly color: stylex.StyleXClassNameFor<"color", string>;
|
|
539
|
+
readonly minWidth: stylex.StyleXClassNameFor<"minWidth", 0>;
|
|
540
|
+
}>;
|
|
541
|
+
readonly mainContentMobileNav: Readonly<{
|
|
542
|
+
readonly paddingBlockEnd: stylex.StyleXClassNameFor<"paddingBlockEnd", 0 | `calc(env(safe-area-inset-bottom, 0px) + ${stylex.StyleXVar<string>} * 2.5)`>;
|
|
543
|
+
}>;
|
|
544
|
+
readonly mainContentMobileWithHeader: Readonly<{
|
|
545
|
+
readonly paddingBlockStart: stylex.StyleXClassNameFor<"paddingBlockStart", 0 | `calc(${stylex.StyleXVar<string>} * 2)`>;
|
|
546
|
+
}>;
|
|
547
|
+
readonly mainUnframed: Readonly<{
|
|
548
|
+
readonly height: stylex.StyleXClassNameFor<"height", "100%">;
|
|
370
549
|
readonly backgroundColor: stylex.StyleXClassNameFor<"backgroundColor", "transparent">;
|
|
550
|
+
readonly paddingBlockStart: stylex.StyleXClassNameFor<"paddingBlockStart", string | 0>;
|
|
551
|
+
readonly borderWidth: stylex.StyleXClassNameFor<"borderWidth", 0>;
|
|
552
|
+
readonly borderStyle: stylex.StyleXClassNameFor<"borderStyle", "none">;
|
|
553
|
+
readonly borderColor: stylex.StyleXClassNameFor<"borderColor", "transparent">;
|
|
554
|
+
readonly borderRadius: stylex.StyleXClassNameFor<"borderRadius", 0>;
|
|
555
|
+
readonly margin: stylex.StyleXClassNameFor<"margin", 0>;
|
|
556
|
+
}>;
|
|
557
|
+
readonly mainFramed: Readonly<{
|
|
558
|
+
readonly height: stylex.StyleXClassNameFor<"height", "100%" | `calc(100% - ${stylex.StyleXVar<string>} * 2)`>;
|
|
559
|
+
readonly marginBlock: stylex.StyleXClassNameFor<"marginBlock", string | 0>;
|
|
560
|
+
readonly marginInlineEnd: stylex.StyleXClassNameFor<"marginInlineEnd", string | 0>;
|
|
561
|
+
readonly marginInlineStart: stylex.StyleXClassNameFor<"marginInlineStart", 0>;
|
|
562
|
+
readonly borderRadius: stylex.StyleXClassNameFor<"borderRadius", string | 0>;
|
|
563
|
+
readonly borderWidth: stylex.StyleXClassNameFor<"borderWidth", 0 | "1px">;
|
|
564
|
+
readonly borderStyle: stylex.StyleXClassNameFor<"borderStyle", "solid">;
|
|
565
|
+
readonly overflow: stylex.StyleXClassNameFor<"overflow", "hidden">;
|
|
566
|
+
}>;
|
|
567
|
+
readonly mainSolid: Readonly<{
|
|
568
|
+
readonly backgroundColor: stylex.StyleXClassNameFor<"backgroundColor", string>;
|
|
569
|
+
readonly borderColor: stylex.StyleXClassNameFor<"borderColor", string>;
|
|
570
|
+
}>;
|
|
571
|
+
readonly mainGlass: Readonly<{
|
|
572
|
+
readonly backgroundColor: stylex.StyleXClassNameFor<"backgroundColor", string>;
|
|
573
|
+
readonly borderColor: stylex.StyleXClassNameFor<"borderColor", string>;
|
|
574
|
+
readonly '@supports (backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))': stylex.StyleXClassNameFor<"@supports (backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))", {
|
|
575
|
+
readonly backgroundColor: stylex.StyleXVar<string>;
|
|
576
|
+
readonly borderColor: stylex.StyleXVar<string>;
|
|
577
|
+
readonly backdropFilter: "blur(20px)";
|
|
578
|
+
readonly WebkitBackdropFilter: "blur(20px)";
|
|
579
|
+
}>;
|
|
580
|
+
}>;
|
|
581
|
+
readonly mobileTopBar: Readonly<{
|
|
582
|
+
readonly display: stylex.StyleXClassNameFor<"display", "flex" | "none">;
|
|
583
|
+
readonly position: stylex.StyleXClassNameFor<"position", "absolute">;
|
|
584
|
+
readonly insetBlockStart: stylex.StyleXClassNameFor<"insetBlockStart", 0>;
|
|
585
|
+
readonly insetInline: stylex.StyleXClassNameFor<"insetInline", 0>;
|
|
586
|
+
readonly zIndex: stylex.StyleXClassNameFor<"zIndex", 40>;
|
|
587
|
+
readonly alignItems: stylex.StyleXClassNameFor<"alignItems", "center">;
|
|
588
|
+
readonly justifyContent: stylex.StyleXClassNameFor<"justifyContent", "space-between">;
|
|
589
|
+
readonly paddingBlock: stylex.StyleXClassNameFor<"paddingBlock", string>;
|
|
590
|
+
readonly paddingInline: stylex.StyleXClassNameFor<"paddingInline", string>;
|
|
591
|
+
readonly minHeight: stylex.StyleXClassNameFor<"minHeight", "56px">;
|
|
592
|
+
readonly boxSizing: stylex.StyleXClassNameFor<"boxSizing", "border-box">;
|
|
593
|
+
readonly backgroundColor: stylex.StyleXClassNameFor<"backgroundColor", string>;
|
|
594
|
+
readonly borderBlockEndWidth: stylex.StyleXClassNameFor<"borderBlockEndWidth", "1px">;
|
|
595
|
+
readonly borderBlockEndStyle: stylex.StyleXClassNameFor<"borderBlockEndStyle", "solid">;
|
|
596
|
+
readonly borderBlockEndColor: stylex.StyleXClassNameFor<"borderBlockEndColor", string>;
|
|
597
|
+
readonly '@supports (backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))': stylex.StyleXClassNameFor<"@supports (backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))", {
|
|
598
|
+
readonly backgroundColor: stylex.StyleXVar<string>;
|
|
599
|
+
readonly borderBlockEndColor: stylex.StyleXVar<string>;
|
|
600
|
+
readonly backdropFilter: "blur(20px)";
|
|
601
|
+
readonly WebkitBackdropFilter: "blur(20px)";
|
|
602
|
+
}>;
|
|
603
|
+
}>;
|
|
604
|
+
readonly mobileTopBarContent: Readonly<{
|
|
605
|
+
readonly display: stylex.StyleXClassNameFor<"display", "flex">;
|
|
606
|
+
readonly alignItems: stylex.StyleXClassNameFor<"alignItems", "center">;
|
|
607
|
+
readonly width: stylex.StyleXClassNameFor<"width", "100%">;
|
|
608
|
+
readonly justifyContent: stylex.StyleXClassNameFor<"justifyContent", "space-between">;
|
|
609
|
+
readonly gap: stylex.StyleXClassNameFor<"gap", string>;
|
|
610
|
+
}>;
|
|
611
|
+
readonly mobileBottomNavContainer: Readonly<{
|
|
612
|
+
readonly display: stylex.StyleXClassNameFor<"display", "flex" | "none">;
|
|
613
|
+
readonly position: stylex.StyleXClassNameFor<"position", "fixed">;
|
|
614
|
+
readonly insetBlockEnd: stylex.StyleXClassNameFor<"insetBlockEnd", `calc(env(safe-area-inset-bottom, 0px) + ${stylex.StyleXVar<string>})`>;
|
|
615
|
+
readonly insetInline: stylex.StyleXClassNameFor<"insetInline", 0>;
|
|
616
|
+
readonly justifyContent: stylex.StyleXClassNameFor<"justifyContent", "center">;
|
|
617
|
+
readonly alignItems: stylex.StyleXClassNameFor<"alignItems", "center">;
|
|
618
|
+
readonly pointerEvents: stylex.StyleXClassNameFor<"pointerEvents", "none">;
|
|
619
|
+
readonly zIndex: stylex.StyleXClassNameFor<"zIndex", 50>;
|
|
620
|
+
readonly paddingInline: stylex.StyleXClassNameFor<"paddingInline", string>;
|
|
621
|
+
}>;
|
|
622
|
+
readonly mobileBottomNav: Readonly<{
|
|
623
|
+
readonly pointerEvents: stylex.StyleXClassNameFor<"pointerEvents", "auto">;
|
|
624
|
+
readonly display: stylex.StyleXClassNameFor<"display", "flex">;
|
|
625
|
+
readonly alignItems: stylex.StyleXClassNameFor<"alignItems", "center">;
|
|
626
|
+
readonly justifyContent: stylex.StyleXClassNameFor<"justifyContent", "space-around">;
|
|
627
|
+
readonly gap: stylex.StyleXClassNameFor<"gap", string>;
|
|
628
|
+
readonly paddingBlock: stylex.StyleXClassNameFor<"paddingBlock", string>;
|
|
629
|
+
readonly paddingInline: stylex.StyleXClassNameFor<"paddingInline", string>;
|
|
630
|
+
readonly borderRadius: stylex.StyleXClassNameFor<"borderRadius", string>;
|
|
631
|
+
readonly backgroundColor: stylex.StyleXClassNameFor<"backgroundColor", string>;
|
|
632
|
+
readonly borderWidth: stylex.StyleXClassNameFor<"borderWidth", "1px">;
|
|
633
|
+
readonly borderStyle: stylex.StyleXClassNameFor<"borderStyle", "solid">;
|
|
634
|
+
readonly borderColor: stylex.StyleXClassNameFor<"borderColor", string>;
|
|
635
|
+
readonly boxShadow: stylex.StyleXClassNameFor<"boxShadow", string>;
|
|
636
|
+
readonly maxWidth: stylex.StyleXClassNameFor<"maxWidth", "420px">;
|
|
637
|
+
readonly width: stylex.StyleXClassNameFor<"width", "auto">;
|
|
638
|
+
readonly minWidth: stylex.StyleXClassNameFor<"minWidth", "240px">;
|
|
639
|
+
readonly boxSizing: stylex.StyleXClassNameFor<"boxSizing", "border-box">;
|
|
640
|
+
readonly transformOrigin: stylex.StyleXClassNameFor<"transformOrigin", "bottom center">;
|
|
641
|
+
readonly '@supports (backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))': stylex.StyleXClassNameFor<"@supports (backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))", {
|
|
642
|
+
readonly backgroundColor: stylex.StyleXVar<string>;
|
|
643
|
+
readonly borderColor: stylex.StyleXVar<string>;
|
|
644
|
+
readonly backdropFilter: "blur(24px)";
|
|
645
|
+
readonly WebkitBackdropFilter: "blur(24px)";
|
|
646
|
+
}>;
|
|
647
|
+
}>;
|
|
648
|
+
readonly mobileNavItem: Readonly<{
|
|
649
|
+
readonly position: stylex.StyleXClassNameFor<"position", "relative">;
|
|
650
|
+
readonly display: stylex.StyleXClassNameFor<"display", "flex">;
|
|
651
|
+
readonly flexDirection: stylex.StyleXClassNameFor<"flexDirection", "column">;
|
|
652
|
+
readonly alignItems: stylex.StyleXClassNameFor<"alignItems", "center">;
|
|
653
|
+
readonly justifyContent: stylex.StyleXClassNameFor<"justifyContent", "center">;
|
|
654
|
+
readonly gap: stylex.StyleXClassNameFor<"gap", "2px">;
|
|
655
|
+
readonly minWidth: stylex.StyleXClassNameFor<"minWidth", "52px">;
|
|
656
|
+
readonly minHeight: stylex.StyleXClassNameFor<"minHeight", "44px">;
|
|
657
|
+
readonly paddingBlock: stylex.StyleXClassNameFor<"paddingBlock", string>;
|
|
658
|
+
readonly paddingInline: stylex.StyleXClassNameFor<"paddingInline", string>;
|
|
659
|
+
readonly borderRadius: stylex.StyleXClassNameFor<"borderRadius", string>;
|
|
660
|
+
readonly color: stylex.StyleXClassNameFor<"color", string>;
|
|
661
|
+
readonly textDecoration: stylex.StyleXClassNameFor<"textDecoration", "none">;
|
|
662
|
+
readonly cursor: stylex.StyleXClassNameFor<"cursor", "pointer">;
|
|
663
|
+
readonly userSelect: stylex.StyleXClassNameFor<"userSelect", "none">;
|
|
664
|
+
readonly boxSizing: stylex.StyleXClassNameFor<"boxSizing", "border-box">;
|
|
665
|
+
readonly zIndex: stylex.StyleXClassNameFor<"zIndex", 1>;
|
|
666
|
+
readonly borderStyle: stylex.StyleXClassNameFor<"borderStyle", "none">;
|
|
667
|
+
readonly backgroundColor: stylex.StyleXClassNameFor<"backgroundColor", "transparent">;
|
|
668
|
+
readonly outline: stylex.StyleXClassNameFor<"outline", "none">;
|
|
669
|
+
}>;
|
|
670
|
+
readonly mobileNavItemActive: Readonly<{
|
|
671
|
+
readonly color: stylex.StyleXClassNameFor<"color", string>;
|
|
672
|
+
readonly fontWeight: stylex.StyleXClassNameFor<"fontWeight", string>;
|
|
673
|
+
}>;
|
|
674
|
+
readonly mobileNavActivePill: Readonly<{
|
|
675
|
+
readonly position: stylex.StyleXClassNameFor<"position", "absolute">;
|
|
676
|
+
readonly insetBlock: stylex.StyleXClassNameFor<"insetBlock", 0>;
|
|
677
|
+
readonly insetInline: stylex.StyleXClassNameFor<"insetInline", 0>;
|
|
678
|
+
readonly borderRadius: stylex.StyleXClassNameFor<"borderRadius", string>;
|
|
679
|
+
readonly backgroundColor: stylex.StyleXClassNameFor<"backgroundColor", string>;
|
|
680
|
+
readonly zIndex: stylex.StyleXClassNameFor<"zIndex", -1>;
|
|
681
|
+
}>;
|
|
682
|
+
readonly mobileNavIcon: Readonly<{
|
|
683
|
+
readonly display: stylex.StyleXClassNameFor<"display", "flex">;
|
|
684
|
+
readonly alignItems: stylex.StyleXClassNameFor<"alignItems", "center">;
|
|
685
|
+
readonly justifyContent: stylex.StyleXClassNameFor<"justifyContent", "center">;
|
|
686
|
+
readonly width: stylex.StyleXClassNameFor<"width", "22px">;
|
|
687
|
+
readonly height: stylex.StyleXClassNameFor<"height", "22px">;
|
|
688
|
+
readonly flexShrink: stylex.StyleXClassNameFor<"flexShrink", 0>;
|
|
689
|
+
}>;
|
|
690
|
+
readonly mobileNavLabel: Readonly<{
|
|
691
|
+
readonly fontSize: stylex.StyleXClassNameFor<"fontSize", string>;
|
|
692
|
+
readonly lineHeight: stylex.StyleXClassNameFor<"lineHeight", string>;
|
|
693
|
+
readonly textAlign: stylex.StyleXClassNameFor<"textAlign", "center">;
|
|
694
|
+
readonly whiteSpace: stylex.StyleXClassNameFor<"whiteSpace", "nowrap">;
|
|
695
|
+
readonly overflow: stylex.StyleXClassNameFor<"overflow", "hidden">;
|
|
696
|
+
readonly textOverflow: stylex.StyleXClassNameFor<"textOverflow", "ellipsis">;
|
|
697
|
+
readonly maxWidth: stylex.StyleXClassNameFor<"maxWidth", "64px">;
|
|
698
|
+
readonly display: stylex.StyleXClassNameFor<"display", "block">;
|
|
699
|
+
}>;
|
|
700
|
+
readonly mobileNavMoreButton: Readonly<{
|
|
701
|
+
readonly position: stylex.StyleXClassNameFor<"position", "relative">;
|
|
702
|
+
readonly display: stylex.StyleXClassNameFor<"display", "flex">;
|
|
703
|
+
readonly flexDirection: stylex.StyleXClassNameFor<"flexDirection", "column">;
|
|
704
|
+
readonly alignItems: stylex.StyleXClassNameFor<"alignItems", "center">;
|
|
705
|
+
readonly justifyContent: stylex.StyleXClassNameFor<"justifyContent", "center">;
|
|
706
|
+
readonly gap: stylex.StyleXClassNameFor<"gap", "2px">;
|
|
707
|
+
readonly minWidth: stylex.StyleXClassNameFor<"minWidth", "52px">;
|
|
708
|
+
readonly minHeight: stylex.StyleXClassNameFor<"minHeight", "44px">;
|
|
709
|
+
readonly paddingBlock: stylex.StyleXClassNameFor<"paddingBlock", string>;
|
|
710
|
+
readonly paddingInline: stylex.StyleXClassNameFor<"paddingInline", string>;
|
|
711
|
+
readonly borderRadius: stylex.StyleXClassNameFor<"borderRadius", string>;
|
|
712
|
+
readonly color: stylex.StyleXClassNameFor<"color", string>;
|
|
713
|
+
readonly cursor: stylex.StyleXClassNameFor<"cursor", "pointer">;
|
|
714
|
+
readonly userSelect: stylex.StyleXClassNameFor<"userSelect", "none">;
|
|
715
|
+
readonly boxSizing: stylex.StyleXClassNameFor<"boxSizing", "border-box">;
|
|
716
|
+
readonly zIndex: stylex.StyleXClassNameFor<"zIndex", 1>;
|
|
717
|
+
readonly borderStyle: stylex.StyleXClassNameFor<"borderStyle", "none">;
|
|
718
|
+
readonly backgroundColor: stylex.StyleXClassNameFor<"backgroundColor", "transparent">;
|
|
719
|
+
readonly outline: stylex.StyleXClassNameFor<"outline", "none">;
|
|
720
|
+
}>;
|
|
721
|
+
readonly mobileDrawerOverlay: Readonly<{
|
|
722
|
+
readonly display: stylex.StyleXClassNameFor<"display", "flex">;
|
|
723
|
+
readonly justifyContent: stylex.StyleXClassNameFor<"justifyContent", "center">;
|
|
724
|
+
readonly alignItems: stylex.StyleXClassNameFor<"alignItems", "flex-end">;
|
|
725
|
+
}>;
|
|
726
|
+
readonly mobileDrawerModal: Readonly<{
|
|
727
|
+
readonly width: stylex.StyleXClassNameFor<"width", "100vw">;
|
|
728
|
+
readonly maxWidth: stylex.StyleXClassNameFor<"maxWidth", "100vw">;
|
|
729
|
+
readonly marginBlockEnd: stylex.StyleXClassNameFor<"marginBlockEnd", 0>;
|
|
730
|
+
readonly marginBlockStart: stylex.StyleXClassNameFor<"marginBlockStart", "auto">;
|
|
731
|
+
readonly marginInline: stylex.StyleXClassNameFor<"marginInline", 0>;
|
|
732
|
+
readonly borderTopLeftRadius: stylex.StyleXClassNameFor<"borderTopLeftRadius", string>;
|
|
733
|
+
readonly borderTopRightRadius: stylex.StyleXClassNameFor<"borderTopRightRadius", string>;
|
|
734
|
+
readonly borderBottomLeftRadius: stylex.StyleXClassNameFor<"borderBottomLeftRadius", 0>;
|
|
735
|
+
readonly borderBottomRightRadius: stylex.StyleXClassNameFor<"borderBottomRightRadius", 0>;
|
|
736
|
+
readonly borderWidth: stylex.StyleXClassNameFor<"borderWidth", 0>;
|
|
737
|
+
readonly borderBlockStartWidth: stylex.StyleXClassNameFor<"borderBlockStartWidth", "1px">;
|
|
738
|
+
readonly borderBlockStartStyle: stylex.StyleXClassNameFor<"borderBlockStartStyle", "solid">;
|
|
739
|
+
readonly borderBlockStartColor: stylex.StyleXClassNameFor<"borderBlockStartColor", string>;
|
|
740
|
+
readonly maxHeight: stylex.StyleXClassNameFor<"maxHeight", "85dvh">;
|
|
741
|
+
readonly height: stylex.StyleXClassNameFor<"height", "auto">;
|
|
742
|
+
readonly backgroundColor: stylex.StyleXClassNameFor<"backgroundColor", string>;
|
|
743
|
+
readonly boxShadow: stylex.StyleXClassNameFor<"boxShadow", string>;
|
|
744
|
+
readonly outline: stylex.StyleXClassNameFor<"outline", "none">;
|
|
745
|
+
readonly boxSizing: stylex.StyleXClassNameFor<"boxSizing", "border-box">;
|
|
746
|
+
readonly overflow: stylex.StyleXClassNameFor<"overflow", "hidden">;
|
|
747
|
+
}>;
|
|
748
|
+
readonly mobileDrawerDialog: Readonly<{
|
|
749
|
+
readonly outline: stylex.StyleXClassNameFor<"outline", "none">;
|
|
750
|
+
readonly display: stylex.StyleXClassNameFor<"display", "flex">;
|
|
751
|
+
readonly flexDirection: stylex.StyleXClassNameFor<"flexDirection", "column">;
|
|
752
|
+
readonly width: stylex.StyleXClassNameFor<"width", "100%">;
|
|
753
|
+
readonly maxHeight: stylex.StyleXClassNameFor<"maxHeight", "85dvh">;
|
|
754
|
+
readonly boxSizing: stylex.StyleXClassNameFor<"boxSizing", "border-box">;
|
|
755
|
+
readonly overflow: stylex.StyleXClassNameFor<"overflow", "hidden">;
|
|
756
|
+
}>;
|
|
757
|
+
readonly mobileDrawerHeader: Readonly<{
|
|
758
|
+
readonly display: stylex.StyleXClassNameFor<"display", "flex">;
|
|
759
|
+
readonly flexDirection: stylex.StyleXClassNameFor<"flexDirection", "column">;
|
|
760
|
+
readonly alignItems: stylex.StyleXClassNameFor<"alignItems", "center">;
|
|
371
761
|
readonly paddingBlockStart: stylex.StyleXClassNameFor<"paddingBlockStart", string>;
|
|
762
|
+
readonly paddingBlockEnd: stylex.StyleXClassNameFor<"paddingBlockEnd", string>;
|
|
763
|
+
readonly paddingInline: stylex.StyleXClassNameFor<"paddingInline", string>;
|
|
764
|
+
readonly borderBlockEndWidth: stylex.StyleXClassNameFor<"borderBlockEndWidth", "1px">;
|
|
765
|
+
readonly borderBlockEndStyle: stylex.StyleXClassNameFor<"borderBlockEndStyle", "solid">;
|
|
766
|
+
readonly borderBlockEndColor: stylex.StyleXClassNameFor<"borderBlockEndColor", string>;
|
|
767
|
+
readonly backgroundColor: stylex.StyleXClassNameFor<"backgroundColor", string>;
|
|
768
|
+
readonly gap: stylex.StyleXClassNameFor<"gap", string>;
|
|
769
|
+
readonly flexShrink: stylex.StyleXClassNameFor<"flexShrink", 0>;
|
|
770
|
+
readonly boxSizing: stylex.StyleXClassNameFor<"boxSizing", "border-box">;
|
|
771
|
+
}>;
|
|
772
|
+
readonly mobileDrawerHeaderRow: Readonly<{
|
|
773
|
+
readonly display: stylex.StyleXClassNameFor<"display", "flex">;
|
|
774
|
+
readonly alignItems: stylex.StyleXClassNameFor<"alignItems", "center">;
|
|
775
|
+
readonly justifyContent: stylex.StyleXClassNameFor<"justifyContent", "center">;
|
|
776
|
+
readonly width: stylex.StyleXClassNameFor<"width", "100%">;
|
|
777
|
+
}>;
|
|
778
|
+
readonly mobileDrawerTitle: Readonly<{
|
|
779
|
+
readonly fontSize: stylex.StyleXClassNameFor<"fontSize", string>;
|
|
780
|
+
readonly fontWeight: stylex.StyleXClassNameFor<"fontWeight", string>;
|
|
781
|
+
readonly color: stylex.StyleXClassNameFor<"color", string>;
|
|
782
|
+
readonly margin: stylex.StyleXClassNameFor<"margin", 0>;
|
|
783
|
+
}>;
|
|
784
|
+
readonly mobileDrawerBody: Readonly<{
|
|
785
|
+
readonly display: stylex.StyleXClassNameFor<"display", "flex">;
|
|
786
|
+
readonly flexDirection: stylex.StyleXClassNameFor<"flexDirection", "column">;
|
|
787
|
+
readonly flexGrow: stylex.StyleXClassNameFor<"flexGrow", 1>;
|
|
788
|
+
readonly paddingBlockStart: stylex.StyleXClassNameFor<"paddingBlockStart", string>;
|
|
789
|
+
readonly paddingBlockEnd: stylex.StyleXClassNameFor<"paddingBlockEnd", `calc(max(${stylex.StyleXVar<string>}, env(safe-area-inset-bottom, ${stylex.StyleXVar<string>})) + ${stylex.StyleXVar<string>})`>;
|
|
790
|
+
readonly paddingInline: stylex.StyleXClassNameFor<"paddingInline", string>;
|
|
791
|
+
readonly overflowY: stylex.StyleXClassNameFor<"overflowY", "auto">;
|
|
792
|
+
readonly boxSizing: stylex.StyleXClassNameFor<"boxSizing", "border-box">;
|
|
793
|
+
}>;
|
|
794
|
+
readonly mobileDrawerContent: Readonly<{
|
|
795
|
+
readonly display: stylex.StyleXClassNameFor<"display", "flex">;
|
|
796
|
+
readonly flexDirection: stylex.StyleXClassNameFor<"flexDirection", "column">;
|
|
797
|
+
readonly gap: stylex.StyleXClassNameFor<"gap", string>;
|
|
798
|
+
}>;
|
|
799
|
+
readonly mobileDrawerGroup: Readonly<{
|
|
800
|
+
readonly display: stylex.StyleXClassNameFor<"display", "flex">;
|
|
801
|
+
readonly flexDirection: stylex.StyleXClassNameFor<"flexDirection", "column">;
|
|
802
|
+
readonly gap: stylex.StyleXClassNameFor<"gap", string>;
|
|
803
|
+
}>;
|
|
804
|
+
readonly mobileDrawerGroupTitle: Readonly<{
|
|
805
|
+
readonly fontSize: stylex.StyleXClassNameFor<"fontSize", string>;
|
|
806
|
+
readonly fontWeight: stylex.StyleXClassNameFor<"fontWeight", string>;
|
|
807
|
+
readonly color: stylex.StyleXClassNameFor<"color", string>;
|
|
808
|
+
readonly paddingBlock: stylex.StyleXClassNameFor<"paddingBlock", string>;
|
|
809
|
+
readonly paddingInline: stylex.StyleXClassNameFor<"paddingInline", string>;
|
|
810
|
+
readonly textTransform: stylex.StyleXClassNameFor<"textTransform", "uppercase">;
|
|
811
|
+
readonly letterSpacing: stylex.StyleXClassNameFor<"letterSpacing", "0.05em">;
|
|
812
|
+
}>;
|
|
813
|
+
readonly mobileDrawerFooter: Readonly<{
|
|
814
|
+
readonly paddingBlockStart: stylex.StyleXClassNameFor<"paddingBlockStart", string>;
|
|
815
|
+
readonly borderBlockStartWidth: stylex.StyleXClassNameFor<"borderBlockStartWidth", "1px">;
|
|
816
|
+
readonly borderBlockStartStyle: stylex.StyleXClassNameFor<"borderBlockStartStyle", "solid">;
|
|
817
|
+
readonly borderBlockStartColor: stylex.StyleXClassNameFor<"borderBlockStartColor", string>;
|
|
818
|
+
readonly marginBlockStart: stylex.StyleXClassNameFor<"marginBlockStart", string>;
|
|
372
819
|
}>;
|
|
373
820
|
}>;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export type { SidebarAsideProps, SidebarDividerProps, SidebarFooterProps, SidebarGroupProps, SidebarHeaderProps, SidebarItemProps, SidebarMainProps, SidebarProps, } from './Sidebar';
|
|
2
|
-
export { Sidebar, SidebarAside, SidebarDivider, SidebarFooter, SidebarGroup, SidebarHeader, SidebarItem, SidebarMain, } from './Sidebar';
|
|
1
|
+
export type { SidebarAsideProps, SidebarBrandProps, SidebarDividerProps, SidebarFooterProps, SidebarGroupProps, SidebarHeaderProps, SidebarItemProps, SidebarLayout, SidebarMainProps, SidebarProps, SidebarUserProps, } from './Sidebar';
|
|
2
|
+
export { Sidebar, SidebarAside, SidebarBrand, SidebarDivider, SidebarFooter, SidebarGroup, SidebarHeader, SidebarItem, SidebarMain, SidebarUser, useSidebar, } from './Sidebar';
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export type { TableBodyProps, TableCaptionProps, TableCellProps, TableEmptyProps, TableFooterProps,
|
|
1
|
+
export type { TableBodyProps, TableCaptionProps, TableCellProps, TableEmptyProps, TableFooterProps, TableHeaderProps, TableHeadProps, TableProps, TableRowProps, TableSkeletonProps, } from './Table';
|
|
2
2
|
export { Table, TableBody, TableCaption, TableCell, TableEmpty, TableFooter, TableHead, TableHeader, TableRow, TableSkeleton, } from './Table';
|
|
@@ -39,8 +39,26 @@ export declare const styles: Readonly<{
|
|
|
39
39
|
readonly borderInlineEndColor: stylex.StyleXClassNameFor<"borderInlineEndColor", string>;
|
|
40
40
|
}>;
|
|
41
41
|
readonly tabListTertiary: Readonly<{
|
|
42
|
-
readonly
|
|
43
|
-
readonly
|
|
42
|
+
readonly display: stylex.StyleXClassNameFor<"display", "inline-flex">;
|
|
43
|
+
readonly alignItems: stylex.StyleXClassNameFor<"alignItems", "center">;
|
|
44
|
+
readonly width: stylex.StyleXClassNameFor<"width", "fit-content">;
|
|
45
|
+
readonly maxWidth: stylex.StyleXClassNameFor<"maxWidth", "100%">;
|
|
46
|
+
readonly backgroundColor: stylex.StyleXClassNameFor<"backgroundColor", string>;
|
|
47
|
+
readonly borderRadius: stylex.StyleXClassNameFor<"borderRadius", string>;
|
|
48
|
+
readonly padding: stylex.StyleXClassNameFor<"padding", string>;
|
|
49
|
+
readonly gap: stylex.StyleXClassNameFor<"gap", string>;
|
|
50
|
+
readonly borderBlockStartWidth: stylex.StyleXClassNameFor<"borderBlockStartWidth", "1px">;
|
|
51
|
+
readonly borderBlockStartStyle: stylex.StyleXClassNameFor<"borderBlockStartStyle", "solid">;
|
|
52
|
+
readonly borderBlockStartColor: stylex.StyleXClassNameFor<"borderBlockStartColor", string>;
|
|
53
|
+
readonly borderBlockEndWidth: stylex.StyleXClassNameFor<"borderBlockEndWidth", "1px">;
|
|
54
|
+
readonly borderBlockEndStyle: stylex.StyleXClassNameFor<"borderBlockEndStyle", "solid">;
|
|
55
|
+
readonly borderBlockEndColor: stylex.StyleXClassNameFor<"borderBlockEndColor", string>;
|
|
56
|
+
readonly borderInlineStartWidth: stylex.StyleXClassNameFor<"borderInlineStartWidth", "1px">;
|
|
57
|
+
readonly borderInlineStartStyle: stylex.StyleXClassNameFor<"borderInlineStartStyle", "solid">;
|
|
58
|
+
readonly borderInlineStartColor: stylex.StyleXClassNameFor<"borderInlineStartColor", string>;
|
|
59
|
+
readonly borderInlineEndWidth: stylex.StyleXClassNameFor<"borderInlineEndWidth", "1px">;
|
|
60
|
+
readonly borderInlineEndStyle: stylex.StyleXClassNameFor<"borderInlineEndStyle", "solid">;
|
|
61
|
+
readonly borderInlineEndColor: stylex.StyleXClassNameFor<"borderInlineEndColor", string>;
|
|
44
62
|
}>;
|
|
45
63
|
readonly tab: Readonly<{
|
|
46
64
|
readonly position: stylex.StyleXClassNameFor<"position", "relative">;
|
|
@@ -86,6 +104,10 @@ export declare const styles: Readonly<{
|
|
|
86
104
|
}>;
|
|
87
105
|
readonly tabTertiary: Readonly<{
|
|
88
106
|
readonly borderRadius: stylex.StyleXClassNameFor<"borderRadius", string>;
|
|
107
|
+
readonly paddingBlock: stylex.StyleXClassNameFor<"paddingBlock", string>;
|
|
108
|
+
readonly paddingInline: stylex.StyleXClassNameFor<"paddingInline", string>;
|
|
109
|
+
readonly fontSize: stylex.StyleXClassNameFor<"fontSize", string>;
|
|
110
|
+
readonly lineHeight: stylex.StyleXClassNameFor<"lineHeight", string>;
|
|
89
111
|
readonly ':hover': stylex.StyleXClassNameFor<":hover", {
|
|
90
112
|
readonly color: stylex.StyleXVar<string>;
|
|
91
113
|
}>;
|
|
@@ -98,6 +120,7 @@ export declare const styles: Readonly<{
|
|
|
98
120
|
}>;
|
|
99
121
|
readonly tabTertiarySelected: Readonly<{
|
|
100
122
|
readonly color: stylex.StyleXClassNameFor<"color", string>;
|
|
123
|
+
readonly fontWeight: stylex.StyleXClassNameFor<"fontWeight", string>;
|
|
101
124
|
}>;
|
|
102
125
|
readonly tabDisabled: Readonly<{
|
|
103
126
|
readonly opacity: stylex.StyleXClassNameFor<"opacity", 0.4>;
|
|
@@ -142,10 +165,24 @@ export declare const styles: Readonly<{
|
|
|
142
165
|
readonly height: stylex.StyleXClassNameFor<"height", "100%">;
|
|
143
166
|
readonly backgroundColor: stylex.StyleXClassNameFor<"backgroundColor", string>;
|
|
144
167
|
readonly borderRadius: stylex.StyleXClassNameFor<"borderRadius", string>;
|
|
168
|
+
readonly boxShadow: stylex.StyleXClassNameFor<"boxShadow", string>;
|
|
169
|
+
readonly borderBlockStartWidth: stylex.StyleXClassNameFor<"borderBlockStartWidth", "1px">;
|
|
170
|
+
readonly borderBlockStartStyle: stylex.StyleXClassNameFor<"borderBlockStartStyle", "solid">;
|
|
171
|
+
readonly borderBlockStartColor: stylex.StyleXClassNameFor<"borderBlockStartColor", string>;
|
|
172
|
+
readonly borderBlockEndWidth: stylex.StyleXClassNameFor<"borderBlockEndWidth", "1px">;
|
|
173
|
+
readonly borderBlockEndStyle: stylex.StyleXClassNameFor<"borderBlockEndStyle", "solid">;
|
|
174
|
+
readonly borderBlockEndColor: stylex.StyleXClassNameFor<"borderBlockEndColor", string>;
|
|
175
|
+
readonly borderInlineStartWidth: stylex.StyleXClassNameFor<"borderInlineStartWidth", "1px">;
|
|
176
|
+
readonly borderInlineStartStyle: stylex.StyleXClassNameFor<"borderInlineStartStyle", "solid">;
|
|
177
|
+
readonly borderInlineStartColor: stylex.StyleXClassNameFor<"borderInlineStartColor", string>;
|
|
178
|
+
readonly borderInlineEndWidth: stylex.StyleXClassNameFor<"borderInlineEndWidth", "1px">;
|
|
179
|
+
readonly borderInlineEndStyle: stylex.StyleXClassNameFor<"borderInlineEndStyle", "solid">;
|
|
180
|
+
readonly borderInlineEndColor: stylex.StyleXClassNameFor<"borderInlineEndColor", string>;
|
|
181
|
+
readonly boxSizing: stylex.StyleXClassNameFor<"boxSizing", "border-box">;
|
|
145
182
|
readonly zIndex: stylex.StyleXClassNameFor<"zIndex", -1>;
|
|
146
183
|
readonly transitionProperty: stylex.StyleXClassNameFor<"transitionProperty", "translate, width, height">;
|
|
147
184
|
readonly transitionDuration: stylex.StyleXClassNameFor<"transitionDuration", "0.25s">;
|
|
148
|
-
readonly transitionTimingFunction: stylex.StyleXClassNameFor<"transitionTimingFunction", "
|
|
185
|
+
readonly transitionTimingFunction: stylex.StyleXClassNameFor<"transitionTimingFunction", "cubic-bezier(0.16, 1, 0.3, 1)">;
|
|
149
186
|
}>;
|
|
150
187
|
readonly tabPanels: Readonly<{
|
|
151
188
|
readonly position: stylex.StyleXClassNameFor<"position", "relative">;
|