@cloudscape-design/components 3.0.643 → 3.0.645
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/button-dropdown/interfaces.d.ts +37 -23
- package/button-dropdown/interfaces.d.ts.map +1 -1
- package/button-dropdown/interfaces.js.map +1 -1
- package/button-dropdown/internal.d.ts.map +1 -1
- package/button-dropdown/internal.js +4 -1
- package/button-dropdown/internal.js.map +1 -1
- package/button-dropdown/item-element/index.d.ts +3 -0
- package/button-dropdown/item-element/index.d.ts.map +1 -1
- package/button-dropdown/item-element/index.js +16 -6
- package/button-dropdown/item-element/index.js.map +1 -1
- package/button-dropdown/item-element/styles.css.js +11 -9
- package/button-dropdown/item-element/styles.scoped.css +20 -14
- package/button-dropdown/item-element/styles.selectors.js +11 -9
- package/button-dropdown/utils/menu-item.d.ts +4 -0
- package/button-dropdown/utils/menu-item.d.ts.map +1 -1
- package/button-dropdown/utils/menu-item.js +5 -0
- package/button-dropdown/utils/menu-item.js.map +1 -1
- package/button-dropdown/utils/use-button-dropdown.d.ts.map +1 -1
- package/button-dropdown/utils/use-button-dropdown.js +8 -5
- package/button-dropdown/utils/use-button-dropdown.js.map +1 -1
- package/button-dropdown/utils/utils.d.ts +1 -0
- package/button-dropdown/utils/utils.d.ts.map +1 -1
- package/button-dropdown/utils/utils.js +1 -0
- package/button-dropdown/utils/utils.js.map +1 -1
- package/code-editor/use-editor.d.ts.map +1 -1
- package/code-editor/use-editor.js +19 -2
- package/code-editor/use-editor.js.map +1 -1
- package/internal/environment.js +1 -1
- package/internal/environment.json +1 -1
- package/internal/manifest.json +1 -1
- package/internal/utils/dom.js +2 -1
- package/internal/utils/dom.js.map +1 -1
- package/package.json +2 -2
- package/table/interfaces.d.ts +22 -24
- package/table/interfaces.d.ts.map +1 -1
- package/table/interfaces.js.map +1 -1
- package/table/internal.d.ts.map +1 -1
- package/table/internal.js.map +1 -1
- package/test-utils/dom/button-dropdown/index.d.ts +6 -0
- package/test-utils/dom/button-dropdown/index.js +21 -0
- package/test-utils/dom/button-dropdown/index.js.map +1 -1
- package/test-utils/dom/table/index.d.ts +13 -1
- package/test-utils/dom/table/index.js +20 -1
- package/test-utils/dom/table/index.js.map +1 -1
- package/test-utils/selectors/button-dropdown/index.d.ts +5 -0
- package/test-utils/selectors/button-dropdown/index.js +5 -0
- package/test-utils/selectors/button-dropdown/index.js.map +1 -1
- package/test-utils/selectors/table/index.d.ts +18 -1
- package/test-utils/selectors/table/index.js +25 -6
- package/test-utils/selectors/table/index.js.map +1 -1
- package/test-utils/tsconfig.tsbuildinfo +1 -1
- package/top-navigation/1.0-beta/parts/utility.d.ts.map +1 -1
- package/top-navigation/1.0-beta/parts/utility.js +4 -1
- package/top-navigation/1.0-beta/parts/utility.js.map +1 -1
- package/top-navigation/internal.d.ts.map +1 -1
- package/top-navigation/internal.js +8 -0
- package/top-navigation/internal.js.map +1 -1
- package/top-navigation/parts/overflow-menu/menu-item.d.ts.map +1 -1
- package/top-navigation/parts/overflow-menu/menu-item.js +4 -2
- package/top-navigation/parts/overflow-menu/menu-item.js.map +1 -1
- package/top-navigation/parts/utility.d.ts.map +1 -1
- package/top-navigation/parts/utility.js +4 -1
- package/top-navigation/parts/utility.js.map +1 -1
- package/wizard/internal.d.ts.map +1 -1
- package/wizard/internal.js +0 -1
- package/wizard/internal.js.map +1 -1
- package/wizard/styles.css.js +30 -31
- package/wizard/styles.scoped.css +58 -64
- package/wizard/styles.selectors.js +30 -31
package/wizard/styles.scoped.css
CHANGED
|
@@ -97,7 +97,7 @@ surrounding text. (WCAG F73) https://www.w3.org/WAI/WCAG21/Techniques/failures/F
|
|
|
97
97
|
SPDX-License-Identifier: Apache-2.0
|
|
98
98
|
*/
|
|
99
99
|
/* stylelint-disable selector-max-universal, selector-max-type */
|
|
100
|
-
.
|
|
100
|
+
.awsui_root_1xupv_1ks7f_100:not(#\9) {
|
|
101
101
|
border-collapse: separate;
|
|
102
102
|
border-spacing: 0;
|
|
103
103
|
box-sizing: border-box;
|
|
@@ -133,28 +133,28 @@ surrounding text. (WCAG F73) https://www.w3.org/WAI/WCAG21/Techniques/failures/F
|
|
|
133
133
|
-moz-osx-font-smoothing: auto;
|
|
134
134
|
}
|
|
135
135
|
|
|
136
|
-
.
|
|
136
|
+
.awsui_wizard_1xupv_1ks7f_135.awsui_refresh_1xupv_1ks7f_135:not(#\9) {
|
|
137
137
|
column-gap: var(--space-xl-lmui9r, 24px);
|
|
138
138
|
display: grid;
|
|
139
139
|
grid-template-columns: auto minmax(0, 1fr);
|
|
140
140
|
grid-template-rows: auto 1fr;
|
|
141
141
|
row-gap: var(--space-scaled-xxs-7597g1, 4px);
|
|
142
142
|
}
|
|
143
|
-
.
|
|
143
|
+
.awsui_wizard_1xupv_1ks7f_135.awsui_refresh_1xupv_1ks7f_135.awsui_small-container_1xupv_1ks7f_142:not(#\9) {
|
|
144
144
|
grid-template-columns: minmax(0, 1fr) 0;
|
|
145
145
|
row-gap: var(--space-scaled-l-0hpmd7, 20px);
|
|
146
146
|
}
|
|
147
147
|
|
|
148
|
-
.
|
|
148
|
+
.awsui_wizard_1xupv_1ks7f_135:not(#\9):not(.awsui_refresh_1xupv_1ks7f_135) {
|
|
149
149
|
display: flex;
|
|
150
150
|
}
|
|
151
151
|
|
|
152
|
-
.
|
|
152
|
+
.awsui_navigation_1xupv_1ks7f_151.awsui_refresh_1xupv_1ks7f_135:not(#\9) {
|
|
153
153
|
grid-column: 1;
|
|
154
154
|
grid-row: 1/span 2;
|
|
155
155
|
padding-block-start: calc(var(--space-xs-zb16t3, 8px) + var(--space-scaled-xxs-7597g1, 4px));
|
|
156
156
|
}
|
|
157
|
-
.
|
|
157
|
+
.awsui_navigation_1xupv_1ks7f_151.awsui_refresh_1xupv_1ks7f_135 > ul.awsui_refresh_1xupv_1ks7f_135:not(#\9) {
|
|
158
158
|
background: var(--color-background-container-content-4un1ap, #ffffff);
|
|
159
159
|
position: relative;
|
|
160
160
|
margin-block: 0;
|
|
@@ -165,7 +165,7 @@ surrounding text. (WCAG F73) https://www.w3.org/WAI/WCAG21/Techniques/failures/F
|
|
|
165
165
|
inline-size: 260px;
|
|
166
166
|
box-sizing: border-box;
|
|
167
167
|
}
|
|
168
|
-
.
|
|
168
|
+
.awsui_navigation_1xupv_1ks7f_151.awsui_refresh_1xupv_1ks7f_135 > ul.awsui_refresh_1xupv_1ks7f_135 > li:not(#\9) {
|
|
169
169
|
display: grid;
|
|
170
170
|
column-gap: var(--space-xs-zb16t3, 8px);
|
|
171
171
|
grid-template-columns: var(--space-l-t419sm, 20px) 1fr;
|
|
@@ -173,7 +173,7 @@ surrounding text. (WCAG F73) https://www.w3.org/WAI/WCAG21/Techniques/failures/F
|
|
|
173
173
|
padding-block: 0;
|
|
174
174
|
padding-inline: 0;
|
|
175
175
|
}
|
|
176
|
-
.
|
|
176
|
+
.awsui_navigation_1xupv_1ks7f_151.awsui_refresh_1xupv_1ks7f_135 > ul.awsui_refresh_1xupv_1ks7f_135 > li > hr:not(#\9) {
|
|
177
177
|
background-color: var(--color-border-divider-default-j74lyz, #b6bec9);
|
|
178
178
|
border-block: 0;
|
|
179
179
|
border-inline: 0;
|
|
@@ -181,13 +181,13 @@ surrounding text. (WCAG F73) https://www.w3.org/WAI/WCAG21/Techniques/failures/F
|
|
|
181
181
|
block-size: 100%;
|
|
182
182
|
inline-size: var(--space-xxxs-zbmxqb, 2px);
|
|
183
183
|
}
|
|
184
|
-
.
|
|
184
|
+
.awsui_navigation_1xupv_1ks7f_151.awsui_refresh_1xupv_1ks7f_135 > ul.awsui_refresh_1xupv_1ks7f_135 > li > .awsui_number_1xupv_1ks7f_183:not(#\9) {
|
|
185
185
|
color: var(--color-text-small-zfvvfc, #5f6b7a);
|
|
186
186
|
font-size: var(--font-size-body-s-asqx2i, 12px);
|
|
187
187
|
grid-column: 2;
|
|
188
188
|
grid-row: 1;
|
|
189
189
|
}
|
|
190
|
-
.
|
|
190
|
+
.awsui_navigation_1xupv_1ks7f_151.awsui_refresh_1xupv_1ks7f_135 > ul.awsui_refresh_1xupv_1ks7f_135 > li > a:not(#\9) {
|
|
191
191
|
align-items: start;
|
|
192
192
|
column-gap: var(--space-xs-zb16t3, 8px);
|
|
193
193
|
cursor: pointer;
|
|
@@ -197,7 +197,7 @@ surrounding text. (WCAG F73) https://www.w3.org/WAI/WCAG21/Techniques/failures/F
|
|
|
197
197
|
grid-row: 2;
|
|
198
198
|
grid-template-columns: var(--space-l-t419sm, 20px) 1fr;
|
|
199
199
|
}
|
|
200
|
-
.
|
|
200
|
+
.awsui_navigation_1xupv_1ks7f_151.awsui_refresh_1xupv_1ks7f_135 > ul.awsui_refresh_1xupv_1ks7f_135 > li > a > .awsui_circle_1xupv_1ks7f_199:not(#\9) {
|
|
201
201
|
border-start-start-radius: 100%;
|
|
202
202
|
border-start-end-radius: 100%;
|
|
203
203
|
border-end-start-radius: 100%;
|
|
@@ -208,12 +208,12 @@ surrounding text. (WCAG F73) https://www.w3.org/WAI/WCAG21/Techniques/failures/F
|
|
|
208
208
|
margin-block-start: 6px;
|
|
209
209
|
inline-size: 10px;
|
|
210
210
|
}
|
|
211
|
-
.
|
|
211
|
+
.awsui_navigation_1xupv_1ks7f_151.awsui_refresh_1xupv_1ks7f_135 > ul.awsui_refresh_1xupv_1ks7f_135 > li > a > .awsui_title_1xupv_1ks7f_210:not(#\9) {
|
|
212
212
|
min-inline-size: 0;
|
|
213
213
|
word-break: break-word;
|
|
214
214
|
grid-column: 2;
|
|
215
215
|
}
|
|
216
|
-
body[data-awsui-focus-visible=true] .
|
|
216
|
+
body[data-awsui-focus-visible=true] .awsui_navigation_1xupv_1ks7f_151.awsui_refresh_1xupv_1ks7f_135 > ul.awsui_refresh_1xupv_1ks7f_135 > li > a:not(#\9):focus {
|
|
217
217
|
outline: thin dotted;
|
|
218
218
|
outline: var(--border-link-focus-ring-outline-kkfop6, 0);
|
|
219
219
|
outline-offset: 2px;
|
|
@@ -224,58 +224,58 @@ body[data-awsui-focus-visible=true] .awsui_navigation_1xupv_17xky_151.awsui_refr
|
|
|
224
224
|
border-end-end-radius: var(--border-radius-control-default-focus-ring-u8zbsz, 4px);
|
|
225
225
|
box-shadow: 0 0 0 var(--border-link-focus-ring-shadow-spread-v8hkrl, 2px) var(--color-border-item-focused-b2ntyl, #0972d3);
|
|
226
226
|
}
|
|
227
|
-
.
|
|
227
|
+
.awsui_navigation_1xupv_1ks7f_151.awsui_refresh_1xupv_1ks7f_135 > ul.awsui_refresh_1xupv_1ks7f_135 > li:not(#\9):first-child > hr {
|
|
228
228
|
grid-row: 2/span 2;
|
|
229
229
|
}
|
|
230
|
-
.
|
|
230
|
+
.awsui_navigation_1xupv_1ks7f_151.awsui_refresh_1xupv_1ks7f_135 > ul.awsui_refresh_1xupv_1ks7f_135 > li:not(#\9):not(:first-child) > .awsui_number_1xupv_1ks7f_183 {
|
|
231
231
|
margin-block-start: var(--space-m-udix3p, 16px);
|
|
232
232
|
}
|
|
233
|
-
.
|
|
233
|
+
.awsui_navigation_1xupv_1ks7f_151.awsui_refresh_1xupv_1ks7f_135 > ul.awsui_refresh_1xupv_1ks7f_135 > li:not(#\9):last-child > hr {
|
|
234
234
|
grid-row: 1;
|
|
235
235
|
}
|
|
236
|
-
.
|
|
236
|
+
.awsui_navigation_1xupv_1ks7f_151.awsui_refresh_1xupv_1ks7f_135 > ul.awsui_refresh_1xupv_1ks7f_135 > li:not(#\9):only-of-type > hr {
|
|
237
237
|
display: none;
|
|
238
238
|
}
|
|
239
|
-
.
|
|
239
|
+
.awsui_navigation_1xupv_1ks7f_151.awsui_refresh_1xupv_1ks7f_135 > ul.awsui_refresh_1xupv_1ks7f_135 > li:not(#\9):not(:first-child):not(:last-child) > hr {
|
|
240
240
|
grid-row: 1/span 3;
|
|
241
241
|
}
|
|
242
|
-
.
|
|
242
|
+
.awsui_navigation_1xupv_1ks7f_151.awsui_refresh_1xupv_1ks7f_135 > ul.awsui_refresh_1xupv_1ks7f_135 > li.awsui_active_1xupv_1ks7f_241 > a:not(#\9) {
|
|
243
243
|
cursor: text;
|
|
244
244
|
}
|
|
245
|
-
.
|
|
245
|
+
.awsui_navigation_1xupv_1ks7f_151.awsui_refresh_1xupv_1ks7f_135 > ul.awsui_refresh_1xupv_1ks7f_135 > li.awsui_active_1xupv_1ks7f_241 > a > .awsui_circle_1xupv_1ks7f_199:not(#\9) {
|
|
246
246
|
background-color: var(--color-background-control-checked-w517i0, #0972d3);
|
|
247
247
|
box-shadow: 0 0 0 3px var(--color-background-container-content-4un1ap, #ffffff), 0 0 0 5px var(--color-background-control-checked-w517i0, #0972d3), 0 0 0 7px var(--color-background-container-content-4un1ap, #ffffff);
|
|
248
248
|
}
|
|
249
|
-
.
|
|
249
|
+
.awsui_navigation_1xupv_1ks7f_151.awsui_refresh_1xupv_1ks7f_135 > ul.awsui_refresh_1xupv_1ks7f_135 > li.awsui_active_1xupv_1ks7f_241 > a > .awsui_title_1xupv_1ks7f_210:not(#\9) {
|
|
250
250
|
color: var(--color-background-control-checked-w517i0, #0972d3);
|
|
251
251
|
font-weight: 700;
|
|
252
252
|
}
|
|
253
|
-
.
|
|
253
|
+
.awsui_navigation_1xupv_1ks7f_151.awsui_refresh_1xupv_1ks7f_135 > ul.awsui_refresh_1xupv_1ks7f_135 > li.awsui_disabled_1xupv_1ks7f_252 > a:not(#\9) {
|
|
254
254
|
cursor: text;
|
|
255
255
|
}
|
|
256
|
-
.
|
|
256
|
+
.awsui_navigation_1xupv_1ks7f_151.awsui_refresh_1xupv_1ks7f_135 > ul.awsui_refresh_1xupv_1ks7f_135 > li.awsui_disabled_1xupv_1ks7f_252 > a > .awsui_circle_1xupv_1ks7f_199:not(#\9) {
|
|
257
257
|
background-color: var(--color-background-container-content-4un1ap, #ffffff);
|
|
258
258
|
box-shadow: 0 0 0 2px var(--color-text-interactive-disabled-z7a3t4, #9ba7b6), 0 0 0 4px var(--color-background-container-content-4un1ap, #ffffff);
|
|
259
259
|
}
|
|
260
|
-
.
|
|
260
|
+
.awsui_navigation_1xupv_1ks7f_151.awsui_refresh_1xupv_1ks7f_135 > ul.awsui_refresh_1xupv_1ks7f_135 > li.awsui_disabled_1xupv_1ks7f_252 > a > .awsui_title_1xupv_1ks7f_210:not(#\9) {
|
|
261
261
|
color: var(--color-text-status-inactive-m7co45, #5f6b7a);
|
|
262
262
|
}
|
|
263
|
-
.
|
|
263
|
+
.awsui_navigation_1xupv_1ks7f_151.awsui_refresh_1xupv_1ks7f_135 > ul.awsui_refresh_1xupv_1ks7f_135 > li.awsui_enabled_1xupv_1ks7f_262 > a > .awsui_circle_1xupv_1ks7f_199:not(#\9) {
|
|
264
264
|
background-color: var(--color-text-interactive-default-lnx6lk, #414d5c);
|
|
265
265
|
box-shadow: 0 0 0 2px var(--color-text-interactive-default-lnx6lk, #414d5c), 0 0 0 4px var(--color-background-container-content-4un1ap, #ffffff);
|
|
266
266
|
}
|
|
267
|
-
.
|
|
267
|
+
.awsui_navigation_1xupv_1ks7f_151.awsui_refresh_1xupv_1ks7f_135 > ul.awsui_refresh_1xupv_1ks7f_135 > li.awsui_enabled_1xupv_1ks7f_262 > a > .awsui_title_1xupv_1ks7f_210:not(#\9) {
|
|
268
268
|
color: var(--color-text-interactive-default-lnx6lk, #414d5c);
|
|
269
269
|
}
|
|
270
|
-
.
|
|
270
|
+
.awsui_navigation_1xupv_1ks7f_151.awsui_refresh_1xupv_1ks7f_135 > ul.awsui_refresh_1xupv_1ks7f_135 > li.awsui_enabled_1xupv_1ks7f_262 > a:not(#\9):hover > .awsui_circle_1xupv_1ks7f_199 {
|
|
271
271
|
background-color: var(--color-background-control-checked-w517i0, #0972d3);
|
|
272
272
|
box-shadow: 0 0 0 2px var(--color-background-control-checked-w517i0, #0972d3), 0 0 0 4px var(--color-background-container-content-4un1ap, #ffffff);
|
|
273
273
|
}
|
|
274
|
-
.
|
|
274
|
+
.awsui_navigation_1xupv_1ks7f_151.awsui_refresh_1xupv_1ks7f_135 > ul.awsui_refresh_1xupv_1ks7f_135 > li.awsui_enabled_1xupv_1ks7f_262 > a:not(#\9):hover > .awsui_title_1xupv_1ks7f_210 {
|
|
275
275
|
color: var(--color-background-control-checked-w517i0, #0972d3);
|
|
276
276
|
}
|
|
277
277
|
|
|
278
|
-
.
|
|
278
|
+
.awsui_navigation_1xupv_1ks7f_151:not(#\9):not(.awsui_refresh_1xupv_1ks7f_135) {
|
|
279
279
|
color: var(--color-text-disabled-f4c52h, #9ba7b6);
|
|
280
280
|
display: inline-block;
|
|
281
281
|
margin-inline-end: calc(2 * var(--space-xxxl-4x2gki, 40px));
|
|
@@ -283,87 +283,81 @@ body[data-awsui-focus-visible=true] .awsui_navigation_1xupv_17xky_151.awsui_refr
|
|
|
283
283
|
padding-block-start: var(--space-xxs-p8yyaw, 4px);
|
|
284
284
|
inline-size: 200px;
|
|
285
285
|
}
|
|
286
|
-
.
|
|
286
|
+
.awsui_navigation_1xupv_1ks7f_151:not(#\9):not(.awsui_refresh_1xupv_1ks7f_135) > ul:not(.awsui_refresh_1xupv_1ks7f_135) {
|
|
287
287
|
list-style: none;
|
|
288
288
|
padding-block: 0;
|
|
289
289
|
padding-inline: 0;
|
|
290
290
|
margin-block: 0;
|
|
291
291
|
margin-inline: 0;
|
|
292
292
|
}
|
|
293
|
-
.
|
|
293
|
+
.awsui_navigation_1xupv_1ks7f_151:not(#\9):not(.awsui_refresh_1xupv_1ks7f_135) > ul:not(.awsui_refresh_1xupv_1ks7f_135) > li {
|
|
294
294
|
min-inline-size: 0;
|
|
295
295
|
word-break: break-word;
|
|
296
296
|
padding-block: 0 var(--space-scaled-m-mo5yse, 16px);
|
|
297
297
|
}
|
|
298
|
-
.
|
|
298
|
+
.awsui_navigation_1xupv_1ks7f_151:not(#\9):not(.awsui_refresh_1xupv_1ks7f_135) > ul:not(.awsui_refresh_1xupv_1ks7f_135) > li:not(:first-child) {
|
|
299
299
|
margin-block-start: var(--space-scaled-m-mo5yse, 16px);
|
|
300
300
|
}
|
|
301
|
-
.
|
|
301
|
+
.awsui_navigation_1xupv_1ks7f_151:not(#\9):not(.awsui_refresh_1xupv_1ks7f_135) > ul:not(.awsui_refresh_1xupv_1ks7f_135) > li:not(:last-child) {
|
|
302
302
|
border-block-end: var(--border-divider-list-width-27y3k5, 1px) solid var(--color-border-layout-ownedw, #d1d5db);
|
|
303
303
|
}
|
|
304
304
|
|
|
305
|
-
.
|
|
305
|
+
.awsui_form_1xupv_1ks7f_304:not(#\9):not(.awsui_refresh_1xupv_1ks7f_135) {
|
|
306
306
|
min-inline-size: 0;
|
|
307
307
|
word-break: break-word;
|
|
308
308
|
inline-size: 100%;
|
|
309
309
|
}
|
|
310
|
-
.
|
|
310
|
+
.awsui_form_1xupv_1ks7f_304:not(#\9):not(.awsui_refresh_1xupv_1ks7f_135) > .awsui_form-header_1xupv_1ks7f_309 {
|
|
311
311
|
position: relative;
|
|
312
312
|
margin-block-end: var(--space-scaled-m-mo5yse, 16px);
|
|
313
313
|
}
|
|
314
314
|
|
|
315
|
-
.
|
|
315
|
+
.awsui_form_1xupv_1ks7f_304.awsui_refresh_1xupv_1ks7f_135:not(#\9) {
|
|
316
316
|
min-inline-size: 0;
|
|
317
317
|
word-break: break-word;
|
|
318
318
|
display: contents;
|
|
319
319
|
}
|
|
320
|
-
.
|
|
321
|
-
background-color: var(--color-background-layout-main-nx09lr, #ffffff);
|
|
322
|
-
grid-column: 1/span 2;
|
|
323
|
-
grid-row: 1;
|
|
324
|
-
color: var(--color-text-body-default-at06ol, #000716);
|
|
325
|
-
}
|
|
326
|
-
.awsui_form_1xupv_17xky_304.awsui_refresh_1xupv_17xky_135 > .awsui_form-header_1xupv_17xky_309:not(#\9) {
|
|
320
|
+
.awsui_form_1xupv_1ks7f_304.awsui_refresh_1xupv_1ks7f_135 > .awsui_form-header_1xupv_1ks7f_309:not(#\9) {
|
|
327
321
|
background-color: var(--color-background-layout-main-nx09lr, #ffffff);
|
|
328
322
|
grid-column: 2;
|
|
329
323
|
grid-row: 1;
|
|
330
324
|
color: var(--color-text-body-default-at06ol, #000716);
|
|
331
325
|
}
|
|
332
|
-
.
|
|
326
|
+
.awsui_form_1xupv_1ks7f_304.awsui_refresh_1xupv_1ks7f_135 > .awsui_form-header_1xupv_1ks7f_309 > .awsui_form-header-content_1xupv_1ks7f_325:not(#\9) {
|
|
333
327
|
padding-block-start: calc(var(--space-xl-lmui9r, 24px) + var(--space-scaled-xxxs-27y4hv, 2px));
|
|
334
328
|
padding-block-end: var(--space-scaled-s-aqzyko, 12px);
|
|
335
329
|
}
|
|
336
|
-
.
|
|
330
|
+
.awsui_form_1xupv_1ks7f_304.awsui_refresh_1xupv_1ks7f_135 > .awsui_form-component_1xupv_1ks7f_329:not(#\9) {
|
|
337
331
|
grid-column: 2;
|
|
338
332
|
grid-row: 2;
|
|
339
333
|
}
|
|
340
|
-
.
|
|
334
|
+
.awsui_form_1xupv_1ks7f_304.awsui_refresh_1xupv_1ks7f_135.awsui_small-container_1xupv_1ks7f_142 > .awsui_form-header_1xupv_1ks7f_309:not(#\9) {
|
|
341
335
|
grid-column: 1/span 2;
|
|
342
336
|
}
|
|
343
|
-
.
|
|
337
|
+
.awsui_form_1xupv_1ks7f_304.awsui_refresh_1xupv_1ks7f_135.awsui_small-container_1xupv_1ks7f_142 > .awsui_form-header_1xupv_1ks7f_309 > .awsui_form-header-content_1xupv_1ks7f_325:not(#\9) {
|
|
344
338
|
padding-block-start: 0;
|
|
345
339
|
}
|
|
346
|
-
.
|
|
340
|
+
.awsui_form_1xupv_1ks7f_304.awsui_refresh_1xupv_1ks7f_135.awsui_small-container_1xupv_1ks7f_142 > .awsui_form-component_1xupv_1ks7f_329:not(#\9) {
|
|
347
341
|
grid-column: 1/span 2;
|
|
348
342
|
}
|
|
349
343
|
|
|
350
|
-
.
|
|
344
|
+
.awsui_navigation_1xupv_1ks7f_151.awsui_hidden_1xupv_1ks7f_343:not(#\9) {
|
|
351
345
|
display: none;
|
|
352
346
|
}
|
|
353
347
|
|
|
354
|
-
.awsui_collapsed-
|
|
348
|
+
.awsui_collapsed-steps_1xupv_1ks7f_347:not(#\9) {
|
|
355
349
|
color: var(--color-text-heading-secondary-37b2tq, #414d5c);
|
|
356
350
|
font-weight: 700;
|
|
357
351
|
padding-block-start: var(--space-scaled-xxs-7597g1, 4px);
|
|
358
352
|
}
|
|
359
|
-
.awsui_collapsed-steps-
|
|
353
|
+
.awsui_collapsed-steps-hidden_1xupv_1ks7f_352:not(#\9) {
|
|
360
354
|
display: none;
|
|
361
355
|
}
|
|
362
356
|
|
|
363
|
-
.awsui_form-header-component-
|
|
357
|
+
.awsui_form-header-component-wrapper_1xupv_1ks7f_356:not(#\9) {
|
|
364
358
|
outline: none;
|
|
365
359
|
}
|
|
366
|
-
body[data-awsui-focus-visible=true] .awsui_form-header-component-
|
|
360
|
+
body[data-awsui-focus-visible=true] .awsui_form-header-component-wrapper_1xupv_1ks7f_356:not(#\9):focus {
|
|
367
361
|
outline: thin dotted;
|
|
368
362
|
outline: var(--border-link-focus-ring-outline-kkfop6, 0);
|
|
369
363
|
outline-offset: 2px;
|
|
@@ -375,30 +369,30 @@ body[data-awsui-focus-visible=true] .awsui_form-header-component-wrapper_1xupv_1
|
|
|
375
369
|
box-shadow: 0 0 0 var(--border-link-focus-ring-shadow-spread-v8hkrl, 2px) var(--color-border-item-focused-b2ntyl, #0972d3);
|
|
376
370
|
}
|
|
377
371
|
|
|
378
|
-
.awsui_form-header-
|
|
379
|
-
.awsui_navigation-
|
|
380
|
-
.awsui_navigation-link-
|
|
381
|
-
.awsui_navigation-link-
|
|
372
|
+
.awsui_form-header-component_1xupv_1ks7f_356:not(#\9),
|
|
373
|
+
.awsui_navigation-link_1xupv_1ks7f_372:not(#\9),
|
|
374
|
+
.awsui_navigation-link-item_1xupv_1ks7f_373:not(#\9),
|
|
375
|
+
.awsui_navigation-link-label_1xupv_1ks7f_374:not(#\9) {
|
|
382
376
|
/* used in test-utils */
|
|
383
377
|
}
|
|
384
378
|
|
|
385
|
-
.awsui_navigation-link-
|
|
379
|
+
.awsui_navigation-link-active_1xupv_1ks7f_378:not(#\9) {
|
|
386
380
|
font-weight: 700;
|
|
387
381
|
color: var(--color-text-body-default-at06ol, #000716);
|
|
388
382
|
}
|
|
389
383
|
|
|
390
|
-
.awsui_navigation-link-
|
|
384
|
+
.awsui_navigation-link-disabled_1xupv_1ks7f_383:not(#\9) {
|
|
391
385
|
color: var(--color-text-status-inactive-m7co45, #5f6b7a);
|
|
392
386
|
}
|
|
393
387
|
|
|
394
|
-
.awsui_cancel-
|
|
395
|
-
.awsui_previous-
|
|
396
|
-
.awsui_primary-
|
|
397
|
-
.awsui_skip-to-
|
|
388
|
+
.awsui_cancel-button_1xupv_1ks7f_387:not(#\9),
|
|
389
|
+
.awsui_previous-button_1xupv_1ks7f_388:not(#\9),
|
|
390
|
+
.awsui_primary-button_1xupv_1ks7f_389:not(#\9),
|
|
391
|
+
.awsui_skip-to-button_1xupv_1ks7f_390:not(#\9) {
|
|
398
392
|
/* used in test-utils */
|
|
399
393
|
}
|
|
400
394
|
|
|
401
|
-
.awsui_action-
|
|
395
|
+
.awsui_action-buttons_1xupv_1ks7f_394:not(#\9) {
|
|
402
396
|
display: flex;
|
|
403
397
|
justify-content: flex-end;
|
|
404
398
|
}
|
|
@@ -2,36 +2,35 @@
|
|
|
2
2
|
// es-module interop with Babel and Typescript
|
|
3
3
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4
4
|
module.exports.default = {
|
|
5
|
-
"root": "
|
|
6
|
-
"wizard": "
|
|
7
|
-
"refresh": "
|
|
8
|
-
"small-container": "awsui_small-
|
|
9
|
-
"navigation": "
|
|
10
|
-
"number": "
|
|
11
|
-
"circle": "
|
|
12
|
-
"title": "
|
|
13
|
-
"active": "
|
|
14
|
-
"disabled": "
|
|
15
|
-
"enabled": "
|
|
16
|
-
"form": "
|
|
17
|
-
"form-header": "awsui_form-
|
|
18
|
-
"
|
|
19
|
-
"form-
|
|
20
|
-
"
|
|
21
|
-
"
|
|
22
|
-
"collapsed-steps": "awsui_collapsed-
|
|
23
|
-
"
|
|
24
|
-
"form-header-component
|
|
25
|
-
"
|
|
26
|
-
"navigation-link": "awsui_navigation-
|
|
27
|
-
"navigation-link-
|
|
28
|
-
"navigation-link-
|
|
29
|
-
"navigation-link-
|
|
30
|
-
"
|
|
31
|
-
"
|
|
32
|
-
"
|
|
33
|
-
"
|
|
34
|
-
"
|
|
35
|
-
"action-buttons": "awsui_action-buttons_1xupv_17xky_400"
|
|
5
|
+
"root": "awsui_root_1xupv_1ks7f_100",
|
|
6
|
+
"wizard": "awsui_wizard_1xupv_1ks7f_135",
|
|
7
|
+
"refresh": "awsui_refresh_1xupv_1ks7f_135",
|
|
8
|
+
"small-container": "awsui_small-container_1xupv_1ks7f_142",
|
|
9
|
+
"navigation": "awsui_navigation_1xupv_1ks7f_151",
|
|
10
|
+
"number": "awsui_number_1xupv_1ks7f_183",
|
|
11
|
+
"circle": "awsui_circle_1xupv_1ks7f_199",
|
|
12
|
+
"title": "awsui_title_1xupv_1ks7f_210",
|
|
13
|
+
"active": "awsui_active_1xupv_1ks7f_241",
|
|
14
|
+
"disabled": "awsui_disabled_1xupv_1ks7f_252",
|
|
15
|
+
"enabled": "awsui_enabled_1xupv_1ks7f_262",
|
|
16
|
+
"form": "awsui_form_1xupv_1ks7f_304",
|
|
17
|
+
"form-header": "awsui_form-header_1xupv_1ks7f_309",
|
|
18
|
+
"form-header-content": "awsui_form-header-content_1xupv_1ks7f_325",
|
|
19
|
+
"form-component": "awsui_form-component_1xupv_1ks7f_329",
|
|
20
|
+
"hidden": "awsui_hidden_1xupv_1ks7f_343",
|
|
21
|
+
"collapsed-steps": "awsui_collapsed-steps_1xupv_1ks7f_347",
|
|
22
|
+
"collapsed-steps-hidden": "awsui_collapsed-steps-hidden_1xupv_1ks7f_352",
|
|
23
|
+
"form-header-component-wrapper": "awsui_form-header-component-wrapper_1xupv_1ks7f_356",
|
|
24
|
+
"form-header-component": "awsui_form-header-component_1xupv_1ks7f_356",
|
|
25
|
+
"navigation-link": "awsui_navigation-link_1xupv_1ks7f_372",
|
|
26
|
+
"navigation-link-item": "awsui_navigation-link-item_1xupv_1ks7f_373",
|
|
27
|
+
"navigation-link-label": "awsui_navigation-link-label_1xupv_1ks7f_374",
|
|
28
|
+
"navigation-link-active": "awsui_navigation-link-active_1xupv_1ks7f_378",
|
|
29
|
+
"navigation-link-disabled": "awsui_navigation-link-disabled_1xupv_1ks7f_383",
|
|
30
|
+
"cancel-button": "awsui_cancel-button_1xupv_1ks7f_387",
|
|
31
|
+
"previous-button": "awsui_previous-button_1xupv_1ks7f_388",
|
|
32
|
+
"primary-button": "awsui_primary-button_1xupv_1ks7f_389",
|
|
33
|
+
"skip-to-button": "awsui_skip-to-button_1xupv_1ks7f_390",
|
|
34
|
+
"action-buttons": "awsui_action-buttons_1xupv_1ks7f_394"
|
|
36
35
|
};
|
|
37
36
|
|