@atom-learning/components 4.0.0-beta.10 → 4.0.0-beta.11

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 (67) hide show
  1. package/dist/components/accordion/AccordionTrigger.js +1 -1
  2. package/dist/components/accordion/AccordionTrigger.js.map +1 -1
  3. package/dist/components/action-icon/ActionIcon.js +1 -1
  4. package/dist/components/action-icon/ActionIcon.js.map +1 -1
  5. package/dist/components/calendar/Calendar.js +1 -1
  6. package/dist/components/calendar/Calendar.js.map +1 -1
  7. package/dist/components/chip/Chip.js +1 -1
  8. package/dist/components/chip/Chip.js.map +1 -1
  9. package/dist/components/data-table/DataTable.d.ts +1 -1
  10. package/dist/components/data-table/DataTableTable.js +1 -1
  11. package/dist/components/data-table/DataTableTable.js.map +1 -1
  12. package/dist/components/dialog/DialogContent.js +1 -1
  13. package/dist/components/dialog/DialogContent.js.map +1 -1
  14. package/dist/components/empty-state/EmptyStateBody.js +1 -1
  15. package/dist/components/empty-state/EmptyStateBody.js.map +1 -1
  16. package/dist/components/empty-state/EmptyStateTitle.js +1 -1
  17. package/dist/components/empty-state/EmptyStateTitle.js.map +1 -1
  18. package/dist/components/index.d.ts +1 -0
  19. package/dist/components/input/Input.js +1 -1
  20. package/dist/components/input/Input.js.map +1 -1
  21. package/dist/components/keyboard-shortcut/KeyboardShortcut.d.ts +760 -0
  22. package/dist/components/keyboard-shortcut/KeyboardShortcut.js +2 -0
  23. package/dist/components/keyboard-shortcut/KeyboardShortcut.js.map +1 -0
  24. package/dist/components/keyboard-shortcut/index.d.ts +1124 -0
  25. package/dist/components/keyboard-shortcut/index.js +2 -0
  26. package/dist/components/keyboard-shortcut/index.js.map +1 -0
  27. package/dist/components/navigation/NavigationMenu.styles.d.ts +1 -1
  28. package/dist/components/navigation/NavigationMenu.styles.js +1 -1
  29. package/dist/components/navigation/NavigationMenu.styles.js.map +1 -1
  30. package/dist/components/navigation-menu-vertical/NavigationMenuVertical.styles.d.ts +2 -2
  31. package/dist/components/navigation-menu-vertical/NavigationMenuVertical.styles.js +1 -1
  32. package/dist/components/navigation-menu-vertical/NavigationMenuVertical.styles.js.map +1 -1
  33. package/dist/components/navigation-menu-vertical/NavigationMenuVerticalText.js +1 -1
  34. package/dist/components/navigation-menu-vertical/NavigationMenuVerticalText.js.map +1 -1
  35. package/dist/components/pagination/PaginationPopover.js +1 -1
  36. package/dist/components/pagination/PaginationPopover.js.map +1 -1
  37. package/dist/components/radio-card/RadioCardGroup.js.map +1 -1
  38. package/dist/components/search-input/SearchInput.js +1 -1
  39. package/dist/components/search-input/SearchInput.js.map +1 -1
  40. package/dist/components/section-message/SectionMessageTitle.js.map +1 -1
  41. package/dist/components/slider/Slider.js +1 -1
  42. package/dist/components/slider/Slider.js.map +1 -1
  43. package/dist/components/table/Table.d.ts +3 -5
  44. package/dist/components/table/Table.js +1 -1
  45. package/dist/components/table/Table.js.map +1 -1
  46. package/dist/components/table/TableCell.js +1 -1
  47. package/dist/components/table/TableCell.js.map +1 -1
  48. package/dist/components/table/TableStickyColumnsContainer.d.ts +1 -3
  49. package/dist/components/table/TableStickyColumnsContainer.js +1 -1
  50. package/dist/components/table/TableStickyColumnsContainer.js.map +1 -1
  51. package/dist/components/table/useStickyColumnsCss.d.ts +1 -3
  52. package/dist/components/table/useStickyColumnsCss.js +1 -1
  53. package/dist/components/table/useStickyColumnsCss.js.map +1 -1
  54. package/dist/components/tabs/TabsTrigger.js +1 -1
  55. package/dist/components/tabs/TabsTrigger.js.map +1 -1
  56. package/dist/components/text/Text.js +1 -1
  57. package/dist/components/text/Text.js.map +1 -1
  58. package/dist/components/top-bar/TopBarBrand.js.map +1 -1
  59. package/dist/docgen.json +1 -1
  60. package/dist/experiments/color-scheme/stitches.colorscheme.config.js.map +1 -1
  61. package/dist/index.cjs.js +1 -1
  62. package/dist/index.cjs.js.map +1 -1
  63. package/dist/index.js +1 -1
  64. package/dist/utilities/style/focus-visible-style-block.d.ts +2 -1
  65. package/dist/utilities/style/focus-visible-style-block.js +1 -1
  66. package/dist/utilities/style/focus-visible-style-block.js.map +1 -1
  67. package/package.json +5 -5
@@ -0,0 +1,1124 @@
1
+ /// <reference types="react" />
2
+ export declare const KeyboardShortcut: import("react").ForwardRefExoticComponent<Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
3
+ ref?: ((instance: HTMLDivElement | null) => void) | import("react").RefObject<HTMLDivElement> | null | undefined;
4
+ }, "css"> & import("@atom-learning/stitches-react/types/styled-component").TransformProps<{}, {
5
+ sm: string;
6
+ md: string;
7
+ lg: string;
8
+ xl: string;
9
+ reducedMotion: string;
10
+ allowMotion: string;
11
+ hover: string;
12
+ }> & {
13
+ css?: import("@atom-learning/stitches-react/types/css-util").CSS<{
14
+ sm: string;
15
+ md: string;
16
+ lg: string;
17
+ xl: string;
18
+ reducedMotion: string;
19
+ allowMotion: string;
20
+ hover: string;
21
+ }, {
22
+ colors: {
23
+ textBold: any;
24
+ textRegular: any;
25
+ textSubtle: any;
26
+ textMinimal: any;
27
+ background: any;
28
+ backgroundAccent: any;
29
+ grey100: any;
30
+ grey200: any;
31
+ grey300: any;
32
+ grey400: any;
33
+ grey500: any;
34
+ grey600: any;
35
+ grey700: any;
36
+ grey800: any;
37
+ grey900: any;
38
+ grey1000: any;
39
+ grey1100: any;
40
+ grey1200: any;
41
+ blue100: any;
42
+ blue200: any;
43
+ blue300: any;
44
+ blue400: any;
45
+ blue500: any;
46
+ blue600: any;
47
+ blue700: any;
48
+ blue800: any;
49
+ blue900: any;
50
+ blue1000: any;
51
+ blue1100: any;
52
+ blue1200: any;
53
+ pink100: any;
54
+ pink200: any;
55
+ pink300: any;
56
+ pink400: any;
57
+ pink500: any;
58
+ pink600: any;
59
+ pink700: any;
60
+ pink800: any;
61
+ pink900: any;
62
+ pink1000: any;
63
+ pink1100: any;
64
+ pink1200: any;
65
+ purple100: any;
66
+ purple200: any;
67
+ purple300: any;
68
+ purple400: any;
69
+ purple500: any;
70
+ purple600: any;
71
+ purple700: any;
72
+ purple800: any;
73
+ purple900: any;
74
+ purple1000: any;
75
+ purple1100: any;
76
+ purple1200: any;
77
+ cyan100: any;
78
+ cyan200: any;
79
+ cyan300: any;
80
+ cyan400: any;
81
+ cyan500: any;
82
+ cyan600: any;
83
+ cyan700: any;
84
+ cyan800: any;
85
+ cyan900: any;
86
+ cyan1000: any;
87
+ cyan1100: any;
88
+ cyan1200: any;
89
+ green100: any;
90
+ green200: any;
91
+ green300: any;
92
+ green400: any;
93
+ green500: any;
94
+ green600: any;
95
+ green700: any;
96
+ green800: any;
97
+ green900: any;
98
+ green1000: any;
99
+ green1100: any;
100
+ green1200: any;
101
+ magenta100: any;
102
+ magenta200: any;
103
+ magenta300: any;
104
+ magenta400: any;
105
+ magenta500: any;
106
+ magenta600: any;
107
+ magenta700: any;
108
+ magenta800: any;
109
+ magenta900: any;
110
+ magenta1000: any;
111
+ magenta1100: any;
112
+ magenta1200: any;
113
+ red100: any;
114
+ red200: any;
115
+ red300: any;
116
+ red400: any;
117
+ red500: any;
118
+ red600: any;
119
+ red700: any;
120
+ red800: any;
121
+ red900: any;
122
+ red1000: any;
123
+ red1100: any;
124
+ red1200: any;
125
+ teal100: any;
126
+ teal200: any;
127
+ teal300: any;
128
+ teal400: any;
129
+ teal500: any;
130
+ teal600: any;
131
+ teal700: any;
132
+ teal800: any;
133
+ teal900: any;
134
+ teal1000: any;
135
+ teal1100: any;
136
+ teal1200: any;
137
+ orange100: any;
138
+ orange200: any;
139
+ orange300: any;
140
+ orange400: any;
141
+ orange500: any;
142
+ orange600: any;
143
+ orange700: any;
144
+ orange800: any;
145
+ orange900: any;
146
+ orange1000: any;
147
+ orange1100: any;
148
+ orange1200: any;
149
+ yellow100: any;
150
+ yellow200: any;
151
+ yellow300: any;
152
+ yellow400: any;
153
+ yellow500: any;
154
+ yellow600: any;
155
+ yellow700: any;
156
+ yellow800: any;
157
+ yellow900: any;
158
+ yellow1000: any;
159
+ yellow1100: any;
160
+ yellow1200: any;
161
+ lime100: any;
162
+ lime200: any;
163
+ lime300: any;
164
+ lime400: any;
165
+ lime500: any;
166
+ lime600: any;
167
+ lime700: any;
168
+ lime800: any;
169
+ lime900: any;
170
+ lime1000: any;
171
+ lime1100: any;
172
+ lime1200: any;
173
+ lapis100: any;
174
+ lapis200: any;
175
+ lapis300: any;
176
+ lapis400: any;
177
+ lapis500: any;
178
+ lapis600: any;
179
+ lapis700: any;
180
+ lapis800: any;
181
+ lapis900: any;
182
+ lapis1000: any;
183
+ lapis1100: any;
184
+ lapis1200: any;
185
+ maroon100: any;
186
+ maroon200: any;
187
+ maroon300: any;
188
+ maroon400: any;
189
+ maroon500: any;
190
+ maroon600: any;
191
+ maroon700: any;
192
+ maroon800: any;
193
+ maroon900: any;
194
+ maroon1000: any;
195
+ maroon1100: any;
196
+ maroon1200: any;
197
+ marsh100: any;
198
+ marsh200: any;
199
+ marsh300: any;
200
+ marsh400: any;
201
+ marsh500: any;
202
+ marsh600: any;
203
+ marsh700: any;
204
+ marsh800: any;
205
+ marsh900: any;
206
+ marsh1000: any;
207
+ marsh1100: any;
208
+ marsh1200: any;
209
+ alpha100: any;
210
+ alpha150: any;
211
+ alpha200: any;
212
+ alpha250: any;
213
+ alpha600: any;
214
+ infoLight: any;
215
+ info: any;
216
+ infoMid: any;
217
+ infoDark: any;
218
+ successLight: any;
219
+ success: any;
220
+ successMid: any;
221
+ successDark: any;
222
+ dangerLight: any;
223
+ danger: any;
224
+ dangerMid: any;
225
+ dangerDark: any;
226
+ warningLight: any;
227
+ warning: any;
228
+ warningMid: any;
229
+ warningDark: any;
230
+ warningText: any;
231
+ subjectEnglish: any;
232
+ subjectMaths: any;
233
+ subjectScience: any;
234
+ subjectVerbalReasoning: any;
235
+ subjectNonVerbalReasoning: any;
236
+ subjectCreativeWriting: any;
237
+ subjectExamSkills: any;
238
+ glBlueLight: any;
239
+ glBluePrimary: any;
240
+ glBlueDark: any;
241
+ primary100: any;
242
+ primary200: any;
243
+ primary300: any;
244
+ primary400: any;
245
+ primary500: any;
246
+ primary600: any;
247
+ primary700: any;
248
+ primary800: any;
249
+ primary900: any;
250
+ primary1000: any;
251
+ primary1100: any;
252
+ primary1200: any;
253
+ };
254
+ space: {
255
+ "0": any;
256
+ "1": any;
257
+ "2": any;
258
+ "3": any;
259
+ "4": any;
260
+ "5": any;
261
+ "6": any;
262
+ "7": any;
263
+ "8": any;
264
+ "9": any;
265
+ "24": any;
266
+ };
267
+ fontSizes: {
268
+ xs: any;
269
+ sm: any;
270
+ md: any;
271
+ lg: any;
272
+ xl: any;
273
+ "2xl": any;
274
+ "3xl": any;
275
+ "4xl": any;
276
+ };
277
+ fonts: {
278
+ sans: any;
279
+ mono: any;
280
+ display: any;
281
+ body: any;
282
+ };
283
+ sizes: {
284
+ "0": any;
285
+ "1": any;
286
+ "2": any;
287
+ "3": any;
288
+ "4": any;
289
+ "5": any;
290
+ "6": any;
291
+ "7": any;
292
+ "8": any;
293
+ };
294
+ radii: {
295
+ "0": any;
296
+ "1": any;
297
+ "2": any;
298
+ "3": any;
299
+ round: any;
300
+ };
301
+ shadows: {
302
+ "0": any;
303
+ "1": any;
304
+ "2": any;
305
+ "3": any;
306
+ };
307
+ ratios: {
308
+ "16-9": any;
309
+ "3-2": any;
310
+ "4-3": any;
311
+ "1-1": any;
312
+ "3-4": any;
313
+ };
314
+ }, import("@atom-learning/stitches-react/types/config").DefaultThemeMap, {
315
+ bg: (value: import("@atom-learning/stitches-react/types/css-util").WithPropertyValue<"background">) => {
316
+ background: import("@atom-learning/stitches-react/types/css-util").WithPropertyValue<"background">;
317
+ };
318
+ size: (value: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"size">) => {
319
+ height: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"size">;
320
+ width: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"size">;
321
+ };
322
+ p: (value: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">) => {
323
+ padding: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">;
324
+ };
325
+ pt: (value: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">) => {
326
+ paddingTop: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">;
327
+ };
328
+ pr: (value: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">) => {
329
+ paddingRight: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">;
330
+ };
331
+ pb: (value: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">) => {
332
+ paddingBottom: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">;
333
+ };
334
+ pl: (value: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">) => {
335
+ paddingLeft: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">;
336
+ };
337
+ px: (value: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">) => {
338
+ paddingLeft: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">;
339
+ paddingRight: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">;
340
+ };
341
+ py: (value: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">) => {
342
+ paddingTop: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">;
343
+ paddingBottom: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">;
344
+ };
345
+ m: (value: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">) => {
346
+ margin: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">;
347
+ };
348
+ mt: (value: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">) => {
349
+ marginTop: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">;
350
+ };
351
+ mr: (value: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">) => {
352
+ marginRight: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">;
353
+ };
354
+ mb: (value: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">) => {
355
+ marginBottom: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">;
356
+ };
357
+ ml: (value: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">) => {
358
+ marginLeft: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">;
359
+ };
360
+ mx: (value: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">) => {
361
+ marginLeft: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">;
362
+ marginRight: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">;
363
+ };
364
+ my: (value: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">) => {
365
+ marginTop: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">;
366
+ marginBottom: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">;
367
+ };
368
+ }> | undefined;
369
+ } & {
370
+ asChild?: boolean | undefined;
371
+ config: {
372
+ shortcut: Partial<import("react").SyntheticEvent<KeyboardEvent, Event>>;
373
+ action: ({ event, shortcut }: {
374
+ event: import("react").KeyboardEvent<HTMLDivElement> | KeyboardEvent;
375
+ shortcut: Partial<import("react").SyntheticEvent<KeyboardEvent, Event>>;
376
+ }) => void;
377
+ }[];
378
+ targetWindow?: boolean | undefined;
379
+ onKeyDown?: ((e: import("react").KeyboardEvent<HTMLDivElement> | KeyboardEvent) => void) | undefined;
380
+ }> & {
381
+ Indicator: {
382
+ (props: Omit<Omit<Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLParagraphElement>, HTMLParagraphElement>, "ref"> & {
383
+ ref?: ((instance: HTMLParagraphElement | null) => void) | import("react").RefObject<HTMLParagraphElement> | null | undefined;
384
+ }, "size" | "css" | "weight" | "noCapsize" | "family"> & import("@atom-learning/stitches-react/types/styled-component").TransformProps<{
385
+ weight?: "normal" | "bold" | undefined;
386
+ family?: "display" | "mono" | "body" | undefined;
387
+ size?: "sm" | "md" | "lg" | "xl" | "xs" | undefined;
388
+ noCapsize?: boolean | "true" | undefined;
389
+ }, {
390
+ sm: string;
391
+ md: string;
392
+ lg: string;
393
+ xl: string;
394
+ reducedMotion: string;
395
+ allowMotion: string;
396
+ hover: string;
397
+ }> & {
398
+ css?: import("@atom-learning/stitches-react/types/css-util").CSS<{
399
+ sm: string;
400
+ md: string;
401
+ lg: string;
402
+ xl: string;
403
+ reducedMotion: string;
404
+ allowMotion: string;
405
+ hover: string;
406
+ }, {
407
+ colors: {
408
+ textBold: any;
409
+ textRegular: any;
410
+ textSubtle: any;
411
+ textMinimal: any;
412
+ background: any;
413
+ backgroundAccent: any;
414
+ grey100: any;
415
+ grey200: any;
416
+ grey300: any;
417
+ grey400: any;
418
+ grey500: any;
419
+ grey600: any;
420
+ grey700: any;
421
+ grey800: any;
422
+ grey900: any;
423
+ grey1000: any;
424
+ grey1100: any;
425
+ grey1200: any;
426
+ blue100: any;
427
+ blue200: any;
428
+ blue300: any;
429
+ blue400: any;
430
+ blue500: any;
431
+ blue600: any;
432
+ blue700: any;
433
+ blue800: any;
434
+ blue900: any;
435
+ blue1000: any;
436
+ blue1100: any;
437
+ blue1200: any;
438
+ pink100: any;
439
+ pink200: any;
440
+ pink300: any;
441
+ pink400: any;
442
+ pink500: any;
443
+ pink600: any;
444
+ pink700: any;
445
+ pink800: any;
446
+ pink900: any;
447
+ pink1000: any;
448
+ pink1100: any;
449
+ pink1200: any;
450
+ purple100: any;
451
+ purple200: any;
452
+ purple300: any;
453
+ purple400: any;
454
+ purple500: any;
455
+ purple600: any;
456
+ purple700: any;
457
+ purple800: any;
458
+ purple900: any;
459
+ purple1000: any;
460
+ purple1100: any;
461
+ purple1200: any;
462
+ cyan100: any;
463
+ cyan200: any;
464
+ cyan300: any;
465
+ cyan400: any;
466
+ cyan500: any;
467
+ cyan600: any;
468
+ cyan700: any;
469
+ cyan800: any;
470
+ cyan900: any;
471
+ cyan1000: any;
472
+ cyan1100: any;
473
+ cyan1200: any;
474
+ green100: any;
475
+ green200: any;
476
+ green300: any;
477
+ green400: any;
478
+ green500: any;
479
+ green600: any;
480
+ green700: any;
481
+ green800: any;
482
+ green900: any;
483
+ green1000: any;
484
+ green1100: any;
485
+ green1200: any;
486
+ magenta100: any;
487
+ magenta200: any;
488
+ magenta300: any;
489
+ magenta400: any;
490
+ magenta500: any;
491
+ magenta600: any;
492
+ magenta700: any;
493
+ magenta800: any;
494
+ magenta900: any;
495
+ magenta1000: any;
496
+ magenta1100: any;
497
+ magenta1200: any;
498
+ red100: any;
499
+ red200: any;
500
+ red300: any;
501
+ red400: any;
502
+ red500: any;
503
+ red600: any;
504
+ red700: any;
505
+ red800: any;
506
+ red900: any;
507
+ red1000: any;
508
+ red1100: any;
509
+ red1200: any;
510
+ teal100: any;
511
+ teal200: any;
512
+ teal300: any;
513
+ teal400: any;
514
+ teal500: any;
515
+ teal600: any;
516
+ teal700: any;
517
+ teal800: any;
518
+ teal900: any;
519
+ teal1000: any;
520
+ teal1100: any;
521
+ teal1200: any;
522
+ orange100: any;
523
+ orange200: any;
524
+ orange300: any;
525
+ orange400: any;
526
+ orange500: any;
527
+ orange600: any;
528
+ orange700: any;
529
+ orange800: any;
530
+ orange900: any;
531
+ orange1000: any;
532
+ orange1100: any;
533
+ orange1200: any;
534
+ yellow100: any;
535
+ yellow200: any;
536
+ yellow300: any;
537
+ yellow400: any;
538
+ yellow500: any;
539
+ yellow600: any;
540
+ yellow700: any;
541
+ yellow800: any;
542
+ yellow900: any;
543
+ yellow1000: any;
544
+ yellow1100: any;
545
+ yellow1200: any;
546
+ lime100: any;
547
+ lime200: any;
548
+ lime300: any;
549
+ lime400: any;
550
+ lime500: any;
551
+ lime600: any;
552
+ lime700: any;
553
+ lime800: any;
554
+ lime900: any;
555
+ lime1000: any;
556
+ lime1100: any;
557
+ lime1200: any;
558
+ lapis100: any;
559
+ lapis200: any;
560
+ lapis300: any;
561
+ lapis400: any;
562
+ lapis500: any;
563
+ lapis600: any;
564
+ lapis700: any;
565
+ lapis800: any;
566
+ lapis900: any;
567
+ lapis1000: any;
568
+ lapis1100: any;
569
+ lapis1200: any;
570
+ maroon100: any;
571
+ maroon200: any;
572
+ maroon300: any;
573
+ maroon400: any;
574
+ maroon500: any;
575
+ maroon600: any;
576
+ maroon700: any;
577
+ maroon800: any;
578
+ maroon900: any;
579
+ maroon1000: any;
580
+ maroon1100: any;
581
+ maroon1200: any;
582
+ marsh100: any;
583
+ marsh200: any;
584
+ marsh300: any;
585
+ marsh400: any;
586
+ marsh500: any;
587
+ marsh600: any;
588
+ marsh700: any;
589
+ marsh800: any;
590
+ marsh900: any;
591
+ marsh1000: any;
592
+ marsh1100: any;
593
+ marsh1200: any;
594
+ alpha100: any;
595
+ alpha150: any;
596
+ alpha200: any;
597
+ alpha250: any;
598
+ alpha600: any;
599
+ infoLight: any;
600
+ info: any;
601
+ infoMid: any;
602
+ infoDark: any;
603
+ successLight: any;
604
+ success: any;
605
+ successMid: any;
606
+ successDark: any;
607
+ dangerLight: any;
608
+ danger: any;
609
+ dangerMid: any;
610
+ dangerDark: any;
611
+ warningLight: any;
612
+ warning: any;
613
+ warningMid: any;
614
+ warningDark: any;
615
+ warningText: any;
616
+ subjectEnglish: any;
617
+ subjectMaths: any;
618
+ subjectScience: any;
619
+ subjectVerbalReasoning: any;
620
+ subjectNonVerbalReasoning: any;
621
+ subjectCreativeWriting: any;
622
+ subjectExamSkills: any;
623
+ glBlueLight: any;
624
+ glBluePrimary: any;
625
+ glBlueDark: any;
626
+ primary100: any;
627
+ primary200: any;
628
+ primary300: any;
629
+ primary400: any;
630
+ primary500: any;
631
+ primary600: any;
632
+ primary700: any;
633
+ primary800: any;
634
+ primary900: any;
635
+ primary1000: any;
636
+ primary1100: any;
637
+ primary1200: any;
638
+ };
639
+ space: {
640
+ "0": any;
641
+ "1": any;
642
+ "2": any;
643
+ "3": any;
644
+ "4": any;
645
+ "5": any;
646
+ "6": any;
647
+ "7": any;
648
+ "8": any;
649
+ "9": any;
650
+ "24": any;
651
+ };
652
+ fontSizes: {
653
+ xs: any;
654
+ sm: any;
655
+ md: any;
656
+ lg: any;
657
+ xl: any;
658
+ "2xl": any;
659
+ "3xl": any;
660
+ "4xl": any;
661
+ };
662
+ fonts: {
663
+ sans: any;
664
+ mono: any;
665
+ display: any;
666
+ body: any;
667
+ };
668
+ sizes: {
669
+ "0": any;
670
+ "1": any;
671
+ "2": any;
672
+ "3": any;
673
+ "4": any;
674
+ "5": any;
675
+ "6": any;
676
+ "7": any;
677
+ "8": any;
678
+ };
679
+ radii: {
680
+ "0": any;
681
+ "1": any;
682
+ "2": any;
683
+ "3": any;
684
+ round: any;
685
+ };
686
+ shadows: {
687
+ "0": any;
688
+ "1": any;
689
+ "2": any;
690
+ "3": any;
691
+ };
692
+ ratios: {
693
+ "16-9": any;
694
+ "3-2": any;
695
+ "4-3": any;
696
+ "1-1": any;
697
+ "3-4": any;
698
+ };
699
+ }, import("@atom-learning/stitches-react/types/config").DefaultThemeMap, {
700
+ bg: (value: import("@atom-learning/stitches-react/types/css-util").WithPropertyValue<"background">) => {
701
+ background: import("@atom-learning/stitches-react/types/css-util").WithPropertyValue<"background">;
702
+ };
703
+ size: (value: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"size">) => {
704
+ height: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"size">;
705
+ width: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"size">;
706
+ };
707
+ p: (value: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">) => {
708
+ padding: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">;
709
+ };
710
+ pt: (value: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">) => {
711
+ paddingTop: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">;
712
+ };
713
+ pr: (value: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">) => {
714
+ paddingRight: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">;
715
+ };
716
+ pb: (value: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">) => {
717
+ paddingBottom: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">;
718
+ };
719
+ pl: (value: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">) => {
720
+ paddingLeft: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">;
721
+ };
722
+ px: (value: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">) => {
723
+ paddingLeft: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">;
724
+ paddingRight: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">;
725
+ };
726
+ py: (value: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">) => {
727
+ paddingTop: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">;
728
+ paddingBottom: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">;
729
+ };
730
+ m: (value: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">) => {
731
+ margin: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">;
732
+ };
733
+ mt: (value: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">) => {
734
+ marginTop: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">;
735
+ };
736
+ mr: (value: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">) => {
737
+ marginRight: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">;
738
+ };
739
+ mb: (value: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">) => {
740
+ marginBottom: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">;
741
+ };
742
+ ml: (value: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">) => {
743
+ marginLeft: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">;
744
+ };
745
+ mx: (value: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">) => {
746
+ marginLeft: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">;
747
+ marginRight: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">;
748
+ };
749
+ my: (value: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">) => {
750
+ marginTop: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">;
751
+ marginBottom: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">;
752
+ };
753
+ }> | undefined;
754
+ }, "as"> & {
755
+ as?: import("react").ElementType<any> | import("react").ComponentType<{}> | undefined;
756
+ }, "css"> & import("@atom-learning/stitches-react/types/styled-component").TransformProps<{}, {
757
+ sm: string;
758
+ md: string;
759
+ lg: string;
760
+ xl: string;
761
+ reducedMotion: string;
762
+ allowMotion: string;
763
+ hover: string;
764
+ }> & {
765
+ css?: import("@atom-learning/stitches-react/types/css-util").CSS<{
766
+ sm: string;
767
+ md: string;
768
+ lg: string;
769
+ xl: string;
770
+ reducedMotion: string;
771
+ allowMotion: string;
772
+ hover: string;
773
+ }, {
774
+ colors: {
775
+ textBold: any;
776
+ textRegular: any;
777
+ textSubtle: any;
778
+ textMinimal: any;
779
+ background: any;
780
+ backgroundAccent: any;
781
+ grey100: any;
782
+ grey200: any;
783
+ grey300: any;
784
+ grey400: any;
785
+ grey500: any;
786
+ grey600: any;
787
+ grey700: any;
788
+ grey800: any;
789
+ grey900: any;
790
+ grey1000: any;
791
+ grey1100: any;
792
+ grey1200: any;
793
+ blue100: any;
794
+ blue200: any;
795
+ blue300: any;
796
+ blue400: any;
797
+ blue500: any;
798
+ blue600: any;
799
+ blue700: any;
800
+ blue800: any;
801
+ blue900: any;
802
+ blue1000: any;
803
+ blue1100: any;
804
+ blue1200: any;
805
+ pink100: any;
806
+ pink200: any;
807
+ pink300: any;
808
+ pink400: any;
809
+ pink500: any;
810
+ pink600: any;
811
+ pink700: any;
812
+ pink800: any;
813
+ pink900: any;
814
+ pink1000: any;
815
+ pink1100: any;
816
+ pink1200: any;
817
+ purple100: any;
818
+ purple200: any;
819
+ purple300: any;
820
+ purple400: any;
821
+ purple500: any;
822
+ purple600: any;
823
+ purple700: any;
824
+ purple800: any;
825
+ purple900: any;
826
+ purple1000: any;
827
+ purple1100: any;
828
+ purple1200: any;
829
+ cyan100: any;
830
+ cyan200: any;
831
+ cyan300: any;
832
+ cyan400: any;
833
+ cyan500: any;
834
+ cyan600: any;
835
+ cyan700: any;
836
+ cyan800: any;
837
+ cyan900: any;
838
+ cyan1000: any;
839
+ cyan1100: any;
840
+ cyan1200: any;
841
+ green100: any;
842
+ green200: any;
843
+ green300: any;
844
+ green400: any;
845
+ green500: any;
846
+ green600: any;
847
+ green700: any;
848
+ green800: any;
849
+ green900: any;
850
+ green1000: any;
851
+ green1100: any;
852
+ green1200: any;
853
+ magenta100: any;
854
+ magenta200: any;
855
+ magenta300: any;
856
+ magenta400: any;
857
+ magenta500: any;
858
+ magenta600: any;
859
+ magenta700: any;
860
+ magenta800: any;
861
+ magenta900: any;
862
+ magenta1000: any;
863
+ magenta1100: any;
864
+ magenta1200: any;
865
+ red100: any;
866
+ red200: any;
867
+ red300: any;
868
+ red400: any;
869
+ red500: any;
870
+ red600: any;
871
+ red700: any;
872
+ red800: any;
873
+ red900: any;
874
+ red1000: any;
875
+ red1100: any;
876
+ red1200: any;
877
+ teal100: any;
878
+ teal200: any;
879
+ teal300: any;
880
+ teal400: any;
881
+ teal500: any;
882
+ teal600: any;
883
+ teal700: any;
884
+ teal800: any;
885
+ teal900: any;
886
+ teal1000: any;
887
+ teal1100: any;
888
+ teal1200: any;
889
+ orange100: any;
890
+ orange200: any;
891
+ orange300: any;
892
+ orange400: any;
893
+ orange500: any;
894
+ orange600: any;
895
+ orange700: any;
896
+ orange800: any;
897
+ orange900: any;
898
+ orange1000: any;
899
+ orange1100: any;
900
+ orange1200: any;
901
+ yellow100: any;
902
+ yellow200: any;
903
+ yellow300: any;
904
+ yellow400: any;
905
+ yellow500: any;
906
+ yellow600: any;
907
+ yellow700: any;
908
+ yellow800: any;
909
+ yellow900: any;
910
+ yellow1000: any;
911
+ yellow1100: any;
912
+ yellow1200: any;
913
+ lime100: any;
914
+ lime200: any;
915
+ lime300: any;
916
+ lime400: any;
917
+ lime500: any;
918
+ lime600: any;
919
+ lime700: any;
920
+ lime800: any;
921
+ lime900: any;
922
+ lime1000: any;
923
+ lime1100: any;
924
+ lime1200: any;
925
+ lapis100: any;
926
+ lapis200: any;
927
+ lapis300: any;
928
+ lapis400: any;
929
+ lapis500: any;
930
+ lapis600: any;
931
+ lapis700: any;
932
+ lapis800: any;
933
+ lapis900: any;
934
+ lapis1000: any;
935
+ lapis1100: any;
936
+ lapis1200: any;
937
+ maroon100: any;
938
+ maroon200: any;
939
+ maroon300: any;
940
+ maroon400: any;
941
+ maroon500: any;
942
+ maroon600: any;
943
+ maroon700: any;
944
+ maroon800: any;
945
+ maroon900: any;
946
+ maroon1000: any;
947
+ maroon1100: any;
948
+ maroon1200: any;
949
+ marsh100: any;
950
+ marsh200: any;
951
+ marsh300: any;
952
+ marsh400: any;
953
+ marsh500: any;
954
+ marsh600: any;
955
+ marsh700: any;
956
+ marsh800: any;
957
+ marsh900: any;
958
+ marsh1000: any;
959
+ marsh1100: any;
960
+ marsh1200: any;
961
+ alpha100: any;
962
+ alpha150: any;
963
+ alpha200: any;
964
+ alpha250: any;
965
+ alpha600: any;
966
+ infoLight: any;
967
+ info: any;
968
+ infoMid: any;
969
+ infoDark: any;
970
+ successLight: any;
971
+ success: any;
972
+ successMid: any;
973
+ successDark: any;
974
+ dangerLight: any;
975
+ danger: any;
976
+ dangerMid: any;
977
+ dangerDark: any;
978
+ warningLight: any;
979
+ warning: any;
980
+ warningMid: any;
981
+ warningDark: any;
982
+ warningText: any;
983
+ subjectEnglish: any;
984
+ subjectMaths: any;
985
+ subjectScience: any;
986
+ subjectVerbalReasoning: any;
987
+ subjectNonVerbalReasoning: any;
988
+ subjectCreativeWriting: any;
989
+ subjectExamSkills: any;
990
+ glBlueLight: any;
991
+ glBluePrimary: any;
992
+ glBlueDark: any;
993
+ primary100: any;
994
+ primary200: any;
995
+ primary300: any;
996
+ primary400: any;
997
+ primary500: any;
998
+ primary600: any;
999
+ primary700: any;
1000
+ primary800: any;
1001
+ primary900: any;
1002
+ primary1000: any;
1003
+ primary1100: any;
1004
+ primary1200: any;
1005
+ };
1006
+ space: {
1007
+ "0": any;
1008
+ "1": any;
1009
+ "2": any;
1010
+ "3": any;
1011
+ "4": any;
1012
+ "5": any;
1013
+ "6": any;
1014
+ "7": any;
1015
+ "8": any;
1016
+ "9": any;
1017
+ "24": any;
1018
+ };
1019
+ fontSizes: {
1020
+ xs: any;
1021
+ sm: any;
1022
+ md: any;
1023
+ lg: any;
1024
+ xl: any;
1025
+ "2xl": any;
1026
+ "3xl": any;
1027
+ "4xl": any;
1028
+ };
1029
+ fonts: {
1030
+ sans: any;
1031
+ mono: any;
1032
+ display: any;
1033
+ body: any;
1034
+ };
1035
+ sizes: {
1036
+ "0": any;
1037
+ "1": any;
1038
+ "2": any;
1039
+ "3": any;
1040
+ "4": any;
1041
+ "5": any;
1042
+ "6": any;
1043
+ "7": any;
1044
+ "8": any;
1045
+ };
1046
+ radii: {
1047
+ "0": any;
1048
+ "1": any;
1049
+ "2": any;
1050
+ "3": any;
1051
+ round: any;
1052
+ };
1053
+ shadows: {
1054
+ "0": any;
1055
+ "1": any;
1056
+ "2": any;
1057
+ "3": any;
1058
+ };
1059
+ ratios: {
1060
+ "16-9": any;
1061
+ "3-2": any;
1062
+ "4-3": any;
1063
+ "1-1": any;
1064
+ "3-4": any;
1065
+ };
1066
+ }, import("@atom-learning/stitches-react/types/config").DefaultThemeMap, {
1067
+ bg: (value: import("@atom-learning/stitches-react/types/css-util").WithPropertyValue<"background">) => {
1068
+ background: import("@atom-learning/stitches-react/types/css-util").WithPropertyValue<"background">;
1069
+ };
1070
+ size: (value: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"size">) => {
1071
+ height: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"size">;
1072
+ width: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"size">;
1073
+ };
1074
+ p: (value: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">) => {
1075
+ padding: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">;
1076
+ };
1077
+ pt: (value: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">) => {
1078
+ paddingTop: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">;
1079
+ };
1080
+ pr: (value: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">) => {
1081
+ paddingRight: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">;
1082
+ };
1083
+ pb: (value: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">) => {
1084
+ paddingBottom: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">;
1085
+ };
1086
+ pl: (value: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">) => {
1087
+ paddingLeft: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">;
1088
+ };
1089
+ px: (value: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">) => {
1090
+ paddingLeft: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">;
1091
+ paddingRight: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">;
1092
+ };
1093
+ py: (value: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">) => {
1094
+ paddingTop: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">;
1095
+ paddingBottom: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">;
1096
+ };
1097
+ m: (value: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">) => {
1098
+ margin: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">;
1099
+ };
1100
+ mt: (value: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">) => {
1101
+ marginTop: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">;
1102
+ };
1103
+ mr: (value: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">) => {
1104
+ marginRight: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">;
1105
+ };
1106
+ mb: (value: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">) => {
1107
+ marginBottom: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">;
1108
+ };
1109
+ ml: (value: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">) => {
1110
+ marginLeft: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">;
1111
+ };
1112
+ mx: (value: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">) => {
1113
+ marginLeft: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">;
1114
+ marginRight: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">;
1115
+ };
1116
+ my: (value: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">) => {
1117
+ marginTop: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">;
1118
+ marginBottom: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">;
1119
+ };
1120
+ }> | undefined;
1121
+ }): import("react").JSX.Element;
1122
+ displayName: string;
1123
+ };
1124
+ };