@atom-learning/components 3.11.4 → 3.12.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 +5 -3
- package/dist/components/chip/ChipGroup.d.ts +4 -2
- package/dist/components/chip/ChipGroup.js +1 -1
- package/dist/components/chip/ChipGroup.js.map +1 -1
- package/dist/components/chip-toggle-group/ChipToggleGroupRoot.d.ts +10 -12
- package/dist/components/index.d.ts +0 -1
- package/dist/components/notification-badge/NotificationBadge.d.ts +1 -668
- package/dist/components/notification-badge/NotificationBadge.js.map +1 -1
- package/dist/components/pagination/PaginationPopover.js +1 -1
- package/dist/components/pagination/PaginationPopover.js.map +1 -1
- package/dist/components/radio-card/RadioCardGroup.d.ts +2 -2
- package/dist/components/radio-card/RadioCardGroup.js +1 -1
- package/dist/components/radio-card/RadioCardGroup.js.map +1 -1
- package/dist/components/section-message/SectionMessage.d.ts +5 -8
- package/dist/components/section-message/SectionMessage.js +1 -1
- package/dist/components/section-message/SectionMessage.js.map +1 -1
- package/dist/components/section-message/SectionMessageLayout.d.ts +2 -2
- package/dist/components/section-message/SectionMessageLayout.js +1 -1
- package/dist/components/section-message/SectionMessageLayout.js.map +1 -1
- package/dist/components/table/TableHeader.d.ts +6 -4
- package/dist/components/table/TableHeader.js +1 -1
- package/dist/components/table/TableHeader.js.map +1 -1
- package/dist/components/tile/TileGroup.d.ts +329 -337
- package/dist/components/tile/TileGroup.js +1 -1
- package/dist/components/tile/TileGroup.js.map +1 -1
- package/dist/components/tile-interactive/TileInteractive.js +1 -1
- package/dist/components/tile-interactive/TileInteractive.js.map +1 -1
- package/dist/components/tile-toggle-group/TileToggleGroupRoot.d.ts +12 -18
- package/dist/components/tile-toggle-group/TileToggleGroupRoot.js +1 -1
- package/dist/components/tile-toggle-group/TileToggleGroupRoot.js.map +1 -1
- package/dist/components/toggle-group/ToggleGroupRoot.d.ts +2 -3
- package/dist/components/toggle-group/ToggleGroupRoot.js +1 -1
- package/dist/components/toggle-group/ToggleGroupRoot.js.map +1 -1
- package/dist/components/toggle-group/index.d.ts +341 -3
- package/dist/docgen.json +1 -1
- package/dist/index.cjs.js +1 -1
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
- package/dist/components/stack/Stack.d.ts +0 -348
- package/dist/components/stack/Stack.js +0 -2
- package/dist/components/stack/Stack.js.map +0 -1
- package/dist/components/stack/index.d.ts +0 -1
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
justify?: boolean | "center" | "false" | "end" | "start" | undefined;
|
|
8
|
-
align?: boolean | "center" | "false" | "end" | "start" | undefined;
|
|
9
|
-
gap?: number | boolean | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "24" | "false" | undefined;
|
|
1
|
+
export declare const TileGroup: import("@stitches/react/types/styled-component").StyledComponent<"div", {
|
|
2
|
+
direction?: "inherit" | "initial" | "revert" | "unset" | "row" | "column" | "column-reverse" | "row-reverse" | "revert-layer" | undefined;
|
|
3
|
+
wrap?: "inherit" | "initial" | "revert" | "unset" | "nowrap" | "wrap" | "wrap-reverse" | "revert-layer" | undefined;
|
|
4
|
+
justify?: "center" | "left" | "right" | "stretch" | "inherit" | "initial" | "revert" | "unset" | "space-around" | "space-between" | "space-evenly" | "end" | "flex-end" | "flex-start" | "start" | "normal" | "revert-layer" | "unsafe" | "safe" | undefined;
|
|
5
|
+
align?: "center" | "stretch" | "inherit" | "initial" | "revert" | "unset" | "end" | "flex-end" | "flex-start" | "start" | "baseline" | "normal" | "self-end" | "self-start" | "revert-layer" | "unsafe" | "safe" | "first baseline" | "last baseline" | undefined;
|
|
6
|
+
gap?: number | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "24" | undefined;
|
|
10
7
|
}, {
|
|
11
8
|
sm: string;
|
|
12
9
|
md: string;
|
|
@@ -15,331 +12,326 @@ export declare const TileGroup: import("react").ForwardRefExoticComponent<Omit<P
|
|
|
15
12
|
reducedMotion: string;
|
|
16
13
|
allowMotion: string;
|
|
17
14
|
hover: string;
|
|
18
|
-
}
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
}> | undefined;
|
|
342
|
-
} & {
|
|
343
|
-
css?: import("../..").CSS | undefined;
|
|
344
|
-
as?: any;
|
|
345
|
-
}>;
|
|
15
|
+
}, import("@stitches/react/types/css-util").CSS<{
|
|
16
|
+
sm: string;
|
|
17
|
+
md: string;
|
|
18
|
+
lg: string;
|
|
19
|
+
xl: string;
|
|
20
|
+
reducedMotion: string;
|
|
21
|
+
allowMotion: string;
|
|
22
|
+
hover: string;
|
|
23
|
+
}, {
|
|
24
|
+
colors: {
|
|
25
|
+
textBold: any;
|
|
26
|
+
textRegular: any;
|
|
27
|
+
textSubtle: any;
|
|
28
|
+
textMinimal: any;
|
|
29
|
+
background: any;
|
|
30
|
+
backgroundAccent: any;
|
|
31
|
+
grey100: any;
|
|
32
|
+
grey200: any;
|
|
33
|
+
grey300: any;
|
|
34
|
+
grey400: any;
|
|
35
|
+
grey500: any;
|
|
36
|
+
grey600: any;
|
|
37
|
+
grey700: any;
|
|
38
|
+
grey800: any;
|
|
39
|
+
grey900: any;
|
|
40
|
+
grey1000: any;
|
|
41
|
+
grey1100: any;
|
|
42
|
+
grey1200: any;
|
|
43
|
+
blue100: any;
|
|
44
|
+
blue200: any;
|
|
45
|
+
blue300: any;
|
|
46
|
+
blue400: any;
|
|
47
|
+
blue500: any;
|
|
48
|
+
blue600: any;
|
|
49
|
+
blue700: any;
|
|
50
|
+
blue800: any;
|
|
51
|
+
blue900: any;
|
|
52
|
+
blue1000: any;
|
|
53
|
+
blue1100: any;
|
|
54
|
+
blue1200: any;
|
|
55
|
+
purple100: any;
|
|
56
|
+
purple200: any;
|
|
57
|
+
purple300: any;
|
|
58
|
+
purple400: any;
|
|
59
|
+
purple500: any;
|
|
60
|
+
purple600: any;
|
|
61
|
+
purple700: any;
|
|
62
|
+
purple800: any;
|
|
63
|
+
purple900: any;
|
|
64
|
+
purple1000: any;
|
|
65
|
+
purple1100: any;
|
|
66
|
+
purple1200: any;
|
|
67
|
+
cyan100: any;
|
|
68
|
+
cyan200: any;
|
|
69
|
+
cyan300: any;
|
|
70
|
+
cyan400: any;
|
|
71
|
+
cyan500: any;
|
|
72
|
+
cyan600: any;
|
|
73
|
+
cyan700: any;
|
|
74
|
+
cyan800: any;
|
|
75
|
+
cyan900: any;
|
|
76
|
+
cyan1000: any;
|
|
77
|
+
cyan1100: any;
|
|
78
|
+
cyan1200: any;
|
|
79
|
+
green100: any;
|
|
80
|
+
green200: any;
|
|
81
|
+
green300: any;
|
|
82
|
+
green400: any;
|
|
83
|
+
green500: any;
|
|
84
|
+
green600: any;
|
|
85
|
+
green700: any;
|
|
86
|
+
green800: any;
|
|
87
|
+
green900: any;
|
|
88
|
+
green1000: any;
|
|
89
|
+
green1100: any;
|
|
90
|
+
green1200: any;
|
|
91
|
+
magenta100: any;
|
|
92
|
+
magenta200: any;
|
|
93
|
+
magenta300: any;
|
|
94
|
+
magenta400: any;
|
|
95
|
+
magenta500: any;
|
|
96
|
+
magenta600: any;
|
|
97
|
+
magenta700: any;
|
|
98
|
+
magenta800: any;
|
|
99
|
+
magenta900: any;
|
|
100
|
+
magenta1000: any;
|
|
101
|
+
magenta1100: any;
|
|
102
|
+
magenta1200: any;
|
|
103
|
+
red100: any;
|
|
104
|
+
red200: any;
|
|
105
|
+
red300: any;
|
|
106
|
+
red400: any;
|
|
107
|
+
red500: any;
|
|
108
|
+
red600: any;
|
|
109
|
+
red700: any;
|
|
110
|
+
red800: any;
|
|
111
|
+
red900: any;
|
|
112
|
+
red1000: any;
|
|
113
|
+
red1100: any;
|
|
114
|
+
red1200: any;
|
|
115
|
+
teal100: any;
|
|
116
|
+
teal200: any;
|
|
117
|
+
teal300: any;
|
|
118
|
+
teal400: any;
|
|
119
|
+
teal500: any;
|
|
120
|
+
teal600: any;
|
|
121
|
+
teal700: any;
|
|
122
|
+
teal800: any;
|
|
123
|
+
teal900: any;
|
|
124
|
+
teal1000: any;
|
|
125
|
+
teal1100: any;
|
|
126
|
+
teal1200: any;
|
|
127
|
+
orange100: any;
|
|
128
|
+
orange200: any;
|
|
129
|
+
orange300: any;
|
|
130
|
+
orange400: any;
|
|
131
|
+
orange500: any;
|
|
132
|
+
orange600: any;
|
|
133
|
+
orange700: any;
|
|
134
|
+
orange800: any;
|
|
135
|
+
orange900: any;
|
|
136
|
+
orange1000: any;
|
|
137
|
+
orange1100: any;
|
|
138
|
+
orange1200: any;
|
|
139
|
+
yellow100: any;
|
|
140
|
+
yellow200: any;
|
|
141
|
+
yellow300: any;
|
|
142
|
+
yellow400: any;
|
|
143
|
+
yellow500: any;
|
|
144
|
+
yellow600: any;
|
|
145
|
+
yellow700: any;
|
|
146
|
+
yellow800: any;
|
|
147
|
+
yellow900: any;
|
|
148
|
+
yellow1000: any;
|
|
149
|
+
yellow1100: any;
|
|
150
|
+
yellow1200: any;
|
|
151
|
+
lime100: any;
|
|
152
|
+
lime200: any;
|
|
153
|
+
lime300: any;
|
|
154
|
+
lime400: any;
|
|
155
|
+
lime500: any;
|
|
156
|
+
lime600: any;
|
|
157
|
+
lime700: any;
|
|
158
|
+
lime800: any;
|
|
159
|
+
lime900: any;
|
|
160
|
+
lime1000: any;
|
|
161
|
+
lime1100: any;
|
|
162
|
+
lime1200: any;
|
|
163
|
+
tonal50: any;
|
|
164
|
+
tonal100: any;
|
|
165
|
+
tonal200: any;
|
|
166
|
+
tonal300: any;
|
|
167
|
+
tonal400: any;
|
|
168
|
+
tonal500: any;
|
|
169
|
+
tonal600: any;
|
|
170
|
+
alpha100: any;
|
|
171
|
+
alpha150: any;
|
|
172
|
+
alpha200: any;
|
|
173
|
+
alpha250: any;
|
|
174
|
+
alpha600: any;
|
|
175
|
+
brandRed: any;
|
|
176
|
+
brandRedAccent: any;
|
|
177
|
+
brandGreen: any;
|
|
178
|
+
brandGreenAccent: any;
|
|
179
|
+
brandPurple: any;
|
|
180
|
+
brandPurpleAccent: any;
|
|
181
|
+
brandYellow: any;
|
|
182
|
+
brandYellowAccent: any;
|
|
183
|
+
infoLight: any;
|
|
184
|
+
info: any;
|
|
185
|
+
infoMid: any;
|
|
186
|
+
infoDark: any;
|
|
187
|
+
successLight: any;
|
|
188
|
+
success: any;
|
|
189
|
+
successMid: any;
|
|
190
|
+
successDark: any;
|
|
191
|
+
dangerLight: any;
|
|
192
|
+
danger: any;
|
|
193
|
+
dangerMid: any;
|
|
194
|
+
dangerDark: any;
|
|
195
|
+
warningLight: any;
|
|
196
|
+
warning: any;
|
|
197
|
+
warningMid: any;
|
|
198
|
+
warningDark: any;
|
|
199
|
+
warningText: any;
|
|
200
|
+
subjectEnglish: any;
|
|
201
|
+
subjectMaths: any;
|
|
202
|
+
subjectScience: any;
|
|
203
|
+
subjectVerbalReasoning: any;
|
|
204
|
+
subjectNonVerbalReasoning: any;
|
|
205
|
+
subjectCreativeWriting: any;
|
|
206
|
+
subjectExamSkills: any;
|
|
207
|
+
glBlueLight: any;
|
|
208
|
+
glBluePrimary: any;
|
|
209
|
+
glBlueDark: any;
|
|
210
|
+
primary100: any;
|
|
211
|
+
primary200: any;
|
|
212
|
+
primary300: any;
|
|
213
|
+
primary400: any;
|
|
214
|
+
primary500: any;
|
|
215
|
+
primary600: any;
|
|
216
|
+
primary700: any;
|
|
217
|
+
primary800: any;
|
|
218
|
+
primary900: any;
|
|
219
|
+
primary1000: any;
|
|
220
|
+
primary1100: any;
|
|
221
|
+
primary1200: any;
|
|
222
|
+
};
|
|
223
|
+
space: {
|
|
224
|
+
"0": any;
|
|
225
|
+
"1": any;
|
|
226
|
+
"2": any;
|
|
227
|
+
"3": any;
|
|
228
|
+
"4": any;
|
|
229
|
+
"5": any;
|
|
230
|
+
"6": any;
|
|
231
|
+
"7": any;
|
|
232
|
+
"8": any;
|
|
233
|
+
"9": any;
|
|
234
|
+
"24": any;
|
|
235
|
+
};
|
|
236
|
+
fontSizes: {
|
|
237
|
+
xs: any;
|
|
238
|
+
sm: any;
|
|
239
|
+
md: any;
|
|
240
|
+
lg: any;
|
|
241
|
+
xl: any;
|
|
242
|
+
"2xl": any;
|
|
243
|
+
"3xl": any;
|
|
244
|
+
"4xl": any;
|
|
245
|
+
};
|
|
246
|
+
fonts: {
|
|
247
|
+
sans: any;
|
|
248
|
+
mono: any;
|
|
249
|
+
display: any;
|
|
250
|
+
body: any;
|
|
251
|
+
};
|
|
252
|
+
sizes: {
|
|
253
|
+
"0": any;
|
|
254
|
+
"1": any;
|
|
255
|
+
"2": any;
|
|
256
|
+
"3": any;
|
|
257
|
+
"4": any;
|
|
258
|
+
"5": any;
|
|
259
|
+
"6": any;
|
|
260
|
+
"7": any;
|
|
261
|
+
"8": any;
|
|
262
|
+
};
|
|
263
|
+
radii: {
|
|
264
|
+
"0": any;
|
|
265
|
+
"1": any;
|
|
266
|
+
"2": any;
|
|
267
|
+
"3": any;
|
|
268
|
+
round: any;
|
|
269
|
+
};
|
|
270
|
+
shadows: {
|
|
271
|
+
"0": any;
|
|
272
|
+
"1": any;
|
|
273
|
+
"2": any;
|
|
274
|
+
"3": any;
|
|
275
|
+
};
|
|
276
|
+
ratios: {
|
|
277
|
+
"16-9": any;
|
|
278
|
+
"3-2": any;
|
|
279
|
+
"4-3": any;
|
|
280
|
+
"1-1": any;
|
|
281
|
+
"3-4": any;
|
|
282
|
+
};
|
|
283
|
+
}, import("@stitches/react/types/config").DefaultThemeMap, {
|
|
284
|
+
bg: (value: import("@stitches/react/types/css-util").WithPropertyValue<"background">) => {
|
|
285
|
+
background: import("@stitches/react/types/css-util").WithPropertyValue<"background">;
|
|
286
|
+
};
|
|
287
|
+
size: (value: string | number | import("@stitches/react/types/css-util").WithScaleValue<"size">) => {
|
|
288
|
+
height: string | number | import("@stitches/react/types/css-util").WithScaleValue<"size">;
|
|
289
|
+
width: string | number | import("@stitches/react/types/css-util").WithScaleValue<"size">;
|
|
290
|
+
};
|
|
291
|
+
p: (value: string | number | import("@stitches/react/types/css-util").WithScaleValue<"space">) => {
|
|
292
|
+
padding: string | number | import("@stitches/react/types/css-util").WithScaleValue<"space">;
|
|
293
|
+
};
|
|
294
|
+
pt: (value: string | number | import("@stitches/react/types/css-util").WithScaleValue<"space">) => {
|
|
295
|
+
paddingTop: string | number | import("@stitches/react/types/css-util").WithScaleValue<"space">;
|
|
296
|
+
};
|
|
297
|
+
pr: (value: string | number | import("@stitches/react/types/css-util").WithScaleValue<"space">) => {
|
|
298
|
+
paddingRight: string | number | import("@stitches/react/types/css-util").WithScaleValue<"space">;
|
|
299
|
+
};
|
|
300
|
+
pb: (value: string | number | import("@stitches/react/types/css-util").WithScaleValue<"space">) => {
|
|
301
|
+
paddingBottom: string | number | import("@stitches/react/types/css-util").WithScaleValue<"space">;
|
|
302
|
+
};
|
|
303
|
+
pl: (value: string | number | import("@stitches/react/types/css-util").WithScaleValue<"space">) => {
|
|
304
|
+
paddingLeft: string | number | import("@stitches/react/types/css-util").WithScaleValue<"space">;
|
|
305
|
+
};
|
|
306
|
+
px: (value: string | number | import("@stitches/react/types/css-util").WithScaleValue<"space">) => {
|
|
307
|
+
paddingLeft: string | number | import("@stitches/react/types/css-util").WithScaleValue<"space">;
|
|
308
|
+
paddingRight: string | number | import("@stitches/react/types/css-util").WithScaleValue<"space">;
|
|
309
|
+
};
|
|
310
|
+
py: (value: string | number | import("@stitches/react/types/css-util").WithScaleValue<"space">) => {
|
|
311
|
+
paddingTop: string | number | import("@stitches/react/types/css-util").WithScaleValue<"space">;
|
|
312
|
+
paddingBottom: string | number | import("@stitches/react/types/css-util").WithScaleValue<"space">;
|
|
313
|
+
};
|
|
314
|
+
m: (value: string | number | import("@stitches/react/types/css-util").WithScaleValue<"space">) => {
|
|
315
|
+
margin: string | number | import("@stitches/react/types/css-util").WithScaleValue<"space">;
|
|
316
|
+
};
|
|
317
|
+
mt: (value: string | number | import("@stitches/react/types/css-util").WithScaleValue<"space">) => {
|
|
318
|
+
marginTop: string | number | import("@stitches/react/types/css-util").WithScaleValue<"space">;
|
|
319
|
+
};
|
|
320
|
+
mr: (value: string | number | import("@stitches/react/types/css-util").WithScaleValue<"space">) => {
|
|
321
|
+
marginRight: string | number | import("@stitches/react/types/css-util").WithScaleValue<"space">;
|
|
322
|
+
};
|
|
323
|
+
mb: (value: string | number | import("@stitches/react/types/css-util").WithScaleValue<"space">) => {
|
|
324
|
+
marginBottom: string | number | import("@stitches/react/types/css-util").WithScaleValue<"space">;
|
|
325
|
+
};
|
|
326
|
+
ml: (value: string | number | import("@stitches/react/types/css-util").WithScaleValue<"space">) => {
|
|
327
|
+
marginLeft: string | number | import("@stitches/react/types/css-util").WithScaleValue<"space">;
|
|
328
|
+
};
|
|
329
|
+
mx: (value: string | number | import("@stitches/react/types/css-util").WithScaleValue<"space">) => {
|
|
330
|
+
marginLeft: string | number | import("@stitches/react/types/css-util").WithScaleValue<"space">;
|
|
331
|
+
marginRight: string | number | import("@stitches/react/types/css-util").WithScaleValue<"space">;
|
|
332
|
+
};
|
|
333
|
+
my: (value: string | number | import("@stitches/react/types/css-util").WithScaleValue<"space">) => {
|
|
334
|
+
marginTop: string | number | import("@stitches/react/types/css-util").WithScaleValue<"space">;
|
|
335
|
+
marginBottom: string | number | import("@stitches/react/types/css-util").WithScaleValue<"space">;
|
|
336
|
+
};
|
|
337
|
+
}>>;
|