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