@guardian/stand 0.0.21 → 0.0.23

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 (83) hide show
  1. package/dist/checkbox.cjs +11 -0
  2. package/dist/checkbox.js +3 -0
  3. package/dist/components/checkbox/Checkbox.cjs +54 -0
  4. package/dist/components/checkbox/Checkbox.js +17 -0
  5. package/dist/components/checkbox/CheckboxGroup.cjs +35 -0
  6. package/dist/components/checkbox/CheckboxGroup.js +26 -0
  7. package/dist/components/checkbox/styles.cjs +109 -0
  8. package/dist/components/checkbox/styles.js +101 -0
  9. package/dist/components/form/types.cjs +6 -1
  10. package/dist/components/form/types.js +7 -2
  11. package/dist/components/inline-message/InlineMessage.cjs +9 -1
  12. package/dist/components/inline-message/InlineMessage.js +2 -2
  13. package/dist/components/inline-message/styles.cjs +6 -0
  14. package/dist/components/inline-message/styles.js +6 -1
  15. package/dist/components/radio-group/RadioGroup.cjs +65 -0
  16. package/dist/components/radio-group/RadioGroup.js +31 -0
  17. package/dist/components/radio-group/styles.cjs +78 -0
  18. package/dist/components/radio-group/styles.js +73 -0
  19. package/dist/components/topbar/topBarToolName/TopBarToolName.cjs +21 -2
  20. package/dist/components/topbar/topBarToolName/TopBarToolName.js +11 -3
  21. package/dist/components/topbar/topBarToolName/styles.cjs +39 -0
  22. package/dist/components/topbar/topBarToolName/styles.js +38 -1
  23. package/dist/fonts/MaterialSymbolsOutlined.css +1 -1
  24. package/dist/fonts/MaterialSymbolsRound.css +1 -1
  25. package/dist/fonts/MaterialSymbolsSharp.css +1 -1
  26. package/dist/fonts/material-symbols-types.ts +34 -3
  27. package/dist/index.cjs +4 -0
  28. package/dist/index.js +2 -0
  29. package/dist/radio-group.cjs +10 -0
  30. package/dist/radio-group.js +2 -0
  31. package/dist/styleD/build/css/base/typography.css +1 -1
  32. package/dist/styleD/build/css/component/TopBar.css +22 -0
  33. package/dist/styleD/build/css/component/checkbox.css +57 -0
  34. package/dist/styleD/build/css/component/inlineMessage.css +1 -0
  35. package/dist/styleD/build/css/component/radioGroup.css +52 -0
  36. package/dist/styleD/build/css/semantic/colors.css +3 -1
  37. package/dist/styleD/build/css/semantic/sizing.css +1 -0
  38. package/dist/styleD/build/css/semantic/typography.css +88 -0
  39. package/dist/styleD/build/typescript/base/typography.cjs +3 -3
  40. package/dist/styleD/build/typescript/base/typography.js +3 -3
  41. package/dist/styleD/build/typescript/component/TopBar.cjs +32 -0
  42. package/dist/styleD/build/typescript/component/TopBar.js +32 -0
  43. package/dist/styleD/build/typescript/component/checkbox.cjs +100 -0
  44. package/dist/styleD/build/typescript/component/checkbox.js +98 -0
  45. package/dist/styleD/build/typescript/component/inlineMessage.cjs +2 -1
  46. package/dist/styleD/build/typescript/component/inlineMessage.js +2 -1
  47. package/dist/styleD/build/typescript/component/radioGroup.cjs +85 -0
  48. package/dist/styleD/build/typescript/component/radioGroup.js +83 -0
  49. package/dist/styleD/build/typescript/semantic/colors.cjs +3 -1
  50. package/dist/styleD/build/typescript/semantic/colors.js +3 -1
  51. package/dist/styleD/build/typescript/semantic/sizing.cjs +1 -0
  52. package/dist/styleD/build/typescript/semantic/sizing.js +1 -0
  53. package/dist/styleD/build/typescript/semantic/typography.cjs +120 -0
  54. package/dist/styleD/build/typescript/semantic/typography.js +120 -0
  55. package/dist/types/TopBar.d.ts +1 -0
  56. package/dist/types/checkbox.d.ts +21 -0
  57. package/dist/types/components/checkbox/Checkbox.d.ts +2 -0
  58. package/dist/types/components/checkbox/CheckboxGroup.d.ts +2 -0
  59. package/dist/types/components/checkbox/CheckboxGroupSandbox.d.ts +5 -0
  60. package/dist/types/components/checkbox/CheckboxSandbox.d.ts +5 -0
  61. package/dist/types/components/checkbox/styles.d.ts +10 -0
  62. package/dist/types/components/checkbox/types.d.ts +11 -0
  63. package/dist/types/components/form/types.d.ts +1 -1
  64. package/dist/types/components/inline-message/styles.d.ts +1 -0
  65. package/dist/types/components/radio-group/RadioGroup.d.ts +3 -0
  66. package/dist/types/components/radio-group/sandbox.d.ts +5 -0
  67. package/dist/types/components/radio-group/styles.d.ts +9 -0
  68. package/dist/types/components/radio-group/types.d.ts +10 -0
  69. package/dist/types/components/topbar/topBarToolName/TopBarToolName.d.ts +1 -1
  70. package/dist/types/components/topbar/topBarToolName/styles.d.ts +2 -0
  71. package/dist/types/components/topbar/topBarToolName/types.d.ts +7 -1
  72. package/dist/types/fonts/material-symbols-types.d.ts +33 -2
  73. package/dist/types/index.d.ts +4 -0
  74. package/dist/types/radio-group.d.ts +20 -0
  75. package/dist/types/styleD/build/typescript/base/typography.d.ts +3 -3
  76. package/dist/types/styleD/build/typescript/component/TopBar.d.ts +32 -0
  77. package/dist/types/styleD/build/typescript/component/checkbox.d.ts +100 -0
  78. package/dist/types/styleD/build/typescript/component/inlineMessage.d.ts +1 -0
  79. package/dist/types/styleD/build/typescript/component/radioGroup.d.ts +85 -0
  80. package/dist/types/styleD/build/typescript/semantic/colors.d.ts +2 -0
  81. package/dist/types/styleD/build/typescript/semantic/sizing.d.ts +1 -0
  82. package/dist/types/styleD/build/typescript/semantic/typography.d.ts +120 -0
  83. package/package.json +29 -11
@@ -1,8 +1,9 @@
1
+ import type { LinkProps as RACLinkProps } from 'react-aria-components';
1
2
  import type { DefaultProps } from '../../../util/types';
2
3
  import type { FaviconProps } from '../../favicon/types';
3
4
  import type { IconProps } from '../../icon/types';
4
5
  import type { TopBarToolNameTheme } from './styles';
5
- export interface TopBarToolNameProps extends DefaultProps<TopBarToolNameTheme> {
6
+ export interface TopBarToolNameProps extends DefaultProps<TopBarToolNameTheme, RACLinkProps['className']>, Omit<RACLinkProps, 'children'> {
6
7
  /**
7
8
  * Name of the tool to display
8
9
  */
@@ -19,4 +20,9 @@ export interface TopBarToolNameProps extends DefaultProps<TopBarToolNameTheme> {
19
20
  * Icon that represents the content type (optional)
20
21
  * */
21
22
  subsectionIcon?: IconProps['symbol'] | Exclude<IconProps['children'], string>;
23
+ /**
24
+ * Text to display on hover, labels the link
25
+ * e.g. 'Back to dashboard'
26
+ */
27
+ hoverText?: string;
22
28
  }
@@ -465,6 +465,8 @@ type MaterialSymbols = [
465
465
  'blender',
466
466
  'blind',
467
467
  'blinds',
468
+ 'blinds_2',
469
+ 'blinds_2_closed',
468
470
  'blinds_closed',
469
471
  'block',
470
472
  'blood_pressure',
@@ -485,6 +487,7 @@ type MaterialSymbols = [
485
487
  'body_fat',
486
488
  'body_system',
487
489
  'bolt',
490
+ 'bolt_boost',
488
491
  'bomb',
489
492
  'book',
490
493
  'book_2',
@@ -694,6 +697,7 @@ type MaterialSymbols = [
694
697
  'chat_paste_go',
695
698
  'chat_paste_go_2',
696
699
  'check',
700
+ 'check_alert',
697
701
  'check_box',
698
702
  'check_box_outline_blank',
699
703
  'check_circle',
@@ -777,6 +781,7 @@ type MaterialSymbols = [
777
781
  'code',
778
782
  'code_blocks',
779
783
  'code_off',
784
+ 'code_xml',
780
785
  'coffee',
781
786
  'coffee_maker',
782
787
  'cognition',
@@ -1331,6 +1336,7 @@ type MaterialSymbols = [
1331
1336
  'find_replace',
1332
1337
  'fingerprint',
1333
1338
  'fingerprint_off',
1339
+ 'fire_check',
1334
1340
  'fire_extinguisher',
1335
1341
  'fire_hydrant',
1336
1342
  'fire_truck',
@@ -1341,7 +1347,6 @@ type MaterialSymbols = [
1341
1347
  'fit_page_width',
1342
1348
  'fit_screen',
1343
1349
  'fit_width',
1344
- 'fitbit_raquetball',
1345
1350
  'fitness_center',
1346
1351
  'fitness_tracker',
1347
1352
  'fitness_trackers',
@@ -1413,6 +1418,7 @@ type MaterialSymbols = [
1413
1418
  'footprint',
1414
1419
  'for_you',
1415
1420
  'forest',
1421
+ 'fork_chart',
1416
1422
  'fork_left',
1417
1423
  'fork_right',
1418
1424
  'fork_spoon',
@@ -1456,6 +1462,7 @@ type MaterialSymbols = [
1456
1462
  'format_list_numbered_rtl',
1457
1463
  'format_overline',
1458
1464
  'format_paint',
1465
+ 'format_paint_off',
1459
1466
  'format_paragraph',
1460
1467
  'format_quote',
1461
1468
  'format_quote_off',
@@ -1535,6 +1542,7 @@ type MaterialSymbols = [
1535
1542
  'garage',
1536
1543
  'garage_check',
1537
1544
  'garage_door',
1545
+ 'garage_door_open',
1538
1546
  'garage_home',
1539
1547
  'garage_money',
1540
1548
  'garden_cart',
@@ -1582,12 +1590,14 @@ type MaterialSymbols = [
1582
1590
  'graph_7',
1583
1591
  'graph_8',
1584
1592
  'graphic_eq',
1593
+ 'graphic_eq_off',
1585
1594
  'grass',
1586
1595
  'grid_3x3',
1587
1596
  'grid_3x3_off',
1588
1597
  'grid_4x4',
1589
1598
  'grid_goldenratio',
1590
1599
  'grid_guides',
1600
+ 'grid_layout_side',
1591
1601
  'grid_off',
1592
1602
  'grid_on',
1593
1603
  'grid_view',
@@ -1711,6 +1721,7 @@ type MaterialSymbols = [
1711
1721
  'home_repair_service',
1712
1722
  'home_speaker',
1713
1723
  'home_storage',
1724
+ 'home_storage_gear',
1714
1725
  'home_work',
1715
1726
  'horizontal_align_center',
1716
1727
  'horizontal_align_left',
@@ -1921,12 +1932,14 @@ type MaterialSymbols = [
1921
1932
  'lift_to_talk',
1922
1933
  'light',
1923
1934
  'light_group',
1935
+ 'light_group_2',
1924
1936
  'light_mode',
1925
1937
  'light_off',
1926
1938
  'lightbulb',
1927
1939
  'lightbulb_2',
1928
1940
  'lightbulb_circle',
1929
1941
  'lightning_stand',
1942
+ 'lightstrip',
1930
1943
  'line_axis',
1931
1944
  'line_curve',
1932
1945
  'line_end',
@@ -2239,6 +2252,7 @@ type MaterialSymbols = [
2239
2252
  'moved_location',
2240
2253
  'movie',
2241
2254
  'movie_edit',
2255
+ 'movie_edit_off',
2242
2256
  'movie_info',
2243
2257
  'movie_off',
2244
2258
  'movie_speaker',
@@ -2915,6 +2929,7 @@ type MaterialSymbols = [
2915
2929
  'self_care',
2916
2930
  'self_improvement',
2917
2931
  'sell',
2932
+ 'sell_cloud',
2918
2933
  'send',
2919
2934
  'send_and_archive',
2920
2935
  'send_money',
@@ -2975,6 +2990,8 @@ type MaterialSymbols = [
2975
2990
  'settings_voice',
2976
2991
  'settop_component',
2977
2992
  'severe_cold',
2993
+ 'shades',
2994
+ 'shades_closed',
2978
2995
  'shadow',
2979
2996
  'shadow_add',
2980
2997
  'shadow_minus',
@@ -3035,6 +3052,7 @@ type MaterialSymbols = [
3035
3052
  'signal_cellular_alt',
3036
3053
  'signal_cellular_alt_1_bar',
3037
3054
  'signal_cellular_alt_2_bar',
3055
+ 'signal_cellular_alt_off',
3038
3056
  'signal_cellular_connected_no_internet_0_bar',
3039
3057
  'signal_cellular_connected_no_internet_4_bar',
3040
3058
  'signal_cellular_nodata',
@@ -3086,6 +3104,7 @@ type MaterialSymbols = [
3086
3104
  'snippet_folder',
3087
3105
  'snooze',
3088
3106
  'snowboarding',
3107
+ 'snowflake',
3089
3108
  'snowing',
3090
3109
  'snowing_heavy',
3091
3110
  'snowmobile',
@@ -3103,6 +3122,7 @@ type MaterialSymbols = [
3103
3122
  'sound_detection_glass_break',
3104
3123
  'sound_detection_loud_sound',
3105
3124
  'sound_sampler',
3125
+ 'soundbar',
3106
3126
  'soup_kitchen',
3107
3127
  'source_environment',
3108
3128
  'source_notes',
@@ -3113,11 +3133,13 @@ type MaterialSymbols = [
3113
3133
  'spa',
3114
3134
  'space_bar',
3115
3135
  'space_dashboard',
3136
+ 'space_dashboard_2',
3116
3137
  'spatial_audio',
3117
3138
  'spatial_audio_off',
3118
3139
  'spatial_speaker',
3119
3140
  'spatial_tracking',
3120
3141
  'speaker',
3142
+ 'speaker_2',
3121
3143
  'speaker_group',
3122
3144
  'speaker_notes',
3123
3145
  'speaker_notes_off',
@@ -3182,6 +3204,7 @@ type MaterialSymbols = [
3182
3204
  'sports_volleyball',
3183
3205
  'sprinkler',
3184
3206
  'sprint',
3207
+ 'sql',
3185
3208
  'square',
3186
3209
  'square_circle',
3187
3210
  'square_dot',
@@ -3270,6 +3293,7 @@ type MaterialSymbols = [
3270
3293
  'subtitles_off',
3271
3294
  'subway',
3272
3295
  'subway_walk',
3296
+ 'subwoofer',
3273
3297
  'summarize',
3274
3298
  'sunny',
3275
3299
  'sunny_snowing',
@@ -3294,8 +3318,10 @@ type MaterialSymbols = [
3294
3318
  'swipe_down',
3295
3319
  'swipe_down_alt',
3296
3320
  'swipe_left',
3321
+ 'swipe_left_2',
3297
3322
  'swipe_left_alt',
3298
3323
  'swipe_right',
3324
+ 'swipe_right_2',
3299
3325
  'swipe_right_alt',
3300
3326
  'swipe_up',
3301
3327
  'swipe_up_alt',
@@ -3309,6 +3335,7 @@ type MaterialSymbols = [
3309
3335
  'switch_account',
3310
3336
  'switch_camera',
3311
3337
  'switch_left',
3338
+ 'switch_off',
3312
3339
  'switch_right',
3313
3340
  'switch_video',
3314
3341
  'switches',
@@ -3378,7 +3405,9 @@ type MaterialSymbols = [
3378
3405
  'temple_hindu',
3379
3406
  'tenancy',
3380
3407
  'terminal',
3408
+ 'terminal_2',
3381
3409
  'text_ad',
3410
+ 'text_ad_off',
3382
3411
  'text_compare',
3383
3412
  'text_decrease',
3384
3413
  'text_fields',
@@ -3593,6 +3622,8 @@ type MaterialSymbols = [
3593
3622
  'user_attributes',
3594
3623
  'vaccines',
3595
3624
  'vacuum',
3625
+ 'vacuum_2',
3626
+ 'vacuum_2_on',
3596
3627
  'valve',
3597
3628
  'vape_free',
3598
3629
  'vaping_rooms',
@@ -3714,6 +3745,7 @@ type MaterialSymbols = [
3714
3745
  'water_damage',
3715
3746
  'water_do',
3716
3747
  'water_drop',
3748
+ 'water_drops',
3717
3749
  'water_ec',
3718
3750
  'water_full',
3719
3751
  'water_heater',
@@ -3808,7 +3840,6 @@ type MaterialSymbols = [
3808
3840
  'yard',
3809
3841
  'yoshoku',
3810
3842
  'your_trips',
3811
- 'youtube_activity',
3812
3843
  'youtube_searched_for',
3813
3844
  'zone_person_alert',
3814
3845
  'zone_person_idle',
@@ -26,6 +26,10 @@ export { componentIcon } from './styleD/build/typescript/component/icon';
26
26
  export type { ComponentIcon } from './styleD/build/typescript/component/icon';
27
27
  export { componentFavicon } from './styleD/build/typescript/component/favicon';
28
28
  export type { ComponentFavicon } from './styleD/build/typescript/component/favicon';
29
+ export { componentRadioGroup } from './styleD/build/typescript/component/radioGroup';
30
+ export type { ComponentRadioGroup } from './styleD/build/typescript/component/radioGroup';
31
+ export { componentCheckbox } from './styleD/build/typescript/component/checkbox';
32
+ export type { ComponentCheckbox } from './styleD/build/typescript/component/checkbox';
29
33
  export { componentTextInput } from './styleD/build/typescript/component/textInput';
30
34
  export type { ComponentTextInput } from './styleD/build/typescript/component/textInput';
31
35
  export { componentInlineMessage } from './styleD/build/typescript/component/inlineMessage';
@@ -0,0 +1,20 @@
1
+ /**
2
+ * RadioGroup component entry point
3
+ *
4
+ * Peer dependencies required to use these components:
5
+ * - `@emotion/react`
6
+ * - `react`
7
+ * - `react-dom`
8
+ * - `react-aria-components`
9
+ * - `typescript`
10
+ *
11
+ * See the `peerDependencies` section of package.json for compatible versions.
12
+ *
13
+ * If you only need the built CSS (./component/radioGroup.css),
14
+ * you don't need to install these.
15
+ */
16
+ export { Radio, RadioGroup } from './components/radio-group/RadioGroup';
17
+ export type { RadioProps, RadioGroupProps, } from './components/radio-group/types';
18
+ export type { RadioGroupTheme } from './components/radio-group/styles';
19
+ export { componentRadioGroup } from './styleD/build/typescript/component/radioGroup';
20
+ export type { ComponentRadioGroup } from './styleD/build/typescript/component/radioGroup';
@@ -33,11 +33,11 @@ export declare const baseTypography: {
33
33
  readonly '48-rem': "3rem";
34
34
  };
35
35
  readonly weight: {
36
- readonly 'Guardian Text Egyptian': {
37
- readonly normal: 400;
36
+ readonly 'Guardian Headline': {
38
37
  readonly bold: 700;
39
38
  };
40
- readonly 'Guardian Headline': {
39
+ readonly 'Guardian Text Egyptian': {
40
+ readonly normal: 400;
41
41
  readonly bold: 700;
42
42
  };
43
43
  readonly 'Open Sans': {
@@ -117,6 +117,38 @@ export declare const componentTopBar: {
117
117
  fontWidth: number;
118
118
  };
119
119
  };
120
+ link: {
121
+ textDecoration: string;
122
+ color: string;
123
+ position: string;
124
+ width: string;
125
+ height: string;
126
+ };
127
+ hoverLink: {
128
+ color: string;
129
+ paddingLeft: string;
130
+ paddingRight: string;
131
+ backgroundColor: string;
132
+ opacity: string;
133
+ typography: {
134
+ font: string;
135
+ letterSpacing: string;
136
+ fontWidth: number;
137
+ };
138
+ position: string;
139
+ width: string;
140
+ height: string;
141
+ hover: {
142
+ opacity: string;
143
+ };
144
+ pressed: {
145
+ backgroundColor: string;
146
+ };
147
+ focused: {
148
+ outline: string;
149
+ 'outline-offset': string;
150
+ };
151
+ };
120
152
  };
121
153
  };
122
154
  export type ComponentTopBar = typeof componentTopBar;
@@ -0,0 +1,100 @@
1
+ /**
2
+ * Do not edit directly, this file was auto-generated.
3
+ */
4
+ export declare const componentCheckbox: {
5
+ input: {
6
+ shared: {
7
+ display: string;
8
+ position: string;
9
+ gap: string;
10
+ 'align-items': string;
11
+ color: string;
12
+ cursor: string;
13
+ indicator: {
14
+ display: string;
15
+ 'align-items': string;
16
+ 'justify-content': string;
17
+ 'flex-shrink': number;
18
+ border: string;
19
+ 'border-radius': string;
20
+ transition: string;
21
+ svg: {
22
+ fill: string;
23
+ };
24
+ check: {
25
+ width: string;
26
+ height: string;
27
+ };
28
+ indeterminate: {
29
+ width: string;
30
+ height: string;
31
+ };
32
+ selected: {
33
+ 'background-color': string;
34
+ border: string;
35
+ svg: {
36
+ fill: string;
37
+ };
38
+ };
39
+ ':focus-visible': {
40
+ outline: string;
41
+ 'outline-offset': string;
42
+ };
43
+ error: {
44
+ 'background-color': string;
45
+ border: string;
46
+ };
47
+ };
48
+ label: {
49
+ 'align-self': string;
50
+ };
51
+ disabled: {
52
+ color: string;
53
+ cursor: string;
54
+ indicator: {
55
+ border: string;
56
+ selected: {
57
+ 'background-color': string;
58
+ };
59
+ };
60
+ };
61
+ };
62
+ sm: {
63
+ typography: {
64
+ font: string;
65
+ letterSpacing: string;
66
+ fontWidth: number;
67
+ };
68
+ indicator: {
69
+ size: string;
70
+ };
71
+ };
72
+ md: {
73
+ typography: {
74
+ font: string;
75
+ letterSpacing: string;
76
+ fontWidth: number;
77
+ };
78
+ indicator: {
79
+ size: string;
80
+ };
81
+ };
82
+ };
83
+ group: {
84
+ shared: {
85
+ display: string;
86
+ 'flex-direction': string;
87
+ };
88
+ sm: {
89
+ gap: string;
90
+ 'margin-top': string;
91
+ 'margin-bottom': string;
92
+ };
93
+ md: {
94
+ gap: string;
95
+ 'margin-top': string;
96
+ 'margin-bottom': string;
97
+ };
98
+ };
99
+ };
100
+ export type ComponentCheckbox = typeof componentCheckbox;
@@ -8,6 +8,7 @@ export declare const componentInlineMessage: {
8
8
  'align-items': string;
9
9
  icon: {
10
10
  size: string;
11
+ 'align-self': string;
11
12
  };
12
13
  typography: {
13
14
  font: string;
@@ -0,0 +1,85 @@
1
+ /**
2
+ * Do not edit directly, this file was auto-generated.
3
+ */
4
+ export declare const componentRadioGroup: {
5
+ shared: {
6
+ marginTop: string;
7
+ marginBottom: string;
8
+ display: string;
9
+ flexDirection: string;
10
+ radio: {
11
+ color: string;
12
+ disabled: {
13
+ color: string;
14
+ };
15
+ display: string;
16
+ alignItems: string;
17
+ gap: string;
18
+ };
19
+ indicator: {
20
+ position: string;
21
+ after: {
22
+ position: string;
23
+ borderRadius: string;
24
+ inset: string;
25
+ scale: string;
26
+ };
27
+ borderRadius: string;
28
+ border: string;
29
+ focused: {
30
+ outline: string;
31
+ outlineOffset: string;
32
+ };
33
+ invalid: {
34
+ border: string;
35
+ after: {
36
+ backgroundColor: string;
37
+ };
38
+ };
39
+ disabled: {
40
+ border: string;
41
+ };
42
+ selected: {
43
+ after: {
44
+ backgroundColor: string;
45
+ scale: string;
46
+ };
47
+ border: string;
48
+ invalid: {
49
+ border: string;
50
+ };
51
+ disabled: {
52
+ border: string;
53
+ after: {
54
+ backgroundColor: string;
55
+ };
56
+ };
57
+ };
58
+ };
59
+ };
60
+ sm: {
61
+ gap: string;
62
+ typography: {
63
+ font: string;
64
+ letterSpacing: string;
65
+ fontWidth: number;
66
+ };
67
+ indicator: {
68
+ width: string;
69
+ height: string;
70
+ };
71
+ };
72
+ md: {
73
+ gap: string;
74
+ typography: {
75
+ font: string;
76
+ letterSpacing: string;
77
+ fontWidth: number;
78
+ };
79
+ indicator: {
80
+ width: string;
81
+ height: string;
82
+ };
83
+ };
84
+ };
85
+ export type ComponentRadioGroup = typeof componentRadioGroup;
@@ -11,6 +11,7 @@ export declare const semanticColors: {
11
11
  error: string;
12
12
  warning: string;
13
13
  success: string;
14
+ 'success-inverse': string;
14
15
  information: string;
15
16
  disabled: string;
16
17
  green: string;
@@ -71,6 +72,7 @@ export declare const semanticColors: {
71
72
  'error-weak': string;
72
73
  'error-strong': string;
73
74
  'success-weak': string;
75
+ 'success-strong': string;
74
76
  };
75
77
  };
76
78
  export type SemanticColors = typeof semanticColors;
@@ -3,6 +3,7 @@
3
3
  */
4
4
  export declare const semanticSizing: {
5
5
  height: {
6
+ xxxs: string;
6
7
  xxs: string;
7
8
  xs: string;
8
9
  sm: string;