@livepeer/design-system 0.0.0-beta.8 → 1.0.1

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 +147 -385
  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 +3787 -1565
  71. package/dist/index.js +3897 -1890
  72. package/dist/stitches.config.d.ts +6320 -23
  73. package/package.json +61 -58
  74. package/dist/components/Accordian.d.ts +0 -4
@@ -1 +1,755 @@
1
- export declare const Label: any;
1
+ /// <reference types="react" />
2
+ import * as LabelPrimitive from "@radix-ui/react-label";
3
+ export declare const Label: import("@stitches/react/types/styled-component").StyledComponent<import("react").ForwardRefExoticComponent<LabelPrimitive.LabelProps & import("react").RefAttributes<HTMLSpanElement>>, {
4
+ size?: number | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | undefined;
5
+ variant?: "red" | "crimson" | "pink" | "purple" | "violet" | "indigo" | "blue" | "cyan" | "teal" | "green" | "lime" | "yellow" | "orange" | "gold" | "bronze" | "gray" | "primary" | "neutral" | "contrast" | undefined;
6
+ gradient?: boolean | "true" | undefined;
7
+ }, {
8
+ bp1: "(min-width: 520px)";
9
+ bp2: "(min-width: 900px)";
10
+ bp3: "(min-width: 1200px)";
11
+ bp4: "(min-width: 1800px)";
12
+ motion: "(prefers-reduced-motion)";
13
+ hover: "(any-hover: hover)";
14
+ dark: "(prefers-color-scheme: dark)";
15
+ light: "(prefers-color-scheme: light)";
16
+ }, import("@stitches/react/types/css-util").CSS<{
17
+ bp1: "(min-width: 520px)";
18
+ bp2: "(min-width: 900px)";
19
+ bp3: "(min-width: 1200px)";
20
+ bp4: "(min-width: 1800px)";
21
+ motion: "(prefers-reduced-motion)";
22
+ hover: "(any-hover: hover)";
23
+ dark: "(prefers-color-scheme: dark)";
24
+ light: "(prefers-color-scheme: light)";
25
+ }, {
26
+ colors: {
27
+ hiContrast: string;
28
+ loContrast: string;
29
+ canvas: string;
30
+ panel: string;
31
+ transparentPanel: string;
32
+ shadowLight: string;
33
+ shadowDark: string;
34
+ blackA1: string;
35
+ blackA2: string;
36
+ blackA3: string;
37
+ blackA4: string;
38
+ blackA5: string;
39
+ blackA6: string;
40
+ blackA7: string;
41
+ blackA8: string;
42
+ blackA9: string;
43
+ blackA10: string;
44
+ blackA11: string;
45
+ blackA12: string;
46
+ whiteA1: string;
47
+ whiteA2: string;
48
+ whiteA3: string;
49
+ whiteA4: string;
50
+ whiteA5: string;
51
+ whiteA6: string;
52
+ whiteA7: string;
53
+ whiteA8: string;
54
+ whiteA9: string;
55
+ whiteA10: string;
56
+ whiteA11: string;
57
+ whiteA12: string;
58
+ gold1: string;
59
+ gold2: string;
60
+ gold3: string;
61
+ gold4: string;
62
+ gold5: string;
63
+ gold6: string;
64
+ gold7: string;
65
+ gold8: string;
66
+ gold9: string;
67
+ gold10: string;
68
+ gold11: string;
69
+ gold12: string;
70
+ bronze1: string;
71
+ bronze2: string;
72
+ bronze3: string;
73
+ bronze4: string;
74
+ bronze5: string;
75
+ bronze6: string;
76
+ bronze7: string;
77
+ bronze8: string;
78
+ bronze9: string;
79
+ bronze10: string;
80
+ bronze11: string;
81
+ bronze12: string;
82
+ brown1: string;
83
+ brown2: string;
84
+ brown3: string;
85
+ brown4: string;
86
+ brown5: string;
87
+ brown6: string;
88
+ brown7: string;
89
+ brown8: string;
90
+ brown9: string;
91
+ brown10: string;
92
+ brown11: string;
93
+ brown12: string;
94
+ orange1: string;
95
+ orange2: string;
96
+ orange3: string;
97
+ orange4: string;
98
+ orange5: string;
99
+ orange6: string;
100
+ orange7: string;
101
+ orange8: string;
102
+ orange9: string;
103
+ orange10: string;
104
+ orange11: string;
105
+ orange12: string;
106
+ amber1: string;
107
+ amber2: string;
108
+ amber3: string;
109
+ amber4: string;
110
+ amber5: string;
111
+ amber6: string;
112
+ amber7: string;
113
+ amber8: string;
114
+ amber9: string;
115
+ amber10: string;
116
+ amber11: string;
117
+ amber12: string;
118
+ yellow1: string;
119
+ yellow2: string;
120
+ yellow3: string;
121
+ yellow4: string;
122
+ yellow5: string;
123
+ yellow6: string;
124
+ yellow7: string;
125
+ yellow8: string;
126
+ yellow9: string;
127
+ yellow10: string;
128
+ yellow11: string;
129
+ yellow12: string;
130
+ lime1: string;
131
+ lime2: string;
132
+ lime3: string;
133
+ lime4: string;
134
+ lime5: string;
135
+ lime6: string;
136
+ lime7: string;
137
+ lime8: string;
138
+ lime9: string;
139
+ lime10: string;
140
+ lime11: string;
141
+ lime12: string;
142
+ grass1: string;
143
+ grass2: string;
144
+ grass3: string;
145
+ grass4: string;
146
+ grass5: string;
147
+ grass6: string;
148
+ grass7: string;
149
+ grass8: string;
150
+ grass9: string;
151
+ grass10: string;
152
+ grass11: string;
153
+ grass12: string;
154
+ green1: string;
155
+ green2: string;
156
+ green3: string;
157
+ green4: string;
158
+ green5: string;
159
+ green6: string;
160
+ green7: string;
161
+ green8: string;
162
+ green9: string;
163
+ green10: string;
164
+ green11: string;
165
+ green12: string;
166
+ teal1: string;
167
+ teal2: string;
168
+ teal3: string;
169
+ teal4: string;
170
+ teal5: string;
171
+ teal6: string;
172
+ teal7: string;
173
+ teal8: string;
174
+ teal9: string;
175
+ teal10: string;
176
+ teal11: string;
177
+ teal12: string;
178
+ cyan1: string;
179
+ cyan2: string;
180
+ cyan3: string;
181
+ cyan4: string;
182
+ cyan5: string;
183
+ cyan6: string;
184
+ cyan7: string;
185
+ cyan8: string;
186
+ cyan9: string;
187
+ cyan10: string;
188
+ cyan11: string;
189
+ cyan12: string;
190
+ mint1: string;
191
+ mint2: string;
192
+ mint3: string;
193
+ mint4: string;
194
+ mint5: string;
195
+ mint6: string;
196
+ mint7: string;
197
+ mint8: string;
198
+ mint9: string;
199
+ mint10: string;
200
+ mint11: string;
201
+ mint12: string;
202
+ sky1: string;
203
+ sky2: string;
204
+ sky3: string;
205
+ sky4: string;
206
+ sky5: string;
207
+ sky6: string;
208
+ sky7: string;
209
+ sky8: string;
210
+ sky9: string;
211
+ sky10: string;
212
+ sky11: string;
213
+ sky12: string;
214
+ blue1: string;
215
+ blue2: string;
216
+ blue3: string;
217
+ blue4: string;
218
+ blue5: string;
219
+ blue6: string;
220
+ blue7: string;
221
+ blue8: string;
222
+ blue9: string;
223
+ blue10: string;
224
+ blue11: string;
225
+ blue12: string;
226
+ indigo1: string;
227
+ indigo2: string;
228
+ indigo3: string;
229
+ indigo4: string;
230
+ indigo5: string;
231
+ indigo6: string;
232
+ indigo7: string;
233
+ indigo8: string;
234
+ indigo9: string;
235
+ indigo10: string;
236
+ indigo11: string;
237
+ indigo12: string;
238
+ violet1: string;
239
+ violet2: string;
240
+ violet3: string;
241
+ violet4: string;
242
+ violet5: string;
243
+ violet6: string;
244
+ violet7: string;
245
+ violet8: string;
246
+ violet9: string;
247
+ violet10: string;
248
+ violet11: string;
249
+ violet12: string;
250
+ purple1: string;
251
+ purple2: string;
252
+ purple3: string;
253
+ purple4: string;
254
+ purple5: string;
255
+ purple6: string;
256
+ purple7: string;
257
+ purple8: string;
258
+ purple9: string;
259
+ purple10: string;
260
+ purple11: string;
261
+ purple12: string;
262
+ plum1: string;
263
+ plum2: string;
264
+ plum3: string;
265
+ plum4: string;
266
+ plum5: string;
267
+ plum6: string;
268
+ plum7: string;
269
+ plum8: string;
270
+ plum9: string;
271
+ plum10: string;
272
+ plum11: string;
273
+ plum12: string;
274
+ pink1: string;
275
+ pink2: string;
276
+ pink3: string;
277
+ pink4: string;
278
+ pink5: string;
279
+ pink6: string;
280
+ pink7: string;
281
+ pink8: string;
282
+ pink9: string;
283
+ pink10: string;
284
+ pink11: string;
285
+ pink12: string;
286
+ crimson1: string;
287
+ crimson2: string;
288
+ crimson3: string;
289
+ crimson4: string;
290
+ crimson5: string;
291
+ crimson6: string;
292
+ crimson7: string;
293
+ crimson8: string;
294
+ crimson9: string;
295
+ crimson10: string;
296
+ crimson11: string;
297
+ crimson12: string;
298
+ red1: string;
299
+ red2: string;
300
+ red3: string;
301
+ red4: string;
302
+ red5: string;
303
+ red6: string;
304
+ red7: string;
305
+ red8: string;
306
+ red9: string;
307
+ red10: string;
308
+ red11: string;
309
+ red12: string;
310
+ tomato1: string;
311
+ tomato2: string;
312
+ tomato3: string;
313
+ tomato4: string;
314
+ tomato5: string;
315
+ tomato6: string;
316
+ tomato7: string;
317
+ tomato8: string;
318
+ tomato9: string;
319
+ tomato10: string;
320
+ tomato11: string;
321
+ tomato12: string;
322
+ sand1: string;
323
+ sand2: string;
324
+ sand3: string;
325
+ sand4: string;
326
+ sand5: string;
327
+ sand6: string;
328
+ sand7: string;
329
+ sand8: string;
330
+ sand9: string;
331
+ sand10: string;
332
+ sand11: string;
333
+ sand12: string;
334
+ olive1: string;
335
+ olive2: string;
336
+ olive3: string;
337
+ olive4: string;
338
+ olive5: string;
339
+ olive6: string;
340
+ olive7: string;
341
+ olive8: string;
342
+ olive9: string;
343
+ olive10: string;
344
+ olive11: string;
345
+ olive12: string;
346
+ sage1: string;
347
+ sage2: string;
348
+ sage3: string;
349
+ sage4: string;
350
+ sage5: string;
351
+ sage6: string;
352
+ sage7: string;
353
+ sage8: string;
354
+ sage9: string;
355
+ sage10: string;
356
+ sage11: string;
357
+ sage12: string;
358
+ slate1: string;
359
+ slate2: string;
360
+ slate3: string;
361
+ slate4: string;
362
+ slate5: string;
363
+ slate6: string;
364
+ slate7: string;
365
+ slate8: string;
366
+ slate9: string;
367
+ slate10: string;
368
+ slate11: string;
369
+ slate12: string;
370
+ mauve1: string;
371
+ mauve2: string;
372
+ mauve3: string;
373
+ mauve4: string;
374
+ mauve5: string;
375
+ mauve6: string;
376
+ mauve7: string;
377
+ mauve8: string;
378
+ mauve9: string;
379
+ mauve10: string;
380
+ mauve11: string;
381
+ mauve12: string;
382
+ gray1: string;
383
+ gray2: string;
384
+ gray3: string;
385
+ gray4: string;
386
+ gray5: string;
387
+ gray6: string;
388
+ gray7: string;
389
+ gray8: string;
390
+ gray9: string;
391
+ gray10: string;
392
+ gray11: string;
393
+ gray12: string;
394
+ };
395
+ fonts: {
396
+ untitled: string;
397
+ mono: string;
398
+ };
399
+ space: {
400
+ 1: string;
401
+ 2: string;
402
+ 3: string;
403
+ 4: string;
404
+ 5: string;
405
+ 6: string;
406
+ 7: string;
407
+ 8: string;
408
+ 9: string;
409
+ };
410
+ sizes: {
411
+ 1: string;
412
+ 2: string;
413
+ 3: string;
414
+ 4: string;
415
+ 5: string;
416
+ 6: string;
417
+ 7: string;
418
+ 8: string;
419
+ 9: string;
420
+ };
421
+ fontSizes: {
422
+ 1: string;
423
+ 2: string;
424
+ 3: string;
425
+ 4: string;
426
+ 5: string;
427
+ 6: string;
428
+ 7: string;
429
+ 8: string;
430
+ 9: string;
431
+ };
432
+ radii: {
433
+ 1: string;
434
+ 2: string;
435
+ 3: string;
436
+ 4: string;
437
+ round: string;
438
+ pill: string;
439
+ };
440
+ zIndices: {
441
+ 1: string;
442
+ 2: string;
443
+ 3: string;
444
+ 4: string;
445
+ max: string;
446
+ };
447
+ }, import("@stitches/react/types/config").DefaultThemeMap, {
448
+ p: (value: {
449
+ readonly [$$PropertyValue]: "padding";
450
+ }) => {
451
+ padding: {
452
+ readonly [$$PropertyValue]: "padding";
453
+ };
454
+ };
455
+ pt: (value: {
456
+ readonly [$$PropertyValue]: "paddingTop";
457
+ }) => {
458
+ paddingTop: {
459
+ readonly [$$PropertyValue]: "paddingTop";
460
+ };
461
+ };
462
+ pr: (value: {
463
+ readonly [$$PropertyValue]: "paddingRight";
464
+ }) => {
465
+ paddingRight: {
466
+ readonly [$$PropertyValue]: "paddingRight";
467
+ };
468
+ };
469
+ pb: (value: {
470
+ readonly [$$PropertyValue]: "paddingBottom";
471
+ }) => {
472
+ paddingBottom: {
473
+ readonly [$$PropertyValue]: "paddingBottom";
474
+ };
475
+ };
476
+ pl: (value: {
477
+ readonly [$$PropertyValue]: "paddingLeft";
478
+ }) => {
479
+ paddingLeft: {
480
+ readonly [$$PropertyValue]: "paddingLeft";
481
+ };
482
+ };
483
+ px: (value: {
484
+ readonly [$$PropertyValue]: "paddingLeft";
485
+ }) => {
486
+ paddingLeft: {
487
+ readonly [$$PropertyValue]: "paddingLeft";
488
+ };
489
+ paddingRight: {
490
+ readonly [$$PropertyValue]: "paddingLeft";
491
+ };
492
+ };
493
+ py: (value: {
494
+ readonly [$$PropertyValue]: "paddingTop";
495
+ }) => {
496
+ paddingTop: {
497
+ readonly [$$PropertyValue]: "paddingTop";
498
+ };
499
+ paddingBottom: {
500
+ readonly [$$PropertyValue]: "paddingTop";
501
+ };
502
+ };
503
+ m: (value: {
504
+ readonly [$$PropertyValue]: "margin";
505
+ }) => {
506
+ margin: {
507
+ readonly [$$PropertyValue]: "margin";
508
+ };
509
+ };
510
+ mt: (value: {
511
+ readonly [$$PropertyValue]: "marginTop";
512
+ }) => {
513
+ marginTop: {
514
+ readonly [$$PropertyValue]: "marginTop";
515
+ };
516
+ };
517
+ mr: (value: {
518
+ readonly [$$PropertyValue]: "marginRight";
519
+ }) => {
520
+ marginRight: {
521
+ readonly [$$PropertyValue]: "marginRight";
522
+ };
523
+ };
524
+ mb: (value: {
525
+ readonly [$$PropertyValue]: "marginBottom";
526
+ }) => {
527
+ marginBottom: {
528
+ readonly [$$PropertyValue]: "marginBottom";
529
+ };
530
+ };
531
+ ml: (value: {
532
+ readonly [$$PropertyValue]: "marginLeft";
533
+ }) => {
534
+ marginLeft: {
535
+ readonly [$$PropertyValue]: "marginLeft";
536
+ };
537
+ };
538
+ mx: (value: {
539
+ readonly [$$PropertyValue]: "marginLeft";
540
+ }) => {
541
+ marginLeft: {
542
+ readonly [$$PropertyValue]: "marginLeft";
543
+ };
544
+ marginRight: {
545
+ readonly [$$PropertyValue]: "marginLeft";
546
+ };
547
+ };
548
+ my: (value: {
549
+ readonly [$$PropertyValue]: "marginTop";
550
+ }) => {
551
+ marginTop: {
552
+ readonly [$$PropertyValue]: "marginTop";
553
+ };
554
+ marginBottom: {
555
+ readonly [$$PropertyValue]: "marginTop";
556
+ };
557
+ };
558
+ ta: (value: {
559
+ readonly [$$PropertyValue]: "textAlign";
560
+ }) => {
561
+ textAlign: {
562
+ readonly [$$PropertyValue]: "textAlign";
563
+ };
564
+ };
565
+ fd: (value: {
566
+ readonly [$$PropertyValue]: "flexDirection";
567
+ }) => {
568
+ flexDirection: {
569
+ readonly [$$PropertyValue]: "flexDirection";
570
+ };
571
+ };
572
+ fw: (value: {
573
+ readonly [$$PropertyValue]: "flexWrap";
574
+ }) => {
575
+ flexWrap: {
576
+ readonly [$$PropertyValue]: "flexWrap";
577
+ };
578
+ };
579
+ ai: (value: {
580
+ readonly [$$PropertyValue]: "alignItems";
581
+ }) => {
582
+ alignItems: {
583
+ readonly [$$PropertyValue]: "alignItems";
584
+ };
585
+ };
586
+ ac: (value: {
587
+ readonly [$$PropertyValue]: "alignContent";
588
+ }) => {
589
+ alignContent: {
590
+ readonly [$$PropertyValue]: "alignContent";
591
+ };
592
+ };
593
+ jc: (value: {
594
+ readonly [$$PropertyValue]: "justifyContent";
595
+ }) => {
596
+ justifyContent: {
597
+ readonly [$$PropertyValue]: "justifyContent";
598
+ };
599
+ };
600
+ as: (value: {
601
+ readonly [$$PropertyValue]: "alignSelf";
602
+ }) => {
603
+ alignSelf: {
604
+ readonly [$$PropertyValue]: "alignSelf";
605
+ };
606
+ };
607
+ fg: (value: {
608
+ readonly [$$PropertyValue]: "flexGrow";
609
+ }) => {
610
+ flexGrow: {
611
+ readonly [$$PropertyValue]: "flexGrow";
612
+ };
613
+ };
614
+ fs: (value: {
615
+ readonly [$$PropertyValue]: "flexShrink";
616
+ }) => {
617
+ flexShrink: {
618
+ readonly [$$PropertyValue]: "flexShrink";
619
+ };
620
+ };
621
+ fb: (value: {
622
+ readonly [$$PropertyValue]: "flexBasis";
623
+ }) => {
624
+ flexBasis: {
625
+ readonly [$$PropertyValue]: "flexBasis";
626
+ };
627
+ };
628
+ bc: (value: {
629
+ readonly [$$PropertyValue]: "backgroundColor";
630
+ }) => {
631
+ backgroundColor: {
632
+ readonly [$$PropertyValue]: "backgroundColor";
633
+ };
634
+ };
635
+ br: (value: {
636
+ readonly [$$PropertyValue]: "borderRadius";
637
+ }) => {
638
+ borderRadius: {
639
+ readonly [$$PropertyValue]: "borderRadius";
640
+ };
641
+ };
642
+ btrr: (value: {
643
+ readonly [$$PropertyValue]: "borderTopRightRadius";
644
+ }) => {
645
+ borderTopRightRadius: {
646
+ readonly [$$PropertyValue]: "borderTopRightRadius";
647
+ };
648
+ };
649
+ bbrr: (value: {
650
+ readonly [$$PropertyValue]: "borderBottomRightRadius";
651
+ }) => {
652
+ borderBottomRightRadius: {
653
+ readonly [$$PropertyValue]: "borderBottomRightRadius";
654
+ };
655
+ };
656
+ bblr: (value: {
657
+ readonly [$$PropertyValue]: "borderBottomLeftRadius";
658
+ }) => {
659
+ borderBottomLeftRadius: {
660
+ readonly [$$PropertyValue]: "borderBottomLeftRadius";
661
+ };
662
+ };
663
+ btlr: (value: {
664
+ readonly [$$PropertyValue]: "borderTopLeftRadius";
665
+ }) => {
666
+ borderTopLeftRadius: {
667
+ readonly [$$PropertyValue]: "borderTopLeftRadius";
668
+ };
669
+ };
670
+ bs: (value: {
671
+ readonly [$$PropertyValue]: "boxShadow";
672
+ }) => {
673
+ boxShadow: {
674
+ readonly [$$PropertyValue]: "boxShadow";
675
+ };
676
+ };
677
+ lh: (value: {
678
+ readonly [$$PropertyValue]: "lineHeight";
679
+ }) => {
680
+ lineHeight: {
681
+ readonly [$$PropertyValue]: "lineHeight";
682
+ };
683
+ };
684
+ ox: (value: {
685
+ readonly [$$PropertyValue]: "overflowX";
686
+ }) => {
687
+ overflowX: {
688
+ readonly [$$PropertyValue]: "overflowX";
689
+ };
690
+ };
691
+ oy: (value: {
692
+ readonly [$$PropertyValue]: "overflowY";
693
+ }) => {
694
+ overflowY: {
695
+ readonly [$$PropertyValue]: "overflowY";
696
+ };
697
+ };
698
+ pe: (value: {
699
+ readonly [$$PropertyValue]: "pointerEvents";
700
+ }) => {
701
+ pointerEvents: {
702
+ readonly [$$PropertyValue]: "pointerEvents";
703
+ };
704
+ };
705
+ us: (value: {
706
+ readonly [$$PropertyValue]: "userSelect";
707
+ }) => {
708
+ WebkitUserSelect: {
709
+ readonly [$$PropertyValue]: "userSelect";
710
+ };
711
+ userSelect: {
712
+ readonly [$$PropertyValue]: "userSelect";
713
+ };
714
+ };
715
+ userSelect: (value: {
716
+ readonly [$$PropertyValue]: "userSelect";
717
+ }) => {
718
+ WebkitUserSelect: {
719
+ readonly [$$PropertyValue]: "userSelect";
720
+ };
721
+ userSelect: {
722
+ readonly [$$PropertyValue]: "userSelect";
723
+ };
724
+ };
725
+ size: (value: {
726
+ readonly [$$PropertyValue]: "width";
727
+ }) => {
728
+ width: {
729
+ readonly [$$PropertyValue]: "width";
730
+ };
731
+ height: {
732
+ readonly [$$PropertyValue]: "width";
733
+ };
734
+ };
735
+ appearance: (value: {
736
+ readonly [$$PropertyValue]: "appearance";
737
+ }) => {
738
+ WebkitAppearance: {
739
+ readonly [$$PropertyValue]: "appearance";
740
+ };
741
+ appearance: {
742
+ readonly [$$PropertyValue]: "appearance";
743
+ };
744
+ };
745
+ backgroundClip: (value: {
746
+ readonly [$$PropertyValue]: "backgroundClip";
747
+ }) => {
748
+ WebkitBackgroundClip: {
749
+ readonly [$$PropertyValue]: "backgroundClip";
750
+ };
751
+ backgroundClip: {
752
+ readonly [$$PropertyValue]: "backgroundClip";
753
+ };
754
+ };
755
+ }>>;