@cloudscape-design/components 3.0.1120 → 3.0.1122
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/app-layout/visual-refresh-toolbar/drawer/styles.css.js +27 -27
- package/app-layout/visual-refresh-toolbar/drawer/styles.scoped.css +78 -78
- package/app-layout/visual-refresh-toolbar/drawer/styles.selectors.js +27 -27
- package/input/styles.css.js +13 -13
- package/input/styles.scoped.css +34 -34
- package/input/styles.selectors.js +13 -13
- package/internal/base-component/styles.scoped.css +1 -1
- package/internal/environment.js +2 -2
- package/internal/environment.json +2 -2
- package/internal/manifest.json +1 -1
- package/package.json +1 -1
- package/status-indicator/internal.d.ts +14 -1
- package/status-indicator/internal.d.ts.map +1 -1
- package/status-indicator/internal.js +6 -3
- package/status-indicator/internal.js.map +1 -1
- package/steps/index.js +11 -13
- package/steps/interfaces.d.ts +18 -0
- package/steps/interfaces.d.ts.map +1 -1
- package/steps/interfaces.js.map +1 -1
- package/steps/internal-do-not-use-core.js +20 -0
- package/steps/internal.d.ts +2 -0
- package/steps/internal.d.ts.map +1 -1
- package/steps/internal.js +31 -7
- package/steps/internal.js.map +1 -1
- package/steps/styles.css.js +9 -6
- package/steps/styles.scoped.css +58 -7
- package/steps/styles.selectors.js +9 -6
- /package/steps/{index.js.map → internal-do-not-use-core.js.map} +0 -0
package/steps/internal.js
CHANGED
|
@@ -3,19 +3,43 @@ import { __rest } from "tslib";
|
|
|
3
3
|
// SPDX-License-Identifier: Apache-2.0
|
|
4
4
|
import React from 'react';
|
|
5
5
|
import clsx from 'clsx';
|
|
6
|
-
import
|
|
6
|
+
import InternalBox from '../box/internal';
|
|
7
|
+
import InternalStatusIndicator, { InternalStatusIcon } from '../status-indicator/internal';
|
|
7
8
|
import styles from './styles.css.js';
|
|
8
|
-
const
|
|
9
|
+
const statusToColor = {
|
|
10
|
+
error: 'text-status-error',
|
|
11
|
+
warning: 'text-status-warning',
|
|
12
|
+
success: 'text-status-success',
|
|
13
|
+
info: 'text-status-info',
|
|
14
|
+
stopped: 'text-status-inactive',
|
|
15
|
+
pending: 'text-status-inactive',
|
|
16
|
+
'in-progress': 'text-status-inactive',
|
|
17
|
+
loading: 'text-status-inactive',
|
|
18
|
+
};
|
|
19
|
+
const CustomStep = ({ step, orientation, renderStep, }) => {
|
|
20
|
+
const { status, statusIconAriaLabel } = step;
|
|
21
|
+
const { header, details, icon } = renderStep(step);
|
|
9
22
|
return (React.createElement("li", { className: styles.container },
|
|
10
23
|
React.createElement("div", { className: styles.header },
|
|
11
|
-
React.createElement(
|
|
12
|
-
|
|
24
|
+
icon ? icon : React.createElement(InternalStatusIcon, { type: status, iconAriaLabel: statusIconAriaLabel }),
|
|
25
|
+
orientation === 'vertical' ? header : React.createElement("hr", { className: styles.connector, role: "none" })),
|
|
26
|
+
orientation === 'vertical' ? (React.createElement("hr", { className: styles.connector, role: "none" })) : (React.createElement("div", { className: styles['horizontal-header'] }, header)),
|
|
27
|
+
details && React.createElement("div", { className: styles.details }, details)));
|
|
28
|
+
};
|
|
29
|
+
const InternalStep = ({ status, statusIconAriaLabel, header, details, orientation, }) => {
|
|
30
|
+
return (React.createElement("li", { className: styles.container },
|
|
31
|
+
React.createElement("div", { className: styles.header }, orientation === 'vertical' ? (React.createElement(InternalStatusIndicator, { type: status, iconAriaLabel: statusIconAriaLabel }, header)) : (React.createElement(React.Fragment, null,
|
|
32
|
+
React.createElement(InternalBox, { color: statusToColor[status] },
|
|
33
|
+
React.createElement(InternalStatusIcon, { type: status, iconAriaLabel: statusIconAriaLabel })),
|
|
34
|
+
React.createElement("hr", { className: styles.connector, role: "none" })))),
|
|
35
|
+
orientation === 'vertical' ? (React.createElement("hr", { className: styles.connector, role: "none" })) : (React.createElement("div", { className: styles['horizontal-header'] },
|
|
36
|
+
React.createElement(InternalBox, { color: statusToColor[status] }, header))),
|
|
13
37
|
details && React.createElement("div", { className: styles.details }, details)));
|
|
14
38
|
};
|
|
15
39
|
const InternalSteps = (_a) => {
|
|
16
|
-
var { steps, ariaLabel, ariaLabelledby, ariaDescribedby, __internalRootRef } = _a, props = __rest(_a, ["steps", "ariaLabel", "ariaLabelledby", "ariaDescribedby", "__internalRootRef"]);
|
|
17
|
-
return (React.createElement("div", Object.assign({}, props, { className: clsx(styles.root, props.className), ref: __internalRootRef }),
|
|
18
|
-
React.createElement("ol", { className: styles.list, "aria-label": ariaLabel, "aria-labelledby": ariaLabelledby, "aria-describedby": ariaDescribedby }, steps.map((step, index) => (React.createElement(InternalStep, { key: index, status: step.status, statusIconAriaLabel: step.statusIconAriaLabel, header: step.header, details: step.details }))))));
|
|
40
|
+
var { steps, orientation = 'vertical', renderStep, ariaLabel, ariaLabelledby, ariaDescribedby, __internalRootRef } = _a, props = __rest(_a, ["steps", "orientation", "renderStep", "ariaLabel", "ariaLabelledby", "ariaDescribedby", "__internalRootRef"]);
|
|
41
|
+
return (React.createElement("div", Object.assign({}, props, { className: clsx(styles.root, props.className, orientation === 'horizontal' ? styles.horizontal : styles.vertical), ref: __internalRootRef }),
|
|
42
|
+
React.createElement("ol", { className: styles.list, "aria-label": ariaLabel, "aria-labelledby": ariaLabelledby, "aria-describedby": ariaDescribedby }, steps.map((step, index) => renderStep ? (React.createElement(CustomStep, { key: index, orientation: orientation, step: step, renderStep: renderStep })) : (React.createElement(InternalStep, { key: index, status: step.status, statusIconAriaLabel: step.statusIconAriaLabel, header: step.header, details: step.details, orientation: orientation }))))));
|
|
19
43
|
};
|
|
20
44
|
export default InternalSteps;
|
|
21
45
|
//# sourceMappingURL=internal.js.map
|
package/steps/internal.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"internal.js","sourceRoot":"","sources":["../../../src/steps/internal.tsx"],"names":[],"mappings":";AAAA,qEAAqE;AACrE,sCAAsC;AACtC,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,IAAI,MAAM,MAAM,CAAC;
|
|
1
|
+
{"version":3,"file":"internal.js","sourceRoot":"","sources":["../../../src/steps/internal.tsx"],"names":[],"mappings":"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","sourcesContent":["// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.\n// SPDX-License-Identifier: Apache-2.0\nimport React from 'react';\nimport clsx from 'clsx';\n\nimport { BoxProps } from '../box/interfaces';\nimport InternalBox from '../box/internal';\nimport { InternalBaseComponentProps } from '../internal/hooks/use-base-component';\nimport { SomeRequired } from '../internal/types';\nimport InternalStatusIndicator, { InternalStatusIcon } from '../status-indicator/internal';\nimport { StepsProps } from './interfaces';\n\nimport styles from './styles.css.js';\n\ntype InternalStepsProps = SomeRequired<StepsProps, 'steps'> & InternalBaseComponentProps;\n\nconst statusToColor: Record<StepsProps.Status, BoxProps.Color> = {\n error: 'text-status-error',\n warning: 'text-status-warning',\n success: 'text-status-success',\n info: 'text-status-info',\n stopped: 'text-status-inactive',\n pending: 'text-status-inactive',\n 'in-progress': 'text-status-inactive',\n loading: 'text-status-inactive',\n};\n\nconst CustomStep = ({\n step,\n orientation,\n renderStep,\n}: {\n step: StepsProps.Step;\n orientation: StepsProps.Orientation;\n renderStep: Required<StepsProps>['renderStep'];\n}) => {\n const { status, statusIconAriaLabel } = step;\n const { header, details, icon } = renderStep(step);\n return (\n <li className={styles.container}>\n <div className={styles.header}>\n {icon ? icon : <InternalStatusIcon type={status} iconAriaLabel={statusIconAriaLabel} />}\n {orientation === 'vertical' ? header : <hr className={styles.connector} role=\"none\" />}\n </div>\n {orientation === 'vertical' ? (\n <hr className={styles.connector} role=\"none\" />\n ) : (\n <div className={styles['horizontal-header']}>{header}</div>\n )}\n {details && <div className={styles.details}>{details}</div>}\n </li>\n );\n};\n\nconst InternalStep = ({\n status,\n statusIconAriaLabel,\n header,\n details,\n orientation,\n}: StepsProps.Step & { orientation: StepsProps.Orientation }) => {\n return (\n <li className={styles.container}>\n <div className={styles.header}>\n {orientation === 'vertical' ? (\n <InternalStatusIndicator type={status} iconAriaLabel={statusIconAriaLabel}>\n {header}\n </InternalStatusIndicator>\n ) : (\n <>\n <InternalBox color={statusToColor[status]}>\n <InternalStatusIcon type={status} iconAriaLabel={statusIconAriaLabel} />\n </InternalBox>\n <hr className={styles.connector} role=\"none\" />\n </>\n )}\n </div>\n {orientation === 'vertical' ? (\n <hr className={styles.connector} role=\"none\" />\n ) : (\n <div className={styles['horizontal-header']}>\n <InternalBox color={statusToColor[status]}>{header}</InternalBox>\n </div>\n )}\n {details && <div className={styles.details}>{details}</div>}\n </li>\n );\n};\n\nconst InternalSteps = ({\n steps,\n orientation = 'vertical',\n renderStep,\n ariaLabel,\n ariaLabelledby,\n ariaDescribedby,\n __internalRootRef,\n ...props\n}: InternalStepsProps) => {\n return (\n <div\n {...props}\n className={clsx(styles.root, props.className, orientation === 'horizontal' ? styles.horizontal : styles.vertical)}\n ref={__internalRootRef}\n >\n <ol\n className={styles.list}\n aria-label={ariaLabel}\n aria-labelledby={ariaLabelledby}\n aria-describedby={ariaDescribedby}\n >\n {steps.map((step, index) =>\n renderStep ? (\n <CustomStep key={index} orientation={orientation} step={step} renderStep={renderStep} />\n ) : (\n <InternalStep\n key={index}\n status={step.status}\n statusIconAriaLabel={step.statusIconAriaLabel}\n header={step.header}\n details={step.details}\n orientation={orientation}\n />\n )\n )}\n </ol>\n </div>\n );\n};\n\nexport default InternalSteps;\n"]}
|
package/steps/styles.css.js
CHANGED
|
@@ -1,11 +1,14 @@
|
|
|
1
1
|
|
|
2
2
|
import './styles.scoped.css';
|
|
3
3
|
export default {
|
|
4
|
-
"root": "
|
|
5
|
-
"list": "
|
|
6
|
-
"container": "
|
|
7
|
-
"header": "
|
|
8
|
-
"details": "
|
|
9
|
-
"connector": "
|
|
4
|
+
"root": "awsui_root_gxp9y_ijhcb_181",
|
|
5
|
+
"list": "awsui_list_gxp9y_ijhcb_214",
|
|
6
|
+
"container": "awsui_container_gxp9y_ijhcb_219",
|
|
7
|
+
"header": "awsui_header_gxp9y_ijhcb_224",
|
|
8
|
+
"details": "awsui_details_gxp9y_ijhcb_230",
|
|
9
|
+
"connector": "awsui_connector_gxp9y_ijhcb_236",
|
|
10
|
+
"custom": "awsui_custom_gxp9y_ijhcb_252",
|
|
11
|
+
"horizontal": "awsui_horizontal_gxp9y_ijhcb_256",
|
|
12
|
+
"horizontal-header": "awsui_horizontal-header_gxp9y_ijhcb_288"
|
|
10
13
|
};
|
|
11
14
|
|
package/steps/styles.scoped.css
CHANGED
|
@@ -178,7 +178,7 @@
|
|
|
178
178
|
*/
|
|
179
179
|
/* Style used for links in slots/components that are text heavy, to help links stand out among
|
|
180
180
|
surrounding text. (WCAG F73) https://www.w3.org/WAI/WCAG21/Techniques/failures/F73#description */
|
|
181
|
-
.
|
|
181
|
+
.awsui_root_gxp9y_ijhcb_181:not(#\9) {
|
|
182
182
|
border-collapse: separate;
|
|
183
183
|
border-spacing: 0;
|
|
184
184
|
box-sizing: border-box;
|
|
@@ -208,28 +208,32 @@ surrounding text. (WCAG F73) https://www.w3.org/WAI/WCAG21/Techniques/failures/F
|
|
|
208
208
|
font-family: var(--font-family-base-gmnpzl, "Open Sans", "Helvetica Neue", Roboto, Arial, sans-serif);
|
|
209
209
|
-webkit-font-smoothing: auto;
|
|
210
210
|
-moz-osx-font-smoothing: auto;
|
|
211
|
+
min-inline-size: 0;
|
|
212
|
+
word-break: break-word;
|
|
211
213
|
}
|
|
212
|
-
.
|
|
214
|
+
.awsui_root_gxp9y_ijhcb_181 > .awsui_list_gxp9y_ijhcb_214:not(#\9) {
|
|
213
215
|
list-style: none;
|
|
214
216
|
padding-inline-start: 0;
|
|
215
217
|
margin-block: 0;
|
|
216
218
|
}
|
|
217
|
-
.
|
|
219
|
+
.awsui_root_gxp9y_ijhcb_181 > .awsui_list_gxp9y_ijhcb_214 > .awsui_container_gxp9y_ijhcb_219:not(#\9) {
|
|
218
220
|
display: grid;
|
|
219
221
|
grid-template-columns: var(--space-static-l-n53k41, 20px) 1fr;
|
|
220
222
|
grid-template-rows: minmax(var(--space-static-l-n53k41, 20px), auto);
|
|
221
223
|
}
|
|
222
|
-
.
|
|
224
|
+
.awsui_root_gxp9y_ijhcb_181 > .awsui_list_gxp9y_ijhcb_214 > .awsui_container_gxp9y_ijhcb_219 > .awsui_header_gxp9y_ijhcb_224:not(#\9) {
|
|
225
|
+
display: flex;
|
|
226
|
+
gap: var(--space-xxs-hwfkai, 4px);
|
|
223
227
|
grid-row: 1;
|
|
224
228
|
grid-column: 1/span 2;
|
|
225
229
|
}
|
|
226
|
-
.
|
|
230
|
+
.awsui_root_gxp9y_ijhcb_181 > .awsui_list_gxp9y_ijhcb_214 > .awsui_container_gxp9y_ijhcb_219 > .awsui_details_gxp9y_ijhcb_230:not(#\9) {
|
|
227
231
|
align-items: center;
|
|
228
232
|
grid-row: 2;
|
|
229
233
|
grid-column: 2;
|
|
230
234
|
margin-block-end: var(--space-static-xs-gnm0mz, 8px);
|
|
231
235
|
}
|
|
232
|
-
.
|
|
236
|
+
.awsui_root_gxp9y_ijhcb_181 > .awsui_list_gxp9y_ijhcb_214 > .awsui_container_gxp9y_ijhcb_219 > .awsui_connector_gxp9y_ijhcb_236:not(#\9) {
|
|
233
237
|
grid-row: 2;
|
|
234
238
|
grid-column: 1;
|
|
235
239
|
background-color: var(--color-border-divider-default-nr68jt, #c6c6cd);
|
|
@@ -242,6 +246,53 @@ surrounding text. (WCAG F73) https://www.w3.org/WAI/WCAG21/Techniques/failures/F
|
|
|
242
246
|
position: relative;
|
|
243
247
|
inset-inline-end: var(--space-static-xxxs-yidks1, 2px);
|
|
244
248
|
}
|
|
245
|
-
.
|
|
249
|
+
.awsui_root_gxp9y_ijhcb_181 > .awsui_list_gxp9y_ijhcb_214 > :not(#\9):last-of-type > .awsui_connector_gxp9y_ijhcb_236 {
|
|
250
|
+
display: none;
|
|
251
|
+
}
|
|
252
|
+
.awsui_root_gxp9y_ijhcb_181 > .awsui_list_gxp9y_ijhcb_214.awsui_custom_gxp9y_ijhcb_252 > .awsui_details_gxp9y_ijhcb_230:not(#\9) {
|
|
253
|
+
margin-block-end: 0;
|
|
254
|
+
}
|
|
255
|
+
|
|
256
|
+
.awsui_horizontal_gxp9y_ijhcb_256 > .awsui_list_gxp9y_ijhcb_214:not(#\9) {
|
|
257
|
+
display: grid;
|
|
258
|
+
align-items: flex-start;
|
|
259
|
+
grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
|
|
260
|
+
grid-auto-flow: column;
|
|
261
|
+
}
|
|
262
|
+
.awsui_horizontal_gxp9y_ijhcb_256 > .awsui_list_gxp9y_ijhcb_214 > .awsui_container_gxp9y_ijhcb_219:not(#\9) {
|
|
263
|
+
display: grid;
|
|
264
|
+
grid-template-columns: var(--space-static-l-n53k41, 20px) 1fr;
|
|
265
|
+
grid-template-rows: minmax(var(--space-static-l-n53k41, 20px), auto);
|
|
266
|
+
align-items: center;
|
|
267
|
+
}
|
|
268
|
+
.awsui_horizontal_gxp9y_ijhcb_256 > .awsui_list_gxp9y_ijhcb_214 > .awsui_container_gxp9y_ijhcb_219 > .awsui_header_gxp9y_ijhcb_224:not(#\9) {
|
|
269
|
+
display: flex;
|
|
270
|
+
grid-row: 1;
|
|
271
|
+
grid-column: 1/span 2;
|
|
272
|
+
align-items: center;
|
|
273
|
+
}
|
|
274
|
+
.awsui_horizontal_gxp9y_ijhcb_256 > .awsui_list_gxp9y_ijhcb_214 > .awsui_container_gxp9y_ijhcb_219 > .awsui_header_gxp9y_ijhcb_224 > .awsui_connector_gxp9y_ijhcb_236:not(#\9) {
|
|
275
|
+
display: block;
|
|
276
|
+
flex: 1;
|
|
277
|
+
background-color: var(--color-border-divider-default-nr68jt, #c6c6cd);
|
|
278
|
+
margin-block: 0;
|
|
279
|
+
border-block: 0;
|
|
280
|
+
border-inline: 0;
|
|
281
|
+
min-block-size: 0;
|
|
282
|
+
inset-inline-end: 0;
|
|
283
|
+
block-size: var(--border-divider-list-width-tdfx1x, 1px);
|
|
284
|
+
inline-size: auto;
|
|
285
|
+
min-inline-size: var(--space-static-xs-gnm0mz, 8px);
|
|
286
|
+
margin-inline-end: var(--space-static-xxs-ns94dp, 4px);
|
|
287
|
+
}
|
|
288
|
+
.awsui_horizontal_gxp9y_ijhcb_256 > .awsui_list_gxp9y_ijhcb_214 > .awsui_container_gxp9y_ijhcb_219 > .awsui_horizontal-header_gxp9y_ijhcb_288:not(#\9) {
|
|
289
|
+
grid-row: 2;
|
|
290
|
+
grid-column: 1/span 3;
|
|
291
|
+
}
|
|
292
|
+
.awsui_horizontal_gxp9y_ijhcb_256 > .awsui_list_gxp9y_ijhcb_214 > .awsui_container_gxp9y_ijhcb_219 > .awsui_details_gxp9y_ijhcb_230:not(#\9) {
|
|
293
|
+
grid-row: 3;
|
|
294
|
+
grid-column: 1/span 3;
|
|
295
|
+
}
|
|
296
|
+
.awsui_horizontal_gxp9y_ijhcb_256 > .awsui_list_gxp9y_ijhcb_214 > .awsui_container_gxp9y_ijhcb_219:not(#\9):last-child > .awsui_header_gxp9y_ijhcb_224 > .awsui_connector_gxp9y_ijhcb_236 {
|
|
246
297
|
display: none;
|
|
247
298
|
}
|
|
@@ -2,11 +2,14 @@
|
|
|
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
|
-
"list": "
|
|
7
|
-
"container": "
|
|
8
|
-
"header": "
|
|
9
|
-
"details": "
|
|
10
|
-
"connector": "
|
|
5
|
+
"root": "awsui_root_gxp9y_ijhcb_181",
|
|
6
|
+
"list": "awsui_list_gxp9y_ijhcb_214",
|
|
7
|
+
"container": "awsui_container_gxp9y_ijhcb_219",
|
|
8
|
+
"header": "awsui_header_gxp9y_ijhcb_224",
|
|
9
|
+
"details": "awsui_details_gxp9y_ijhcb_230",
|
|
10
|
+
"connector": "awsui_connector_gxp9y_ijhcb_236",
|
|
11
|
+
"custom": "awsui_custom_gxp9y_ijhcb_252",
|
|
12
|
+
"horizontal": "awsui_horizontal_gxp9y_ijhcb_256",
|
|
13
|
+
"horizontal-header": "awsui_horizontal-header_gxp9y_ijhcb_288"
|
|
11
14
|
};
|
|
12
15
|
|
|
File without changes
|