@obolnetwork/obol-ui 1.0.6 → 1.0.9

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