@livepeer/design-system 1.1.0-0 → 1.1.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.
Files changed (72) hide show
  1. package/package.json +30 -30
  2. package/dist/components/Accordion.d.ts +0 -1512
  3. package/dist/components/Alert.d.ts +0 -752
  4. package/dist/components/AlertDialog.d.ts +0 -15
  5. package/dist/components/AppBar.d.ts +0 -755
  6. package/dist/components/Avatar.d.ts +0 -2270
  7. package/dist/components/Badge.d.ts +0 -753
  8. package/dist/components/Banner.d.ts +0 -754
  9. package/dist/components/Box.d.ts +0 -749
  10. package/dist/components/Button.d.ts +0 -753
  11. package/dist/components/Card.d.ts +0 -751
  12. package/dist/components/Checkbox.d.ts +0 -761
  13. package/dist/components/Code.d.ts +0 -751
  14. package/dist/components/Container.d.ts +0 -751
  15. package/dist/components/ContextMenu.d.ts +0 -3766
  16. package/dist/components/ControlGroup.d.ts +0 -749
  17. package/dist/components/DesignSystemProvider.d.ts +0 -9
  18. package/dist/components/Dialog.d.ts +0 -18
  19. package/dist/components/DropdownMenu.d.ts +0 -6016
  20. package/dist/components/Flex.d.ts +0 -755
  21. package/dist/components/Grid.d.ts +0 -757
  22. package/dist/components/Heading.d.ts +0 -14
  23. package/dist/components/IconButton.d.ts +0 -753
  24. package/dist/components/Image.d.ts +0 -749
  25. package/dist/components/Kbd.d.ts +0 -752
  26. package/dist/components/Label.d.ts +0 -755
  27. package/dist/components/Link.d.ts +0 -751
  28. package/dist/components/Menu.d.ts +0 -10498
  29. package/dist/components/Overlay.d.ts +0 -1498
  30. package/dist/components/Panel.d.ts +0 -1498
  31. package/dist/components/Paragraph.d.ts +0 -14
  32. package/dist/components/Popover.d.ts +0 -13
  33. package/dist/components/ProgressBar.d.ts +0 -761
  34. package/dist/components/Promo.d.ts +0 -754
  35. package/dist/components/Radio.d.ts +0 -1510
  36. package/dist/components/RadioCard.d.ts +0 -758
  37. package/dist/components/RadioGrid.d.ts +0 -1500
  38. package/dist/components/Scrollbar.d.ts +0 -6
  39. package/dist/components/Section.d.ts +0 -751
  40. package/dist/components/Select.d.ts +0 -1504
  41. package/dist/components/Separator.d.ts +0 -753
  42. package/dist/components/Sheet.d.ts +0 -766
  43. package/dist/components/SimpleToggle.d.ts +0 -753
  44. package/dist/components/Skeleton.d.ts +0 -751
  45. package/dist/components/Slider.d.ts +0 -758
  46. package/dist/components/Snackbar/SnackbarProvider.d.ts +0 -15
  47. package/dist/components/Snackbar/index.d.ts +0 -2
  48. package/dist/components/Snackbar/transitionStyles.d.ts +0 -87
  49. package/dist/components/Snackbar/useSnackbar.d.ts +0 -5
  50. package/dist/components/Status.d.ts +0 -752
  51. package/dist/components/Sub.d.ts +0 -749
  52. package/dist/components/Sup.d.ts +0 -749
  53. package/dist/components/Switch.d.ts +0 -1509
  54. package/dist/components/TabLink.d.ts +0 -751
  55. package/dist/components/Table.d.ts +0 -6000
  56. package/dist/components/Tabs.d.ts +0 -4500
  57. package/dist/components/Text.d.ts +0 -753
  58. package/dist/components/TextArea.d.ts +0 -753
  59. package/dist/components/TextField.d.ts +0 -754
  60. package/dist/components/Tooltip.d.ts +0 -10
  61. package/dist/components/TreeItem.d.ts +0 -751
  62. package/dist/components/VerifiedBadge.d.ts +0 -762
  63. package/dist/custom/AppBar.d.ts +0 -755
  64. package/dist/custom/Avatars.d.ts +0 -2
  65. package/dist/custom/DarkThemeButton.d.ts +0 -2
  66. package/dist/custom/Kbds.d.ts +0 -2
  67. package/dist/custom/Snackbar.d.ts +0 -2
  68. package/dist/custom/Toolbar.d.ts +0 -2
  69. package/dist/index.d.ts +0 -61
  70. package/dist/index.es.js +0 -4912
  71. package/dist/index.js +0 -5127
  72. package/dist/stitches.config.d.ts +0 -6321
@@ -1,766 +0,0 @@
1
- import React from "react";
2
- import { VariantProps, CSS } from "../stitches.config";
3
- import * as DialogPrimitive from "@radix-ui/react-dialog";
4
- declare const Sheet: React.FC<DialogPrimitive.DialogProps>;
5
- declare const SheetTrigger: React.ForwardRefExoticComponent<DialogPrimitive.DialogTriggerProps & React.RefAttributes<HTMLButtonElement>>;
6
- declare const StyledContent: import("@stitches/react/types/styled-component").StyledComponent<React.ForwardRefExoticComponent<DialogPrimitive.DialogContentProps & React.RefAttributes<HTMLDivElement>>, {
7
- side?: "bottom" | "left" | "right" | "top" | undefined;
8
- }, {
9
- bp1: "(min-width: 520px)";
10
- bp2: "(min-width: 900px)";
11
- bp3: "(min-width: 1200px)";
12
- bp4: "(min-width: 1800px)";
13
- motion: "(prefers-reduced-motion)";
14
- hover: "(any-hover: hover)";
15
- dark: "(prefers-color-scheme: dark)";
16
- light: "(prefers-color-scheme: light)";
17
- }, import("@stitches/react/types/css-util").CSS<{
18
- bp1: "(min-width: 520px)";
19
- bp2: "(min-width: 900px)";
20
- bp3: "(min-width: 1200px)";
21
- bp4: "(min-width: 1800px)";
22
- motion: "(prefers-reduced-motion)";
23
- hover: "(any-hover: hover)";
24
- dark: "(prefers-color-scheme: dark)";
25
- light: "(prefers-color-scheme: light)";
26
- }, {
27
- colors: {
28
- hiContrast: string;
29
- loContrast: string;
30
- canvas: string;
31
- panel: string;
32
- transparentPanel: string;
33
- shadowLight: string;
34
- shadowDark: string;
35
- blackA1: string;
36
- blackA2: string;
37
- blackA3: string;
38
- blackA4: string;
39
- blackA5: string;
40
- blackA6: string;
41
- blackA7: string;
42
- blackA8: string;
43
- blackA9: string;
44
- blackA10: string;
45
- blackA11: string;
46
- blackA12: string;
47
- whiteA1: string;
48
- whiteA2: string;
49
- whiteA3: string;
50
- whiteA4: string;
51
- whiteA5: string;
52
- whiteA6: string;
53
- whiteA7: string;
54
- whiteA8: string;
55
- whiteA9: string;
56
- whiteA10: string;
57
- whiteA11: string;
58
- whiteA12: string;
59
- gold1: string;
60
- gold2: string;
61
- gold3: string;
62
- gold4: string;
63
- gold5: string;
64
- gold6: string;
65
- gold7: string;
66
- gold8: string;
67
- gold9: string;
68
- gold10: string;
69
- gold11: string;
70
- gold12: string;
71
- bronze1: string;
72
- bronze2: string;
73
- bronze3: string;
74
- bronze4: string;
75
- bronze5: string;
76
- bronze6: string;
77
- bronze7: string;
78
- bronze8: string;
79
- bronze9: string;
80
- bronze10: string;
81
- bronze11: string;
82
- bronze12: string;
83
- brown1: string;
84
- brown2: string;
85
- brown3: string;
86
- brown4: string;
87
- brown5: string;
88
- brown6: string;
89
- brown7: string;
90
- brown8: string;
91
- brown9: string;
92
- brown10: string;
93
- brown11: string;
94
- brown12: string;
95
- orange1: string;
96
- orange2: string;
97
- orange3: string;
98
- orange4: string;
99
- orange5: string;
100
- orange6: string;
101
- orange7: string;
102
- orange8: string;
103
- orange9: string;
104
- orange10: string;
105
- orange11: string;
106
- orange12: string;
107
- amber1: string;
108
- amber2: string;
109
- amber3: string;
110
- amber4: string;
111
- amber5: string;
112
- amber6: string;
113
- amber7: string;
114
- amber8: string;
115
- amber9: string;
116
- amber10: string;
117
- amber11: string;
118
- amber12: string;
119
- yellow1: string;
120
- yellow2: string;
121
- yellow3: string;
122
- yellow4: string;
123
- yellow5: string;
124
- yellow6: string;
125
- yellow7: string;
126
- yellow8: string;
127
- yellow9: string;
128
- yellow10: string;
129
- yellow11: string;
130
- yellow12: string;
131
- lime1: string;
132
- lime2: string;
133
- lime3: string;
134
- lime4: string;
135
- lime5: string;
136
- lime6: string;
137
- lime7: string;
138
- lime8: string;
139
- lime9: string;
140
- lime10: string;
141
- lime11: string;
142
- lime12: string;
143
- grass1: string;
144
- grass2: string;
145
- grass3: string;
146
- grass4: string;
147
- grass5: string;
148
- grass6: string;
149
- grass7: string;
150
- grass8: string;
151
- grass9: string;
152
- grass10: string;
153
- grass11: string;
154
- grass12: string;
155
- green1: string;
156
- green2: string;
157
- green3: string;
158
- green4: string;
159
- green5: string;
160
- green6: string;
161
- green7: string;
162
- green8: string;
163
- green9: string;
164
- green10: string;
165
- green11: string;
166
- green12: string;
167
- teal1: string;
168
- teal2: string;
169
- teal3: string;
170
- teal4: string;
171
- teal5: string;
172
- teal6: string;
173
- teal7: string;
174
- teal8: string;
175
- teal9: string;
176
- teal10: string;
177
- teal11: string;
178
- teal12: string;
179
- cyan1: string;
180
- cyan2: string;
181
- cyan3: string;
182
- cyan4: string;
183
- cyan5: string;
184
- cyan6: string;
185
- cyan7: string;
186
- cyan8: string;
187
- cyan9: string;
188
- cyan10: string;
189
- cyan11: string;
190
- cyan12: string;
191
- mint1: string;
192
- mint2: string;
193
- mint3: string;
194
- mint4: string;
195
- mint5: string;
196
- mint6: string;
197
- mint7: string;
198
- mint8: string;
199
- mint9: string;
200
- mint10: string;
201
- mint11: string;
202
- mint12: string;
203
- sky1: string;
204
- sky2: string;
205
- sky3: string;
206
- sky4: string;
207
- sky5: string;
208
- sky6: string;
209
- sky7: string;
210
- sky8: string;
211
- sky9: string;
212
- sky10: string;
213
- sky11: string;
214
- sky12: string;
215
- blue1: string;
216
- blue2: string;
217
- blue3: string;
218
- blue4: string;
219
- blue5: string;
220
- blue6: string;
221
- blue7: string;
222
- blue8: string;
223
- blue9: string;
224
- blue10: string;
225
- blue11: string;
226
- blue12: string;
227
- indigo1: string;
228
- indigo2: string;
229
- indigo3: string;
230
- indigo4: string;
231
- indigo5: string;
232
- indigo6: string;
233
- indigo7: string;
234
- indigo8: string;
235
- indigo9: string;
236
- indigo10: string;
237
- indigo11: string;
238
- indigo12: string;
239
- violet1: string;
240
- violet2: string;
241
- violet3: string;
242
- violet4: string;
243
- violet5: string;
244
- violet6: string;
245
- violet7: string;
246
- violet8: string;
247
- violet9: string;
248
- violet10: string;
249
- violet11: string;
250
- violet12: string;
251
- purple1: string;
252
- purple2: string;
253
- purple3: string;
254
- purple4: string;
255
- purple5: string;
256
- purple6: string;
257
- purple7: string;
258
- purple8: string;
259
- purple9: string;
260
- purple10: string;
261
- purple11: string;
262
- purple12: string;
263
- plum1: string;
264
- plum2: string;
265
- plum3: string;
266
- plum4: string;
267
- plum5: string;
268
- plum6: string;
269
- plum7: string;
270
- plum8: string;
271
- plum9: string;
272
- plum10: string;
273
- plum11: string;
274
- plum12: string;
275
- pink1: string;
276
- pink2: string;
277
- pink3: string;
278
- pink4: string;
279
- pink5: string;
280
- pink6: string;
281
- pink7: string;
282
- pink8: string;
283
- pink9: string;
284
- pink10: string;
285
- pink11: string;
286
- pink12: string;
287
- crimson1: string;
288
- crimson2: string;
289
- crimson3: string;
290
- crimson4: string;
291
- crimson5: string;
292
- crimson6: string;
293
- crimson7: string;
294
- crimson8: string;
295
- crimson9: string;
296
- crimson10: string;
297
- crimson11: string;
298
- crimson12: string;
299
- red1: string;
300
- red2: string;
301
- red3: string;
302
- red4: string;
303
- red5: string;
304
- red6: string;
305
- red7: string;
306
- red8: string;
307
- red9: string;
308
- red10: string;
309
- red11: string;
310
- red12: string;
311
- tomato1: string;
312
- tomato2: string;
313
- tomato3: string;
314
- tomato4: string;
315
- tomato5: string;
316
- tomato6: string;
317
- tomato7: string;
318
- tomato8: string;
319
- tomato9: string;
320
- tomato10: string;
321
- tomato11: string;
322
- tomato12: string;
323
- sand1: string;
324
- sand2: string;
325
- sand3: string;
326
- sand4: string;
327
- sand5: string;
328
- sand6: string;
329
- sand7: string;
330
- sand8: string;
331
- sand9: string;
332
- sand10: string;
333
- sand11: string;
334
- sand12: string;
335
- olive1: string;
336
- olive2: string;
337
- olive3: string;
338
- olive4: string;
339
- olive5: string;
340
- olive6: string;
341
- olive7: string;
342
- olive8: string;
343
- olive9: string;
344
- olive10: string;
345
- olive11: string;
346
- olive12: string;
347
- sage1: string;
348
- sage2: string;
349
- sage3: string;
350
- sage4: string;
351
- sage5: string;
352
- sage6: string;
353
- sage7: string;
354
- sage8: string;
355
- sage9: string;
356
- sage10: string;
357
- sage11: string;
358
- sage12: string;
359
- slate1: string;
360
- slate2: string;
361
- slate3: string;
362
- slate4: string;
363
- slate5: string;
364
- slate6: string;
365
- slate7: string;
366
- slate8: string;
367
- slate9: string;
368
- slate10: string;
369
- slate11: string;
370
- slate12: string;
371
- mauve1: string;
372
- mauve2: string;
373
- mauve3: string;
374
- mauve4: string;
375
- mauve5: string;
376
- mauve6: string;
377
- mauve7: string;
378
- mauve8: string;
379
- mauve9: string;
380
- mauve10: string;
381
- mauve11: string;
382
- mauve12: string;
383
- gray1: string;
384
- gray2: string;
385
- gray3: string;
386
- gray4: string;
387
- gray5: string;
388
- gray6: string;
389
- gray7: string;
390
- gray8: string;
391
- gray9: string;
392
- gray10: string;
393
- gray11: string;
394
- gray12: string;
395
- };
396
- fonts: {
397
- untitled: string;
398
- mono: string;
399
- };
400
- space: {
401
- 1: string;
402
- 2: string;
403
- 3: string;
404
- 4: string;
405
- 5: string;
406
- 6: string;
407
- 7: string;
408
- 8: string;
409
- 9: string;
410
- };
411
- sizes: {
412
- 1: string;
413
- 2: string;
414
- 3: string;
415
- 4: string;
416
- 5: string;
417
- 6: string;
418
- 7: string;
419
- 8: string;
420
- 9: string;
421
- };
422
- fontSizes: {
423
- 1: string;
424
- 2: string;
425
- 3: string;
426
- 4: string;
427
- 5: string;
428
- 6: string;
429
- 7: string;
430
- 8: string;
431
- 9: string;
432
- };
433
- radii: {
434
- 1: string;
435
- 2: string;
436
- 3: string;
437
- 4: string;
438
- round: string;
439
- pill: string;
440
- };
441
- zIndices: {
442
- 1: string;
443
- 2: string;
444
- 3: string;
445
- 4: string;
446
- max: string;
447
- };
448
- }, import("@stitches/react/types/config").DefaultThemeMap, {
449
- p: (value: {
450
- readonly [$$PropertyValue]: "padding";
451
- }) => {
452
- padding: {
453
- readonly [$$PropertyValue]: "padding";
454
- };
455
- };
456
- pt: (value: {
457
- readonly [$$PropertyValue]: "paddingTop";
458
- }) => {
459
- paddingTop: {
460
- readonly [$$PropertyValue]: "paddingTop";
461
- };
462
- };
463
- pr: (value: {
464
- readonly [$$PropertyValue]: "paddingRight";
465
- }) => {
466
- paddingRight: {
467
- readonly [$$PropertyValue]: "paddingRight";
468
- };
469
- };
470
- pb: (value: {
471
- readonly [$$PropertyValue]: "paddingBottom";
472
- }) => {
473
- paddingBottom: {
474
- readonly [$$PropertyValue]: "paddingBottom";
475
- };
476
- };
477
- pl: (value: {
478
- readonly [$$PropertyValue]: "paddingLeft";
479
- }) => {
480
- paddingLeft: {
481
- readonly [$$PropertyValue]: "paddingLeft";
482
- };
483
- };
484
- px: (value: {
485
- readonly [$$PropertyValue]: "paddingLeft";
486
- }) => {
487
- paddingLeft: {
488
- readonly [$$PropertyValue]: "paddingLeft";
489
- };
490
- paddingRight: {
491
- readonly [$$PropertyValue]: "paddingLeft";
492
- };
493
- };
494
- py: (value: {
495
- readonly [$$PropertyValue]: "paddingTop";
496
- }) => {
497
- paddingTop: {
498
- readonly [$$PropertyValue]: "paddingTop";
499
- };
500
- paddingBottom: {
501
- readonly [$$PropertyValue]: "paddingTop";
502
- };
503
- };
504
- m: (value: {
505
- readonly [$$PropertyValue]: "margin";
506
- }) => {
507
- margin: {
508
- readonly [$$PropertyValue]: "margin";
509
- };
510
- };
511
- mt: (value: {
512
- readonly [$$PropertyValue]: "marginTop";
513
- }) => {
514
- marginTop: {
515
- readonly [$$PropertyValue]: "marginTop";
516
- };
517
- };
518
- mr: (value: {
519
- readonly [$$PropertyValue]: "marginRight";
520
- }) => {
521
- marginRight: {
522
- readonly [$$PropertyValue]: "marginRight";
523
- };
524
- };
525
- mb: (value: {
526
- readonly [$$PropertyValue]: "marginBottom";
527
- }) => {
528
- marginBottom: {
529
- readonly [$$PropertyValue]: "marginBottom";
530
- };
531
- };
532
- ml: (value: {
533
- readonly [$$PropertyValue]: "marginLeft";
534
- }) => {
535
- marginLeft: {
536
- readonly [$$PropertyValue]: "marginLeft";
537
- };
538
- };
539
- mx: (value: {
540
- readonly [$$PropertyValue]: "marginLeft";
541
- }) => {
542
- marginLeft: {
543
- readonly [$$PropertyValue]: "marginLeft";
544
- };
545
- marginRight: {
546
- readonly [$$PropertyValue]: "marginLeft";
547
- };
548
- };
549
- my: (value: {
550
- readonly [$$PropertyValue]: "marginTop";
551
- }) => {
552
- marginTop: {
553
- readonly [$$PropertyValue]: "marginTop";
554
- };
555
- marginBottom: {
556
- readonly [$$PropertyValue]: "marginTop";
557
- };
558
- };
559
- ta: (value: {
560
- readonly [$$PropertyValue]: "textAlign";
561
- }) => {
562
- textAlign: {
563
- readonly [$$PropertyValue]: "textAlign";
564
- };
565
- };
566
- fd: (value: {
567
- readonly [$$PropertyValue]: "flexDirection";
568
- }) => {
569
- flexDirection: {
570
- readonly [$$PropertyValue]: "flexDirection";
571
- };
572
- };
573
- fw: (value: {
574
- readonly [$$PropertyValue]: "flexWrap";
575
- }) => {
576
- flexWrap: {
577
- readonly [$$PropertyValue]: "flexWrap";
578
- };
579
- };
580
- ai: (value: {
581
- readonly [$$PropertyValue]: "alignItems";
582
- }) => {
583
- alignItems: {
584
- readonly [$$PropertyValue]: "alignItems";
585
- };
586
- };
587
- ac: (value: {
588
- readonly [$$PropertyValue]: "alignContent";
589
- }) => {
590
- alignContent: {
591
- readonly [$$PropertyValue]: "alignContent";
592
- };
593
- };
594
- jc: (value: {
595
- readonly [$$PropertyValue]: "justifyContent";
596
- }) => {
597
- justifyContent: {
598
- readonly [$$PropertyValue]: "justifyContent";
599
- };
600
- };
601
- as: (value: {
602
- readonly [$$PropertyValue]: "alignSelf";
603
- }) => {
604
- alignSelf: {
605
- readonly [$$PropertyValue]: "alignSelf";
606
- };
607
- };
608
- fg: (value: {
609
- readonly [$$PropertyValue]: "flexGrow";
610
- }) => {
611
- flexGrow: {
612
- readonly [$$PropertyValue]: "flexGrow";
613
- };
614
- };
615
- fs: (value: {
616
- readonly [$$PropertyValue]: "flexShrink";
617
- }) => {
618
- flexShrink: {
619
- readonly [$$PropertyValue]: "flexShrink";
620
- };
621
- };
622
- fb: (value: {
623
- readonly [$$PropertyValue]: "flexBasis";
624
- }) => {
625
- flexBasis: {
626
- readonly [$$PropertyValue]: "flexBasis";
627
- };
628
- };
629
- bc: (value: {
630
- readonly [$$PropertyValue]: "backgroundColor";
631
- }) => {
632
- backgroundColor: {
633
- readonly [$$PropertyValue]: "backgroundColor";
634
- };
635
- };
636
- br: (value: {
637
- readonly [$$PropertyValue]: "borderRadius";
638
- }) => {
639
- borderRadius: {
640
- readonly [$$PropertyValue]: "borderRadius";
641
- };
642
- };
643
- btrr: (value: {
644
- readonly [$$PropertyValue]: "borderTopRightRadius";
645
- }) => {
646
- borderTopRightRadius: {
647
- readonly [$$PropertyValue]: "borderTopRightRadius";
648
- };
649
- };
650
- bbrr: (value: {
651
- readonly [$$PropertyValue]: "borderBottomRightRadius";
652
- }) => {
653
- borderBottomRightRadius: {
654
- readonly [$$PropertyValue]: "borderBottomRightRadius";
655
- };
656
- };
657
- bblr: (value: {
658
- readonly [$$PropertyValue]: "borderBottomLeftRadius";
659
- }) => {
660
- borderBottomLeftRadius: {
661
- readonly [$$PropertyValue]: "borderBottomLeftRadius";
662
- };
663
- };
664
- btlr: (value: {
665
- readonly [$$PropertyValue]: "borderTopLeftRadius";
666
- }) => {
667
- borderTopLeftRadius: {
668
- readonly [$$PropertyValue]: "borderTopLeftRadius";
669
- };
670
- };
671
- bs: (value: {
672
- readonly [$$PropertyValue]: "boxShadow";
673
- }) => {
674
- boxShadow: {
675
- readonly [$$PropertyValue]: "boxShadow";
676
- };
677
- };
678
- lh: (value: {
679
- readonly [$$PropertyValue]: "lineHeight";
680
- }) => {
681
- lineHeight: {
682
- readonly [$$PropertyValue]: "lineHeight";
683
- };
684
- };
685
- ox: (value: {
686
- readonly [$$PropertyValue]: "overflowX";
687
- }) => {
688
- overflowX: {
689
- readonly [$$PropertyValue]: "overflowX";
690
- };
691
- };
692
- oy: (value: {
693
- readonly [$$PropertyValue]: "overflowY";
694
- }) => {
695
- overflowY: {
696
- readonly [$$PropertyValue]: "overflowY";
697
- };
698
- };
699
- pe: (value: {
700
- readonly [$$PropertyValue]: "pointerEvents";
701
- }) => {
702
- pointerEvents: {
703
- readonly [$$PropertyValue]: "pointerEvents";
704
- };
705
- };
706
- us: (value: {
707
- readonly [$$PropertyValue]: "userSelect";
708
- }) => {
709
- WebkitUserSelect: {
710
- readonly [$$PropertyValue]: "userSelect";
711
- };
712
- userSelect: {
713
- readonly [$$PropertyValue]: "userSelect";
714
- };
715
- };
716
- userSelect: (value: {
717
- readonly [$$PropertyValue]: "userSelect";
718
- }) => {
719
- WebkitUserSelect: {
720
- readonly [$$PropertyValue]: "userSelect";
721
- };
722
- userSelect: {
723
- readonly [$$PropertyValue]: "userSelect";
724
- };
725
- };
726
- size: (value: {
727
- readonly [$$PropertyValue]: "width";
728
- }) => {
729
- width: {
730
- readonly [$$PropertyValue]: "width";
731
- };
732
- height: {
733
- readonly [$$PropertyValue]: "width";
734
- };
735
- };
736
- appearance: (value: {
737
- readonly [$$PropertyValue]: "appearance";
738
- }) => {
739
- WebkitAppearance: {
740
- readonly [$$PropertyValue]: "appearance";
741
- };
742
- appearance: {
743
- readonly [$$PropertyValue]: "appearance";
744
- };
745
- };
746
- backgroundClip: (value: {
747
- readonly [$$PropertyValue]: "backgroundClip";
748
- }) => {
749
- WebkitBackgroundClip: {
750
- readonly [$$PropertyValue]: "backgroundClip";
751
- };
752
- backgroundClip: {
753
- readonly [$$PropertyValue]: "backgroundClip";
754
- };
755
- };
756
- }>>;
757
- declare type SheetContentVariants = VariantProps<typeof StyledContent>;
758
- declare type DialogContentPrimitiveProps = React.ComponentProps<typeof DialogPrimitive.Content>;
759
- declare type SheetContentProps = DialogContentPrimitiveProps & SheetContentVariants & {
760
- css?: CSS;
761
- };
762
- declare const SheetContent: React.ForwardRefExoticComponent<Pick<SheetContentProps, "color" | "translate" | "hidden" | "style" | "css" | "slot" | "title" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "id" | "lang" | "placeholder" | "spellCheck" | "tabIndex" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "children" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "asChild" | "side" | "onEscapeKeyDown" | "onPointerDownOutside" | "onFocusOutside" | "onInteractOutside" | "onOpenAutoFocus" | "onCloseAutoFocus" | "forceMount"> & React.RefAttributes<HTMLDivElement>>;
763
- declare const SheetClose: React.ForwardRefExoticComponent<DialogPrimitive.DialogCloseProps & React.RefAttributes<HTMLButtonElement>>;
764
- declare const SheetTitle: React.ForwardRefExoticComponent<DialogPrimitive.DialogTitleProps & React.RefAttributes<HTMLHeadingElement>>;
765
- declare const SheetDescription: React.ForwardRefExoticComponent<DialogPrimitive.DialogDescriptionProps & React.RefAttributes<HTMLParagraphElement>>;
766
- export { Sheet, SheetTrigger, SheetContent, SheetClose, SheetTitle, SheetDescription, };