@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,760 @@
1
+ import * as React from 'react';
2
+ import { Box } from '../box';
3
+ declare type KeyboardEventWindowOrElement = KeyboardEvent | React.KeyboardEvent<HTMLDivElement>;
4
+ declare type KeyboardShortcutProps = React.ComponentProps<typeof Box> & {
5
+ asChild?: boolean;
6
+ config: {
7
+ shortcut: Partial<React.SyntheticEvent<KeyboardEvent>>;
8
+ action: ({ event, shortcut }: {
9
+ event: KeyboardEvent | React.KeyboardEvent<HTMLDivElement>;
10
+ shortcut: Partial<React.SyntheticEvent<KeyboardEvent>>;
11
+ }) => void;
12
+ }[];
13
+ targetWindow?: boolean;
14
+ onKeyDown?: (e: KeyboardEventWindowOrElement) => void;
15
+ };
16
+ export declare const KeyboardShortcut: React.ForwardRefExoticComponent<KeyboardShortcutProps>;
17
+ declare const StyledKeyboardShortcutIndicator: import("@atom-learning/stitches-react/types/styled-component").StyledComponent<React.ForwardRefExoticComponent<Omit<Omit<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLParagraphElement>, HTMLParagraphElement>, "ref"> & {
18
+ ref?: ((instance: HTMLParagraphElement | null) => void) | React.RefObject<HTMLParagraphElement> | null | undefined;
19
+ }, "size" | "css" | "weight" | "noCapsize" | "family"> & import("@atom-learning/stitches-react/types/styled-component").TransformProps<{
20
+ weight?: "normal" | "bold" | undefined;
21
+ family?: "display" | "mono" | "body" | undefined;
22
+ size?: "sm" | "md" | "lg" | "xl" | "xs" | undefined;
23
+ noCapsize?: boolean | "true" | undefined;
24
+ }, {
25
+ sm: string;
26
+ md: string;
27
+ lg: string;
28
+ xl: string;
29
+ reducedMotion: string;
30
+ allowMotion: string;
31
+ hover: string;
32
+ }> & {
33
+ css?: import("@atom-learning/stitches-react/types/css-util").CSS<{
34
+ sm: string;
35
+ md: string;
36
+ lg: string;
37
+ xl: string;
38
+ reducedMotion: string;
39
+ allowMotion: string;
40
+ hover: string;
41
+ }, {
42
+ colors: {
43
+ textBold: any;
44
+ textRegular: any;
45
+ textSubtle: any;
46
+ textMinimal: any;
47
+ background: any;
48
+ backgroundAccent: any;
49
+ grey100: any;
50
+ grey200: any;
51
+ grey300: any;
52
+ grey400: any;
53
+ grey500: any;
54
+ grey600: any;
55
+ grey700: any;
56
+ grey800: any;
57
+ grey900: any;
58
+ grey1000: any;
59
+ grey1100: any;
60
+ grey1200: any;
61
+ blue100: any;
62
+ blue200: any;
63
+ blue300: any;
64
+ blue400: any;
65
+ blue500: any;
66
+ blue600: any;
67
+ blue700: any;
68
+ blue800: any;
69
+ blue900: any;
70
+ blue1000: any;
71
+ blue1100: any;
72
+ blue1200: any;
73
+ pink100: any;
74
+ pink200: any;
75
+ pink300: any;
76
+ pink400: any;
77
+ pink500: any;
78
+ pink600: any;
79
+ pink700: any;
80
+ pink800: any;
81
+ pink900: any;
82
+ pink1000: any;
83
+ pink1100: any;
84
+ pink1200: any;
85
+ purple100: any;
86
+ purple200: any;
87
+ purple300: any;
88
+ purple400: any;
89
+ purple500: any;
90
+ purple600: any;
91
+ purple700: any;
92
+ purple800: any;
93
+ purple900: any;
94
+ purple1000: any;
95
+ purple1100: any;
96
+ purple1200: any;
97
+ cyan100: any;
98
+ cyan200: any;
99
+ cyan300: any;
100
+ cyan400: any;
101
+ cyan500: any;
102
+ cyan600: any;
103
+ cyan700: any;
104
+ cyan800: any;
105
+ cyan900: any;
106
+ cyan1000: any;
107
+ cyan1100: any;
108
+ cyan1200: any;
109
+ green100: any;
110
+ green200: any;
111
+ green300: any;
112
+ green400: any;
113
+ green500: any;
114
+ green600: any;
115
+ green700: any;
116
+ green800: any;
117
+ green900: any;
118
+ green1000: any;
119
+ green1100: any;
120
+ green1200: any;
121
+ magenta100: any;
122
+ magenta200: any;
123
+ magenta300: any;
124
+ magenta400: any;
125
+ magenta500: any;
126
+ magenta600: any;
127
+ magenta700: any;
128
+ magenta800: any;
129
+ magenta900: any;
130
+ magenta1000: any;
131
+ magenta1100: any;
132
+ magenta1200: any;
133
+ red100: any;
134
+ red200: any;
135
+ red300: any;
136
+ red400: any;
137
+ red500: any;
138
+ red600: any;
139
+ red700: any;
140
+ red800: any;
141
+ red900: any;
142
+ red1000: any;
143
+ red1100: any;
144
+ red1200: any;
145
+ teal100: any;
146
+ teal200: any;
147
+ teal300: any;
148
+ teal400: any;
149
+ teal500: any;
150
+ teal600: any;
151
+ teal700: any;
152
+ teal800: any;
153
+ teal900: any;
154
+ teal1000: any;
155
+ teal1100: any;
156
+ teal1200: any;
157
+ orange100: any;
158
+ orange200: any;
159
+ orange300: any;
160
+ orange400: any;
161
+ orange500: any;
162
+ orange600: any;
163
+ orange700: any;
164
+ orange800: any;
165
+ orange900: any;
166
+ orange1000: any;
167
+ orange1100: any;
168
+ orange1200: any;
169
+ yellow100: any;
170
+ yellow200: any;
171
+ yellow300: any;
172
+ yellow400: any;
173
+ yellow500: any;
174
+ yellow600: any;
175
+ yellow700: any;
176
+ yellow800: any;
177
+ yellow900: any;
178
+ yellow1000: any;
179
+ yellow1100: any;
180
+ yellow1200: any;
181
+ lime100: any;
182
+ lime200: any;
183
+ lime300: any;
184
+ lime400: any;
185
+ lime500: any;
186
+ lime600: any;
187
+ lime700: any;
188
+ lime800: any;
189
+ lime900: any;
190
+ lime1000: any;
191
+ lime1100: any;
192
+ lime1200: any;
193
+ lapis100: any;
194
+ lapis200: any;
195
+ lapis300: any;
196
+ lapis400: any;
197
+ lapis500: any;
198
+ lapis600: any;
199
+ lapis700: any;
200
+ lapis800: any;
201
+ lapis900: any;
202
+ lapis1000: any;
203
+ lapis1100: any;
204
+ lapis1200: any;
205
+ maroon100: any;
206
+ maroon200: any;
207
+ maroon300: any;
208
+ maroon400: any;
209
+ maroon500: any;
210
+ maroon600: any;
211
+ maroon700: any;
212
+ maroon800: any;
213
+ maroon900: any;
214
+ maroon1000: any;
215
+ maroon1100: any;
216
+ maroon1200: any;
217
+ marsh100: any;
218
+ marsh200: any;
219
+ marsh300: any;
220
+ marsh400: any;
221
+ marsh500: any;
222
+ marsh600: any;
223
+ marsh700: any;
224
+ marsh800: any;
225
+ marsh900: any;
226
+ marsh1000: any;
227
+ marsh1100: any;
228
+ marsh1200: any;
229
+ alpha100: any;
230
+ alpha150: any;
231
+ alpha200: any;
232
+ alpha250: any;
233
+ alpha600: any;
234
+ infoLight: any;
235
+ info: any;
236
+ infoMid: any;
237
+ infoDark: any;
238
+ successLight: any;
239
+ success: any;
240
+ successMid: any;
241
+ successDark: any;
242
+ dangerLight: any;
243
+ danger: any;
244
+ dangerMid: any;
245
+ dangerDark: any;
246
+ warningLight: any;
247
+ warning: any;
248
+ warningMid: any;
249
+ warningDark: any;
250
+ warningText: any;
251
+ subjectEnglish: any;
252
+ subjectMaths: any;
253
+ subjectScience: any;
254
+ subjectVerbalReasoning: any;
255
+ subjectNonVerbalReasoning: any;
256
+ subjectCreativeWriting: any;
257
+ subjectExamSkills: any;
258
+ glBlueLight: any;
259
+ glBluePrimary: any;
260
+ glBlueDark: any;
261
+ primary100: any;
262
+ primary200: any;
263
+ primary300: any;
264
+ primary400: any;
265
+ primary500: any;
266
+ primary600: any;
267
+ primary700: any;
268
+ primary800: any;
269
+ primary900: any;
270
+ primary1000: any;
271
+ primary1100: any;
272
+ primary1200: any;
273
+ };
274
+ space: {
275
+ "0": any;
276
+ "1": any;
277
+ "2": any;
278
+ "3": any;
279
+ "4": any;
280
+ "5": any;
281
+ "6": any;
282
+ "7": any;
283
+ "8": any;
284
+ "9": any;
285
+ "24": any;
286
+ };
287
+ fontSizes: {
288
+ xs: any;
289
+ sm: any;
290
+ md: any;
291
+ lg: any;
292
+ xl: any;
293
+ "2xl": any;
294
+ "3xl": any;
295
+ "4xl": any;
296
+ };
297
+ fonts: {
298
+ sans: any;
299
+ mono: any;
300
+ display: any;
301
+ body: any;
302
+ };
303
+ sizes: {
304
+ "0": any;
305
+ "1": any;
306
+ "2": any;
307
+ "3": any;
308
+ "4": any;
309
+ "5": any;
310
+ "6": any;
311
+ "7": any;
312
+ "8": any;
313
+ };
314
+ radii: {
315
+ "0": any;
316
+ "1": any;
317
+ "2": any;
318
+ "3": any;
319
+ round: any;
320
+ };
321
+ shadows: {
322
+ "0": any;
323
+ "1": any;
324
+ "2": any;
325
+ "3": any;
326
+ };
327
+ ratios: {
328
+ "16-9": any;
329
+ "3-2": any;
330
+ "4-3": any;
331
+ "1-1": any;
332
+ "3-4": any;
333
+ };
334
+ }, import("@atom-learning/stitches-react/types/config").DefaultThemeMap, {
335
+ bg: (value: import("@atom-learning/stitches-react/types/css-util").WithPropertyValue<"background">) => {
336
+ background: import("@atom-learning/stitches-react/types/css-util").WithPropertyValue<"background">;
337
+ };
338
+ size: (value: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"size">) => {
339
+ height: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"size">;
340
+ width: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"size">;
341
+ };
342
+ p: (value: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">) => {
343
+ padding: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">;
344
+ };
345
+ pt: (value: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">) => {
346
+ paddingTop: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">;
347
+ };
348
+ pr: (value: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">) => {
349
+ paddingRight: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">;
350
+ };
351
+ pb: (value: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">) => {
352
+ paddingBottom: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">;
353
+ };
354
+ pl: (value: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">) => {
355
+ paddingLeft: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">;
356
+ };
357
+ px: (value: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">) => {
358
+ paddingLeft: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">;
359
+ paddingRight: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">;
360
+ };
361
+ py: (value: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">) => {
362
+ paddingTop: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">;
363
+ paddingBottom: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">;
364
+ };
365
+ m: (value: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">) => {
366
+ margin: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">;
367
+ };
368
+ mt: (value: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">) => {
369
+ marginTop: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">;
370
+ };
371
+ mr: (value: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">) => {
372
+ marginRight: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">;
373
+ };
374
+ mb: (value: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">) => {
375
+ marginBottom: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">;
376
+ };
377
+ ml: (value: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">) => {
378
+ marginLeft: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">;
379
+ };
380
+ mx: (value: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">) => {
381
+ marginLeft: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">;
382
+ marginRight: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">;
383
+ };
384
+ my: (value: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">) => {
385
+ marginTop: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">;
386
+ marginBottom: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">;
387
+ };
388
+ }> | undefined;
389
+ }, "as"> & {
390
+ as?: React.ElementType<any> | React.ComponentType<{}> | undefined;
391
+ }>, {}, {
392
+ sm: string;
393
+ md: string;
394
+ lg: string;
395
+ xl: string;
396
+ reducedMotion: string;
397
+ allowMotion: string;
398
+ hover: string;
399
+ }, import("@atom-learning/stitches-react/types/css-util").CSS<{
400
+ sm: string;
401
+ md: string;
402
+ lg: string;
403
+ xl: string;
404
+ reducedMotion: string;
405
+ allowMotion: string;
406
+ hover: string;
407
+ }, {
408
+ colors: {
409
+ textBold: any;
410
+ textRegular: any;
411
+ textSubtle: any;
412
+ textMinimal: any;
413
+ background: any;
414
+ backgroundAccent: any;
415
+ grey100: any;
416
+ grey200: any;
417
+ grey300: any;
418
+ grey400: any;
419
+ grey500: any;
420
+ grey600: any;
421
+ grey700: any;
422
+ grey800: any;
423
+ grey900: any;
424
+ grey1000: any;
425
+ grey1100: any;
426
+ grey1200: any;
427
+ blue100: any;
428
+ blue200: any;
429
+ blue300: any;
430
+ blue400: any;
431
+ blue500: any;
432
+ blue600: any;
433
+ blue700: any;
434
+ blue800: any;
435
+ blue900: any;
436
+ blue1000: any;
437
+ blue1100: any;
438
+ blue1200: any;
439
+ pink100: any;
440
+ pink200: any;
441
+ pink300: any;
442
+ pink400: any;
443
+ pink500: any;
444
+ pink600: any;
445
+ pink700: any;
446
+ pink800: any;
447
+ pink900: any;
448
+ pink1000: any;
449
+ pink1100: any;
450
+ pink1200: any;
451
+ purple100: any;
452
+ purple200: any;
453
+ purple300: any;
454
+ purple400: any;
455
+ purple500: any;
456
+ purple600: any;
457
+ purple700: any;
458
+ purple800: any;
459
+ purple900: any;
460
+ purple1000: any;
461
+ purple1100: any;
462
+ purple1200: any;
463
+ cyan100: any;
464
+ cyan200: any;
465
+ cyan300: any;
466
+ cyan400: any;
467
+ cyan500: any;
468
+ cyan600: any;
469
+ cyan700: any;
470
+ cyan800: any;
471
+ cyan900: any;
472
+ cyan1000: any;
473
+ cyan1100: any;
474
+ cyan1200: any;
475
+ green100: any;
476
+ green200: any;
477
+ green300: any;
478
+ green400: any;
479
+ green500: any;
480
+ green600: any;
481
+ green700: any;
482
+ green800: any;
483
+ green900: any;
484
+ green1000: any;
485
+ green1100: any;
486
+ green1200: any;
487
+ magenta100: any;
488
+ magenta200: any;
489
+ magenta300: any;
490
+ magenta400: any;
491
+ magenta500: any;
492
+ magenta600: any;
493
+ magenta700: any;
494
+ magenta800: any;
495
+ magenta900: any;
496
+ magenta1000: any;
497
+ magenta1100: any;
498
+ magenta1200: any;
499
+ red100: any;
500
+ red200: any;
501
+ red300: any;
502
+ red400: any;
503
+ red500: any;
504
+ red600: any;
505
+ red700: any;
506
+ red800: any;
507
+ red900: any;
508
+ red1000: any;
509
+ red1100: any;
510
+ red1200: any;
511
+ teal100: any;
512
+ teal200: any;
513
+ teal300: any;
514
+ teal400: any;
515
+ teal500: any;
516
+ teal600: any;
517
+ teal700: any;
518
+ teal800: any;
519
+ teal900: any;
520
+ teal1000: any;
521
+ teal1100: any;
522
+ teal1200: any;
523
+ orange100: any;
524
+ orange200: any;
525
+ orange300: any;
526
+ orange400: any;
527
+ orange500: any;
528
+ orange600: any;
529
+ orange700: any;
530
+ orange800: any;
531
+ orange900: any;
532
+ orange1000: any;
533
+ orange1100: any;
534
+ orange1200: any;
535
+ yellow100: any;
536
+ yellow200: any;
537
+ yellow300: any;
538
+ yellow400: any;
539
+ yellow500: any;
540
+ yellow600: any;
541
+ yellow700: any;
542
+ yellow800: any;
543
+ yellow900: any;
544
+ yellow1000: any;
545
+ yellow1100: any;
546
+ yellow1200: any;
547
+ lime100: any;
548
+ lime200: any;
549
+ lime300: any;
550
+ lime400: any;
551
+ lime500: any;
552
+ lime600: any;
553
+ lime700: any;
554
+ lime800: any;
555
+ lime900: any;
556
+ lime1000: any;
557
+ lime1100: any;
558
+ lime1200: any;
559
+ lapis100: any;
560
+ lapis200: any;
561
+ lapis300: any;
562
+ lapis400: any;
563
+ lapis500: any;
564
+ lapis600: any;
565
+ lapis700: any;
566
+ lapis800: any;
567
+ lapis900: any;
568
+ lapis1000: any;
569
+ lapis1100: any;
570
+ lapis1200: any;
571
+ maroon100: any;
572
+ maroon200: any;
573
+ maroon300: any;
574
+ maroon400: any;
575
+ maroon500: any;
576
+ maroon600: any;
577
+ maroon700: any;
578
+ maroon800: any;
579
+ maroon900: any;
580
+ maroon1000: any;
581
+ maroon1100: any;
582
+ maroon1200: any;
583
+ marsh100: any;
584
+ marsh200: any;
585
+ marsh300: any;
586
+ marsh400: any;
587
+ marsh500: any;
588
+ marsh600: any;
589
+ marsh700: any;
590
+ marsh800: any;
591
+ marsh900: any;
592
+ marsh1000: any;
593
+ marsh1100: any;
594
+ marsh1200: any;
595
+ alpha100: any;
596
+ alpha150: any;
597
+ alpha200: any;
598
+ alpha250: any;
599
+ alpha600: any;
600
+ infoLight: any;
601
+ info: any;
602
+ infoMid: any;
603
+ infoDark: any;
604
+ successLight: any;
605
+ success: any;
606
+ successMid: any;
607
+ successDark: any;
608
+ dangerLight: any;
609
+ danger: any;
610
+ dangerMid: any;
611
+ dangerDark: any;
612
+ warningLight: any;
613
+ warning: any;
614
+ warningMid: any;
615
+ warningDark: any;
616
+ warningText: any;
617
+ subjectEnglish: any;
618
+ subjectMaths: any;
619
+ subjectScience: any;
620
+ subjectVerbalReasoning: any;
621
+ subjectNonVerbalReasoning: any;
622
+ subjectCreativeWriting: any;
623
+ subjectExamSkills: any;
624
+ glBlueLight: any;
625
+ glBluePrimary: any;
626
+ glBlueDark: any;
627
+ primary100: any;
628
+ primary200: any;
629
+ primary300: any;
630
+ primary400: any;
631
+ primary500: any;
632
+ primary600: any;
633
+ primary700: any;
634
+ primary800: any;
635
+ primary900: any;
636
+ primary1000: any;
637
+ primary1100: any;
638
+ primary1200: any;
639
+ };
640
+ space: {
641
+ "0": any;
642
+ "1": any;
643
+ "2": any;
644
+ "3": any;
645
+ "4": any;
646
+ "5": any;
647
+ "6": any;
648
+ "7": any;
649
+ "8": any;
650
+ "9": any;
651
+ "24": any;
652
+ };
653
+ fontSizes: {
654
+ xs: any;
655
+ sm: any;
656
+ md: any;
657
+ lg: any;
658
+ xl: any;
659
+ "2xl": any;
660
+ "3xl": any;
661
+ "4xl": any;
662
+ };
663
+ fonts: {
664
+ sans: any;
665
+ mono: any;
666
+ display: any;
667
+ body: any;
668
+ };
669
+ sizes: {
670
+ "0": any;
671
+ "1": any;
672
+ "2": any;
673
+ "3": any;
674
+ "4": any;
675
+ "5": any;
676
+ "6": any;
677
+ "7": any;
678
+ "8": any;
679
+ };
680
+ radii: {
681
+ "0": any;
682
+ "1": any;
683
+ "2": any;
684
+ "3": any;
685
+ round: any;
686
+ };
687
+ shadows: {
688
+ "0": any;
689
+ "1": any;
690
+ "2": any;
691
+ "3": any;
692
+ };
693
+ ratios: {
694
+ "16-9": any;
695
+ "3-2": any;
696
+ "4-3": any;
697
+ "1-1": any;
698
+ "3-4": any;
699
+ };
700
+ }, import("@atom-learning/stitches-react/types/config").DefaultThemeMap, {
701
+ bg: (value: import("@atom-learning/stitches-react/types/css-util").WithPropertyValue<"background">) => {
702
+ background: import("@atom-learning/stitches-react/types/css-util").WithPropertyValue<"background">;
703
+ };
704
+ size: (value: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"size">) => {
705
+ height: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"size">;
706
+ width: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"size">;
707
+ };
708
+ p: (value: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">) => {
709
+ padding: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">;
710
+ };
711
+ pt: (value: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">) => {
712
+ paddingTop: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">;
713
+ };
714
+ pr: (value: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">) => {
715
+ paddingRight: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">;
716
+ };
717
+ pb: (value: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">) => {
718
+ paddingBottom: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">;
719
+ };
720
+ pl: (value: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">) => {
721
+ paddingLeft: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">;
722
+ };
723
+ px: (value: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">) => {
724
+ paddingLeft: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">;
725
+ paddingRight: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">;
726
+ };
727
+ py: (value: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">) => {
728
+ paddingTop: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">;
729
+ paddingBottom: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">;
730
+ };
731
+ m: (value: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">) => {
732
+ margin: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">;
733
+ };
734
+ mt: (value: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">) => {
735
+ marginTop: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">;
736
+ };
737
+ mr: (value: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">) => {
738
+ marginRight: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">;
739
+ };
740
+ mb: (value: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">) => {
741
+ marginBottom: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">;
742
+ };
743
+ ml: (value: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">) => {
744
+ marginLeft: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">;
745
+ };
746
+ mx: (value: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">) => {
747
+ marginLeft: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">;
748
+ marginRight: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">;
749
+ };
750
+ my: (value: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">) => {
751
+ marginTop: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">;
752
+ marginBottom: string | number | import("@atom-learning/stitches-react/types/css-util").WithScaleValue<"space">;
753
+ };
754
+ }>>;
755
+ declare type KeyboardShortcutIndicatorProps = React.ComponentProps<typeof StyledKeyboardShortcutIndicator>;
756
+ export declare const KeyboardShortcutIndicator: {
757
+ (props: KeyboardShortcutIndicatorProps): React.JSX.Element;
758
+ displayName: string;
759
+ };
760
+ export {};