@cloudscape-design/components-themeable 3.0.1283 → 3.0.1285

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 (31) hide show
  1. package/lib/internal/manifest.json +1 -1
  2. package/lib/internal/scss/box/text.scss +0 -1
  3. package/lib/internal/scss/internal/generated/custom-css-properties/index.scss +1 -1
  4. package/lib/internal/scss/internal/styles/typography/mixins.scss +6 -2
  5. package/lib/internal/scss/link/constants.scss +1 -1
  6. package/lib/internal/template/box/styles.css.js +192 -192
  7. package/lib/internal/template/box/styles.scoped.css +240 -238
  8. package/lib/internal/template/box/styles.selectors.js +192 -192
  9. package/lib/internal/template/internal/base-component/styles.scoped.css +2 -3
  10. package/lib/internal/template/internal/environment.js +2 -2
  11. package/lib/internal/template/internal/environment.json +2 -2
  12. package/lib/internal/template/internal/generated/styles/tokens.d.ts +1 -0
  13. package/lib/internal/template/internal/generated/styles/tokens.js +1 -0
  14. package/lib/internal/template/internal/generated/theming/index.cjs +5 -0
  15. package/lib/internal/template/internal/generated/theming/index.cjs.d.ts +9 -0
  16. package/lib/internal/template/internal/generated/theming/index.d.ts +9 -0
  17. package/lib/internal/template/internal/generated/theming/index.js +5 -0
  18. package/lib/internal/template/link/styles.css.js +21 -21
  19. package/lib/internal/template/link/styles.scoped.css +73 -73
  20. package/lib/internal/template/link/styles.selectors.js +21 -21
  21. package/lib/internal/template/prompt-input/core/caret-controller.d.ts.map +1 -1
  22. package/lib/internal/template/prompt-input/core/caret-controller.js +15 -2
  23. package/lib/internal/template/prompt-input/core/caret-controller.js.map +1 -1
  24. package/lib/internal/template/prompt-input/tokens/use-token-mode.d.ts.map +1 -1
  25. package/lib/internal/template/prompt-input/tokens/use-token-mode.js +4 -1
  26. package/lib/internal/template/prompt-input/tokens/use-token-mode.js.map +1 -1
  27. package/lib/internal/template/test-utils/dom/prompt-input/index.js +1 -1
  28. package/lib/internal/template/test-utils/dom/prompt-input/index.js.map +1 -1
  29. package/lib/internal/template/test-utils/selectors/prompt-input/index.js +1 -1
  30. package/lib/internal/template/test-utils/selectors/prompt-input/index.js.map +1 -1
  31. package/package.json +1 -1
@@ -1,3 +1,3 @@
1
1
  {
2
- "commit": "d634ab4089a8a3ab98d37da33f302d309e4a63cc"
2
+ "commit": "ae2d3449a5fa77cb773182061391878389902001"
3
3
  }
@@ -50,7 +50,6 @@
50
50
  }
51
51
  &.value-large-variant {
52
52
  @include styles.font-display-l;
53
- font-weight: awsui.$font-box-value-large-weight;
54
53
  color: inherit;
55
54
  }
56
55
  &.inline-code-variant {
@@ -1,6 +1,6 @@
1
1
 
2
2
  // Build environment
3
- $awsui-commit-hash: "d634ab40";
3
+ $awsui-commit-hash: "ae2d3449";
4
4
  // Manually managed CSS-variables
5
5
  $maxContentWidth: --awsui-max-content-width-6b9ypa;
6
6
  $minContentWidth: --awsui-min-content-width-6b9ypa;
@@ -97,13 +97,17 @@
97
97
  }
98
98
  }
99
99
 
100
- @mixin font-display-l($family: true) {
100
+ @mixin font-display-l($weight: true, $family: true) {
101
101
  @if $family {
102
102
  font-family: awsui.$font-family-display;
103
103
  }
104
104
  font-size: awsui.$font-size-display-l;
105
105
  line-height: awsui.$line-height-display-l;
106
106
  letter-spacing: awsui.$letter-spacing-display-l;
107
+ @if $weight {
108
+ font-weight: awsui.$font-weight-display-l;
109
+ @include font-smoothing;
110
+ }
107
111
  }
108
112
 
109
113
  @mixin font-inherit {
@@ -163,7 +167,7 @@
163
167
  @include font-heading-xl($weight: false, $family: false);
164
168
  }
165
169
  @if $font-size == display-l {
166
- @include font-display-l($family: false);
170
+ @include font-display-l($weight: false, $family: false);
167
171
  }
168
172
  @if $font-size == inherit {
169
173
  @include font-inherit;
@@ -81,7 +81,7 @@ $link-variants: (
81
81
  'text-color-default': awsui.$color-text-link-default,
82
82
  'text-color-hover': awsui.$color-text-link-hover,
83
83
  'text-color-active': awsui.$color-text-link-hover,
84
- 'font-weight': awsui.$font-box-value-large-weight,
84
+ 'font-weight': awsui.$font-weight-display-l,
85
85
  'decoration-line': underline,
86
86
  'decoration-color': currentColor,
87
87
  'decoration-color-hover': currentColor,
@@ -1,197 +1,197 @@
1
1
 
2
2
  import './styles.scoped.css';
3
3
  export default {
4
- "box": "awsui_box_18wu0_1e6pm_172",
5
- "p-variant": "awsui_p-variant_18wu0_1e6pm_172",
6
- "color-default": "awsui_color-default_18wu0_1e6pm_172",
7
- "b-variant": "awsui_b-variant_18wu0_1e6pm_172",
8
- "strong-variant": "awsui_strong-variant_18wu0_1e6pm_172",
9
- "code-variant": "awsui_code-variant_18wu0_1e6pm_172",
10
- "pre-variant": "awsui_pre-variant_18wu0_1e6pm_172",
11
- "samp-variant": "awsui_samp-variant_18wu0_1e6pm_172",
12
- "h1-variant": "awsui_h1-variant_18wu0_1e6pm_176",
13
- "h2-variant": "awsui_h2-variant_18wu0_1e6pm_176",
14
- "h3-variant": "awsui_h3-variant_18wu0_1e6pm_176",
15
- "h4-variant": "awsui_h4-variant_18wu0_1e6pm_176",
16
- "h5-variant": "awsui_h5-variant_18wu0_1e6pm_176",
17
- "small-variant": "awsui_small-variant_18wu0_1e6pm_180",
18
- "a-variant": "awsui_a-variant_18wu0_1e6pm_184",
19
- "font-size-default": "awsui_font-size-default_18wu0_1e6pm_188",
20
- "font-weight-default": "awsui_font-weight-default_18wu0_1e6pm_229",
21
- "key-label-variant": "awsui_key-label-variant_18wu0_1e6pm_271",
22
- "gen-ai-label-variant": "awsui_gen-ai-label-variant_18wu0_1e6pm_278",
23
- "value-large-variant": "awsui_value-large-variant_18wu0_1e6pm_285",
24
- "inline-code-variant": "awsui_inline-code-variant_18wu0_1e6pm_293",
25
- "font-weight-heavy": "awsui_font-weight-heavy_18wu0_1e6pm_307",
26
- "color-inverted": "awsui_color-inverted_18wu0_1e6pm_312",
27
- "color-text-label": "awsui_color-text-label_18wu0_1e6pm_315",
28
- "color-text-body-secondary": "awsui_color-text-body-secondary_18wu0_1e6pm_318",
29
- "color-text-status-error": "awsui_color-text-status-error_18wu0_1e6pm_321",
30
- "color-text-status-success": "awsui_color-text-status-success_18wu0_1e6pm_324",
31
- "color-text-status-info": "awsui_color-text-status-info_18wu0_1e6pm_327",
32
- "color-text-status-inactive": "awsui_color-text-status-inactive_18wu0_1e6pm_330",
33
- "color-text-status-warning": "awsui_color-text-status-warning_18wu0_1e6pm_333",
34
- "color-inherit": "awsui_color-inherit_18wu0_1e6pm_336",
35
- "font-size-body-s": "awsui_font-size-body-s_18wu0_1e6pm_339",
36
- "font-size-body-m": "awsui_font-size-body-m_18wu0_1e6pm_344",
37
- "font-size-heading-xs": "awsui_font-size-heading-xs_18wu0_1e6pm_348",
38
- "font-size-heading-s": "awsui_font-size-heading-s_18wu0_1e6pm_353",
39
- "font-size-heading-m": "awsui_font-size-heading-m_18wu0_1e6pm_358",
40
- "font-size-heading-l": "awsui_font-size-heading-l_18wu0_1e6pm_363",
41
- "font-size-heading-xl": "awsui_font-size-heading-xl_18wu0_1e6pm_368",
42
- "font-size-display-l": "awsui_font-size-display-l_18wu0_1e6pm_373",
43
- "font-weight-light": "awsui_font-weight-light_18wu0_1e6pm_378",
44
- "font-weight-normal": "awsui_font-weight-normal_18wu0_1e6pm_381",
45
- "font-weight-bold": "awsui_font-weight-bold_18wu0_1e6pm_384",
46
- "t-left": "awsui_t-left_18wu0_1e6pm_391",
47
- "t-right": "awsui_t-right_18wu0_1e6pm_395",
48
- "t-center": "awsui_t-center_18wu0_1e6pm_399",
49
- "p-n": "awsui_p-n_18wu0_1e6pm_416",
50
- "p-top-n": "awsui_p-top-n_18wu0_1e6pm_421",
51
- "p-vertical-n": "awsui_p-vertical-n_18wu0_1e6pm_422",
52
- "p-right-n": "awsui_p-right-n_18wu0_1e6pm_426",
53
- "p-horizontal-n": "awsui_p-horizontal-n_18wu0_1e6pm_427",
54
- "p-bottom-n": "awsui_p-bottom-n_18wu0_1e6pm_431",
55
- "p-left-n": "awsui_p-left-n_18wu0_1e6pm_436",
56
- "p-xxxs": "awsui_p-xxxs_18wu0_1e6pm_441",
57
- "p-top-xxxs": "awsui_p-top-xxxs_18wu0_1e6pm_446",
58
- "p-vertical-xxxs": "awsui_p-vertical-xxxs_18wu0_1e6pm_447",
59
- "p-right-xxxs": "awsui_p-right-xxxs_18wu0_1e6pm_451",
60
- "p-horizontal-xxxs": "awsui_p-horizontal-xxxs_18wu0_1e6pm_452",
61
- "p-bottom-xxxs": "awsui_p-bottom-xxxs_18wu0_1e6pm_456",
62
- "p-left-xxxs": "awsui_p-left-xxxs_18wu0_1e6pm_461",
63
- "p-xxs": "awsui_p-xxs_18wu0_1e6pm_466",
64
- "p-top-xxs": "awsui_p-top-xxs_18wu0_1e6pm_471",
65
- "p-vertical-xxs": "awsui_p-vertical-xxs_18wu0_1e6pm_472",
66
- "p-right-xxs": "awsui_p-right-xxs_18wu0_1e6pm_476",
67
- "p-horizontal-xxs": "awsui_p-horizontal-xxs_18wu0_1e6pm_477",
68
- "p-bottom-xxs": "awsui_p-bottom-xxs_18wu0_1e6pm_481",
69
- "p-left-xxs": "awsui_p-left-xxs_18wu0_1e6pm_486",
70
- "p-xs": "awsui_p-xs_18wu0_1e6pm_491",
71
- "p-top-xs": "awsui_p-top-xs_18wu0_1e6pm_496",
72
- "p-vertical-xs": "awsui_p-vertical-xs_18wu0_1e6pm_497",
73
- "p-right-xs": "awsui_p-right-xs_18wu0_1e6pm_501",
74
- "p-horizontal-xs": "awsui_p-horizontal-xs_18wu0_1e6pm_502",
75
- "p-bottom-xs": "awsui_p-bottom-xs_18wu0_1e6pm_506",
76
- "p-left-xs": "awsui_p-left-xs_18wu0_1e6pm_511",
77
- "p-s": "awsui_p-s_18wu0_1e6pm_516",
78
- "p-top-s": "awsui_p-top-s_18wu0_1e6pm_521",
79
- "p-vertical-s": "awsui_p-vertical-s_18wu0_1e6pm_522",
80
- "p-right-s": "awsui_p-right-s_18wu0_1e6pm_526",
81
- "p-horizontal-s": "awsui_p-horizontal-s_18wu0_1e6pm_527",
82
- "p-bottom-s": "awsui_p-bottom-s_18wu0_1e6pm_531",
83
- "p-left-s": "awsui_p-left-s_18wu0_1e6pm_536",
84
- "p-m": "awsui_p-m_18wu0_1e6pm_541",
85
- "p-top-m": "awsui_p-top-m_18wu0_1e6pm_546",
86
- "p-vertical-m": "awsui_p-vertical-m_18wu0_1e6pm_547",
87
- "p-right-m": "awsui_p-right-m_18wu0_1e6pm_551",
88
- "p-horizontal-m": "awsui_p-horizontal-m_18wu0_1e6pm_552",
89
- "p-bottom-m": "awsui_p-bottom-m_18wu0_1e6pm_556",
90
- "p-left-m": "awsui_p-left-m_18wu0_1e6pm_561",
91
- "p-l": "awsui_p-l_18wu0_1e6pm_436",
92
- "p-top-l": "awsui_p-top-l_18wu0_1e6pm_571",
93
- "p-vertical-l": "awsui_p-vertical-l_18wu0_1e6pm_572",
94
- "p-right-l": "awsui_p-right-l_18wu0_1e6pm_576",
95
- "p-horizontal-l": "awsui_p-horizontal-l_18wu0_1e6pm_577",
96
- "p-bottom-l": "awsui_p-bottom-l_18wu0_1e6pm_581",
97
- "p-left-l": "awsui_p-left-l_18wu0_1e6pm_586",
98
- "p-xl": "awsui_p-xl_18wu0_1e6pm_591",
99
- "p-top-xl": "awsui_p-top-xl_18wu0_1e6pm_596",
100
- "p-vertical-xl": "awsui_p-vertical-xl_18wu0_1e6pm_597",
101
- "p-right-xl": "awsui_p-right-xl_18wu0_1e6pm_601",
102
- "p-horizontal-xl": "awsui_p-horizontal-xl_18wu0_1e6pm_602",
103
- "p-bottom-xl": "awsui_p-bottom-xl_18wu0_1e6pm_606",
104
- "p-left-xl": "awsui_p-left-xl_18wu0_1e6pm_611",
105
- "p-xxl": "awsui_p-xxl_18wu0_1e6pm_616",
106
- "p-top-xxl": "awsui_p-top-xxl_18wu0_1e6pm_621",
107
- "p-vertical-xxl": "awsui_p-vertical-xxl_18wu0_1e6pm_622",
108
- "p-right-xxl": "awsui_p-right-xxl_18wu0_1e6pm_626",
109
- "p-horizontal-xxl": "awsui_p-horizontal-xxl_18wu0_1e6pm_627",
110
- "p-bottom-xxl": "awsui_p-bottom-xxl_18wu0_1e6pm_631",
111
- "p-left-xxl": "awsui_p-left-xxl_18wu0_1e6pm_636",
112
- "p-xxxl": "awsui_p-xxxl_18wu0_1e6pm_641",
113
- "p-top-xxxl": "awsui_p-top-xxxl_18wu0_1e6pm_646",
114
- "p-vertical-xxxl": "awsui_p-vertical-xxxl_18wu0_1e6pm_647",
115
- "p-right-xxxl": "awsui_p-right-xxxl_18wu0_1e6pm_651",
116
- "p-horizontal-xxxl": "awsui_p-horizontal-xxxl_18wu0_1e6pm_652",
117
- "p-bottom-xxxl": "awsui_p-bottom-xxxl_18wu0_1e6pm_656",
118
- "p-left-xxxl": "awsui_p-left-xxxl_18wu0_1e6pm_661",
119
- "m-n": "awsui_m-n_18wu0_1e6pm_666",
120
- "m-top-n": "awsui_m-top-n_18wu0_1e6pm_671",
121
- "m-vertical-n": "awsui_m-vertical-n_18wu0_1e6pm_672",
122
- "m-right-n": "awsui_m-right-n_18wu0_1e6pm_676",
123
- "m-horizontal-n": "awsui_m-horizontal-n_18wu0_1e6pm_677",
124
- "m-bottom-n": "awsui_m-bottom-n_18wu0_1e6pm_681",
125
- "m-left-n": "awsui_m-left-n_18wu0_1e6pm_686",
126
- "m-xxxs": "awsui_m-xxxs_18wu0_1e6pm_691",
127
- "m-top-xxxs": "awsui_m-top-xxxs_18wu0_1e6pm_696",
128
- "m-vertical-xxxs": "awsui_m-vertical-xxxs_18wu0_1e6pm_697",
129
- "m-right-xxxs": "awsui_m-right-xxxs_18wu0_1e6pm_701",
130
- "m-horizontal-xxxs": "awsui_m-horizontal-xxxs_18wu0_1e6pm_702",
131
- "m-bottom-xxxs": "awsui_m-bottom-xxxs_18wu0_1e6pm_706",
132
- "m-left-xxxs": "awsui_m-left-xxxs_18wu0_1e6pm_711",
133
- "m-xxs": "awsui_m-xxs_18wu0_1e6pm_716",
134
- "m-top-xxs": "awsui_m-top-xxs_18wu0_1e6pm_721",
135
- "m-vertical-xxs": "awsui_m-vertical-xxs_18wu0_1e6pm_722",
136
- "m-right-xxs": "awsui_m-right-xxs_18wu0_1e6pm_726",
137
- "m-horizontal-xxs": "awsui_m-horizontal-xxs_18wu0_1e6pm_727",
138
- "m-bottom-xxs": "awsui_m-bottom-xxs_18wu0_1e6pm_731",
139
- "m-left-xxs": "awsui_m-left-xxs_18wu0_1e6pm_736",
140
- "m-xs": "awsui_m-xs_18wu0_1e6pm_741",
141
- "m-top-xs": "awsui_m-top-xs_18wu0_1e6pm_746",
142
- "m-vertical-xs": "awsui_m-vertical-xs_18wu0_1e6pm_747",
143
- "m-right-xs": "awsui_m-right-xs_18wu0_1e6pm_751",
144
- "m-horizontal-xs": "awsui_m-horizontal-xs_18wu0_1e6pm_752",
145
- "m-bottom-xs": "awsui_m-bottom-xs_18wu0_1e6pm_756",
146
- "m-left-xs": "awsui_m-left-xs_18wu0_1e6pm_761",
147
- "m-s": "awsui_m-s_18wu0_1e6pm_766",
148
- "m-top-s": "awsui_m-top-s_18wu0_1e6pm_771",
149
- "m-vertical-s": "awsui_m-vertical-s_18wu0_1e6pm_772",
150
- "m-right-s": "awsui_m-right-s_18wu0_1e6pm_776",
151
- "m-horizontal-s": "awsui_m-horizontal-s_18wu0_1e6pm_777",
152
- "m-bottom-s": "awsui_m-bottom-s_18wu0_1e6pm_781",
153
- "m-left-s": "awsui_m-left-s_18wu0_1e6pm_786",
154
- "m-m": "awsui_m-m_18wu0_1e6pm_791",
155
- "m-top-m": "awsui_m-top-m_18wu0_1e6pm_796",
156
- "m-vertical-m": "awsui_m-vertical-m_18wu0_1e6pm_797",
157
- "m-right-m": "awsui_m-right-m_18wu0_1e6pm_801",
158
- "m-horizontal-m": "awsui_m-horizontal-m_18wu0_1e6pm_802",
159
- "m-bottom-m": "awsui_m-bottom-m_18wu0_1e6pm_806",
160
- "m-left-m": "awsui_m-left-m_18wu0_1e6pm_811",
161
- "m-l": "awsui_m-l_18wu0_1e6pm_686",
162
- "m-top-l": "awsui_m-top-l_18wu0_1e6pm_821",
163
- "m-vertical-l": "awsui_m-vertical-l_18wu0_1e6pm_822",
164
- "m-right-l": "awsui_m-right-l_18wu0_1e6pm_826",
165
- "m-horizontal-l": "awsui_m-horizontal-l_18wu0_1e6pm_827",
166
- "m-bottom-l": "awsui_m-bottom-l_18wu0_1e6pm_831",
167
- "m-left-l": "awsui_m-left-l_18wu0_1e6pm_836",
168
- "m-xl": "awsui_m-xl_18wu0_1e6pm_841",
169
- "m-top-xl": "awsui_m-top-xl_18wu0_1e6pm_846",
170
- "m-vertical-xl": "awsui_m-vertical-xl_18wu0_1e6pm_847",
171
- "m-right-xl": "awsui_m-right-xl_18wu0_1e6pm_851",
172
- "m-horizontal-xl": "awsui_m-horizontal-xl_18wu0_1e6pm_852",
173
- "m-bottom-xl": "awsui_m-bottom-xl_18wu0_1e6pm_856",
174
- "m-left-xl": "awsui_m-left-xl_18wu0_1e6pm_861",
175
- "m-xxl": "awsui_m-xxl_18wu0_1e6pm_866",
176
- "m-top-xxl": "awsui_m-top-xxl_18wu0_1e6pm_871",
177
- "m-vertical-xxl": "awsui_m-vertical-xxl_18wu0_1e6pm_872",
178
- "m-right-xxl": "awsui_m-right-xxl_18wu0_1e6pm_876",
179
- "m-horizontal-xxl": "awsui_m-horizontal-xxl_18wu0_1e6pm_877",
180
- "m-bottom-xxl": "awsui_m-bottom-xxl_18wu0_1e6pm_881",
181
- "m-left-xxl": "awsui_m-left-xxl_18wu0_1e6pm_886",
182
- "m-xxxl": "awsui_m-xxxl_18wu0_1e6pm_891",
183
- "m-top-xxxl": "awsui_m-top-xxxl_18wu0_1e6pm_896",
184
- "m-vertical-xxxl": "awsui_m-vertical-xxxl_18wu0_1e6pm_897",
185
- "m-right-xxxl": "awsui_m-right-xxxl_18wu0_1e6pm_901",
186
- "m-horizontal-xxxl": "awsui_m-horizontal-xxxl_18wu0_1e6pm_902",
187
- "m-bottom-xxxl": "awsui_m-bottom-xxxl_18wu0_1e6pm_906",
188
- "m-left-xxxl": "awsui_m-left-xxxl_18wu0_1e6pm_911",
189
- "d-block": "awsui_d-block_18wu0_1e6pm_916",
190
- "d-inline": "awsui_d-inline_18wu0_1e6pm_919",
191
- "d-inline-block": "awsui_d-inline-block_18wu0_1e6pm_922",
192
- "d-none": "awsui_d-none_18wu0_1e6pm_925",
193
- "f-left": "awsui_f-left_18wu0_1e6pm_929",
194
- "f-right": "awsui_f-right_18wu0_1e6pm_933",
195
- "root": "awsui_root_18wu0_1e6pm_937"
4
+ "box": "awsui_box_18wu0_ywpf5_172",
5
+ "p-variant": "awsui_p-variant_18wu0_ywpf5_172",
6
+ "color-default": "awsui_color-default_18wu0_ywpf5_172",
7
+ "b-variant": "awsui_b-variant_18wu0_ywpf5_172",
8
+ "strong-variant": "awsui_strong-variant_18wu0_ywpf5_172",
9
+ "code-variant": "awsui_code-variant_18wu0_ywpf5_172",
10
+ "pre-variant": "awsui_pre-variant_18wu0_ywpf5_172",
11
+ "samp-variant": "awsui_samp-variant_18wu0_ywpf5_172",
12
+ "h1-variant": "awsui_h1-variant_18wu0_ywpf5_176",
13
+ "h2-variant": "awsui_h2-variant_18wu0_ywpf5_176",
14
+ "h3-variant": "awsui_h3-variant_18wu0_ywpf5_176",
15
+ "h4-variant": "awsui_h4-variant_18wu0_ywpf5_176",
16
+ "h5-variant": "awsui_h5-variant_18wu0_ywpf5_176",
17
+ "small-variant": "awsui_small-variant_18wu0_ywpf5_180",
18
+ "a-variant": "awsui_a-variant_18wu0_ywpf5_184",
19
+ "font-size-default": "awsui_font-size-default_18wu0_ywpf5_188",
20
+ "font-weight-default": "awsui_font-weight-default_18wu0_ywpf5_229",
21
+ "key-label-variant": "awsui_key-label-variant_18wu0_ywpf5_271",
22
+ "gen-ai-label-variant": "awsui_gen-ai-label-variant_18wu0_ywpf5_278",
23
+ "value-large-variant": "awsui_value-large-variant_18wu0_ywpf5_285",
24
+ "inline-code-variant": "awsui_inline-code-variant_18wu0_ywpf5_295",
25
+ "font-weight-heavy": "awsui_font-weight-heavy_18wu0_ywpf5_309",
26
+ "color-inverted": "awsui_color-inverted_18wu0_ywpf5_314",
27
+ "color-text-label": "awsui_color-text-label_18wu0_ywpf5_317",
28
+ "color-text-body-secondary": "awsui_color-text-body-secondary_18wu0_ywpf5_320",
29
+ "color-text-status-error": "awsui_color-text-status-error_18wu0_ywpf5_323",
30
+ "color-text-status-success": "awsui_color-text-status-success_18wu0_ywpf5_326",
31
+ "color-text-status-info": "awsui_color-text-status-info_18wu0_ywpf5_329",
32
+ "color-text-status-inactive": "awsui_color-text-status-inactive_18wu0_ywpf5_332",
33
+ "color-text-status-warning": "awsui_color-text-status-warning_18wu0_ywpf5_335",
34
+ "color-inherit": "awsui_color-inherit_18wu0_ywpf5_338",
35
+ "font-size-body-s": "awsui_font-size-body-s_18wu0_ywpf5_341",
36
+ "font-size-body-m": "awsui_font-size-body-m_18wu0_ywpf5_346",
37
+ "font-size-heading-xs": "awsui_font-size-heading-xs_18wu0_ywpf5_350",
38
+ "font-size-heading-s": "awsui_font-size-heading-s_18wu0_ywpf5_355",
39
+ "font-size-heading-m": "awsui_font-size-heading-m_18wu0_ywpf5_360",
40
+ "font-size-heading-l": "awsui_font-size-heading-l_18wu0_ywpf5_365",
41
+ "font-size-heading-xl": "awsui_font-size-heading-xl_18wu0_ywpf5_370",
42
+ "font-size-display-l": "awsui_font-size-display-l_18wu0_ywpf5_375",
43
+ "font-weight-light": "awsui_font-weight-light_18wu0_ywpf5_380",
44
+ "font-weight-normal": "awsui_font-weight-normal_18wu0_ywpf5_383",
45
+ "font-weight-bold": "awsui_font-weight-bold_18wu0_ywpf5_386",
46
+ "t-left": "awsui_t-left_18wu0_ywpf5_393",
47
+ "t-right": "awsui_t-right_18wu0_ywpf5_397",
48
+ "t-center": "awsui_t-center_18wu0_ywpf5_401",
49
+ "p-n": "awsui_p-n_18wu0_ywpf5_418",
50
+ "p-top-n": "awsui_p-top-n_18wu0_ywpf5_423",
51
+ "p-vertical-n": "awsui_p-vertical-n_18wu0_ywpf5_424",
52
+ "p-right-n": "awsui_p-right-n_18wu0_ywpf5_428",
53
+ "p-horizontal-n": "awsui_p-horizontal-n_18wu0_ywpf5_429",
54
+ "p-bottom-n": "awsui_p-bottom-n_18wu0_ywpf5_433",
55
+ "p-left-n": "awsui_p-left-n_18wu0_ywpf5_438",
56
+ "p-xxxs": "awsui_p-xxxs_18wu0_ywpf5_443",
57
+ "p-top-xxxs": "awsui_p-top-xxxs_18wu0_ywpf5_448",
58
+ "p-vertical-xxxs": "awsui_p-vertical-xxxs_18wu0_ywpf5_449",
59
+ "p-right-xxxs": "awsui_p-right-xxxs_18wu0_ywpf5_453",
60
+ "p-horizontal-xxxs": "awsui_p-horizontal-xxxs_18wu0_ywpf5_454",
61
+ "p-bottom-xxxs": "awsui_p-bottom-xxxs_18wu0_ywpf5_458",
62
+ "p-left-xxxs": "awsui_p-left-xxxs_18wu0_ywpf5_463",
63
+ "p-xxs": "awsui_p-xxs_18wu0_ywpf5_468",
64
+ "p-top-xxs": "awsui_p-top-xxs_18wu0_ywpf5_473",
65
+ "p-vertical-xxs": "awsui_p-vertical-xxs_18wu0_ywpf5_474",
66
+ "p-right-xxs": "awsui_p-right-xxs_18wu0_ywpf5_478",
67
+ "p-horizontal-xxs": "awsui_p-horizontal-xxs_18wu0_ywpf5_479",
68
+ "p-bottom-xxs": "awsui_p-bottom-xxs_18wu0_ywpf5_483",
69
+ "p-left-xxs": "awsui_p-left-xxs_18wu0_ywpf5_488",
70
+ "p-xs": "awsui_p-xs_18wu0_ywpf5_493",
71
+ "p-top-xs": "awsui_p-top-xs_18wu0_ywpf5_498",
72
+ "p-vertical-xs": "awsui_p-vertical-xs_18wu0_ywpf5_499",
73
+ "p-right-xs": "awsui_p-right-xs_18wu0_ywpf5_503",
74
+ "p-horizontal-xs": "awsui_p-horizontal-xs_18wu0_ywpf5_504",
75
+ "p-bottom-xs": "awsui_p-bottom-xs_18wu0_ywpf5_508",
76
+ "p-left-xs": "awsui_p-left-xs_18wu0_ywpf5_513",
77
+ "p-s": "awsui_p-s_18wu0_ywpf5_518",
78
+ "p-top-s": "awsui_p-top-s_18wu0_ywpf5_523",
79
+ "p-vertical-s": "awsui_p-vertical-s_18wu0_ywpf5_524",
80
+ "p-right-s": "awsui_p-right-s_18wu0_ywpf5_528",
81
+ "p-horizontal-s": "awsui_p-horizontal-s_18wu0_ywpf5_529",
82
+ "p-bottom-s": "awsui_p-bottom-s_18wu0_ywpf5_533",
83
+ "p-left-s": "awsui_p-left-s_18wu0_ywpf5_538",
84
+ "p-m": "awsui_p-m_18wu0_ywpf5_543",
85
+ "p-top-m": "awsui_p-top-m_18wu0_ywpf5_548",
86
+ "p-vertical-m": "awsui_p-vertical-m_18wu0_ywpf5_549",
87
+ "p-right-m": "awsui_p-right-m_18wu0_ywpf5_553",
88
+ "p-horizontal-m": "awsui_p-horizontal-m_18wu0_ywpf5_554",
89
+ "p-bottom-m": "awsui_p-bottom-m_18wu0_ywpf5_558",
90
+ "p-left-m": "awsui_p-left-m_18wu0_ywpf5_563",
91
+ "p-l": "awsui_p-l_18wu0_ywpf5_438",
92
+ "p-top-l": "awsui_p-top-l_18wu0_ywpf5_573",
93
+ "p-vertical-l": "awsui_p-vertical-l_18wu0_ywpf5_574",
94
+ "p-right-l": "awsui_p-right-l_18wu0_ywpf5_578",
95
+ "p-horizontal-l": "awsui_p-horizontal-l_18wu0_ywpf5_579",
96
+ "p-bottom-l": "awsui_p-bottom-l_18wu0_ywpf5_583",
97
+ "p-left-l": "awsui_p-left-l_18wu0_ywpf5_588",
98
+ "p-xl": "awsui_p-xl_18wu0_ywpf5_593",
99
+ "p-top-xl": "awsui_p-top-xl_18wu0_ywpf5_598",
100
+ "p-vertical-xl": "awsui_p-vertical-xl_18wu0_ywpf5_599",
101
+ "p-right-xl": "awsui_p-right-xl_18wu0_ywpf5_603",
102
+ "p-horizontal-xl": "awsui_p-horizontal-xl_18wu0_ywpf5_604",
103
+ "p-bottom-xl": "awsui_p-bottom-xl_18wu0_ywpf5_608",
104
+ "p-left-xl": "awsui_p-left-xl_18wu0_ywpf5_613",
105
+ "p-xxl": "awsui_p-xxl_18wu0_ywpf5_618",
106
+ "p-top-xxl": "awsui_p-top-xxl_18wu0_ywpf5_623",
107
+ "p-vertical-xxl": "awsui_p-vertical-xxl_18wu0_ywpf5_624",
108
+ "p-right-xxl": "awsui_p-right-xxl_18wu0_ywpf5_628",
109
+ "p-horizontal-xxl": "awsui_p-horizontal-xxl_18wu0_ywpf5_629",
110
+ "p-bottom-xxl": "awsui_p-bottom-xxl_18wu0_ywpf5_633",
111
+ "p-left-xxl": "awsui_p-left-xxl_18wu0_ywpf5_638",
112
+ "p-xxxl": "awsui_p-xxxl_18wu0_ywpf5_643",
113
+ "p-top-xxxl": "awsui_p-top-xxxl_18wu0_ywpf5_648",
114
+ "p-vertical-xxxl": "awsui_p-vertical-xxxl_18wu0_ywpf5_649",
115
+ "p-right-xxxl": "awsui_p-right-xxxl_18wu0_ywpf5_653",
116
+ "p-horizontal-xxxl": "awsui_p-horizontal-xxxl_18wu0_ywpf5_654",
117
+ "p-bottom-xxxl": "awsui_p-bottom-xxxl_18wu0_ywpf5_658",
118
+ "p-left-xxxl": "awsui_p-left-xxxl_18wu0_ywpf5_663",
119
+ "m-n": "awsui_m-n_18wu0_ywpf5_668",
120
+ "m-top-n": "awsui_m-top-n_18wu0_ywpf5_673",
121
+ "m-vertical-n": "awsui_m-vertical-n_18wu0_ywpf5_674",
122
+ "m-right-n": "awsui_m-right-n_18wu0_ywpf5_678",
123
+ "m-horizontal-n": "awsui_m-horizontal-n_18wu0_ywpf5_679",
124
+ "m-bottom-n": "awsui_m-bottom-n_18wu0_ywpf5_683",
125
+ "m-left-n": "awsui_m-left-n_18wu0_ywpf5_688",
126
+ "m-xxxs": "awsui_m-xxxs_18wu0_ywpf5_693",
127
+ "m-top-xxxs": "awsui_m-top-xxxs_18wu0_ywpf5_698",
128
+ "m-vertical-xxxs": "awsui_m-vertical-xxxs_18wu0_ywpf5_699",
129
+ "m-right-xxxs": "awsui_m-right-xxxs_18wu0_ywpf5_703",
130
+ "m-horizontal-xxxs": "awsui_m-horizontal-xxxs_18wu0_ywpf5_704",
131
+ "m-bottom-xxxs": "awsui_m-bottom-xxxs_18wu0_ywpf5_708",
132
+ "m-left-xxxs": "awsui_m-left-xxxs_18wu0_ywpf5_713",
133
+ "m-xxs": "awsui_m-xxs_18wu0_ywpf5_718",
134
+ "m-top-xxs": "awsui_m-top-xxs_18wu0_ywpf5_723",
135
+ "m-vertical-xxs": "awsui_m-vertical-xxs_18wu0_ywpf5_724",
136
+ "m-right-xxs": "awsui_m-right-xxs_18wu0_ywpf5_728",
137
+ "m-horizontal-xxs": "awsui_m-horizontal-xxs_18wu0_ywpf5_729",
138
+ "m-bottom-xxs": "awsui_m-bottom-xxs_18wu0_ywpf5_733",
139
+ "m-left-xxs": "awsui_m-left-xxs_18wu0_ywpf5_738",
140
+ "m-xs": "awsui_m-xs_18wu0_ywpf5_743",
141
+ "m-top-xs": "awsui_m-top-xs_18wu0_ywpf5_748",
142
+ "m-vertical-xs": "awsui_m-vertical-xs_18wu0_ywpf5_749",
143
+ "m-right-xs": "awsui_m-right-xs_18wu0_ywpf5_753",
144
+ "m-horizontal-xs": "awsui_m-horizontal-xs_18wu0_ywpf5_754",
145
+ "m-bottom-xs": "awsui_m-bottom-xs_18wu0_ywpf5_758",
146
+ "m-left-xs": "awsui_m-left-xs_18wu0_ywpf5_763",
147
+ "m-s": "awsui_m-s_18wu0_ywpf5_768",
148
+ "m-top-s": "awsui_m-top-s_18wu0_ywpf5_773",
149
+ "m-vertical-s": "awsui_m-vertical-s_18wu0_ywpf5_774",
150
+ "m-right-s": "awsui_m-right-s_18wu0_ywpf5_778",
151
+ "m-horizontal-s": "awsui_m-horizontal-s_18wu0_ywpf5_779",
152
+ "m-bottom-s": "awsui_m-bottom-s_18wu0_ywpf5_783",
153
+ "m-left-s": "awsui_m-left-s_18wu0_ywpf5_788",
154
+ "m-m": "awsui_m-m_18wu0_ywpf5_793",
155
+ "m-top-m": "awsui_m-top-m_18wu0_ywpf5_798",
156
+ "m-vertical-m": "awsui_m-vertical-m_18wu0_ywpf5_799",
157
+ "m-right-m": "awsui_m-right-m_18wu0_ywpf5_803",
158
+ "m-horizontal-m": "awsui_m-horizontal-m_18wu0_ywpf5_804",
159
+ "m-bottom-m": "awsui_m-bottom-m_18wu0_ywpf5_808",
160
+ "m-left-m": "awsui_m-left-m_18wu0_ywpf5_813",
161
+ "m-l": "awsui_m-l_18wu0_ywpf5_688",
162
+ "m-top-l": "awsui_m-top-l_18wu0_ywpf5_823",
163
+ "m-vertical-l": "awsui_m-vertical-l_18wu0_ywpf5_824",
164
+ "m-right-l": "awsui_m-right-l_18wu0_ywpf5_828",
165
+ "m-horizontal-l": "awsui_m-horizontal-l_18wu0_ywpf5_829",
166
+ "m-bottom-l": "awsui_m-bottom-l_18wu0_ywpf5_833",
167
+ "m-left-l": "awsui_m-left-l_18wu0_ywpf5_838",
168
+ "m-xl": "awsui_m-xl_18wu0_ywpf5_843",
169
+ "m-top-xl": "awsui_m-top-xl_18wu0_ywpf5_848",
170
+ "m-vertical-xl": "awsui_m-vertical-xl_18wu0_ywpf5_849",
171
+ "m-right-xl": "awsui_m-right-xl_18wu0_ywpf5_853",
172
+ "m-horizontal-xl": "awsui_m-horizontal-xl_18wu0_ywpf5_854",
173
+ "m-bottom-xl": "awsui_m-bottom-xl_18wu0_ywpf5_858",
174
+ "m-left-xl": "awsui_m-left-xl_18wu0_ywpf5_863",
175
+ "m-xxl": "awsui_m-xxl_18wu0_ywpf5_868",
176
+ "m-top-xxl": "awsui_m-top-xxl_18wu0_ywpf5_873",
177
+ "m-vertical-xxl": "awsui_m-vertical-xxl_18wu0_ywpf5_874",
178
+ "m-right-xxl": "awsui_m-right-xxl_18wu0_ywpf5_878",
179
+ "m-horizontal-xxl": "awsui_m-horizontal-xxl_18wu0_ywpf5_879",
180
+ "m-bottom-xxl": "awsui_m-bottom-xxl_18wu0_ywpf5_883",
181
+ "m-left-xxl": "awsui_m-left-xxl_18wu0_ywpf5_888",
182
+ "m-xxxl": "awsui_m-xxxl_18wu0_ywpf5_893",
183
+ "m-top-xxxl": "awsui_m-top-xxxl_18wu0_ywpf5_898",
184
+ "m-vertical-xxxl": "awsui_m-vertical-xxxl_18wu0_ywpf5_899",
185
+ "m-right-xxxl": "awsui_m-right-xxxl_18wu0_ywpf5_903",
186
+ "m-horizontal-xxxl": "awsui_m-horizontal-xxxl_18wu0_ywpf5_904",
187
+ "m-bottom-xxxl": "awsui_m-bottom-xxxl_18wu0_ywpf5_908",
188
+ "m-left-xxxl": "awsui_m-left-xxxl_18wu0_ywpf5_913",
189
+ "d-block": "awsui_d-block_18wu0_ywpf5_918",
190
+ "d-inline": "awsui_d-inline_18wu0_ywpf5_921",
191
+ "d-inline-block": "awsui_d-inline-block_18wu0_ywpf5_924",
192
+ "d-none": "awsui_d-none_18wu0_ywpf5_927",
193
+ "f-left": "awsui_f-left_18wu0_ywpf5_931",
194
+ "f-right": "awsui_f-right_18wu0_ywpf5_935",
195
+ "root": "awsui_root_18wu0_ywpf5_939"
196
196
  };
197
197