@obolnetwork/obol-ui 1.0.35 → 1.0.36

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 (30) hide show
  1. package/dist/components/atoms/Box/Box.d.ts +1 -0
  2. package/dist/components/atoms/Button/Button.d.ts +1 -0
  3. package/dist/components/atoms/Checkbox/Checkbox.d.ts +1 -0
  4. package/dist/components/atoms/Container/Container.d.ts +2 -0
  5. package/dist/components/atoms/Dialog/Dialog.d.ts +6 -0
  6. package/dist/components/atoms/IconButton/IconButton.d.ts +1 -0
  7. package/dist/components/atoms/Image/Image.d.ts +1 -0
  8. package/dist/components/atoms/Link/Link.d.ts +1 -0
  9. package/dist/components/atoms/Spin/Spin.d.ts +2 -1
  10. package/dist/components/atoms/SvgIcon/SvgIcon.d.ts +2 -1
  11. package/dist/components/atoms/Switch/Switch.d.ts +965 -0
  12. package/dist/components/atoms/Tabs/Tabs.d.ts +4 -0
  13. package/dist/components/atoms/Text/Text.d.ts +4 -3
  14. package/dist/components/atoms/TextField/TextField.d.ts +2 -0
  15. package/dist/components/atoms/Toggle/Toggle.d.ts +2 -0
  16. package/dist/components/atoms/index.d.ts +1 -0
  17. package/dist/components/icons/GlowIconBox.d.ts +1 -0
  18. package/dist/components/icons/Planet.d.ts +1 -0
  19. package/dist/components/molecules/Accordion/Accordion.d.ts +2 -0
  20. package/dist/components/molecules/AdvisoryToggle/AdvisoryToggle.d.ts +2 -0
  21. package/dist/components/molecules/Card/Card.d.ts +2 -0
  22. package/dist/components/molecules/NotificationCard/NotificationCard.d.ts +2 -0
  23. package/dist/components/molecules/RadioGroup/RadioGroup.d.ts +3 -0
  24. package/dist/components/organisms/Advisory/Advisory.d.ts +2 -0
  25. package/dist/components/utils/color-variants.d.ts +1 -0
  26. package/dist/components/utils/styles.d.ts +1 -0
  27. package/dist/index.es.js +31 -1
  28. package/dist/index.js +34 -0
  29. package/dist/stitches.config.d.ts +10 -0
  30. package/package.json +2 -1
@@ -0,0 +1,965 @@
1
+ import * as ReactSwitch from "@radix-ui/react-switch";
2
+ import React from "react";
3
+ export declare const SwitchRoot: import("@stitches/react/types/styled-component").StyledComponent<React.ForwardRefExoticComponent<ReactSwitch.SwitchProps & React.RefAttributes<HTMLButtonElement>>, {}, {
4
+ motion: "(prefers-reduced-motion)";
5
+ hover: "(any-hover: hover)";
6
+ dark: "(prefers-color-scheme: dark)";
7
+ light: "(prefers-color-scheme: light)";
8
+ xs: "(max-width: 520px)";
9
+ sm: "(max-width: 900px)";
10
+ bp2: "(min-width: 900px)";
11
+ md: "(max-width: 1200px)";
12
+ lg: "(max-width: 1800px)";
13
+ }, import("@stitches/react/types/css-util").CSS<{
14
+ motion: "(prefers-reduced-motion)";
15
+ hover: "(any-hover: hover)";
16
+ dark: "(prefers-color-scheme: dark)";
17
+ light: "(prefers-color-scheme: light)";
18
+ xs: "(max-width: 520px)";
19
+ sm: "(max-width: 900px)";
20
+ bp2: "(min-width: 900px)";
21
+ md: "(max-width: 1200px)";
22
+ lg: "(max-width: 1800px)";
23
+ }, {
24
+ colors: {
25
+ white: string;
26
+ black: string;
27
+ lightBackground: string;
28
+ obolBlue: string;
29
+ primaryBgDefault: string;
30
+ primaryBgDefaultHover: string;
31
+ primaryTextDefault: string;
32
+ secondaryBgDefault: string;
33
+ secondaryBgHover: string;
34
+ grayBgDefault: string;
35
+ gray2BgDefault: string;
36
+ neutralDark: string;
37
+ navButtonBgDefault: string;
38
+ navButtonBgHover: string;
39
+ cardBackgroundDark: string;
40
+ cardBackgroundLight: string;
41
+ textMiddle: string;
42
+ textLight: string;
43
+ textLighter: string;
44
+ textTabHover: string;
45
+ textTabInactive: string;
46
+ textGreenDark: string;
47
+ textGreenLight: string;
48
+ textGreen1: string;
49
+ textGreen2: string;
50
+ textGreen3: string;
51
+ textGreenHover: string;
52
+ textCreateHover: string;
53
+ textGrayHover: string;
54
+ txButton: string;
55
+ obolGreen: string;
56
+ obolMidGreen: string;
57
+ obolGreenHover: string;
58
+ obolGreenLight: string;
59
+ obolDarkDark: string;
60
+ obolDisabled: string;
61
+ linkButtonHover: string;
62
+ progressTrackerGreen: string;
63
+ lightGrey: string;
64
+ coordinate: string;
65
+ coordinateHover: string;
66
+ test: string;
67
+ testHover: string;
68
+ create: string;
69
+ createHover: string;
70
+ light: string;
71
+ body: string;
72
+ muted: string;
73
+ menu: string;
74
+ bg01: string;
75
+ bg02: string;
76
+ bg03: string;
77
+ bg04: string;
78
+ bg05: string;
79
+ tooltip: string;
80
+ tooltip2: string;
81
+ };
82
+ space: {
83
+ 1: string;
84
+ 2: string;
85
+ xxxs: string;
86
+ xxs: string;
87
+ xs: string;
88
+ sm: string;
89
+ md: string;
90
+ lg: string;
91
+ xl: string;
92
+ "2xl": string;
93
+ "3xl": string;
94
+ "4xl": string;
95
+ "5xl": string;
96
+ "6xl": string;
97
+ "7xl": string;
98
+ };
99
+ sizes: {
100
+ 1: string;
101
+ 2: string;
102
+ xxxs: string;
103
+ xxs: string;
104
+ xs: string;
105
+ sm: string;
106
+ md: string;
107
+ lg: string;
108
+ xl: string;
109
+ "2xl": string;
110
+ "3xl": string;
111
+ "4xl": string;
112
+ "5xl": string;
113
+ "6xl": string;
114
+ "7xl": string;
115
+ max: string;
116
+ min: string;
117
+ full: string;
118
+ };
119
+ radii: {
120
+ 1: string;
121
+ 2: string;
122
+ 3: string;
123
+ 4: string;
124
+ 5: string;
125
+ round: string;
126
+ pill: string;
127
+ };
128
+ fontSizes: {
129
+ 1: string;
130
+ 2: string;
131
+ 3: string;
132
+ 4: string;
133
+ 5: string;
134
+ 6: string;
135
+ 7: string;
136
+ 8: string;
137
+ 9: string;
138
+ 10: string;
139
+ 11: string;
140
+ };
141
+ fontWeights: {
142
+ hairline: number;
143
+ thin: number;
144
+ light: number;
145
+ normal: number;
146
+ medium: number;
147
+ semibold: number;
148
+ bold: number;
149
+ extrabold: number;
150
+ black: number;
151
+ };
152
+ lineHeights: {
153
+ normal: string;
154
+ none: number;
155
+ shorter: number;
156
+ short: number;
157
+ base: number;
158
+ tall: number;
159
+ tall2: number;
160
+ taller: string;
161
+ };
162
+ letterSpacings: {
163
+ tighter: string;
164
+ tight: string;
165
+ normal: string;
166
+ wide: string;
167
+ wider: string;
168
+ widest: string;
169
+ };
170
+ borderWidths: unknown;
171
+ borderStyles: unknown;
172
+ shadows: unknown;
173
+ zIndices: unknown;
174
+ transitions: unknown;
175
+ }, import("@stitches/react/types/config").DefaultThemeMap, {
176
+ p: (value: {
177
+ readonly [$$PropertyValue]: "padding";
178
+ }) => {
179
+ padding: {
180
+ readonly [$$PropertyValue]: "padding";
181
+ };
182
+ };
183
+ pt: (value: {
184
+ readonly [$$PropertyValue]: "paddingTop";
185
+ }) => {
186
+ paddingTop: {
187
+ readonly [$$PropertyValue]: "paddingTop";
188
+ };
189
+ };
190
+ pr: (value: {
191
+ readonly [$$PropertyValue]: "paddingRight";
192
+ }) => {
193
+ paddingRight: {
194
+ readonly [$$PropertyValue]: "paddingRight";
195
+ };
196
+ };
197
+ pb: (value: {
198
+ readonly [$$PropertyValue]: "paddingBottom";
199
+ }) => {
200
+ paddingBottom: {
201
+ readonly [$$PropertyValue]: "paddingBottom";
202
+ };
203
+ };
204
+ pl: (value: {
205
+ readonly [$$PropertyValue]: "paddingLeft";
206
+ }) => {
207
+ paddingLeft: {
208
+ readonly [$$PropertyValue]: "paddingLeft";
209
+ };
210
+ };
211
+ px: (value: {
212
+ readonly [$$PropertyValue]: "paddingLeft";
213
+ }) => {
214
+ paddingLeft: {
215
+ readonly [$$PropertyValue]: "paddingLeft";
216
+ };
217
+ paddingRight: {
218
+ readonly [$$PropertyValue]: "paddingLeft";
219
+ };
220
+ };
221
+ py: (value: {
222
+ readonly [$$PropertyValue]: "paddingTop";
223
+ }) => {
224
+ paddingTop: {
225
+ readonly [$$PropertyValue]: "paddingTop";
226
+ };
227
+ paddingBottom: {
228
+ readonly [$$PropertyValue]: "paddingTop";
229
+ };
230
+ };
231
+ m: (value: {
232
+ readonly [$$PropertyValue]: "margin";
233
+ }) => {
234
+ margin: {
235
+ readonly [$$PropertyValue]: "margin";
236
+ };
237
+ };
238
+ mt: (value: {
239
+ readonly [$$PropertyValue]: "marginTop";
240
+ }) => {
241
+ marginTop: {
242
+ readonly [$$PropertyValue]: "marginTop";
243
+ };
244
+ };
245
+ mr: (value: {
246
+ readonly [$$PropertyValue]: "marginRight";
247
+ }) => {
248
+ marginRight: {
249
+ readonly [$$PropertyValue]: "marginRight";
250
+ };
251
+ };
252
+ mb: (value: {
253
+ readonly [$$PropertyValue]: "marginBottom";
254
+ }) => {
255
+ marginBottom: {
256
+ readonly [$$PropertyValue]: "marginBottom";
257
+ };
258
+ };
259
+ ml: (value: {
260
+ readonly [$$PropertyValue]: "marginLeft";
261
+ }) => {
262
+ marginLeft: {
263
+ readonly [$$PropertyValue]: "marginLeft";
264
+ };
265
+ };
266
+ mx: (value: {
267
+ readonly [$$PropertyValue]: "marginLeft";
268
+ }) => {
269
+ marginLeft: {
270
+ readonly [$$PropertyValue]: "marginLeft";
271
+ };
272
+ marginRight: {
273
+ readonly [$$PropertyValue]: "marginLeft";
274
+ };
275
+ };
276
+ my: (value: {
277
+ readonly [$$PropertyValue]: "marginTop";
278
+ }) => {
279
+ marginTop: {
280
+ readonly [$$PropertyValue]: "marginTop";
281
+ };
282
+ marginBottom: {
283
+ readonly [$$PropertyValue]: "marginTop";
284
+ };
285
+ };
286
+ ta: (value: {
287
+ readonly [$$PropertyValue]: "textAlign";
288
+ }) => {
289
+ textAlign: {
290
+ readonly [$$PropertyValue]: "textAlign";
291
+ };
292
+ };
293
+ fd: (value: {
294
+ readonly [$$PropertyValue]: "flexDirection";
295
+ }) => {
296
+ flexDirection: {
297
+ readonly [$$PropertyValue]: "flexDirection";
298
+ };
299
+ };
300
+ fw: (value: {
301
+ readonly [$$PropertyValue]: "flexWrap";
302
+ }) => {
303
+ flexWrap: {
304
+ readonly [$$PropertyValue]: "flexWrap";
305
+ };
306
+ };
307
+ ai: (value: {
308
+ readonly [$$PropertyValue]: "alignItems";
309
+ }) => {
310
+ alignItems: {
311
+ readonly [$$PropertyValue]: "alignItems";
312
+ };
313
+ };
314
+ ac: (value: {
315
+ readonly [$$PropertyValue]: "alignContent";
316
+ }) => {
317
+ alignContent: {
318
+ readonly [$$PropertyValue]: "alignContent";
319
+ };
320
+ };
321
+ jc: (value: {
322
+ readonly [$$PropertyValue]: "justifyContent";
323
+ }) => {
324
+ justifyContent: {
325
+ readonly [$$PropertyValue]: "justifyContent";
326
+ };
327
+ };
328
+ as: (value: {
329
+ readonly [$$PropertyValue]: "alignSelf";
330
+ }) => {
331
+ alignSelf: {
332
+ readonly [$$PropertyValue]: "alignSelf";
333
+ };
334
+ };
335
+ fg: (value: {
336
+ readonly [$$PropertyValue]: "flexGrow";
337
+ }) => {
338
+ flexGrow: {
339
+ readonly [$$PropertyValue]: "flexGrow";
340
+ };
341
+ };
342
+ fs: (value: {
343
+ readonly [$$PropertyValue]: "flexShrink";
344
+ }) => {
345
+ flexShrink: {
346
+ readonly [$$PropertyValue]: "flexShrink";
347
+ };
348
+ };
349
+ fb: (value: {
350
+ readonly [$$PropertyValue]: "flexBasis";
351
+ }) => {
352
+ flexBasis: {
353
+ readonly [$$PropertyValue]: "flexBasis";
354
+ };
355
+ };
356
+ bc: (value: {
357
+ readonly [$$PropertyValue]: "backgroundColor";
358
+ }) => {
359
+ backgroundColor: {
360
+ readonly [$$PropertyValue]: "backgroundColor";
361
+ };
362
+ };
363
+ br: (value: {
364
+ readonly [$$PropertyValue]: "borderRadius";
365
+ }) => {
366
+ borderRadius: {
367
+ readonly [$$PropertyValue]: "borderRadius";
368
+ };
369
+ };
370
+ btrr: (value: {
371
+ readonly [$$PropertyValue]: "borderTopRightRadius";
372
+ }) => {
373
+ borderTopRightRadius: {
374
+ readonly [$$PropertyValue]: "borderTopRightRadius";
375
+ };
376
+ };
377
+ bbrr: (value: {
378
+ readonly [$$PropertyValue]: "borderBottomRightRadius";
379
+ }) => {
380
+ borderBottomRightRadius: {
381
+ readonly [$$PropertyValue]: "borderBottomRightRadius";
382
+ };
383
+ };
384
+ bblr: (value: {
385
+ readonly [$$PropertyValue]: "borderBottomLeftRadius";
386
+ }) => {
387
+ borderBottomLeftRadius: {
388
+ readonly [$$PropertyValue]: "borderBottomLeftRadius";
389
+ };
390
+ };
391
+ btlr: (value: {
392
+ readonly [$$PropertyValue]: "borderTopLeftRadius";
393
+ }) => {
394
+ borderTopLeftRadius: {
395
+ readonly [$$PropertyValue]: "borderTopLeftRadius";
396
+ };
397
+ };
398
+ bs: (value: {
399
+ readonly [$$PropertyValue]: "boxShadow";
400
+ }) => {
401
+ boxShadow: {
402
+ readonly [$$PropertyValue]: "boxShadow";
403
+ };
404
+ };
405
+ lh: (value: {
406
+ readonly [$$PropertyValue]: "lineHeight";
407
+ }) => {
408
+ lineHeight: {
409
+ readonly [$$PropertyValue]: "lineHeight";
410
+ };
411
+ };
412
+ ox: (value: {
413
+ readonly [$$PropertyValue]: "overflowX";
414
+ }) => {
415
+ overflowX: {
416
+ readonly [$$PropertyValue]: "overflowX";
417
+ };
418
+ };
419
+ oy: (value: {
420
+ readonly [$$PropertyValue]: "overflowY";
421
+ }) => {
422
+ overflowY: {
423
+ readonly [$$PropertyValue]: "overflowY";
424
+ };
425
+ };
426
+ pe: (value: {
427
+ readonly [$$PropertyValue]: "pointerEvents";
428
+ }) => {
429
+ pointerEvents: {
430
+ readonly [$$PropertyValue]: "pointerEvents";
431
+ };
432
+ };
433
+ us: (value: {
434
+ readonly [$$PropertyValue]: "userSelect";
435
+ }) => {
436
+ WebkitUserSelect: {
437
+ readonly [$$PropertyValue]: "userSelect";
438
+ };
439
+ userSelect: {
440
+ readonly [$$PropertyValue]: "userSelect";
441
+ };
442
+ };
443
+ userSelect: (value: {
444
+ readonly [$$PropertyValue]: "userSelect";
445
+ }) => {
446
+ WebkitUserSelect: {
447
+ readonly [$$PropertyValue]: "userSelect";
448
+ };
449
+ userSelect: {
450
+ readonly [$$PropertyValue]: "userSelect";
451
+ };
452
+ };
453
+ size: (value: {
454
+ readonly [$$PropertyValue]: "width";
455
+ }) => {
456
+ width: {
457
+ readonly [$$PropertyValue]: "width";
458
+ };
459
+ height: {
460
+ readonly [$$PropertyValue]: "width";
461
+ };
462
+ };
463
+ appearance: (value: {
464
+ readonly [$$PropertyValue]: "appearance";
465
+ }) => {
466
+ WebkitAppearance: {
467
+ readonly [$$PropertyValue]: "appearance";
468
+ };
469
+ appearance: {
470
+ readonly [$$PropertyValue]: "appearance";
471
+ };
472
+ };
473
+ backgroundClip: (value: {
474
+ readonly [$$PropertyValue]: "backgroundClip";
475
+ }) => {
476
+ WebkitBackgroundClip: {
477
+ readonly [$$PropertyValue]: "backgroundClip";
478
+ };
479
+ backgroundClip: {
480
+ readonly [$$PropertyValue]: "backgroundClip";
481
+ };
482
+ };
483
+ }>>;
484
+ export declare const SwitchThumb: import("@stitches/react/types/styled-component").StyledComponent<React.ForwardRefExoticComponent<ReactSwitch.SwitchThumbProps & React.RefAttributes<HTMLSpanElement>>, {}, {
485
+ motion: "(prefers-reduced-motion)";
486
+ hover: "(any-hover: hover)";
487
+ dark: "(prefers-color-scheme: dark)";
488
+ light: "(prefers-color-scheme: light)";
489
+ xs: "(max-width: 520px)";
490
+ sm: "(max-width: 900px)";
491
+ bp2: "(min-width: 900px)";
492
+ md: "(max-width: 1200px)";
493
+ lg: "(max-width: 1800px)";
494
+ }, import("@stitches/react/types/css-util").CSS<{
495
+ motion: "(prefers-reduced-motion)";
496
+ hover: "(any-hover: hover)";
497
+ dark: "(prefers-color-scheme: dark)";
498
+ light: "(prefers-color-scheme: light)";
499
+ xs: "(max-width: 520px)";
500
+ sm: "(max-width: 900px)";
501
+ bp2: "(min-width: 900px)";
502
+ md: "(max-width: 1200px)";
503
+ lg: "(max-width: 1800px)";
504
+ }, {
505
+ colors: {
506
+ white: string;
507
+ black: string;
508
+ lightBackground: string;
509
+ obolBlue: string;
510
+ primaryBgDefault: string;
511
+ primaryBgDefaultHover: string;
512
+ primaryTextDefault: string;
513
+ secondaryBgDefault: string;
514
+ secondaryBgHover: string;
515
+ grayBgDefault: string;
516
+ gray2BgDefault: string;
517
+ neutralDark: string;
518
+ navButtonBgDefault: string;
519
+ navButtonBgHover: string;
520
+ cardBackgroundDark: string;
521
+ cardBackgroundLight: string;
522
+ textMiddle: string;
523
+ textLight: string;
524
+ textLighter: string;
525
+ textTabHover: string;
526
+ textTabInactive: string;
527
+ textGreenDark: string;
528
+ textGreenLight: string;
529
+ textGreen1: string;
530
+ textGreen2: string;
531
+ textGreen3: string;
532
+ textGreenHover: string;
533
+ textCreateHover: string;
534
+ textGrayHover: string;
535
+ txButton: string;
536
+ obolGreen: string;
537
+ obolMidGreen: string;
538
+ obolGreenHover: string;
539
+ obolGreenLight: string;
540
+ obolDarkDark: string;
541
+ obolDisabled: string;
542
+ linkButtonHover: string;
543
+ progressTrackerGreen: string;
544
+ lightGrey: string;
545
+ coordinate: string;
546
+ coordinateHover: string;
547
+ test: string;
548
+ testHover: string;
549
+ create: string;
550
+ createHover: string;
551
+ light: string;
552
+ body: string;
553
+ muted: string;
554
+ menu: string;
555
+ bg01: string;
556
+ bg02: string;
557
+ bg03: string;
558
+ bg04: string;
559
+ bg05: string;
560
+ tooltip: string;
561
+ tooltip2: string;
562
+ };
563
+ space: {
564
+ 1: string;
565
+ 2: string;
566
+ xxxs: string;
567
+ xxs: string;
568
+ xs: string;
569
+ sm: string;
570
+ md: string;
571
+ lg: string;
572
+ xl: string;
573
+ "2xl": string;
574
+ "3xl": string;
575
+ "4xl": string;
576
+ "5xl": string;
577
+ "6xl": string;
578
+ "7xl": string;
579
+ };
580
+ sizes: {
581
+ 1: string;
582
+ 2: string;
583
+ xxxs: string;
584
+ xxs: string;
585
+ xs: string;
586
+ sm: string;
587
+ md: string;
588
+ lg: string;
589
+ xl: string;
590
+ "2xl": string;
591
+ "3xl": string;
592
+ "4xl": string;
593
+ "5xl": string;
594
+ "6xl": string;
595
+ "7xl": string;
596
+ max: string;
597
+ min: string;
598
+ full: string;
599
+ };
600
+ radii: {
601
+ 1: string;
602
+ 2: string;
603
+ 3: string;
604
+ 4: string;
605
+ 5: string;
606
+ round: string;
607
+ pill: string;
608
+ };
609
+ fontSizes: {
610
+ 1: string;
611
+ 2: string;
612
+ 3: string;
613
+ 4: string;
614
+ 5: string;
615
+ 6: string;
616
+ 7: string;
617
+ 8: string;
618
+ 9: string;
619
+ 10: string;
620
+ 11: string;
621
+ };
622
+ fontWeights: {
623
+ hairline: number;
624
+ thin: number;
625
+ light: number;
626
+ normal: number;
627
+ medium: number;
628
+ semibold: number;
629
+ bold: number;
630
+ extrabold: number;
631
+ black: number;
632
+ };
633
+ lineHeights: {
634
+ normal: string;
635
+ none: number;
636
+ shorter: number;
637
+ short: number;
638
+ base: number;
639
+ tall: number;
640
+ tall2: number;
641
+ taller: string;
642
+ };
643
+ letterSpacings: {
644
+ tighter: string;
645
+ tight: string;
646
+ normal: string;
647
+ wide: string;
648
+ wider: string;
649
+ widest: string;
650
+ };
651
+ borderWidths: unknown;
652
+ borderStyles: unknown;
653
+ shadows: unknown;
654
+ zIndices: unknown;
655
+ transitions: unknown;
656
+ }, import("@stitches/react/types/config").DefaultThemeMap, {
657
+ p: (value: {
658
+ readonly [$$PropertyValue]: "padding";
659
+ }) => {
660
+ padding: {
661
+ readonly [$$PropertyValue]: "padding";
662
+ };
663
+ };
664
+ pt: (value: {
665
+ readonly [$$PropertyValue]: "paddingTop";
666
+ }) => {
667
+ paddingTop: {
668
+ readonly [$$PropertyValue]: "paddingTop";
669
+ };
670
+ };
671
+ pr: (value: {
672
+ readonly [$$PropertyValue]: "paddingRight";
673
+ }) => {
674
+ paddingRight: {
675
+ readonly [$$PropertyValue]: "paddingRight";
676
+ };
677
+ };
678
+ pb: (value: {
679
+ readonly [$$PropertyValue]: "paddingBottom";
680
+ }) => {
681
+ paddingBottom: {
682
+ readonly [$$PropertyValue]: "paddingBottom";
683
+ };
684
+ };
685
+ pl: (value: {
686
+ readonly [$$PropertyValue]: "paddingLeft";
687
+ }) => {
688
+ paddingLeft: {
689
+ readonly [$$PropertyValue]: "paddingLeft";
690
+ };
691
+ };
692
+ px: (value: {
693
+ readonly [$$PropertyValue]: "paddingLeft";
694
+ }) => {
695
+ paddingLeft: {
696
+ readonly [$$PropertyValue]: "paddingLeft";
697
+ };
698
+ paddingRight: {
699
+ readonly [$$PropertyValue]: "paddingLeft";
700
+ };
701
+ };
702
+ py: (value: {
703
+ readonly [$$PropertyValue]: "paddingTop";
704
+ }) => {
705
+ paddingTop: {
706
+ readonly [$$PropertyValue]: "paddingTop";
707
+ };
708
+ paddingBottom: {
709
+ readonly [$$PropertyValue]: "paddingTop";
710
+ };
711
+ };
712
+ m: (value: {
713
+ readonly [$$PropertyValue]: "margin";
714
+ }) => {
715
+ margin: {
716
+ readonly [$$PropertyValue]: "margin";
717
+ };
718
+ };
719
+ mt: (value: {
720
+ readonly [$$PropertyValue]: "marginTop";
721
+ }) => {
722
+ marginTop: {
723
+ readonly [$$PropertyValue]: "marginTop";
724
+ };
725
+ };
726
+ mr: (value: {
727
+ readonly [$$PropertyValue]: "marginRight";
728
+ }) => {
729
+ marginRight: {
730
+ readonly [$$PropertyValue]: "marginRight";
731
+ };
732
+ };
733
+ mb: (value: {
734
+ readonly [$$PropertyValue]: "marginBottom";
735
+ }) => {
736
+ marginBottom: {
737
+ readonly [$$PropertyValue]: "marginBottom";
738
+ };
739
+ };
740
+ ml: (value: {
741
+ readonly [$$PropertyValue]: "marginLeft";
742
+ }) => {
743
+ marginLeft: {
744
+ readonly [$$PropertyValue]: "marginLeft";
745
+ };
746
+ };
747
+ mx: (value: {
748
+ readonly [$$PropertyValue]: "marginLeft";
749
+ }) => {
750
+ marginLeft: {
751
+ readonly [$$PropertyValue]: "marginLeft";
752
+ };
753
+ marginRight: {
754
+ readonly [$$PropertyValue]: "marginLeft";
755
+ };
756
+ };
757
+ my: (value: {
758
+ readonly [$$PropertyValue]: "marginTop";
759
+ }) => {
760
+ marginTop: {
761
+ readonly [$$PropertyValue]: "marginTop";
762
+ };
763
+ marginBottom: {
764
+ readonly [$$PropertyValue]: "marginTop";
765
+ };
766
+ };
767
+ ta: (value: {
768
+ readonly [$$PropertyValue]: "textAlign";
769
+ }) => {
770
+ textAlign: {
771
+ readonly [$$PropertyValue]: "textAlign";
772
+ };
773
+ };
774
+ fd: (value: {
775
+ readonly [$$PropertyValue]: "flexDirection";
776
+ }) => {
777
+ flexDirection: {
778
+ readonly [$$PropertyValue]: "flexDirection";
779
+ };
780
+ };
781
+ fw: (value: {
782
+ readonly [$$PropertyValue]: "flexWrap";
783
+ }) => {
784
+ flexWrap: {
785
+ readonly [$$PropertyValue]: "flexWrap";
786
+ };
787
+ };
788
+ ai: (value: {
789
+ readonly [$$PropertyValue]: "alignItems";
790
+ }) => {
791
+ alignItems: {
792
+ readonly [$$PropertyValue]: "alignItems";
793
+ };
794
+ };
795
+ ac: (value: {
796
+ readonly [$$PropertyValue]: "alignContent";
797
+ }) => {
798
+ alignContent: {
799
+ readonly [$$PropertyValue]: "alignContent";
800
+ };
801
+ };
802
+ jc: (value: {
803
+ readonly [$$PropertyValue]: "justifyContent";
804
+ }) => {
805
+ justifyContent: {
806
+ readonly [$$PropertyValue]: "justifyContent";
807
+ };
808
+ };
809
+ as: (value: {
810
+ readonly [$$PropertyValue]: "alignSelf";
811
+ }) => {
812
+ alignSelf: {
813
+ readonly [$$PropertyValue]: "alignSelf";
814
+ };
815
+ };
816
+ fg: (value: {
817
+ readonly [$$PropertyValue]: "flexGrow";
818
+ }) => {
819
+ flexGrow: {
820
+ readonly [$$PropertyValue]: "flexGrow";
821
+ };
822
+ };
823
+ fs: (value: {
824
+ readonly [$$PropertyValue]: "flexShrink";
825
+ }) => {
826
+ flexShrink: {
827
+ readonly [$$PropertyValue]: "flexShrink";
828
+ };
829
+ };
830
+ fb: (value: {
831
+ readonly [$$PropertyValue]: "flexBasis";
832
+ }) => {
833
+ flexBasis: {
834
+ readonly [$$PropertyValue]: "flexBasis";
835
+ };
836
+ };
837
+ bc: (value: {
838
+ readonly [$$PropertyValue]: "backgroundColor";
839
+ }) => {
840
+ backgroundColor: {
841
+ readonly [$$PropertyValue]: "backgroundColor";
842
+ };
843
+ };
844
+ br: (value: {
845
+ readonly [$$PropertyValue]: "borderRadius";
846
+ }) => {
847
+ borderRadius: {
848
+ readonly [$$PropertyValue]: "borderRadius";
849
+ };
850
+ };
851
+ btrr: (value: {
852
+ readonly [$$PropertyValue]: "borderTopRightRadius";
853
+ }) => {
854
+ borderTopRightRadius: {
855
+ readonly [$$PropertyValue]: "borderTopRightRadius";
856
+ };
857
+ };
858
+ bbrr: (value: {
859
+ readonly [$$PropertyValue]: "borderBottomRightRadius";
860
+ }) => {
861
+ borderBottomRightRadius: {
862
+ readonly [$$PropertyValue]: "borderBottomRightRadius";
863
+ };
864
+ };
865
+ bblr: (value: {
866
+ readonly [$$PropertyValue]: "borderBottomLeftRadius";
867
+ }) => {
868
+ borderBottomLeftRadius: {
869
+ readonly [$$PropertyValue]: "borderBottomLeftRadius";
870
+ };
871
+ };
872
+ btlr: (value: {
873
+ readonly [$$PropertyValue]: "borderTopLeftRadius";
874
+ }) => {
875
+ borderTopLeftRadius: {
876
+ readonly [$$PropertyValue]: "borderTopLeftRadius";
877
+ };
878
+ };
879
+ bs: (value: {
880
+ readonly [$$PropertyValue]: "boxShadow";
881
+ }) => {
882
+ boxShadow: {
883
+ readonly [$$PropertyValue]: "boxShadow";
884
+ };
885
+ };
886
+ lh: (value: {
887
+ readonly [$$PropertyValue]: "lineHeight";
888
+ }) => {
889
+ lineHeight: {
890
+ readonly [$$PropertyValue]: "lineHeight";
891
+ };
892
+ };
893
+ ox: (value: {
894
+ readonly [$$PropertyValue]: "overflowX";
895
+ }) => {
896
+ overflowX: {
897
+ readonly [$$PropertyValue]: "overflowX";
898
+ };
899
+ };
900
+ oy: (value: {
901
+ readonly [$$PropertyValue]: "overflowY";
902
+ }) => {
903
+ overflowY: {
904
+ readonly [$$PropertyValue]: "overflowY";
905
+ };
906
+ };
907
+ pe: (value: {
908
+ readonly [$$PropertyValue]: "pointerEvents";
909
+ }) => {
910
+ pointerEvents: {
911
+ readonly [$$PropertyValue]: "pointerEvents";
912
+ };
913
+ };
914
+ us: (value: {
915
+ readonly [$$PropertyValue]: "userSelect";
916
+ }) => {
917
+ WebkitUserSelect: {
918
+ readonly [$$PropertyValue]: "userSelect";
919
+ };
920
+ userSelect: {
921
+ readonly [$$PropertyValue]: "userSelect";
922
+ };
923
+ };
924
+ userSelect: (value: {
925
+ readonly [$$PropertyValue]: "userSelect";
926
+ }) => {
927
+ WebkitUserSelect: {
928
+ readonly [$$PropertyValue]: "userSelect";
929
+ };
930
+ userSelect: {
931
+ readonly [$$PropertyValue]: "userSelect";
932
+ };
933
+ };
934
+ size: (value: {
935
+ readonly [$$PropertyValue]: "width";
936
+ }) => {
937
+ width: {
938
+ readonly [$$PropertyValue]: "width";
939
+ };
940
+ height: {
941
+ readonly [$$PropertyValue]: "width";
942
+ };
943
+ };
944
+ appearance: (value: {
945
+ readonly [$$PropertyValue]: "appearance";
946
+ }) => {
947
+ WebkitAppearance: {
948
+ readonly [$$PropertyValue]: "appearance";
949
+ };
950
+ appearance: {
951
+ readonly [$$PropertyValue]: "appearance";
952
+ };
953
+ };
954
+ backgroundClip: (value: {
955
+ readonly [$$PropertyValue]: "backgroundClip";
956
+ }) => {
957
+ WebkitBackgroundClip: {
958
+ readonly [$$PropertyValue]: "backgroundClip";
959
+ };
960
+ backgroundClip: {
961
+ readonly [$$PropertyValue]: "backgroundClip";
962
+ };
963
+ };
964
+ }>>;
965
+ export declare const Switch: React.FC<ReactSwitch.SwitchProps>;