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