@obolnetwork/obol-ui 1.0.68 → 1.0.70

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