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