@atom-learning/components 1.8.0 → 1.9.0
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.
- package/CHANGELOG.md +13 -0
- package/dist/components/action-icon/ActionIcon.d.ts +43 -43
- package/dist/components/button/Button.d.ts +42 -42
- package/dist/components/empty-state/EmptyState.d.ts +542 -0
- package/dist/components/empty-state/EmptyState.js +1 -0
- package/dist/components/empty-state/EmptyStateBody.d.ts +540 -0
- package/dist/components/empty-state/EmptyStateBody.js +1 -0
- package/dist/components/empty-state/EmptyStateImage.d.ts +538 -0
- package/dist/components/empty-state/EmptyStateImage.js +1 -0
- package/dist/components/empty-state/EmptyStateTitle.d.ts +267 -0
- package/dist/components/empty-state/EmptyStateTitle.js +1 -0
- package/dist/components/empty-state/index.d.ts +1 -0
- package/dist/components/index.d.ts +1 -0
- package/dist/components/label/Label.d.ts +2 -2
- package/dist/components/radio-button/RadioButtonGroup.d.ts +1 -1
- package/dist/components/radio-button-field/RadioButtonField.d.ts +1 -0
- package/dist/components/radio-button-field/RadioButtonField.js +1 -1
- package/dist/components/stack/Stack.d.ts +1 -1
- package/dist/docgen.json +1 -1
- package/dist/docs/EmptyState.mdx +20 -0
- package/dist/docs/RadioButtonField.mdx +6 -0
- package/dist/index.cjs.js +1 -1
- package/dist/index.js +1 -1
- package/dist/stitches.d.ts +202 -202
- package/package.json +2 -2
package/dist/stitches.d.ts
CHANGED
|
@@ -3,111 +3,111 @@ import type * as Stitches from '@stitches/react';
|
|
|
3
3
|
export declare const utils: {
|
|
4
4
|
bg: (value: Stitches.PropertyValue<'background'>) => {
|
|
5
5
|
background: {
|
|
6
|
-
readonly [
|
|
6
|
+
readonly [Stitches.$$PropertyValue]: "background";
|
|
7
7
|
};
|
|
8
8
|
};
|
|
9
9
|
inset: (value: Stitches.ScaleValue<'space'> | number | string) => {
|
|
10
10
|
top: string | number | {
|
|
11
|
-
readonly [
|
|
11
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
12
12
|
};
|
|
13
13
|
right: string | number | {
|
|
14
|
-
readonly [
|
|
14
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
15
15
|
};
|
|
16
16
|
bottom: string | number | {
|
|
17
|
-
readonly [
|
|
17
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
18
18
|
};
|
|
19
19
|
left: string | number | {
|
|
20
|
-
readonly [
|
|
20
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
21
21
|
};
|
|
22
22
|
};
|
|
23
23
|
size: (value: Stitches.ScaleValue<'size'> | number | string) => {
|
|
24
24
|
height: string | number | {
|
|
25
|
-
readonly [
|
|
25
|
+
readonly [Stitches.$$ScaleValue]: "size";
|
|
26
26
|
};
|
|
27
27
|
width: string | number | {
|
|
28
|
-
readonly [
|
|
28
|
+
readonly [Stitches.$$ScaleValue]: "size";
|
|
29
29
|
};
|
|
30
30
|
};
|
|
31
31
|
p: (value: Stitches.ScaleValue<'space'> | number | string) => {
|
|
32
32
|
padding: string | number | {
|
|
33
|
-
readonly [
|
|
33
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
34
34
|
};
|
|
35
35
|
};
|
|
36
36
|
pt: (value: Stitches.ScaleValue<'space'> | number | string) => {
|
|
37
37
|
paddingTop: string | number | {
|
|
38
|
-
readonly [
|
|
38
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
39
39
|
};
|
|
40
40
|
};
|
|
41
41
|
pr: (value: Stitches.ScaleValue<'space'> | number | string) => {
|
|
42
42
|
paddingRight: string | number | {
|
|
43
|
-
readonly [
|
|
43
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
44
44
|
};
|
|
45
45
|
};
|
|
46
46
|
pb: (value: Stitches.ScaleValue<'space'> | number | string) => {
|
|
47
47
|
paddingBottom: string | number | {
|
|
48
|
-
readonly [
|
|
48
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
49
49
|
};
|
|
50
50
|
};
|
|
51
51
|
pl: (value: Stitches.ScaleValue<'space'> | number | string) => {
|
|
52
52
|
paddingLeft: string | number | {
|
|
53
|
-
readonly [
|
|
53
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
54
54
|
};
|
|
55
55
|
};
|
|
56
56
|
px: (value: Stitches.ScaleValue<'space'> | number | string) => {
|
|
57
57
|
paddingLeft: string | number | {
|
|
58
|
-
readonly [
|
|
58
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
59
59
|
};
|
|
60
60
|
paddingRight: string | number | {
|
|
61
|
-
readonly [
|
|
61
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
62
62
|
};
|
|
63
63
|
};
|
|
64
64
|
py: (value: Stitches.ScaleValue<'space'> | number | string) => {
|
|
65
65
|
paddingTop: string | number | {
|
|
66
|
-
readonly [
|
|
66
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
67
67
|
};
|
|
68
68
|
paddingBottom: string | number | {
|
|
69
|
-
readonly [
|
|
69
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
70
70
|
};
|
|
71
71
|
};
|
|
72
72
|
m: (value: Stitches.ScaleValue<'space'> | number | string) => {
|
|
73
73
|
margin: string | number | {
|
|
74
|
-
readonly [
|
|
74
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
75
75
|
};
|
|
76
76
|
};
|
|
77
77
|
mt: (value: Stitches.ScaleValue<'space'> | number | string) => {
|
|
78
78
|
marginTop: string | number | {
|
|
79
|
-
readonly [
|
|
79
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
80
80
|
};
|
|
81
81
|
};
|
|
82
82
|
mr: (value: Stitches.ScaleValue<'space'> | number | string) => {
|
|
83
83
|
marginRight: string | number | {
|
|
84
|
-
readonly [
|
|
84
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
85
85
|
};
|
|
86
86
|
};
|
|
87
87
|
mb: (value: Stitches.ScaleValue<'space'> | number | string) => {
|
|
88
88
|
marginBottom: string | number | {
|
|
89
|
-
readonly [
|
|
89
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
90
90
|
};
|
|
91
91
|
};
|
|
92
92
|
ml: (value: Stitches.ScaleValue<'space'> | number | string) => {
|
|
93
93
|
marginLeft: string | number | {
|
|
94
|
-
readonly [
|
|
94
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
95
95
|
};
|
|
96
96
|
};
|
|
97
97
|
mx: (value: Stitches.ScaleValue<'space'> | number | string) => {
|
|
98
98
|
marginLeft: string | number | {
|
|
99
|
-
readonly [
|
|
99
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
100
100
|
};
|
|
101
101
|
marginRight: string | number | {
|
|
102
|
-
readonly [
|
|
102
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
103
103
|
};
|
|
104
104
|
};
|
|
105
105
|
my: (value: Stitches.ScaleValue<'space'> | number | string) => {
|
|
106
106
|
marginTop: string | number | {
|
|
107
|
-
readonly [
|
|
107
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
108
108
|
};
|
|
109
109
|
marginBottom: string | number | {
|
|
110
|
-
readonly [
|
|
110
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
111
111
|
};
|
|
112
112
|
};
|
|
113
113
|
};
|
|
@@ -235,111 +235,111 @@ declare const stitchesConfig: import("@stitches/react/types/stitches").default<"
|
|
|
235
235
|
}, import("@stitches/react/types/config").DefaultThemeMap, {
|
|
236
236
|
bg: (value: Stitches.PropertyValue<'background'>) => {
|
|
237
237
|
background: {
|
|
238
|
-
readonly [
|
|
238
|
+
readonly [Stitches.$$PropertyValue]: "background";
|
|
239
239
|
};
|
|
240
240
|
};
|
|
241
241
|
inset: (value: Stitches.ScaleValue<'space'> | number | string) => {
|
|
242
242
|
top: string | number | {
|
|
243
|
-
readonly [
|
|
243
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
244
244
|
};
|
|
245
245
|
right: string | number | {
|
|
246
|
-
readonly [
|
|
246
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
247
247
|
};
|
|
248
248
|
bottom: string | number | {
|
|
249
|
-
readonly [
|
|
249
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
250
250
|
};
|
|
251
251
|
left: string | number | {
|
|
252
|
-
readonly [
|
|
252
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
253
253
|
};
|
|
254
254
|
};
|
|
255
255
|
size: (value: Stitches.ScaleValue<'size'> | number | string) => {
|
|
256
256
|
height: string | number | {
|
|
257
|
-
readonly [
|
|
257
|
+
readonly [Stitches.$$ScaleValue]: "size";
|
|
258
258
|
};
|
|
259
259
|
width: string | number | {
|
|
260
|
-
readonly [
|
|
260
|
+
readonly [Stitches.$$ScaleValue]: "size";
|
|
261
261
|
};
|
|
262
262
|
};
|
|
263
263
|
p: (value: Stitches.ScaleValue<'space'> | number | string) => {
|
|
264
264
|
padding: string | number | {
|
|
265
|
-
readonly [
|
|
265
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
266
266
|
};
|
|
267
267
|
};
|
|
268
268
|
pt: (value: Stitches.ScaleValue<'space'> | number | string) => {
|
|
269
269
|
paddingTop: string | number | {
|
|
270
|
-
readonly [
|
|
270
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
271
271
|
};
|
|
272
272
|
};
|
|
273
273
|
pr: (value: Stitches.ScaleValue<'space'> | number | string) => {
|
|
274
274
|
paddingRight: string | number | {
|
|
275
|
-
readonly [
|
|
275
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
276
276
|
};
|
|
277
277
|
};
|
|
278
278
|
pb: (value: Stitches.ScaleValue<'space'> | number | string) => {
|
|
279
279
|
paddingBottom: string | number | {
|
|
280
|
-
readonly [
|
|
280
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
281
281
|
};
|
|
282
282
|
};
|
|
283
283
|
pl: (value: Stitches.ScaleValue<'space'> | number | string) => {
|
|
284
284
|
paddingLeft: string | number | {
|
|
285
|
-
readonly [
|
|
285
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
286
286
|
};
|
|
287
287
|
};
|
|
288
288
|
px: (value: Stitches.ScaleValue<'space'> | number | string) => {
|
|
289
289
|
paddingLeft: string | number | {
|
|
290
|
-
readonly [
|
|
290
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
291
291
|
};
|
|
292
292
|
paddingRight: string | number | {
|
|
293
|
-
readonly [
|
|
293
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
294
294
|
};
|
|
295
295
|
};
|
|
296
296
|
py: (value: Stitches.ScaleValue<'space'> | number | string) => {
|
|
297
297
|
paddingTop: string | number | {
|
|
298
|
-
readonly [
|
|
298
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
299
299
|
};
|
|
300
300
|
paddingBottom: string | number | {
|
|
301
|
-
readonly [
|
|
301
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
302
302
|
};
|
|
303
303
|
};
|
|
304
304
|
m: (value: Stitches.ScaleValue<'space'> | number | string) => {
|
|
305
305
|
margin: string | number | {
|
|
306
|
-
readonly [
|
|
306
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
307
307
|
};
|
|
308
308
|
};
|
|
309
309
|
mt: (value: Stitches.ScaleValue<'space'> | number | string) => {
|
|
310
310
|
marginTop: string | number | {
|
|
311
|
-
readonly [
|
|
311
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
312
312
|
};
|
|
313
313
|
};
|
|
314
314
|
mr: (value: Stitches.ScaleValue<'space'> | number | string) => {
|
|
315
315
|
marginRight: string | number | {
|
|
316
|
-
readonly [
|
|
316
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
317
317
|
};
|
|
318
318
|
};
|
|
319
319
|
mb: (value: Stitches.ScaleValue<'space'> | number | string) => {
|
|
320
320
|
marginBottom: string | number | {
|
|
321
|
-
readonly [
|
|
321
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
322
322
|
};
|
|
323
323
|
};
|
|
324
324
|
ml: (value: Stitches.ScaleValue<'space'> | number | string) => {
|
|
325
325
|
marginLeft: string | number | {
|
|
326
|
-
readonly [
|
|
326
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
327
327
|
};
|
|
328
328
|
};
|
|
329
329
|
mx: (value: Stitches.ScaleValue<'space'> | number | string) => {
|
|
330
330
|
marginLeft: string | number | {
|
|
331
|
-
readonly [
|
|
331
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
332
332
|
};
|
|
333
333
|
marginRight: string | number | {
|
|
334
|
-
readonly [
|
|
334
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
335
335
|
};
|
|
336
336
|
};
|
|
337
337
|
my: (value: Stitches.ScaleValue<'space'> | number | string) => {
|
|
338
338
|
marginTop: string | number | {
|
|
339
|
-
readonly [
|
|
339
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
340
340
|
};
|
|
341
341
|
marginBottom: string | number | {
|
|
342
|
-
readonly [
|
|
342
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
343
343
|
};
|
|
344
344
|
};
|
|
345
345
|
}>;
|
|
@@ -460,114 +460,114 @@ export declare const css: <Composers extends (string | import("@stitches/react/t
|
|
|
460
460
|
}, import("@stitches/react/types/config").DefaultThemeMap, {
|
|
461
461
|
bg: (value: Stitches.PropertyValue<'background'>) => {
|
|
462
462
|
background: {
|
|
463
|
-
readonly [
|
|
463
|
+
readonly [Stitches.$$PropertyValue]: "background";
|
|
464
464
|
};
|
|
465
465
|
};
|
|
466
466
|
inset: (value: Stitches.ScaleValue<'space'> | number | string) => {
|
|
467
467
|
top: string | number | {
|
|
468
|
-
readonly [
|
|
468
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
469
469
|
};
|
|
470
470
|
right: string | number | {
|
|
471
|
-
readonly [
|
|
471
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
472
472
|
};
|
|
473
473
|
bottom: string | number | {
|
|
474
|
-
readonly [
|
|
474
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
475
475
|
};
|
|
476
476
|
left: string | number | {
|
|
477
|
-
readonly [
|
|
477
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
478
478
|
};
|
|
479
479
|
};
|
|
480
480
|
size: (value: Stitches.ScaleValue<'size'> | number | string) => {
|
|
481
481
|
height: string | number | {
|
|
482
|
-
readonly [
|
|
482
|
+
readonly [Stitches.$$ScaleValue]: "size";
|
|
483
483
|
};
|
|
484
484
|
width: string | number | {
|
|
485
|
-
readonly [
|
|
485
|
+
readonly [Stitches.$$ScaleValue]: "size";
|
|
486
486
|
};
|
|
487
487
|
};
|
|
488
488
|
p: (value: Stitches.ScaleValue<'space'> | number | string) => {
|
|
489
489
|
padding: string | number | {
|
|
490
|
-
readonly [
|
|
490
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
491
491
|
};
|
|
492
492
|
};
|
|
493
493
|
pt: (value: Stitches.ScaleValue<'space'> | number | string) => {
|
|
494
494
|
paddingTop: string | number | {
|
|
495
|
-
readonly [
|
|
495
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
496
496
|
};
|
|
497
497
|
};
|
|
498
498
|
pr: (value: Stitches.ScaleValue<'space'> | number | string) => {
|
|
499
499
|
paddingRight: string | number | {
|
|
500
|
-
readonly [
|
|
500
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
501
501
|
};
|
|
502
502
|
};
|
|
503
503
|
pb: (value: Stitches.ScaleValue<'space'> | number | string) => {
|
|
504
504
|
paddingBottom: string | number | {
|
|
505
|
-
readonly [
|
|
505
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
506
506
|
};
|
|
507
507
|
};
|
|
508
508
|
pl: (value: Stitches.ScaleValue<'space'> | number | string) => {
|
|
509
509
|
paddingLeft: string | number | {
|
|
510
|
-
readonly [
|
|
510
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
511
511
|
};
|
|
512
512
|
};
|
|
513
513
|
px: (value: Stitches.ScaleValue<'space'> | number | string) => {
|
|
514
514
|
paddingLeft: string | number | {
|
|
515
|
-
readonly [
|
|
515
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
516
516
|
};
|
|
517
517
|
paddingRight: string | number | {
|
|
518
|
-
readonly [
|
|
518
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
519
519
|
};
|
|
520
520
|
};
|
|
521
521
|
py: (value: Stitches.ScaleValue<'space'> | number | string) => {
|
|
522
522
|
paddingTop: string | number | {
|
|
523
|
-
readonly [
|
|
523
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
524
524
|
};
|
|
525
525
|
paddingBottom: string | number | {
|
|
526
|
-
readonly [
|
|
526
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
527
527
|
};
|
|
528
528
|
};
|
|
529
529
|
m: (value: Stitches.ScaleValue<'space'> | number | string) => {
|
|
530
530
|
margin: string | number | {
|
|
531
|
-
readonly [
|
|
531
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
532
532
|
};
|
|
533
533
|
};
|
|
534
534
|
mt: (value: Stitches.ScaleValue<'space'> | number | string) => {
|
|
535
535
|
marginTop: string | number | {
|
|
536
|
-
readonly [
|
|
536
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
537
537
|
};
|
|
538
538
|
};
|
|
539
539
|
mr: (value: Stitches.ScaleValue<'space'> | number | string) => {
|
|
540
540
|
marginRight: string | number | {
|
|
541
|
-
readonly [
|
|
541
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
542
542
|
};
|
|
543
543
|
};
|
|
544
544
|
mb: (value: Stitches.ScaleValue<'space'> | number | string) => {
|
|
545
545
|
marginBottom: string | number | {
|
|
546
|
-
readonly [
|
|
546
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
547
547
|
};
|
|
548
548
|
};
|
|
549
549
|
ml: (value: Stitches.ScaleValue<'space'> | number | string) => {
|
|
550
550
|
marginLeft: string | number | {
|
|
551
|
-
readonly [
|
|
551
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
552
552
|
};
|
|
553
553
|
};
|
|
554
554
|
mx: (value: Stitches.ScaleValue<'space'> | number | string) => {
|
|
555
555
|
marginLeft: string | number | {
|
|
556
|
-
readonly [
|
|
556
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
557
557
|
};
|
|
558
558
|
marginRight: string | number | {
|
|
559
|
-
readonly [
|
|
559
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
560
560
|
};
|
|
561
561
|
};
|
|
562
562
|
my: (value: Stitches.ScaleValue<'space'> | number | string) => {
|
|
563
563
|
marginTop: string | number | {
|
|
564
|
-
readonly [
|
|
564
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
565
565
|
};
|
|
566
566
|
marginBottom: string | number | {
|
|
567
|
-
readonly [
|
|
567
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
568
568
|
};
|
|
569
569
|
};
|
|
570
|
-
}>>(...composers: { [K in keyof Composers]: Composers[K] extends string | import("@stitches/react/types/util").Function | import("react").JSXElementConstructor<any> | import("react").ExoticComponent<any> ? Composers[K] : import("@stitches/react/types/stitches").RemoveIndex<CSS_1> & {
|
|
570
|
+
}>>(...composers: { [K in keyof Composers]: string extends Composers[K] ? Composers[K] : Composers[K] extends string | import("@stitches/react/types/util").Function | import("react").JSXElementConstructor<any> | import("react").ExoticComponent<any> ? Composers[K] : import("@stitches/react/types/stitches").RemoveIndex<CSS_1> & {
|
|
571
571
|
variants?: {
|
|
572
572
|
[x: string]: {
|
|
573
573
|
[x: string]: CSS_1;
|
|
@@ -928,111 +928,111 @@ export declare const css: <Composers extends (string | import("@stitches/react/t
|
|
|
928
928
|
}, import("@stitches/react/types/config").DefaultThemeMap, {
|
|
929
929
|
bg: (value: Stitches.PropertyValue<'background'>) => {
|
|
930
930
|
background: {
|
|
931
|
-
readonly [
|
|
931
|
+
readonly [Stitches.$$PropertyValue]: "background";
|
|
932
932
|
};
|
|
933
933
|
};
|
|
934
934
|
inset: (value: Stitches.ScaleValue<'space'> | number | string) => {
|
|
935
935
|
top: string | number | {
|
|
936
|
-
readonly [
|
|
936
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
937
937
|
};
|
|
938
938
|
right: string | number | {
|
|
939
|
-
readonly [
|
|
939
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
940
940
|
};
|
|
941
941
|
bottom: string | number | {
|
|
942
|
-
readonly [
|
|
942
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
943
943
|
};
|
|
944
944
|
left: string | number | {
|
|
945
|
-
readonly [
|
|
945
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
946
946
|
};
|
|
947
947
|
};
|
|
948
948
|
size: (value: Stitches.ScaleValue<'size'> | number | string) => {
|
|
949
949
|
height: string | number | {
|
|
950
|
-
readonly [
|
|
950
|
+
readonly [Stitches.$$ScaleValue]: "size";
|
|
951
951
|
};
|
|
952
952
|
width: string | number | {
|
|
953
|
-
readonly [
|
|
953
|
+
readonly [Stitches.$$ScaleValue]: "size";
|
|
954
954
|
};
|
|
955
955
|
};
|
|
956
956
|
p: (value: Stitches.ScaleValue<'space'> | number | string) => {
|
|
957
957
|
padding: string | number | {
|
|
958
|
-
readonly [
|
|
958
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
959
959
|
};
|
|
960
960
|
};
|
|
961
961
|
pt: (value: Stitches.ScaleValue<'space'> | number | string) => {
|
|
962
962
|
paddingTop: string | number | {
|
|
963
|
-
readonly [
|
|
963
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
964
964
|
};
|
|
965
965
|
};
|
|
966
966
|
pr: (value: Stitches.ScaleValue<'space'> | number | string) => {
|
|
967
967
|
paddingRight: string | number | {
|
|
968
|
-
readonly [
|
|
968
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
969
969
|
};
|
|
970
970
|
};
|
|
971
971
|
pb: (value: Stitches.ScaleValue<'space'> | number | string) => {
|
|
972
972
|
paddingBottom: string | number | {
|
|
973
|
-
readonly [
|
|
973
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
974
974
|
};
|
|
975
975
|
};
|
|
976
976
|
pl: (value: Stitches.ScaleValue<'space'> | number | string) => {
|
|
977
977
|
paddingLeft: string | number | {
|
|
978
|
-
readonly [
|
|
978
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
979
979
|
};
|
|
980
980
|
};
|
|
981
981
|
px: (value: Stitches.ScaleValue<'space'> | number | string) => {
|
|
982
982
|
paddingLeft: string | number | {
|
|
983
|
-
readonly [
|
|
983
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
984
984
|
};
|
|
985
985
|
paddingRight: string | number | {
|
|
986
|
-
readonly [
|
|
986
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
987
987
|
};
|
|
988
988
|
};
|
|
989
989
|
py: (value: Stitches.ScaleValue<'space'> | number | string) => {
|
|
990
990
|
paddingTop: string | number | {
|
|
991
|
-
readonly [
|
|
991
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
992
992
|
};
|
|
993
993
|
paddingBottom: string | number | {
|
|
994
|
-
readonly [
|
|
994
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
995
995
|
};
|
|
996
996
|
};
|
|
997
997
|
m: (value: Stitches.ScaleValue<'space'> | number | string) => {
|
|
998
998
|
margin: string | number | {
|
|
999
|
-
readonly [
|
|
999
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
1000
1000
|
};
|
|
1001
1001
|
};
|
|
1002
1002
|
mt: (value: Stitches.ScaleValue<'space'> | number | string) => {
|
|
1003
1003
|
marginTop: string | number | {
|
|
1004
|
-
readonly [
|
|
1004
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
1005
1005
|
};
|
|
1006
1006
|
};
|
|
1007
1007
|
mr: (value: Stitches.ScaleValue<'space'> | number | string) => {
|
|
1008
1008
|
marginRight: string | number | {
|
|
1009
|
-
readonly [
|
|
1009
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
1010
1010
|
};
|
|
1011
1011
|
};
|
|
1012
1012
|
mb: (value: Stitches.ScaleValue<'space'> | number | string) => {
|
|
1013
1013
|
marginBottom: string | number | {
|
|
1014
|
-
readonly [
|
|
1014
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
1015
1015
|
};
|
|
1016
1016
|
};
|
|
1017
1017
|
ml: (value: Stitches.ScaleValue<'space'> | number | string) => {
|
|
1018
1018
|
marginLeft: string | number | {
|
|
1019
|
-
readonly [
|
|
1019
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
1020
1020
|
};
|
|
1021
1021
|
};
|
|
1022
1022
|
mx: (value: Stitches.ScaleValue<'space'> | number | string) => {
|
|
1023
1023
|
marginLeft: string | number | {
|
|
1024
|
-
readonly [
|
|
1024
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
1025
1025
|
};
|
|
1026
1026
|
marginRight: string | number | {
|
|
1027
|
-
readonly [
|
|
1027
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
1028
1028
|
};
|
|
1029
1029
|
};
|
|
1030
1030
|
my: (value: Stitches.ScaleValue<'space'> | number | string) => {
|
|
1031
1031
|
marginTop: string | number | {
|
|
1032
|
-
readonly [
|
|
1032
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
1033
1033
|
};
|
|
1034
1034
|
marginBottom: string | number | {
|
|
1035
|
-
readonly [
|
|
1035
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
1036
1036
|
};
|
|
1037
1037
|
};
|
|
1038
1038
|
}>;
|
|
@@ -1151,111 +1151,111 @@ export declare const css: <Composers extends (string | import("@stitches/react/t
|
|
|
1151
1151
|
}, import("@stitches/react/types/config").DefaultThemeMap, {
|
|
1152
1152
|
bg: (value: Stitches.PropertyValue<'background'>) => {
|
|
1153
1153
|
background: {
|
|
1154
|
-
readonly [
|
|
1154
|
+
readonly [Stitches.$$PropertyValue]: "background";
|
|
1155
1155
|
};
|
|
1156
1156
|
};
|
|
1157
1157
|
inset: (value: Stitches.ScaleValue<'space'> | number | string) => {
|
|
1158
1158
|
top: string | number | {
|
|
1159
|
-
readonly [
|
|
1159
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
1160
1160
|
};
|
|
1161
1161
|
right: string | number | {
|
|
1162
|
-
readonly [
|
|
1162
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
1163
1163
|
};
|
|
1164
1164
|
bottom: string | number | {
|
|
1165
|
-
readonly [
|
|
1165
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
1166
1166
|
};
|
|
1167
1167
|
left: string | number | {
|
|
1168
|
-
readonly [
|
|
1168
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
1169
1169
|
};
|
|
1170
1170
|
};
|
|
1171
1171
|
size: (value: Stitches.ScaleValue<'size'> | number | string) => {
|
|
1172
1172
|
height: string | number | {
|
|
1173
|
-
readonly [
|
|
1173
|
+
readonly [Stitches.$$ScaleValue]: "size";
|
|
1174
1174
|
};
|
|
1175
1175
|
width: string | number | {
|
|
1176
|
-
readonly [
|
|
1176
|
+
readonly [Stitches.$$ScaleValue]: "size";
|
|
1177
1177
|
};
|
|
1178
1178
|
};
|
|
1179
1179
|
p: (value: Stitches.ScaleValue<'space'> | number | string) => {
|
|
1180
1180
|
padding: string | number | {
|
|
1181
|
-
readonly [
|
|
1181
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
1182
1182
|
};
|
|
1183
1183
|
};
|
|
1184
1184
|
pt: (value: Stitches.ScaleValue<'space'> | number | string) => {
|
|
1185
1185
|
paddingTop: string | number | {
|
|
1186
|
-
readonly [
|
|
1186
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
1187
1187
|
};
|
|
1188
1188
|
};
|
|
1189
1189
|
pr: (value: Stitches.ScaleValue<'space'> | number | string) => {
|
|
1190
1190
|
paddingRight: string | number | {
|
|
1191
|
-
readonly [
|
|
1191
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
1192
1192
|
};
|
|
1193
1193
|
};
|
|
1194
1194
|
pb: (value: Stitches.ScaleValue<'space'> | number | string) => {
|
|
1195
1195
|
paddingBottom: string | number | {
|
|
1196
|
-
readonly [
|
|
1196
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
1197
1197
|
};
|
|
1198
1198
|
};
|
|
1199
1199
|
pl: (value: Stitches.ScaleValue<'space'> | number | string) => {
|
|
1200
1200
|
paddingLeft: string | number | {
|
|
1201
|
-
readonly [
|
|
1201
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
1202
1202
|
};
|
|
1203
1203
|
};
|
|
1204
1204
|
px: (value: Stitches.ScaleValue<'space'> | number | string) => {
|
|
1205
1205
|
paddingLeft: string | number | {
|
|
1206
|
-
readonly [
|
|
1206
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
1207
1207
|
};
|
|
1208
1208
|
paddingRight: string | number | {
|
|
1209
|
-
readonly [
|
|
1209
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
1210
1210
|
};
|
|
1211
1211
|
};
|
|
1212
1212
|
py: (value: Stitches.ScaleValue<'space'> | number | string) => {
|
|
1213
1213
|
paddingTop: string | number | {
|
|
1214
|
-
readonly [
|
|
1214
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
1215
1215
|
};
|
|
1216
1216
|
paddingBottom: string | number | {
|
|
1217
|
-
readonly [
|
|
1217
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
1218
1218
|
};
|
|
1219
1219
|
};
|
|
1220
1220
|
m: (value: Stitches.ScaleValue<'space'> | number | string) => {
|
|
1221
1221
|
margin: string | number | {
|
|
1222
|
-
readonly [
|
|
1222
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
1223
1223
|
};
|
|
1224
1224
|
};
|
|
1225
1225
|
mt: (value: Stitches.ScaleValue<'space'> | number | string) => {
|
|
1226
1226
|
marginTop: string | number | {
|
|
1227
|
-
readonly [
|
|
1227
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
1228
1228
|
};
|
|
1229
1229
|
};
|
|
1230
1230
|
mr: (value: Stitches.ScaleValue<'space'> | number | string) => {
|
|
1231
1231
|
marginRight: string | number | {
|
|
1232
|
-
readonly [
|
|
1232
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
1233
1233
|
};
|
|
1234
1234
|
};
|
|
1235
1235
|
mb: (value: Stitches.ScaleValue<'space'> | number | string) => {
|
|
1236
1236
|
marginBottom: string | number | {
|
|
1237
|
-
readonly [
|
|
1237
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
1238
1238
|
};
|
|
1239
1239
|
};
|
|
1240
1240
|
ml: (value: Stitches.ScaleValue<'space'> | number | string) => {
|
|
1241
1241
|
marginLeft: string | number | {
|
|
1242
|
-
readonly [
|
|
1242
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
1243
1243
|
};
|
|
1244
1244
|
};
|
|
1245
1245
|
mx: (value: Stitches.ScaleValue<'space'> | number | string) => {
|
|
1246
1246
|
marginLeft: string | number | {
|
|
1247
|
-
readonly [
|
|
1247
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
1248
1248
|
};
|
|
1249
1249
|
marginRight: string | number | {
|
|
1250
|
-
readonly [
|
|
1250
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
1251
1251
|
};
|
|
1252
1252
|
};
|
|
1253
1253
|
my: (value: Stitches.ScaleValue<'space'> | number | string) => {
|
|
1254
1254
|
marginTop: string | number | {
|
|
1255
|
-
readonly [
|
|
1255
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
1256
1256
|
};
|
|
1257
1257
|
marginBottom: string | number | {
|
|
1258
|
-
readonly [
|
|
1258
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
1259
1259
|
};
|
|
1260
1260
|
};
|
|
1261
1261
|
}>; })[]) => () => string, keyframes: (style: {
|
|
@@ -1374,111 +1374,111 @@ export declare const css: <Composers extends (string | import("@stitches/react/t
|
|
|
1374
1374
|
}, import("@stitches/react/types/config").DefaultThemeMap, {
|
|
1375
1375
|
bg: (value: Stitches.PropertyValue<'background'>) => {
|
|
1376
1376
|
background: {
|
|
1377
|
-
readonly [
|
|
1377
|
+
readonly [Stitches.$$PropertyValue]: "background";
|
|
1378
1378
|
};
|
|
1379
1379
|
};
|
|
1380
1380
|
inset: (value: Stitches.ScaleValue<'space'> | number | string) => {
|
|
1381
1381
|
top: string | number | {
|
|
1382
|
-
readonly [
|
|
1382
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
1383
1383
|
};
|
|
1384
1384
|
right: string | number | {
|
|
1385
|
-
readonly [
|
|
1385
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
1386
1386
|
};
|
|
1387
1387
|
bottom: string | number | {
|
|
1388
|
-
readonly [
|
|
1388
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
1389
1389
|
};
|
|
1390
1390
|
left: string | number | {
|
|
1391
|
-
readonly [
|
|
1391
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
1392
1392
|
};
|
|
1393
1393
|
};
|
|
1394
1394
|
size: (value: Stitches.ScaleValue<'size'> | number | string) => {
|
|
1395
1395
|
height: string | number | {
|
|
1396
|
-
readonly [
|
|
1396
|
+
readonly [Stitches.$$ScaleValue]: "size";
|
|
1397
1397
|
};
|
|
1398
1398
|
width: string | number | {
|
|
1399
|
-
readonly [
|
|
1399
|
+
readonly [Stitches.$$ScaleValue]: "size";
|
|
1400
1400
|
};
|
|
1401
1401
|
};
|
|
1402
1402
|
p: (value: Stitches.ScaleValue<'space'> | number | string) => {
|
|
1403
1403
|
padding: string | number | {
|
|
1404
|
-
readonly [
|
|
1404
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
1405
1405
|
};
|
|
1406
1406
|
};
|
|
1407
1407
|
pt: (value: Stitches.ScaleValue<'space'> | number | string) => {
|
|
1408
1408
|
paddingTop: string | number | {
|
|
1409
|
-
readonly [
|
|
1409
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
1410
1410
|
};
|
|
1411
1411
|
};
|
|
1412
1412
|
pr: (value: Stitches.ScaleValue<'space'> | number | string) => {
|
|
1413
1413
|
paddingRight: string | number | {
|
|
1414
|
-
readonly [
|
|
1414
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
1415
1415
|
};
|
|
1416
1416
|
};
|
|
1417
1417
|
pb: (value: Stitches.ScaleValue<'space'> | number | string) => {
|
|
1418
1418
|
paddingBottom: string | number | {
|
|
1419
|
-
readonly [
|
|
1419
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
1420
1420
|
};
|
|
1421
1421
|
};
|
|
1422
1422
|
pl: (value: Stitches.ScaleValue<'space'> | number | string) => {
|
|
1423
1423
|
paddingLeft: string | number | {
|
|
1424
|
-
readonly [
|
|
1424
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
1425
1425
|
};
|
|
1426
1426
|
};
|
|
1427
1427
|
px: (value: Stitches.ScaleValue<'space'> | number | string) => {
|
|
1428
1428
|
paddingLeft: string | number | {
|
|
1429
|
-
readonly [
|
|
1429
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
1430
1430
|
};
|
|
1431
1431
|
paddingRight: string | number | {
|
|
1432
|
-
readonly [
|
|
1432
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
1433
1433
|
};
|
|
1434
1434
|
};
|
|
1435
1435
|
py: (value: Stitches.ScaleValue<'space'> | number | string) => {
|
|
1436
1436
|
paddingTop: string | number | {
|
|
1437
|
-
readonly [
|
|
1437
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
1438
1438
|
};
|
|
1439
1439
|
paddingBottom: string | number | {
|
|
1440
|
-
readonly [
|
|
1440
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
1441
1441
|
};
|
|
1442
1442
|
};
|
|
1443
1443
|
m: (value: Stitches.ScaleValue<'space'> | number | string) => {
|
|
1444
1444
|
margin: string | number | {
|
|
1445
|
-
readonly [
|
|
1445
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
1446
1446
|
};
|
|
1447
1447
|
};
|
|
1448
1448
|
mt: (value: Stitches.ScaleValue<'space'> | number | string) => {
|
|
1449
1449
|
marginTop: string | number | {
|
|
1450
|
-
readonly [
|
|
1450
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
1451
1451
|
};
|
|
1452
1452
|
};
|
|
1453
1453
|
mr: (value: Stitches.ScaleValue<'space'> | number | string) => {
|
|
1454
1454
|
marginRight: string | number | {
|
|
1455
|
-
readonly [
|
|
1455
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
1456
1456
|
};
|
|
1457
1457
|
};
|
|
1458
1458
|
mb: (value: Stitches.ScaleValue<'space'> | number | string) => {
|
|
1459
1459
|
marginBottom: string | number | {
|
|
1460
|
-
readonly [
|
|
1460
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
1461
1461
|
};
|
|
1462
1462
|
};
|
|
1463
1463
|
ml: (value: Stitches.ScaleValue<'space'> | number | string) => {
|
|
1464
1464
|
marginLeft: string | number | {
|
|
1465
|
-
readonly [
|
|
1465
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
1466
1466
|
};
|
|
1467
1467
|
};
|
|
1468
1468
|
mx: (value: Stitches.ScaleValue<'space'> | number | string) => {
|
|
1469
1469
|
marginLeft: string | number | {
|
|
1470
|
-
readonly [
|
|
1470
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
1471
1471
|
};
|
|
1472
1472
|
marginRight: string | number | {
|
|
1473
|
-
readonly [
|
|
1473
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
1474
1474
|
};
|
|
1475
1475
|
};
|
|
1476
1476
|
my: (value: Stitches.ScaleValue<'space'> | number | string) => {
|
|
1477
1477
|
marginTop: string | number | {
|
|
1478
|
-
readonly [
|
|
1478
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
1479
1479
|
};
|
|
1480
1480
|
marginBottom: string | number | {
|
|
1481
|
-
readonly [
|
|
1481
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
1482
1482
|
};
|
|
1483
1483
|
};
|
|
1484
1484
|
}>;
|
|
@@ -1602,114 +1602,114 @@ export declare const css: <Composers extends (string | import("@stitches/react/t
|
|
|
1602
1602
|
}, import("@stitches/react/types/config").DefaultThemeMap, {
|
|
1603
1603
|
bg: (value: Stitches.PropertyValue<'background'>) => {
|
|
1604
1604
|
background: {
|
|
1605
|
-
readonly [
|
|
1605
|
+
readonly [Stitches.$$PropertyValue]: "background";
|
|
1606
1606
|
};
|
|
1607
1607
|
};
|
|
1608
1608
|
inset: (value: Stitches.ScaleValue<'space'> | number | string) => {
|
|
1609
1609
|
top: string | number | {
|
|
1610
|
-
readonly [
|
|
1610
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
1611
1611
|
};
|
|
1612
1612
|
right: string | number | {
|
|
1613
|
-
readonly [
|
|
1613
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
1614
1614
|
};
|
|
1615
1615
|
bottom: string | number | {
|
|
1616
|
-
readonly [
|
|
1616
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
1617
1617
|
};
|
|
1618
1618
|
left: string | number | {
|
|
1619
|
-
readonly [
|
|
1619
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
1620
1620
|
};
|
|
1621
1621
|
};
|
|
1622
1622
|
size: (value: Stitches.ScaleValue<'size'> | number | string) => {
|
|
1623
1623
|
height: string | number | {
|
|
1624
|
-
readonly [
|
|
1624
|
+
readonly [Stitches.$$ScaleValue]: "size";
|
|
1625
1625
|
};
|
|
1626
1626
|
width: string | number | {
|
|
1627
|
-
readonly [
|
|
1627
|
+
readonly [Stitches.$$ScaleValue]: "size";
|
|
1628
1628
|
};
|
|
1629
1629
|
};
|
|
1630
1630
|
p: (value: Stitches.ScaleValue<'space'> | number | string) => {
|
|
1631
1631
|
padding: string | number | {
|
|
1632
|
-
readonly [
|
|
1632
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
1633
1633
|
};
|
|
1634
1634
|
};
|
|
1635
1635
|
pt: (value: Stitches.ScaleValue<'space'> | number | string) => {
|
|
1636
1636
|
paddingTop: string | number | {
|
|
1637
|
-
readonly [
|
|
1637
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
1638
1638
|
};
|
|
1639
1639
|
};
|
|
1640
1640
|
pr: (value: Stitches.ScaleValue<'space'> | number | string) => {
|
|
1641
1641
|
paddingRight: string | number | {
|
|
1642
|
-
readonly [
|
|
1642
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
1643
1643
|
};
|
|
1644
1644
|
};
|
|
1645
1645
|
pb: (value: Stitches.ScaleValue<'space'> | number | string) => {
|
|
1646
1646
|
paddingBottom: string | number | {
|
|
1647
|
-
readonly [
|
|
1647
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
1648
1648
|
};
|
|
1649
1649
|
};
|
|
1650
1650
|
pl: (value: Stitches.ScaleValue<'space'> | number | string) => {
|
|
1651
1651
|
paddingLeft: string | number | {
|
|
1652
|
-
readonly [
|
|
1652
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
1653
1653
|
};
|
|
1654
1654
|
};
|
|
1655
1655
|
px: (value: Stitches.ScaleValue<'space'> | number | string) => {
|
|
1656
1656
|
paddingLeft: string | number | {
|
|
1657
|
-
readonly [
|
|
1657
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
1658
1658
|
};
|
|
1659
1659
|
paddingRight: string | number | {
|
|
1660
|
-
readonly [
|
|
1660
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
1661
1661
|
};
|
|
1662
1662
|
};
|
|
1663
1663
|
py: (value: Stitches.ScaleValue<'space'> | number | string) => {
|
|
1664
1664
|
paddingTop: string | number | {
|
|
1665
|
-
readonly [
|
|
1665
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
1666
1666
|
};
|
|
1667
1667
|
paddingBottom: string | number | {
|
|
1668
|
-
readonly [
|
|
1668
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
1669
1669
|
};
|
|
1670
1670
|
};
|
|
1671
1671
|
m: (value: Stitches.ScaleValue<'space'> | number | string) => {
|
|
1672
1672
|
margin: string | number | {
|
|
1673
|
-
readonly [
|
|
1673
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
1674
1674
|
};
|
|
1675
1675
|
};
|
|
1676
1676
|
mt: (value: Stitches.ScaleValue<'space'> | number | string) => {
|
|
1677
1677
|
marginTop: string | number | {
|
|
1678
|
-
readonly [
|
|
1678
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
1679
1679
|
};
|
|
1680
1680
|
};
|
|
1681
1681
|
mr: (value: Stitches.ScaleValue<'space'> | number | string) => {
|
|
1682
1682
|
marginRight: string | number | {
|
|
1683
|
-
readonly [
|
|
1683
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
1684
1684
|
};
|
|
1685
1685
|
};
|
|
1686
1686
|
mb: (value: Stitches.ScaleValue<'space'> | number | string) => {
|
|
1687
1687
|
marginBottom: string | number | {
|
|
1688
|
-
readonly [
|
|
1688
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
1689
1689
|
};
|
|
1690
1690
|
};
|
|
1691
1691
|
ml: (value: Stitches.ScaleValue<'space'> | number | string) => {
|
|
1692
1692
|
marginLeft: string | number | {
|
|
1693
|
-
readonly [
|
|
1693
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
1694
1694
|
};
|
|
1695
1695
|
};
|
|
1696
1696
|
mx: (value: Stitches.ScaleValue<'space'> | number | string) => {
|
|
1697
1697
|
marginLeft: string | number | {
|
|
1698
|
-
readonly [
|
|
1698
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
1699
1699
|
};
|
|
1700
1700
|
marginRight: string | number | {
|
|
1701
|
-
readonly [
|
|
1701
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
1702
1702
|
};
|
|
1703
1703
|
};
|
|
1704
1704
|
my: (value: Stitches.ScaleValue<'space'> | number | string) => {
|
|
1705
1705
|
marginTop: string | number | {
|
|
1706
|
-
readonly [
|
|
1706
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
1707
1707
|
};
|
|
1708
1708
|
marginBottom: string | number | {
|
|
1709
|
-
readonly [
|
|
1709
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
1710
1710
|
};
|
|
1711
1711
|
};
|
|
1712
|
-
}>>(type: Type, ...composers: { [K in keyof Composers]: Composers[K] extends string | import("@stitches/react/types/util").Function | import("react").ComponentType<any> ? Composers[K] : import("@stitches/react/types/stitches").RemoveIndex<CSS_1> & {
|
|
1712
|
+
}>>(type: Type, ...composers: { [K in keyof Composers]: string extends Composers[K] ? Composers[K] : Composers[K] extends string | import("@stitches/react/types/util").Function | import("react").ComponentType<any> ? Composers[K] : import("@stitches/react/types/stitches").RemoveIndex<CSS_1> & {
|
|
1713
1713
|
variants?: {
|
|
1714
1714
|
[x: string]: {
|
|
1715
1715
|
[x: string]: CSS_1;
|
|
@@ -1843,111 +1843,111 @@ export declare const css: <Composers extends (string | import("@stitches/react/t
|
|
|
1843
1843
|
}, import("@stitches/react/types/config").DefaultThemeMap, {
|
|
1844
1844
|
bg: (value: Stitches.PropertyValue<'background'>) => {
|
|
1845
1845
|
background: {
|
|
1846
|
-
readonly [
|
|
1846
|
+
readonly [Stitches.$$PropertyValue]: "background";
|
|
1847
1847
|
};
|
|
1848
1848
|
};
|
|
1849
1849
|
inset: (value: Stitches.ScaleValue<'space'> | number | string) => {
|
|
1850
1850
|
top: string | number | {
|
|
1851
|
-
readonly [
|
|
1851
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
1852
1852
|
};
|
|
1853
1853
|
right: string | number | {
|
|
1854
|
-
readonly [
|
|
1854
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
1855
1855
|
};
|
|
1856
1856
|
bottom: string | number | {
|
|
1857
|
-
readonly [
|
|
1857
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
1858
1858
|
};
|
|
1859
1859
|
left: string | number | {
|
|
1860
|
-
readonly [
|
|
1860
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
1861
1861
|
};
|
|
1862
1862
|
};
|
|
1863
1863
|
size: (value: Stitches.ScaleValue<'size'> | number | string) => {
|
|
1864
1864
|
height: string | number | {
|
|
1865
|
-
readonly [
|
|
1865
|
+
readonly [Stitches.$$ScaleValue]: "size";
|
|
1866
1866
|
};
|
|
1867
1867
|
width: string | number | {
|
|
1868
|
-
readonly [
|
|
1868
|
+
readonly [Stitches.$$ScaleValue]: "size";
|
|
1869
1869
|
};
|
|
1870
1870
|
};
|
|
1871
1871
|
p: (value: Stitches.ScaleValue<'space'> | number | string) => {
|
|
1872
1872
|
padding: string | number | {
|
|
1873
|
-
readonly [
|
|
1873
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
1874
1874
|
};
|
|
1875
1875
|
};
|
|
1876
1876
|
pt: (value: Stitches.ScaleValue<'space'> | number | string) => {
|
|
1877
1877
|
paddingTop: string | number | {
|
|
1878
|
-
readonly [
|
|
1878
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
1879
1879
|
};
|
|
1880
1880
|
};
|
|
1881
1881
|
pr: (value: Stitches.ScaleValue<'space'> | number | string) => {
|
|
1882
1882
|
paddingRight: string | number | {
|
|
1883
|
-
readonly [
|
|
1883
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
1884
1884
|
};
|
|
1885
1885
|
};
|
|
1886
1886
|
pb: (value: Stitches.ScaleValue<'space'> | number | string) => {
|
|
1887
1887
|
paddingBottom: string | number | {
|
|
1888
|
-
readonly [
|
|
1888
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
1889
1889
|
};
|
|
1890
1890
|
};
|
|
1891
1891
|
pl: (value: Stitches.ScaleValue<'space'> | number | string) => {
|
|
1892
1892
|
paddingLeft: string | number | {
|
|
1893
|
-
readonly [
|
|
1893
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
1894
1894
|
};
|
|
1895
1895
|
};
|
|
1896
1896
|
px: (value: Stitches.ScaleValue<'space'> | number | string) => {
|
|
1897
1897
|
paddingLeft: string | number | {
|
|
1898
|
-
readonly [
|
|
1898
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
1899
1899
|
};
|
|
1900
1900
|
paddingRight: string | number | {
|
|
1901
|
-
readonly [
|
|
1901
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
1902
1902
|
};
|
|
1903
1903
|
};
|
|
1904
1904
|
py: (value: Stitches.ScaleValue<'space'> | number | string) => {
|
|
1905
1905
|
paddingTop: string | number | {
|
|
1906
|
-
readonly [
|
|
1906
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
1907
1907
|
};
|
|
1908
1908
|
paddingBottom: string | number | {
|
|
1909
|
-
readonly [
|
|
1909
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
1910
1910
|
};
|
|
1911
1911
|
};
|
|
1912
1912
|
m: (value: Stitches.ScaleValue<'space'> | number | string) => {
|
|
1913
1913
|
margin: string | number | {
|
|
1914
|
-
readonly [
|
|
1914
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
1915
1915
|
};
|
|
1916
1916
|
};
|
|
1917
1917
|
mt: (value: Stitches.ScaleValue<'space'> | number | string) => {
|
|
1918
1918
|
marginTop: string | number | {
|
|
1919
|
-
readonly [
|
|
1919
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
1920
1920
|
};
|
|
1921
1921
|
};
|
|
1922
1922
|
mr: (value: Stitches.ScaleValue<'space'> | number | string) => {
|
|
1923
1923
|
marginRight: string | number | {
|
|
1924
|
-
readonly [
|
|
1924
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
1925
1925
|
};
|
|
1926
1926
|
};
|
|
1927
1927
|
mb: (value: Stitches.ScaleValue<'space'> | number | string) => {
|
|
1928
1928
|
marginBottom: string | number | {
|
|
1929
|
-
readonly [
|
|
1929
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
1930
1930
|
};
|
|
1931
1931
|
};
|
|
1932
1932
|
ml: (value: Stitches.ScaleValue<'space'> | number | string) => {
|
|
1933
1933
|
marginLeft: string | number | {
|
|
1934
|
-
readonly [
|
|
1934
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
1935
1935
|
};
|
|
1936
1936
|
};
|
|
1937
1937
|
mx: (value: Stitches.ScaleValue<'space'> | number | string) => {
|
|
1938
1938
|
marginLeft: string | number | {
|
|
1939
|
-
readonly [
|
|
1939
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
1940
1940
|
};
|
|
1941
1941
|
marginRight: string | number | {
|
|
1942
|
-
readonly [
|
|
1942
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
1943
1943
|
};
|
|
1944
1944
|
};
|
|
1945
1945
|
my: (value: Stitches.ScaleValue<'space'> | number | string) => {
|
|
1946
1946
|
marginTop: string | number | {
|
|
1947
|
-
readonly [
|
|
1947
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
1948
1948
|
};
|
|
1949
1949
|
marginBottom: string | number | {
|
|
1950
|
-
readonly [
|
|
1950
|
+
readonly [Stitches.$$ScaleValue]: "space";
|
|
1951
1951
|
};
|
|
1952
1952
|
};
|
|
1953
1953
|
}>>, theme: string & {
|