@livepeer/design-system 0.0.0-beta.9 → 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (74) hide show
  1. package/LICENSE +7 -0
  2. package/README.md +6 -2
  3. package/dist/components/Accordion.d.ts +1512 -0
  4. package/dist/components/Alert.d.ts +752 -0
  5. package/dist/components/AlertDialog.d.ts +9 -7
  6. package/dist/components/AppBar.d.ts +755 -0
  7. package/dist/components/Avatar.d.ts +2270 -0
  8. package/dist/components/Badge.d.ts +147 -385
  9. package/dist/components/Banner.d.ts +754 -1
  10. package/dist/components/Box.d.ts +749 -0
  11. package/dist/components/Button.d.ts +753 -1
  12. package/dist/components/Card.d.ts +147 -385
  13. package/dist/components/Checkbox.d.ts +761 -0
  14. package/dist/components/Code.d.ts +751 -0
  15. package/dist/components/Container.d.ts +148 -386
  16. package/dist/components/ContextMenu.d.ts +3766 -0
  17. package/dist/components/ControlGroup.d.ts +749 -0
  18. package/dist/components/DesignSystemProvider.d.ts +9 -0
  19. package/dist/components/Dialog.d.ts +9 -3
  20. package/dist/components/DropdownMenu.d.ts +6016 -3
  21. package/dist/components/Flex.d.ts +755 -0
  22. package/dist/components/Grid.d.ts +757 -0
  23. package/dist/components/Heading.d.ts +14 -0
  24. package/dist/components/IconButton.d.ts +753 -0
  25. package/dist/components/Image.d.ts +749 -0
  26. package/dist/components/Kbd.d.ts +752 -0
  27. package/dist/components/Label.d.ts +755 -1
  28. package/dist/components/Link.d.ts +148 -386
  29. package/dist/components/Menu.d.ts +10498 -0
  30. package/dist/components/Overlay.d.ts +1498 -0
  31. package/dist/components/Panel.d.ts +1498 -0
  32. package/dist/components/Paragraph.d.ts +14 -0
  33. package/dist/components/Popover.d.ts +13 -0
  34. package/dist/components/ProgressBar.d.ts +761 -0
  35. package/dist/components/Promo.d.ts +754 -1
  36. package/dist/components/Radio.d.ts +1510 -0
  37. package/dist/components/RadioCard.d.ts +149 -389
  38. package/dist/components/RadioGrid.d.ts +1500 -0
  39. package/dist/components/Scrollbar.d.ts +6 -0
  40. package/dist/components/Section.d.ts +751 -0
  41. package/dist/components/Select.d.ts +1504 -1
  42. package/dist/components/Separator.d.ts +753 -0
  43. package/dist/components/Sheet.d.ts +766 -0
  44. package/dist/components/SimpleToggle.d.ts +753 -0
  45. package/dist/components/Skeleton.d.ts +751 -0
  46. package/dist/components/Slider.d.ts +758 -0
  47. package/dist/components/Snackbar/SnackbarProvider.d.ts +2 -2
  48. package/dist/components/Snackbar/transitionStyles.d.ts +58 -58
  49. package/dist/components/Snackbar/useSnackbar.d.ts +1 -1
  50. package/dist/components/Status.d.ts +752 -0
  51. package/dist/components/Sub.d.ts +749 -0
  52. package/dist/components/Sup.d.ts +749 -0
  53. package/dist/components/Switch.d.ts +1509 -1
  54. package/dist/components/TabLink.d.ts +751 -0
  55. package/dist/components/Table.d.ts +1178 -3082
  56. package/dist/components/Tabs.d.ts +4500 -4
  57. package/dist/components/Text.d.ts +753 -1
  58. package/dist/components/TextArea.d.ts +753 -0
  59. package/dist/components/TextField.d.ts +754 -1
  60. package/dist/components/Tooltip.d.ts +10 -0
  61. package/dist/components/TreeItem.d.ts +751 -0
  62. package/dist/components/VerifiedBadge.d.ts +762 -0
  63. package/dist/custom/AppBar.d.ts +148 -386
  64. package/dist/custom/Avatars.d.ts +1 -0
  65. package/dist/custom/DarkThemeButton.d.ts +1 -0
  66. package/dist/custom/Kbds.d.ts +1 -0
  67. package/dist/custom/Snackbar.d.ts +1 -0
  68. package/dist/custom/Toolbar.d.ts +1 -0
  69. package/dist/index.d.ts +53 -20
  70. package/dist/index.es.js +3853 -1645
  71. package/dist/index.js +3884 -1891
  72. package/dist/stitches.config.d.ts +6320 -23
  73. package/package.json +61 -58
  74. package/dist/components/Accordian.d.ts +0 -4
@@ -0,0 +1,1500 @@
1
+ /// <reference types="react" />
2
+ import * as RadioGroupPrimitive from "@radix-ui/react-radio-group";
3
+ export declare const RadioGridGroup: import("@stitches/react/types/styled-component").StyledComponent<import("react").ForwardRefExoticComponent<RadioGroupPrimitive.RadioGroupProps & import("react").RefAttributes<HTMLDivElement>>, {}, {
4
+ bp1: "(min-width: 520px)";
5
+ bp2: "(min-width: 900px)";
6
+ bp3: "(min-width: 1200px)";
7
+ bp4: "(min-width: 1800px)";
8
+ motion: "(prefers-reduced-motion)";
9
+ hover: "(any-hover: hover)";
10
+ dark: "(prefers-color-scheme: dark)";
11
+ light: "(prefers-color-scheme: light)";
12
+ }, import("@stitches/react/types/css-util").CSS<{
13
+ bp1: "(min-width: 520px)";
14
+ bp2: "(min-width: 900px)";
15
+ bp3: "(min-width: 1200px)";
16
+ bp4: "(min-width: 1800px)";
17
+ motion: "(prefers-reduced-motion)";
18
+ hover: "(any-hover: hover)";
19
+ dark: "(prefers-color-scheme: dark)";
20
+ light: "(prefers-color-scheme: light)";
21
+ }, {
22
+ colors: {
23
+ hiContrast: string;
24
+ loContrast: string;
25
+ canvas: string;
26
+ panel: string;
27
+ transparentPanel: string;
28
+ shadowLight: string;
29
+ shadowDark: string;
30
+ blackA1: string;
31
+ blackA2: string;
32
+ blackA3: string;
33
+ blackA4: string;
34
+ blackA5: string;
35
+ blackA6: string;
36
+ blackA7: string;
37
+ blackA8: string;
38
+ blackA9: string;
39
+ blackA10: string;
40
+ blackA11: string;
41
+ blackA12: string;
42
+ whiteA1: string;
43
+ whiteA2: string;
44
+ whiteA3: string;
45
+ whiteA4: string;
46
+ whiteA5: string;
47
+ whiteA6: string;
48
+ whiteA7: string;
49
+ whiteA8: string;
50
+ whiteA9: string;
51
+ whiteA10: string;
52
+ whiteA11: string;
53
+ whiteA12: string;
54
+ gold1: string;
55
+ gold2: string;
56
+ gold3: string;
57
+ gold4: string;
58
+ gold5: string;
59
+ gold6: string;
60
+ gold7: string;
61
+ gold8: string;
62
+ gold9: string;
63
+ gold10: string;
64
+ gold11: string;
65
+ gold12: string;
66
+ bronze1: string;
67
+ bronze2: string;
68
+ bronze3: string;
69
+ bronze4: string;
70
+ bronze5: string;
71
+ bronze6: string;
72
+ bronze7: string;
73
+ bronze8: string;
74
+ bronze9: string;
75
+ bronze10: string;
76
+ bronze11: string;
77
+ bronze12: string;
78
+ brown1: string;
79
+ brown2: string;
80
+ brown3: string;
81
+ brown4: string;
82
+ brown5: string;
83
+ brown6: string;
84
+ brown7: string;
85
+ brown8: string;
86
+ brown9: string;
87
+ brown10: string;
88
+ brown11: string;
89
+ brown12: string;
90
+ orange1: string;
91
+ orange2: string;
92
+ orange3: string;
93
+ orange4: string;
94
+ orange5: string;
95
+ orange6: string;
96
+ orange7: string;
97
+ orange8: string;
98
+ orange9: string;
99
+ orange10: string;
100
+ orange11: string;
101
+ orange12: string;
102
+ amber1: string;
103
+ amber2: string;
104
+ amber3: string;
105
+ amber4: string;
106
+ amber5: string;
107
+ amber6: string;
108
+ amber7: string;
109
+ amber8: string;
110
+ amber9: string;
111
+ amber10: string;
112
+ amber11: string;
113
+ amber12: string;
114
+ yellow1: string;
115
+ yellow2: string;
116
+ yellow3: string;
117
+ yellow4: string;
118
+ yellow5: string;
119
+ yellow6: string;
120
+ yellow7: string;
121
+ yellow8: string;
122
+ yellow9: string;
123
+ yellow10: string;
124
+ yellow11: string;
125
+ yellow12: string;
126
+ lime1: string;
127
+ lime2: string;
128
+ lime3: string;
129
+ lime4: string;
130
+ lime5: string;
131
+ lime6: string;
132
+ lime7: string;
133
+ lime8: string;
134
+ lime9: string;
135
+ lime10: string;
136
+ lime11: string;
137
+ lime12: string;
138
+ grass1: string;
139
+ grass2: string;
140
+ grass3: string;
141
+ grass4: string;
142
+ grass5: string;
143
+ grass6: string;
144
+ grass7: string;
145
+ grass8: string;
146
+ grass9: string;
147
+ grass10: string;
148
+ grass11: string;
149
+ grass12: string;
150
+ green1: string;
151
+ green2: string;
152
+ green3: string;
153
+ green4: string;
154
+ green5: string;
155
+ green6: string;
156
+ green7: string;
157
+ green8: string;
158
+ green9: string;
159
+ green10: string;
160
+ green11: string;
161
+ green12: string;
162
+ teal1: string;
163
+ teal2: string;
164
+ teal3: string;
165
+ teal4: string;
166
+ teal5: string;
167
+ teal6: string;
168
+ teal7: string;
169
+ teal8: string;
170
+ teal9: string;
171
+ teal10: string;
172
+ teal11: string;
173
+ teal12: string;
174
+ cyan1: string;
175
+ cyan2: string;
176
+ cyan3: string;
177
+ cyan4: string;
178
+ cyan5: string;
179
+ cyan6: string;
180
+ cyan7: string;
181
+ cyan8: string;
182
+ cyan9: string;
183
+ cyan10: string;
184
+ cyan11: string;
185
+ cyan12: string;
186
+ mint1: string;
187
+ mint2: string;
188
+ mint3: string;
189
+ mint4: string;
190
+ mint5: string;
191
+ mint6: string;
192
+ mint7: string;
193
+ mint8: string;
194
+ mint9: string;
195
+ mint10: string;
196
+ mint11: string;
197
+ mint12: string;
198
+ sky1: string;
199
+ sky2: string;
200
+ sky3: string;
201
+ sky4: string;
202
+ sky5: string;
203
+ sky6: string;
204
+ sky7: string;
205
+ sky8: string;
206
+ sky9: string;
207
+ sky10: string;
208
+ sky11: string;
209
+ sky12: string;
210
+ blue1: string;
211
+ blue2: string;
212
+ blue3: string;
213
+ blue4: string;
214
+ blue5: string;
215
+ blue6: string;
216
+ blue7: string;
217
+ blue8: string;
218
+ blue9: string;
219
+ blue10: string;
220
+ blue11: string;
221
+ blue12: string;
222
+ indigo1: string;
223
+ indigo2: string;
224
+ indigo3: string;
225
+ indigo4: string;
226
+ indigo5: string;
227
+ indigo6: string;
228
+ indigo7: string;
229
+ indigo8: string;
230
+ indigo9: string;
231
+ indigo10: string;
232
+ indigo11: string;
233
+ indigo12: string;
234
+ violet1: string;
235
+ violet2: string;
236
+ violet3: string;
237
+ violet4: string;
238
+ violet5: string;
239
+ violet6: string;
240
+ violet7: string;
241
+ violet8: string;
242
+ violet9: string;
243
+ violet10: string;
244
+ violet11: string;
245
+ violet12: string;
246
+ purple1: string;
247
+ purple2: string;
248
+ purple3: string;
249
+ purple4: string;
250
+ purple5: string;
251
+ purple6: string;
252
+ purple7: string;
253
+ purple8: string;
254
+ purple9: string;
255
+ purple10: string;
256
+ purple11: string;
257
+ purple12: string;
258
+ plum1: string;
259
+ plum2: string;
260
+ plum3: string;
261
+ plum4: string;
262
+ plum5: string;
263
+ plum6: string;
264
+ plum7: string;
265
+ plum8: string;
266
+ plum9: string;
267
+ plum10: string;
268
+ plum11: string;
269
+ plum12: string;
270
+ pink1: string;
271
+ pink2: string;
272
+ pink3: string;
273
+ pink4: string;
274
+ pink5: string;
275
+ pink6: string;
276
+ pink7: string;
277
+ pink8: string;
278
+ pink9: string;
279
+ pink10: string;
280
+ pink11: string;
281
+ pink12: string;
282
+ crimson1: string;
283
+ crimson2: string;
284
+ crimson3: string;
285
+ crimson4: string;
286
+ crimson5: string;
287
+ crimson6: string;
288
+ crimson7: string;
289
+ crimson8: string;
290
+ crimson9: string;
291
+ crimson10: string;
292
+ crimson11: string;
293
+ crimson12: string;
294
+ red1: string;
295
+ red2: string;
296
+ red3: string;
297
+ red4: string;
298
+ red5: string;
299
+ red6: string;
300
+ red7: string;
301
+ red8: string;
302
+ red9: string;
303
+ red10: string;
304
+ red11: string;
305
+ red12: string;
306
+ tomato1: string;
307
+ tomato2: string;
308
+ tomato3: string;
309
+ tomato4: string;
310
+ tomato5: string;
311
+ tomato6: string;
312
+ tomato7: string;
313
+ tomato8: string;
314
+ tomato9: string;
315
+ tomato10: string;
316
+ tomato11: string;
317
+ tomato12: string;
318
+ sand1: string;
319
+ sand2: string;
320
+ sand3: string;
321
+ sand4: string;
322
+ sand5: string;
323
+ sand6: string;
324
+ sand7: string;
325
+ sand8: string;
326
+ sand9: string;
327
+ sand10: string;
328
+ sand11: string;
329
+ sand12: string;
330
+ olive1: string;
331
+ olive2: string;
332
+ olive3: string;
333
+ olive4: string;
334
+ olive5: string;
335
+ olive6: string;
336
+ olive7: string;
337
+ olive8: string;
338
+ olive9: string;
339
+ olive10: string;
340
+ olive11: string;
341
+ olive12: string;
342
+ sage1: string;
343
+ sage2: string;
344
+ sage3: string;
345
+ sage4: string;
346
+ sage5: string;
347
+ sage6: string;
348
+ sage7: string;
349
+ sage8: string;
350
+ sage9: string;
351
+ sage10: string;
352
+ sage11: string;
353
+ sage12: string;
354
+ slate1: string;
355
+ slate2: string;
356
+ slate3: string;
357
+ slate4: string;
358
+ slate5: string;
359
+ slate6: string;
360
+ slate7: string;
361
+ slate8: string;
362
+ slate9: string;
363
+ slate10: string;
364
+ slate11: string;
365
+ slate12: string;
366
+ mauve1: string;
367
+ mauve2: string;
368
+ mauve3: string;
369
+ mauve4: string;
370
+ mauve5: string;
371
+ mauve6: string;
372
+ mauve7: string;
373
+ mauve8: string;
374
+ mauve9: string;
375
+ mauve10: string;
376
+ mauve11: string;
377
+ mauve12: string;
378
+ gray1: string;
379
+ gray2: string;
380
+ gray3: string;
381
+ gray4: string;
382
+ gray5: string;
383
+ gray6: string;
384
+ gray7: string;
385
+ gray8: string;
386
+ gray9: string;
387
+ gray10: string;
388
+ gray11: string;
389
+ gray12: string;
390
+ };
391
+ fonts: {
392
+ untitled: string;
393
+ mono: string;
394
+ };
395
+ space: {
396
+ 1: string;
397
+ 2: string;
398
+ 3: string;
399
+ 4: string;
400
+ 5: string;
401
+ 6: string;
402
+ 7: string;
403
+ 8: string;
404
+ 9: string;
405
+ };
406
+ sizes: {
407
+ 1: string;
408
+ 2: string;
409
+ 3: string;
410
+ 4: string;
411
+ 5: string;
412
+ 6: string;
413
+ 7: string;
414
+ 8: string;
415
+ 9: string;
416
+ };
417
+ fontSizes: {
418
+ 1: string;
419
+ 2: string;
420
+ 3: string;
421
+ 4: string;
422
+ 5: string;
423
+ 6: string;
424
+ 7: string;
425
+ 8: string;
426
+ 9: string;
427
+ };
428
+ radii: {
429
+ 1: string;
430
+ 2: string;
431
+ 3: string;
432
+ 4: string;
433
+ round: string;
434
+ pill: string;
435
+ };
436
+ zIndices: {
437
+ 1: string;
438
+ 2: string;
439
+ 3: string;
440
+ 4: string;
441
+ max: string;
442
+ };
443
+ }, import("@stitches/react/types/config").DefaultThemeMap, {
444
+ p: (value: {
445
+ readonly [$$PropertyValue]: "padding";
446
+ }) => {
447
+ padding: {
448
+ readonly [$$PropertyValue]: "padding";
449
+ };
450
+ };
451
+ pt: (value: {
452
+ readonly [$$PropertyValue]: "paddingTop";
453
+ }) => {
454
+ paddingTop: {
455
+ readonly [$$PropertyValue]: "paddingTop";
456
+ };
457
+ };
458
+ pr: (value: {
459
+ readonly [$$PropertyValue]: "paddingRight";
460
+ }) => {
461
+ paddingRight: {
462
+ readonly [$$PropertyValue]: "paddingRight";
463
+ };
464
+ };
465
+ pb: (value: {
466
+ readonly [$$PropertyValue]: "paddingBottom";
467
+ }) => {
468
+ paddingBottom: {
469
+ readonly [$$PropertyValue]: "paddingBottom";
470
+ };
471
+ };
472
+ pl: (value: {
473
+ readonly [$$PropertyValue]: "paddingLeft";
474
+ }) => {
475
+ paddingLeft: {
476
+ readonly [$$PropertyValue]: "paddingLeft";
477
+ };
478
+ };
479
+ px: (value: {
480
+ readonly [$$PropertyValue]: "paddingLeft";
481
+ }) => {
482
+ paddingLeft: {
483
+ readonly [$$PropertyValue]: "paddingLeft";
484
+ };
485
+ paddingRight: {
486
+ readonly [$$PropertyValue]: "paddingLeft";
487
+ };
488
+ };
489
+ py: (value: {
490
+ readonly [$$PropertyValue]: "paddingTop";
491
+ }) => {
492
+ paddingTop: {
493
+ readonly [$$PropertyValue]: "paddingTop";
494
+ };
495
+ paddingBottom: {
496
+ readonly [$$PropertyValue]: "paddingTop";
497
+ };
498
+ };
499
+ m: (value: {
500
+ readonly [$$PropertyValue]: "margin";
501
+ }) => {
502
+ margin: {
503
+ readonly [$$PropertyValue]: "margin";
504
+ };
505
+ };
506
+ mt: (value: {
507
+ readonly [$$PropertyValue]: "marginTop";
508
+ }) => {
509
+ marginTop: {
510
+ readonly [$$PropertyValue]: "marginTop";
511
+ };
512
+ };
513
+ mr: (value: {
514
+ readonly [$$PropertyValue]: "marginRight";
515
+ }) => {
516
+ marginRight: {
517
+ readonly [$$PropertyValue]: "marginRight";
518
+ };
519
+ };
520
+ mb: (value: {
521
+ readonly [$$PropertyValue]: "marginBottom";
522
+ }) => {
523
+ marginBottom: {
524
+ readonly [$$PropertyValue]: "marginBottom";
525
+ };
526
+ };
527
+ ml: (value: {
528
+ readonly [$$PropertyValue]: "marginLeft";
529
+ }) => {
530
+ marginLeft: {
531
+ readonly [$$PropertyValue]: "marginLeft";
532
+ };
533
+ };
534
+ mx: (value: {
535
+ readonly [$$PropertyValue]: "marginLeft";
536
+ }) => {
537
+ marginLeft: {
538
+ readonly [$$PropertyValue]: "marginLeft";
539
+ };
540
+ marginRight: {
541
+ readonly [$$PropertyValue]: "marginLeft";
542
+ };
543
+ };
544
+ my: (value: {
545
+ readonly [$$PropertyValue]: "marginTop";
546
+ }) => {
547
+ marginTop: {
548
+ readonly [$$PropertyValue]: "marginTop";
549
+ };
550
+ marginBottom: {
551
+ readonly [$$PropertyValue]: "marginTop";
552
+ };
553
+ };
554
+ ta: (value: {
555
+ readonly [$$PropertyValue]: "textAlign";
556
+ }) => {
557
+ textAlign: {
558
+ readonly [$$PropertyValue]: "textAlign";
559
+ };
560
+ };
561
+ fd: (value: {
562
+ readonly [$$PropertyValue]: "flexDirection";
563
+ }) => {
564
+ flexDirection: {
565
+ readonly [$$PropertyValue]: "flexDirection";
566
+ };
567
+ };
568
+ fw: (value: {
569
+ readonly [$$PropertyValue]: "flexWrap";
570
+ }) => {
571
+ flexWrap: {
572
+ readonly [$$PropertyValue]: "flexWrap";
573
+ };
574
+ };
575
+ ai: (value: {
576
+ readonly [$$PropertyValue]: "alignItems";
577
+ }) => {
578
+ alignItems: {
579
+ readonly [$$PropertyValue]: "alignItems";
580
+ };
581
+ };
582
+ ac: (value: {
583
+ readonly [$$PropertyValue]: "alignContent";
584
+ }) => {
585
+ alignContent: {
586
+ readonly [$$PropertyValue]: "alignContent";
587
+ };
588
+ };
589
+ jc: (value: {
590
+ readonly [$$PropertyValue]: "justifyContent";
591
+ }) => {
592
+ justifyContent: {
593
+ readonly [$$PropertyValue]: "justifyContent";
594
+ };
595
+ };
596
+ as: (value: {
597
+ readonly [$$PropertyValue]: "alignSelf";
598
+ }) => {
599
+ alignSelf: {
600
+ readonly [$$PropertyValue]: "alignSelf";
601
+ };
602
+ };
603
+ fg: (value: {
604
+ readonly [$$PropertyValue]: "flexGrow";
605
+ }) => {
606
+ flexGrow: {
607
+ readonly [$$PropertyValue]: "flexGrow";
608
+ };
609
+ };
610
+ fs: (value: {
611
+ readonly [$$PropertyValue]: "flexShrink";
612
+ }) => {
613
+ flexShrink: {
614
+ readonly [$$PropertyValue]: "flexShrink";
615
+ };
616
+ };
617
+ fb: (value: {
618
+ readonly [$$PropertyValue]: "flexBasis";
619
+ }) => {
620
+ flexBasis: {
621
+ readonly [$$PropertyValue]: "flexBasis";
622
+ };
623
+ };
624
+ bc: (value: {
625
+ readonly [$$PropertyValue]: "backgroundColor";
626
+ }) => {
627
+ backgroundColor: {
628
+ readonly [$$PropertyValue]: "backgroundColor";
629
+ };
630
+ };
631
+ br: (value: {
632
+ readonly [$$PropertyValue]: "borderRadius";
633
+ }) => {
634
+ borderRadius: {
635
+ readonly [$$PropertyValue]: "borderRadius";
636
+ };
637
+ };
638
+ btrr: (value: {
639
+ readonly [$$PropertyValue]: "borderTopRightRadius";
640
+ }) => {
641
+ borderTopRightRadius: {
642
+ readonly [$$PropertyValue]: "borderTopRightRadius";
643
+ };
644
+ };
645
+ bbrr: (value: {
646
+ readonly [$$PropertyValue]: "borderBottomRightRadius";
647
+ }) => {
648
+ borderBottomRightRadius: {
649
+ readonly [$$PropertyValue]: "borderBottomRightRadius";
650
+ };
651
+ };
652
+ bblr: (value: {
653
+ readonly [$$PropertyValue]: "borderBottomLeftRadius";
654
+ }) => {
655
+ borderBottomLeftRadius: {
656
+ readonly [$$PropertyValue]: "borderBottomLeftRadius";
657
+ };
658
+ };
659
+ btlr: (value: {
660
+ readonly [$$PropertyValue]: "borderTopLeftRadius";
661
+ }) => {
662
+ borderTopLeftRadius: {
663
+ readonly [$$PropertyValue]: "borderTopLeftRadius";
664
+ };
665
+ };
666
+ bs: (value: {
667
+ readonly [$$PropertyValue]: "boxShadow";
668
+ }) => {
669
+ boxShadow: {
670
+ readonly [$$PropertyValue]: "boxShadow";
671
+ };
672
+ };
673
+ lh: (value: {
674
+ readonly [$$PropertyValue]: "lineHeight";
675
+ }) => {
676
+ lineHeight: {
677
+ readonly [$$PropertyValue]: "lineHeight";
678
+ };
679
+ };
680
+ ox: (value: {
681
+ readonly [$$PropertyValue]: "overflowX";
682
+ }) => {
683
+ overflowX: {
684
+ readonly [$$PropertyValue]: "overflowX";
685
+ };
686
+ };
687
+ oy: (value: {
688
+ readonly [$$PropertyValue]: "overflowY";
689
+ }) => {
690
+ overflowY: {
691
+ readonly [$$PropertyValue]: "overflowY";
692
+ };
693
+ };
694
+ pe: (value: {
695
+ readonly [$$PropertyValue]: "pointerEvents";
696
+ }) => {
697
+ pointerEvents: {
698
+ readonly [$$PropertyValue]: "pointerEvents";
699
+ };
700
+ };
701
+ us: (value: {
702
+ readonly [$$PropertyValue]: "userSelect";
703
+ }) => {
704
+ WebkitUserSelect: {
705
+ readonly [$$PropertyValue]: "userSelect";
706
+ };
707
+ userSelect: {
708
+ readonly [$$PropertyValue]: "userSelect";
709
+ };
710
+ };
711
+ userSelect: (value: {
712
+ readonly [$$PropertyValue]: "userSelect";
713
+ }) => {
714
+ WebkitUserSelect: {
715
+ readonly [$$PropertyValue]: "userSelect";
716
+ };
717
+ userSelect: {
718
+ readonly [$$PropertyValue]: "userSelect";
719
+ };
720
+ };
721
+ size: (value: {
722
+ readonly [$$PropertyValue]: "width";
723
+ }) => {
724
+ width: {
725
+ readonly [$$PropertyValue]: "width";
726
+ };
727
+ height: {
728
+ readonly [$$PropertyValue]: "width";
729
+ };
730
+ };
731
+ appearance: (value: {
732
+ readonly [$$PropertyValue]: "appearance";
733
+ }) => {
734
+ WebkitAppearance: {
735
+ readonly [$$PropertyValue]: "appearance";
736
+ };
737
+ appearance: {
738
+ readonly [$$PropertyValue]: "appearance";
739
+ };
740
+ };
741
+ backgroundClip: (value: {
742
+ readonly [$$PropertyValue]: "backgroundClip";
743
+ }) => {
744
+ WebkitBackgroundClip: {
745
+ readonly [$$PropertyValue]: "backgroundClip";
746
+ };
747
+ backgroundClip: {
748
+ readonly [$$PropertyValue]: "backgroundClip";
749
+ };
750
+ };
751
+ }>>;
752
+ export declare const RadioGrid: import("@stitches/react/types/styled-component").StyledComponent<import("react").ForwardRefExoticComponent<RadioGroupPrimitive.RadioGroupItemProps & import("react").RefAttributes<HTMLButtonElement>>, {}, {
753
+ bp1: "(min-width: 520px)";
754
+ bp2: "(min-width: 900px)";
755
+ bp3: "(min-width: 1200px)";
756
+ bp4: "(min-width: 1800px)";
757
+ motion: "(prefers-reduced-motion)";
758
+ hover: "(any-hover: hover)";
759
+ dark: "(prefers-color-scheme: dark)";
760
+ light: "(prefers-color-scheme: light)";
761
+ }, import("@stitches/react/types/css-util").CSS<{
762
+ bp1: "(min-width: 520px)";
763
+ bp2: "(min-width: 900px)";
764
+ bp3: "(min-width: 1200px)";
765
+ bp4: "(min-width: 1800px)";
766
+ motion: "(prefers-reduced-motion)";
767
+ hover: "(any-hover: hover)";
768
+ dark: "(prefers-color-scheme: dark)";
769
+ light: "(prefers-color-scheme: light)";
770
+ }, {
771
+ colors: {
772
+ hiContrast: string;
773
+ loContrast: string;
774
+ canvas: string;
775
+ panel: string;
776
+ transparentPanel: string;
777
+ shadowLight: string;
778
+ shadowDark: string;
779
+ blackA1: string;
780
+ blackA2: string;
781
+ blackA3: string;
782
+ blackA4: string;
783
+ blackA5: string;
784
+ blackA6: string;
785
+ blackA7: string;
786
+ blackA8: string;
787
+ blackA9: string;
788
+ blackA10: string;
789
+ blackA11: string;
790
+ blackA12: string;
791
+ whiteA1: string;
792
+ whiteA2: string;
793
+ whiteA3: string;
794
+ whiteA4: string;
795
+ whiteA5: string;
796
+ whiteA6: string;
797
+ whiteA7: string;
798
+ whiteA8: string;
799
+ whiteA9: string;
800
+ whiteA10: string;
801
+ whiteA11: string;
802
+ whiteA12: string;
803
+ gold1: string;
804
+ gold2: string;
805
+ gold3: string;
806
+ gold4: string;
807
+ gold5: string;
808
+ gold6: string;
809
+ gold7: string;
810
+ gold8: string;
811
+ gold9: string;
812
+ gold10: string;
813
+ gold11: string;
814
+ gold12: string;
815
+ bronze1: string;
816
+ bronze2: string;
817
+ bronze3: string;
818
+ bronze4: string;
819
+ bronze5: string;
820
+ bronze6: string;
821
+ bronze7: string;
822
+ bronze8: string;
823
+ bronze9: string;
824
+ bronze10: string;
825
+ bronze11: string;
826
+ bronze12: string;
827
+ brown1: string;
828
+ brown2: string;
829
+ brown3: string;
830
+ brown4: string;
831
+ brown5: string;
832
+ brown6: string;
833
+ brown7: string;
834
+ brown8: string;
835
+ brown9: string;
836
+ brown10: string;
837
+ brown11: string;
838
+ brown12: string;
839
+ orange1: string;
840
+ orange2: string;
841
+ orange3: string;
842
+ orange4: string;
843
+ orange5: string;
844
+ orange6: string;
845
+ orange7: string;
846
+ orange8: string;
847
+ orange9: string;
848
+ orange10: string;
849
+ orange11: string;
850
+ orange12: string;
851
+ amber1: string;
852
+ amber2: string;
853
+ amber3: string;
854
+ amber4: string;
855
+ amber5: string;
856
+ amber6: string;
857
+ amber7: string;
858
+ amber8: string;
859
+ amber9: string;
860
+ amber10: string;
861
+ amber11: string;
862
+ amber12: string;
863
+ yellow1: string;
864
+ yellow2: string;
865
+ yellow3: string;
866
+ yellow4: string;
867
+ yellow5: string;
868
+ yellow6: string;
869
+ yellow7: string;
870
+ yellow8: string;
871
+ yellow9: string;
872
+ yellow10: string;
873
+ yellow11: string;
874
+ yellow12: string;
875
+ lime1: string;
876
+ lime2: string;
877
+ lime3: string;
878
+ lime4: string;
879
+ lime5: string;
880
+ lime6: string;
881
+ lime7: string;
882
+ lime8: string;
883
+ lime9: string;
884
+ lime10: string;
885
+ lime11: string;
886
+ lime12: string;
887
+ grass1: string;
888
+ grass2: string;
889
+ grass3: string;
890
+ grass4: string;
891
+ grass5: string;
892
+ grass6: string;
893
+ grass7: string;
894
+ grass8: string;
895
+ grass9: string;
896
+ grass10: string;
897
+ grass11: string;
898
+ grass12: string;
899
+ green1: string;
900
+ green2: string;
901
+ green3: string;
902
+ green4: string;
903
+ green5: string;
904
+ green6: string;
905
+ green7: string;
906
+ green8: string;
907
+ green9: string;
908
+ green10: string;
909
+ green11: string;
910
+ green12: string;
911
+ teal1: string;
912
+ teal2: string;
913
+ teal3: string;
914
+ teal4: string;
915
+ teal5: string;
916
+ teal6: string;
917
+ teal7: string;
918
+ teal8: string;
919
+ teal9: string;
920
+ teal10: string;
921
+ teal11: string;
922
+ teal12: string;
923
+ cyan1: string;
924
+ cyan2: string;
925
+ cyan3: string;
926
+ cyan4: string;
927
+ cyan5: string;
928
+ cyan6: string;
929
+ cyan7: string;
930
+ cyan8: string;
931
+ cyan9: string;
932
+ cyan10: string;
933
+ cyan11: string;
934
+ cyan12: string;
935
+ mint1: string;
936
+ mint2: string;
937
+ mint3: string;
938
+ mint4: string;
939
+ mint5: string;
940
+ mint6: string;
941
+ mint7: string;
942
+ mint8: string;
943
+ mint9: string;
944
+ mint10: string;
945
+ mint11: string;
946
+ mint12: string;
947
+ sky1: string;
948
+ sky2: string;
949
+ sky3: string;
950
+ sky4: string;
951
+ sky5: string;
952
+ sky6: string;
953
+ sky7: string;
954
+ sky8: string;
955
+ sky9: string;
956
+ sky10: string;
957
+ sky11: string;
958
+ sky12: string;
959
+ blue1: string;
960
+ blue2: string;
961
+ blue3: string;
962
+ blue4: string;
963
+ blue5: string;
964
+ blue6: string;
965
+ blue7: string;
966
+ blue8: string;
967
+ blue9: string;
968
+ blue10: string;
969
+ blue11: string;
970
+ blue12: string;
971
+ indigo1: string;
972
+ indigo2: string;
973
+ indigo3: string;
974
+ indigo4: string;
975
+ indigo5: string;
976
+ indigo6: string;
977
+ indigo7: string;
978
+ indigo8: string;
979
+ indigo9: string;
980
+ indigo10: string;
981
+ indigo11: string;
982
+ indigo12: string;
983
+ violet1: string;
984
+ violet2: string;
985
+ violet3: string;
986
+ violet4: string;
987
+ violet5: string;
988
+ violet6: string;
989
+ violet7: string;
990
+ violet8: string;
991
+ violet9: string;
992
+ violet10: string;
993
+ violet11: string;
994
+ violet12: string;
995
+ purple1: string;
996
+ purple2: string;
997
+ purple3: string;
998
+ purple4: string;
999
+ purple5: string;
1000
+ purple6: string;
1001
+ purple7: string;
1002
+ purple8: string;
1003
+ purple9: string;
1004
+ purple10: string;
1005
+ purple11: string;
1006
+ purple12: string;
1007
+ plum1: string;
1008
+ plum2: string;
1009
+ plum3: string;
1010
+ plum4: string;
1011
+ plum5: string;
1012
+ plum6: string;
1013
+ plum7: string;
1014
+ plum8: string;
1015
+ plum9: string;
1016
+ plum10: string;
1017
+ plum11: string;
1018
+ plum12: string;
1019
+ pink1: string;
1020
+ pink2: string;
1021
+ pink3: string;
1022
+ pink4: string;
1023
+ pink5: string;
1024
+ pink6: string;
1025
+ pink7: string;
1026
+ pink8: string;
1027
+ pink9: string;
1028
+ pink10: string;
1029
+ pink11: string;
1030
+ pink12: string;
1031
+ crimson1: string;
1032
+ crimson2: string;
1033
+ crimson3: string;
1034
+ crimson4: string;
1035
+ crimson5: string;
1036
+ crimson6: string;
1037
+ crimson7: string;
1038
+ crimson8: string;
1039
+ crimson9: string;
1040
+ crimson10: string;
1041
+ crimson11: string;
1042
+ crimson12: string;
1043
+ red1: string;
1044
+ red2: string;
1045
+ red3: string;
1046
+ red4: string;
1047
+ red5: string;
1048
+ red6: string;
1049
+ red7: string;
1050
+ red8: string;
1051
+ red9: string;
1052
+ red10: string;
1053
+ red11: string;
1054
+ red12: string;
1055
+ tomato1: string;
1056
+ tomato2: string;
1057
+ tomato3: string;
1058
+ tomato4: string;
1059
+ tomato5: string;
1060
+ tomato6: string;
1061
+ tomato7: string;
1062
+ tomato8: string;
1063
+ tomato9: string;
1064
+ tomato10: string;
1065
+ tomato11: string;
1066
+ tomato12: string;
1067
+ sand1: string;
1068
+ sand2: string;
1069
+ sand3: string;
1070
+ sand4: string;
1071
+ sand5: string;
1072
+ sand6: string;
1073
+ sand7: string;
1074
+ sand8: string;
1075
+ sand9: string;
1076
+ sand10: string;
1077
+ sand11: string;
1078
+ sand12: string;
1079
+ olive1: string;
1080
+ olive2: string;
1081
+ olive3: string;
1082
+ olive4: string;
1083
+ olive5: string;
1084
+ olive6: string;
1085
+ olive7: string;
1086
+ olive8: string;
1087
+ olive9: string;
1088
+ olive10: string;
1089
+ olive11: string;
1090
+ olive12: string;
1091
+ sage1: string;
1092
+ sage2: string;
1093
+ sage3: string;
1094
+ sage4: string;
1095
+ sage5: string;
1096
+ sage6: string;
1097
+ sage7: string;
1098
+ sage8: string;
1099
+ sage9: string;
1100
+ sage10: string;
1101
+ sage11: string;
1102
+ sage12: string;
1103
+ slate1: string;
1104
+ slate2: string;
1105
+ slate3: string;
1106
+ slate4: string;
1107
+ slate5: string;
1108
+ slate6: string;
1109
+ slate7: string;
1110
+ slate8: string;
1111
+ slate9: string;
1112
+ slate10: string;
1113
+ slate11: string;
1114
+ slate12: string;
1115
+ mauve1: string;
1116
+ mauve2: string;
1117
+ mauve3: string;
1118
+ mauve4: string;
1119
+ mauve5: string;
1120
+ mauve6: string;
1121
+ mauve7: string;
1122
+ mauve8: string;
1123
+ mauve9: string;
1124
+ mauve10: string;
1125
+ mauve11: string;
1126
+ mauve12: string;
1127
+ gray1: string;
1128
+ gray2: string;
1129
+ gray3: string;
1130
+ gray4: string;
1131
+ gray5: string;
1132
+ gray6: string;
1133
+ gray7: string;
1134
+ gray8: string;
1135
+ gray9: string;
1136
+ gray10: string;
1137
+ gray11: string;
1138
+ gray12: string;
1139
+ };
1140
+ fonts: {
1141
+ untitled: string;
1142
+ mono: string;
1143
+ };
1144
+ space: {
1145
+ 1: string;
1146
+ 2: string;
1147
+ 3: string;
1148
+ 4: string;
1149
+ 5: string;
1150
+ 6: string;
1151
+ 7: string;
1152
+ 8: string;
1153
+ 9: string;
1154
+ };
1155
+ sizes: {
1156
+ 1: string;
1157
+ 2: string;
1158
+ 3: string;
1159
+ 4: string;
1160
+ 5: string;
1161
+ 6: string;
1162
+ 7: string;
1163
+ 8: string;
1164
+ 9: string;
1165
+ };
1166
+ fontSizes: {
1167
+ 1: string;
1168
+ 2: string;
1169
+ 3: string;
1170
+ 4: string;
1171
+ 5: string;
1172
+ 6: string;
1173
+ 7: string;
1174
+ 8: string;
1175
+ 9: string;
1176
+ };
1177
+ radii: {
1178
+ 1: string;
1179
+ 2: string;
1180
+ 3: string;
1181
+ 4: string;
1182
+ round: string;
1183
+ pill: string;
1184
+ };
1185
+ zIndices: {
1186
+ 1: string;
1187
+ 2: string;
1188
+ 3: string;
1189
+ 4: string;
1190
+ max: string;
1191
+ };
1192
+ }, import("@stitches/react/types/config").DefaultThemeMap, {
1193
+ p: (value: {
1194
+ readonly [$$PropertyValue]: "padding";
1195
+ }) => {
1196
+ padding: {
1197
+ readonly [$$PropertyValue]: "padding";
1198
+ };
1199
+ };
1200
+ pt: (value: {
1201
+ readonly [$$PropertyValue]: "paddingTop";
1202
+ }) => {
1203
+ paddingTop: {
1204
+ readonly [$$PropertyValue]: "paddingTop";
1205
+ };
1206
+ };
1207
+ pr: (value: {
1208
+ readonly [$$PropertyValue]: "paddingRight";
1209
+ }) => {
1210
+ paddingRight: {
1211
+ readonly [$$PropertyValue]: "paddingRight";
1212
+ };
1213
+ };
1214
+ pb: (value: {
1215
+ readonly [$$PropertyValue]: "paddingBottom";
1216
+ }) => {
1217
+ paddingBottom: {
1218
+ readonly [$$PropertyValue]: "paddingBottom";
1219
+ };
1220
+ };
1221
+ pl: (value: {
1222
+ readonly [$$PropertyValue]: "paddingLeft";
1223
+ }) => {
1224
+ paddingLeft: {
1225
+ readonly [$$PropertyValue]: "paddingLeft";
1226
+ };
1227
+ };
1228
+ px: (value: {
1229
+ readonly [$$PropertyValue]: "paddingLeft";
1230
+ }) => {
1231
+ paddingLeft: {
1232
+ readonly [$$PropertyValue]: "paddingLeft";
1233
+ };
1234
+ paddingRight: {
1235
+ readonly [$$PropertyValue]: "paddingLeft";
1236
+ };
1237
+ };
1238
+ py: (value: {
1239
+ readonly [$$PropertyValue]: "paddingTop";
1240
+ }) => {
1241
+ paddingTop: {
1242
+ readonly [$$PropertyValue]: "paddingTop";
1243
+ };
1244
+ paddingBottom: {
1245
+ readonly [$$PropertyValue]: "paddingTop";
1246
+ };
1247
+ };
1248
+ m: (value: {
1249
+ readonly [$$PropertyValue]: "margin";
1250
+ }) => {
1251
+ margin: {
1252
+ readonly [$$PropertyValue]: "margin";
1253
+ };
1254
+ };
1255
+ mt: (value: {
1256
+ readonly [$$PropertyValue]: "marginTop";
1257
+ }) => {
1258
+ marginTop: {
1259
+ readonly [$$PropertyValue]: "marginTop";
1260
+ };
1261
+ };
1262
+ mr: (value: {
1263
+ readonly [$$PropertyValue]: "marginRight";
1264
+ }) => {
1265
+ marginRight: {
1266
+ readonly [$$PropertyValue]: "marginRight";
1267
+ };
1268
+ };
1269
+ mb: (value: {
1270
+ readonly [$$PropertyValue]: "marginBottom";
1271
+ }) => {
1272
+ marginBottom: {
1273
+ readonly [$$PropertyValue]: "marginBottom";
1274
+ };
1275
+ };
1276
+ ml: (value: {
1277
+ readonly [$$PropertyValue]: "marginLeft";
1278
+ }) => {
1279
+ marginLeft: {
1280
+ readonly [$$PropertyValue]: "marginLeft";
1281
+ };
1282
+ };
1283
+ mx: (value: {
1284
+ readonly [$$PropertyValue]: "marginLeft";
1285
+ }) => {
1286
+ marginLeft: {
1287
+ readonly [$$PropertyValue]: "marginLeft";
1288
+ };
1289
+ marginRight: {
1290
+ readonly [$$PropertyValue]: "marginLeft";
1291
+ };
1292
+ };
1293
+ my: (value: {
1294
+ readonly [$$PropertyValue]: "marginTop";
1295
+ }) => {
1296
+ marginTop: {
1297
+ readonly [$$PropertyValue]: "marginTop";
1298
+ };
1299
+ marginBottom: {
1300
+ readonly [$$PropertyValue]: "marginTop";
1301
+ };
1302
+ };
1303
+ ta: (value: {
1304
+ readonly [$$PropertyValue]: "textAlign";
1305
+ }) => {
1306
+ textAlign: {
1307
+ readonly [$$PropertyValue]: "textAlign";
1308
+ };
1309
+ };
1310
+ fd: (value: {
1311
+ readonly [$$PropertyValue]: "flexDirection";
1312
+ }) => {
1313
+ flexDirection: {
1314
+ readonly [$$PropertyValue]: "flexDirection";
1315
+ };
1316
+ };
1317
+ fw: (value: {
1318
+ readonly [$$PropertyValue]: "flexWrap";
1319
+ }) => {
1320
+ flexWrap: {
1321
+ readonly [$$PropertyValue]: "flexWrap";
1322
+ };
1323
+ };
1324
+ ai: (value: {
1325
+ readonly [$$PropertyValue]: "alignItems";
1326
+ }) => {
1327
+ alignItems: {
1328
+ readonly [$$PropertyValue]: "alignItems";
1329
+ };
1330
+ };
1331
+ ac: (value: {
1332
+ readonly [$$PropertyValue]: "alignContent";
1333
+ }) => {
1334
+ alignContent: {
1335
+ readonly [$$PropertyValue]: "alignContent";
1336
+ };
1337
+ };
1338
+ jc: (value: {
1339
+ readonly [$$PropertyValue]: "justifyContent";
1340
+ }) => {
1341
+ justifyContent: {
1342
+ readonly [$$PropertyValue]: "justifyContent";
1343
+ };
1344
+ };
1345
+ as: (value: {
1346
+ readonly [$$PropertyValue]: "alignSelf";
1347
+ }) => {
1348
+ alignSelf: {
1349
+ readonly [$$PropertyValue]: "alignSelf";
1350
+ };
1351
+ };
1352
+ fg: (value: {
1353
+ readonly [$$PropertyValue]: "flexGrow";
1354
+ }) => {
1355
+ flexGrow: {
1356
+ readonly [$$PropertyValue]: "flexGrow";
1357
+ };
1358
+ };
1359
+ fs: (value: {
1360
+ readonly [$$PropertyValue]: "flexShrink";
1361
+ }) => {
1362
+ flexShrink: {
1363
+ readonly [$$PropertyValue]: "flexShrink";
1364
+ };
1365
+ };
1366
+ fb: (value: {
1367
+ readonly [$$PropertyValue]: "flexBasis";
1368
+ }) => {
1369
+ flexBasis: {
1370
+ readonly [$$PropertyValue]: "flexBasis";
1371
+ };
1372
+ };
1373
+ bc: (value: {
1374
+ readonly [$$PropertyValue]: "backgroundColor";
1375
+ }) => {
1376
+ backgroundColor: {
1377
+ readonly [$$PropertyValue]: "backgroundColor";
1378
+ };
1379
+ };
1380
+ br: (value: {
1381
+ readonly [$$PropertyValue]: "borderRadius";
1382
+ }) => {
1383
+ borderRadius: {
1384
+ readonly [$$PropertyValue]: "borderRadius";
1385
+ };
1386
+ };
1387
+ btrr: (value: {
1388
+ readonly [$$PropertyValue]: "borderTopRightRadius";
1389
+ }) => {
1390
+ borderTopRightRadius: {
1391
+ readonly [$$PropertyValue]: "borderTopRightRadius";
1392
+ };
1393
+ };
1394
+ bbrr: (value: {
1395
+ readonly [$$PropertyValue]: "borderBottomRightRadius";
1396
+ }) => {
1397
+ borderBottomRightRadius: {
1398
+ readonly [$$PropertyValue]: "borderBottomRightRadius";
1399
+ };
1400
+ };
1401
+ bblr: (value: {
1402
+ readonly [$$PropertyValue]: "borderBottomLeftRadius";
1403
+ }) => {
1404
+ borderBottomLeftRadius: {
1405
+ readonly [$$PropertyValue]: "borderBottomLeftRadius";
1406
+ };
1407
+ };
1408
+ btlr: (value: {
1409
+ readonly [$$PropertyValue]: "borderTopLeftRadius";
1410
+ }) => {
1411
+ borderTopLeftRadius: {
1412
+ readonly [$$PropertyValue]: "borderTopLeftRadius";
1413
+ };
1414
+ };
1415
+ bs: (value: {
1416
+ readonly [$$PropertyValue]: "boxShadow";
1417
+ }) => {
1418
+ boxShadow: {
1419
+ readonly [$$PropertyValue]: "boxShadow";
1420
+ };
1421
+ };
1422
+ lh: (value: {
1423
+ readonly [$$PropertyValue]: "lineHeight";
1424
+ }) => {
1425
+ lineHeight: {
1426
+ readonly [$$PropertyValue]: "lineHeight";
1427
+ };
1428
+ };
1429
+ ox: (value: {
1430
+ readonly [$$PropertyValue]: "overflowX";
1431
+ }) => {
1432
+ overflowX: {
1433
+ readonly [$$PropertyValue]: "overflowX";
1434
+ };
1435
+ };
1436
+ oy: (value: {
1437
+ readonly [$$PropertyValue]: "overflowY";
1438
+ }) => {
1439
+ overflowY: {
1440
+ readonly [$$PropertyValue]: "overflowY";
1441
+ };
1442
+ };
1443
+ pe: (value: {
1444
+ readonly [$$PropertyValue]: "pointerEvents";
1445
+ }) => {
1446
+ pointerEvents: {
1447
+ readonly [$$PropertyValue]: "pointerEvents";
1448
+ };
1449
+ };
1450
+ us: (value: {
1451
+ readonly [$$PropertyValue]: "userSelect";
1452
+ }) => {
1453
+ WebkitUserSelect: {
1454
+ readonly [$$PropertyValue]: "userSelect";
1455
+ };
1456
+ userSelect: {
1457
+ readonly [$$PropertyValue]: "userSelect";
1458
+ };
1459
+ };
1460
+ userSelect: (value: {
1461
+ readonly [$$PropertyValue]: "userSelect";
1462
+ }) => {
1463
+ WebkitUserSelect: {
1464
+ readonly [$$PropertyValue]: "userSelect";
1465
+ };
1466
+ userSelect: {
1467
+ readonly [$$PropertyValue]: "userSelect";
1468
+ };
1469
+ };
1470
+ size: (value: {
1471
+ readonly [$$PropertyValue]: "width";
1472
+ }) => {
1473
+ width: {
1474
+ readonly [$$PropertyValue]: "width";
1475
+ };
1476
+ height: {
1477
+ readonly [$$PropertyValue]: "width";
1478
+ };
1479
+ };
1480
+ appearance: (value: {
1481
+ readonly [$$PropertyValue]: "appearance";
1482
+ }) => {
1483
+ WebkitAppearance: {
1484
+ readonly [$$PropertyValue]: "appearance";
1485
+ };
1486
+ appearance: {
1487
+ readonly [$$PropertyValue]: "appearance";
1488
+ };
1489
+ };
1490
+ backgroundClip: (value: {
1491
+ readonly [$$PropertyValue]: "backgroundClip";
1492
+ }) => {
1493
+ WebkitBackgroundClip: {
1494
+ readonly [$$PropertyValue]: "backgroundClip";
1495
+ };
1496
+ backgroundClip: {
1497
+ readonly [$$PropertyValue]: "backgroundClip";
1498
+ };
1499
+ };
1500
+ }>>;