@cloudscape-design/components-themeable 3.0.936 → 3.0.937
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/lib/internal/manifest.json +1 -1
- package/lib/internal/scss/code-editor/resizable-box/styles.scss +7 -15
- package/lib/internal/scss/internal/components/drag-handle-wrapper/motion.scss +190 -0
- package/lib/internal/scss/internal/components/drag-handle-wrapper/styles.scss +110 -0
- package/lib/internal/template/code-editor/index.d.ts.map +1 -1
- package/lib/internal/template/code-editor/index.js +2 -2
- package/lib/internal/template/code-editor/index.js.map +1 -1
- package/lib/internal/template/code-editor/interfaces.d.ts +2 -0
- package/lib/internal/template/code-editor/interfaces.d.ts.map +1 -1
- package/lib/internal/template/code-editor/interfaces.js.map +1 -1
- package/lib/internal/template/code-editor/pane.d.ts +3 -1
- package/lib/internal/template/code-editor/pane.d.ts.map +1 -1
- package/lib/internal/template/code-editor/pane.js +2 -2
- package/lib/internal/template/code-editor/pane.js.map +1 -1
- package/lib/internal/template/code-editor/resizable-box/index.d.ts +3 -1
- package/lib/internal/template/code-editor/resizable-box/index.d.ts.map +1 -1
- package/lib/internal/template/code-editor/resizable-box/index.js +40 -8
- package/lib/internal/template/code-editor/resizable-box/index.js.map +1 -1
- package/lib/internal/template/code-editor/resizable-box/styles.css.js +4 -3
- package/lib/internal/template/code-editor/resizable-box/styles.scoped.css +16 -37
- package/lib/internal/template/code-editor/resizable-box/styles.selectors.js +4 -3
- package/lib/internal/template/i18n/messages/all.all.js +1 -1
- package/lib/internal/template/i18n/messages/all.all.json +1 -1
- package/lib/internal/template/i18n/messages/all.ar.js +1 -1
- package/lib/internal/template/i18n/messages/all.ar.json +1 -1
- package/lib/internal/template/i18n/messages/all.de.js +1 -1
- package/lib/internal/template/i18n/messages/all.de.json +1 -1
- package/lib/internal/template/i18n/messages/all.en-GB.js +1 -1
- package/lib/internal/template/i18n/messages/all.en-GB.json +1 -1
- package/lib/internal/template/i18n/messages/all.en.js +1 -1
- package/lib/internal/template/i18n/messages/all.en.json +1 -1
- package/lib/internal/template/i18n/messages/all.es.js +1 -1
- package/lib/internal/template/i18n/messages/all.es.json +1 -1
- package/lib/internal/template/i18n/messages/all.fr.js +1 -1
- package/lib/internal/template/i18n/messages/all.fr.json +1 -1
- package/lib/internal/template/i18n/messages/all.id.js +1 -1
- package/lib/internal/template/i18n/messages/all.id.json +1 -1
- package/lib/internal/template/i18n/messages/all.it.js +1 -1
- package/lib/internal/template/i18n/messages/all.it.json +1 -1
- package/lib/internal/template/i18n/messages/all.ja.js +1 -1
- package/lib/internal/template/i18n/messages/all.ja.json +1 -1
- package/lib/internal/template/i18n/messages/all.ko.js +1 -1
- package/lib/internal/template/i18n/messages/all.ko.json +1 -1
- package/lib/internal/template/i18n/messages/all.pt-BR.js +1 -1
- package/lib/internal/template/i18n/messages/all.pt-BR.json +1 -1
- package/lib/internal/template/i18n/messages/all.tr.js +1 -1
- package/lib/internal/template/i18n/messages/all.tr.json +1 -1
- package/lib/internal/template/i18n/messages/all.zh-CN.js +1 -1
- package/lib/internal/template/i18n/messages/all.zh-CN.json +1 -1
- package/lib/internal/template/i18n/messages/all.zh-TW.js +1 -1
- package/lib/internal/template/i18n/messages/all.zh-TW.json +1 -1
- package/lib/internal/template/i18n/messages-types.d.ts +2 -0
- package/lib/internal/template/i18n/messages-types.d.ts.map +1 -1
- package/lib/internal/template/i18n/messages-types.js.map +1 -1
- package/lib/internal/template/internal/base-component/styles.scoped.css +29 -0
- package/lib/internal/template/internal/components/drag-handle/button.d.ts +5 -0
- package/lib/internal/template/internal/components/drag-handle/button.d.ts.map +1 -0
- package/lib/internal/template/internal/components/drag-handle/button.js +35 -0
- package/lib/internal/template/internal/components/drag-handle/button.js.map +1 -0
- package/lib/internal/template/internal/components/drag-handle/index.d.ts.map +1 -1
- package/lib/internal/template/internal/components/drag-handle/index.js +6 -30
- package/lib/internal/template/internal/components/drag-handle/index.js.map +1 -1
- package/lib/internal/template/internal/components/drag-handle/interfaces.d.ts +7 -1
- package/lib/internal/template/internal/components/drag-handle/interfaces.d.ts.map +1 -1
- package/lib/internal/template/internal/components/drag-handle/interfaces.js.map +1 -1
- package/lib/internal/template/internal/components/drag-handle-wrapper/direction-button.d.ts +11 -0
- package/lib/internal/template/internal/components/drag-handle-wrapper/direction-button.d.ts.map +1 -0
- package/lib/internal/template/internal/components/drag-handle-wrapper/direction-button.js +30 -0
- package/lib/internal/template/internal/components/drag-handle-wrapper/direction-button.js.map +1 -0
- package/lib/internal/template/internal/components/drag-handle-wrapper/index.d.ts +4 -0
- package/lib/internal/template/internal/components/drag-handle-wrapper/index.d.ts.map +1 -0
- package/lib/internal/template/internal/components/drag-handle-wrapper/index.js +138 -0
- package/lib/internal/template/internal/components/drag-handle-wrapper/index.js.map +1 -0
- package/lib/internal/template/internal/components/drag-handle-wrapper/interfaces.d.ts +10 -0
- package/lib/internal/template/internal/components/drag-handle-wrapper/interfaces.d.ts.map +1 -0
- package/lib/internal/template/internal/components/drag-handle-wrapper/interfaces.js +4 -0
- package/lib/internal/template/internal/components/drag-handle-wrapper/interfaces.js.map +1 -0
- package/lib/internal/template/internal/components/drag-handle-wrapper/portal-overlay.d.ts +6 -0
- package/lib/internal/template/internal/components/drag-handle-wrapper/portal-overlay.d.ts.map +1 -0
- package/lib/internal/template/internal/components/drag-handle-wrapper/portal-overlay.js +56 -0
- package/lib/internal/template/internal/components/drag-handle-wrapper/portal-overlay.js.map +1 -0
- package/lib/internal/template/internal/components/drag-handle-wrapper/styles.css.js +32 -0
- package/lib/internal/template/internal/components/drag-handle-wrapper/styles.scoped.css +508 -0
- package/lib/internal/template/internal/components/drag-handle-wrapper/styles.selectors.js +33 -0
- package/lib/internal/template/internal/environment.js +1 -1
- package/lib/internal/template/internal/environment.json +1 -1
- package/lib/internal/template/internal/generated/styles/tokens.d.ts +6 -0
- package/lib/internal/template/internal/generated/styles/tokens.js +6 -0
- package/lib/internal/template/internal/generated/theming/index.cjs +186 -0
- package/lib/internal/template/internal/generated/theming/index.js +186 -0
- package/lib/internal/template/internal/utils/pointer-events-mock.d.ts +5 -0
- package/lib/internal/template/internal/utils/pointer-events-mock.d.ts.map +1 -0
- package/lib/internal/template/internal/utils/pointer-events-mock.js +10 -0
- package/lib/internal/template/internal/utils/pointer-events-mock.js.map +1 -0
- package/package.json +1 -1
- package/lib/internal/scss/code-editor/assets/resize-handler.svg +0 -3
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
2
|
+
// SPDX-License-Identifier: Apache-2.0
|
|
3
|
+
import React, { useEffect, useRef } from 'react';
|
|
4
|
+
import { getIsRtl, getLogicalBoundingClientRect, getScrollInlineStart, } from '@cloudscape-design/component-toolkit/internal';
|
|
5
|
+
import Portal from '../portal';
|
|
6
|
+
import styles from './styles.css.js';
|
|
7
|
+
export default function PortalOverlay({ track, children }) {
|
|
8
|
+
const ref = useRef(null);
|
|
9
|
+
useEffect(() => {
|
|
10
|
+
if (track === null) {
|
|
11
|
+
return;
|
|
12
|
+
}
|
|
13
|
+
let cleanedUp = false;
|
|
14
|
+
let lastX;
|
|
15
|
+
let lastY;
|
|
16
|
+
let lastInlineSize;
|
|
17
|
+
let lastBlockSize;
|
|
18
|
+
const updateElement = () => {
|
|
19
|
+
if (ref.current) {
|
|
20
|
+
const isRtl = getIsRtl(ref.current);
|
|
21
|
+
const { insetInlineStart, insetBlockStart, inlineSize, blockSize } = getLogicalBoundingClientRect(track);
|
|
22
|
+
// For simplicity, we just make all our calculations independent of
|
|
23
|
+
// the browser's scrolling edge. When it comes to applying the changes,
|
|
24
|
+
// translate is independent of writing direction, so we need to invert
|
|
25
|
+
// the X coordinate ourselves just before applying the values.
|
|
26
|
+
const newX = (insetInlineStart + getScrollInlineStart(document.documentElement)) * (isRtl ? -1 : 1);
|
|
27
|
+
const newY = insetBlockStart + document.documentElement.scrollTop;
|
|
28
|
+
if (lastX !== newX || lastY !== newY) {
|
|
29
|
+
ref.current.style.translate = `${newX}px ${newY}px`;
|
|
30
|
+
lastX = newX;
|
|
31
|
+
lastY = newY;
|
|
32
|
+
}
|
|
33
|
+
if (lastInlineSize !== inlineSize || lastBlockSize !== blockSize) {
|
|
34
|
+
ref.current.style.width = `${inlineSize}px`;
|
|
35
|
+
ref.current.style.height = `${blockSize}px`;
|
|
36
|
+
lastInlineSize = inlineSize;
|
|
37
|
+
lastBlockSize = blockSize;
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
if (!cleanedUp) {
|
|
41
|
+
requestAnimationFrame(updateElement);
|
|
42
|
+
}
|
|
43
|
+
};
|
|
44
|
+
updateElement();
|
|
45
|
+
return () => {
|
|
46
|
+
cleanedUp = true;
|
|
47
|
+
};
|
|
48
|
+
}, [track]);
|
|
49
|
+
if (track === null) {
|
|
50
|
+
return null;
|
|
51
|
+
}
|
|
52
|
+
return (React.createElement(Portal, null,
|
|
53
|
+
React.createElement("span", { ref: ref, className: styles['portal-overlay'] },
|
|
54
|
+
React.createElement("span", { className: styles['portal-overlay-contents'] }, children))));
|
|
55
|
+
}
|
|
56
|
+
//# sourceMappingURL=portal-overlay.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"portal-overlay.js","sourceRoot":"","sources":["../../../../../src/internal/components/drag-handle-wrapper/portal-overlay.tsx"],"names":[],"mappings":"AAAA,qEAAqE;AACrE,sCAAsC;AACtC,OAAO,KAAK,EAAE,EAAE,SAAS,EAAE,MAAM,EAAE,MAAM,OAAO,CAAC;AAEjD,OAAO,EACL,QAAQ,EACR,4BAA4B,EAC5B,oBAAoB,GACrB,MAAM,+CAA+C,CAAC;AAEvD,OAAO,MAAM,MAAM,WAAW,CAAC;AAE/B,OAAO,MAAM,MAAM,iBAAiB,CAAC;AAErC,MAAM,CAAC,OAAO,UAAU,aAAa,CAAC,EAAE,KAAK,EAAE,QAAQ,EAA4D;IACjH,MAAM,GAAG,GAAG,MAAM,CAAyB,IAAI,CAAC,CAAC;IAEjD,SAAS,CAAC,GAAG,EAAE;QACb,IAAI,KAAK,KAAK,IAAI,EAAE;YAClB,OAAO;SACR;QAED,IAAI,SAAS,GAAG,KAAK,CAAC;QACtB,IAAI,KAAyB,CAAC;QAC9B,IAAI,KAAyB,CAAC;QAC9B,IAAI,cAAkC,CAAC;QACvC,IAAI,aAAiC,CAAC;QACtC,MAAM,aAAa,GAAG,GAAG,EAAE;YACzB,IAAI,GAAG,CAAC,OAAO,EAAE;gBACf,MAAM,KAAK,GAAG,QAAQ,CAAC,GAAG,CAAC,OAAO,CAAC,CAAC;gBACpC,MAAM,EAAE,gBAAgB,EAAE,eAAe,EAAE,UAAU,EAAE,SAAS,EAAE,GAAG,4BAA4B,CAAC,KAAK,CAAC,CAAC;gBACzG,mEAAmE;gBACnE,uEAAuE;gBACvE,sEAAsE;gBACtE,8DAA8D;gBAC9D,MAAM,IAAI,GAAG,CAAC,gBAAgB,GAAG,oBAAoB,CAAC,QAAQ,CAAC,eAAe,CAAC,CAAC,GAAG,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;gBACpG,MAAM,IAAI,GAAG,eAAe,GAAG,QAAQ,CAAC,eAAe,CAAC,SAAS,CAAC;gBAClE,IAAI,KAAK,KAAK,IAAI,IAAI,KAAK,KAAK,IAAI,EAAE;oBACpC,GAAG,CAAC,OAAO,CAAC,KAAK,CAAC,SAAS,GAAG,GAAG,IAAI,MAAM,IAAI,IAAI,CAAC;oBACpD,KAAK,GAAG,IAAI,CAAC;oBACb,KAAK,GAAG,IAAI,CAAC;iBACd;gBACD,IAAI,cAAc,KAAK,UAAU,IAAI,aAAa,KAAK,SAAS,EAAE;oBAChE,GAAG,CAAC,OAAO,CAAC,KAAK,CAAC,KAAK,GAAG,GAAG,UAAU,IAAI,CAAC;oBAC5C,GAAG,CAAC,OAAO,CAAC,KAAK,CAAC,MAAM,GAAG,GAAG,SAAS,IAAI,CAAC;oBAC5C,cAAc,GAAG,UAAU,CAAC;oBAC5B,aAAa,GAAG,SAAS,CAAC;iBAC3B;aACF;YACD,IAAI,CAAC,SAAS,EAAE;gBACd,qBAAqB,CAAC,aAAa,CAAC,CAAC;aACtC;QACH,CAAC,CAAC;QACF,aAAa,EAAE,CAAC;QAEhB,OAAO,GAAG,EAAE;YACV,SAAS,GAAG,IAAI,CAAC;QACnB,CAAC,CAAC;IACJ,CAAC,EAAE,CAAC,KAAK,CAAC,CAAC,CAAC;IAEZ,IAAI,KAAK,KAAK,IAAI,EAAE;QAClB,OAAO,IAAI,CAAC;KACb;IAED,OAAO,CACL,oBAAC,MAAM;QACL,8BAAM,GAAG,EAAE,GAAG,EAAE,SAAS,EAAE,MAAM,CAAC,gBAAgB,CAAC;YACjD,8BAAM,SAAS,EAAE,MAAM,CAAC,yBAAyB,CAAC,IAAG,QAAQ,CAAQ,CAChE,CACA,CACV,CAAC;AACJ,CAAC","sourcesContent":["// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.\n// SPDX-License-Identifier: Apache-2.0\nimport React, { useEffect, useRef } from 'react';\n\nimport {\n getIsRtl,\n getLogicalBoundingClientRect,\n getScrollInlineStart,\n} from '@cloudscape-design/component-toolkit/internal';\n\nimport Portal from '../portal';\n\nimport styles from './styles.css.js';\n\nexport default function PortalOverlay({ track, children }: { track: HTMLElement | null; children: React.ReactNode }) {\n const ref = useRef<HTMLSpanElement | null>(null);\n\n useEffect(() => {\n if (track === null) {\n return;\n }\n\n let cleanedUp = false;\n let lastX: number | undefined;\n let lastY: number | undefined;\n let lastInlineSize: number | undefined;\n let lastBlockSize: number | undefined;\n const updateElement = () => {\n if (ref.current) {\n const isRtl = getIsRtl(ref.current);\n const { insetInlineStart, insetBlockStart, inlineSize, blockSize } = getLogicalBoundingClientRect(track);\n // For simplicity, we just make all our calculations independent of\n // the browser's scrolling edge. When it comes to applying the changes,\n // translate is independent of writing direction, so we need to invert\n // the X coordinate ourselves just before applying the values.\n const newX = (insetInlineStart + getScrollInlineStart(document.documentElement)) * (isRtl ? -1 : 1);\n const newY = insetBlockStart + document.documentElement.scrollTop;\n if (lastX !== newX || lastY !== newY) {\n ref.current.style.translate = `${newX}px ${newY}px`;\n lastX = newX;\n lastY = newY;\n }\n if (lastInlineSize !== inlineSize || lastBlockSize !== blockSize) {\n ref.current.style.width = `${inlineSize}px`;\n ref.current.style.height = `${blockSize}px`;\n lastInlineSize = inlineSize;\n lastBlockSize = blockSize;\n }\n }\n if (!cleanedUp) {\n requestAnimationFrame(updateElement);\n }\n };\n updateElement();\n\n return () => {\n cleanedUp = true;\n };\n }, [track]);\n\n if (track === null) {\n return null;\n }\n\n return (\n <Portal>\n <span ref={ref} className={styles['portal-overlay']}>\n <span className={styles['portal-overlay-contents']}>{children}</span>\n </span>\n </Portal>\n );\n}\n"]}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
|
|
2
|
+
import './styles.scoped.css';
|
|
3
|
+
export default {
|
|
4
|
+
"direction-button-wrapper": "awsui_direction-button-wrapper_155yk_jt7dv_170",
|
|
5
|
+
"direction-button-wrapper-motion-enter": "awsui_direction-button-wrapper-motion-enter_155yk_jt7dv_180",
|
|
6
|
+
"direction-button-wrapper-motion-entering": "awsui_direction-button-wrapper-motion-entering_155yk_jt7dv_181",
|
|
7
|
+
"direction-button-wrapper-motion-exit": "awsui_direction-button-wrapper-motion-exit_155yk_jt7dv_182",
|
|
8
|
+
"direction-button-wrapper-motion-exiting": "awsui_direction-button-wrapper-motion-exiting_155yk_jt7dv_183",
|
|
9
|
+
"direction-button-wrapper-block-start": "awsui_direction-button-wrapper-block-start_155yk_jt7dv_206",
|
|
10
|
+
"slide-up": "awsui_slide-up_155yk_jt7dv_1",
|
|
11
|
+
"awsui-motion-fade-in": "awsui_awsui-motion-fade-in_155yk_jt7dv_1",
|
|
12
|
+
"slide-up-exit": "awsui_slide-up-exit_155yk_jt7dv_1",
|
|
13
|
+
"awsui-motion-fade-out-0": "awsui_awsui-motion-fade-out-0_155yk_jt7dv_1",
|
|
14
|
+
"direction-button-wrapper-block-end": "awsui_direction-button-wrapper-block-end_155yk_jt7dv_233",
|
|
15
|
+
"slide-down": "awsui_slide-down_155yk_jt7dv_1",
|
|
16
|
+
"slide-down-exit": "awsui_slide-down-exit_155yk_jt7dv_1",
|
|
17
|
+
"direction-button-wrapper-inline-start": "awsui_direction-button-wrapper-inline-start_155yk_jt7dv_260",
|
|
18
|
+
"slide-left": "awsui_slide-left_155yk_jt7dv_1",
|
|
19
|
+
"direction-button-wrapper-rtl": "awsui_direction-button-wrapper-rtl_155yk_jt7dv_273",
|
|
20
|
+
"slide-right": "awsui_slide-right_155yk_jt7dv_1",
|
|
21
|
+
"slide-left-exit": "awsui_slide-left-exit_155yk_jt7dv_1",
|
|
22
|
+
"slide-right-exit": "awsui_slide-right-exit_155yk_jt7dv_1",
|
|
23
|
+
"direction-button-wrapper-inline-end": "awsui_direction-button-wrapper-inline-end_155yk_jt7dv_313",
|
|
24
|
+
"drag-handle-wrapper": "awsui_drag-handle-wrapper_155yk_jt7dv_430",
|
|
25
|
+
"portal-overlay": "awsui_portal-overlay_155yk_jt7dv_435",
|
|
26
|
+
"portal-overlay-contents": "awsui_portal-overlay-contents_155yk_jt7dv_443",
|
|
27
|
+
"drag-handle": "awsui_drag-handle_155yk_jt7dv_430",
|
|
28
|
+
"direction-button-wrapper-hidden": "awsui_direction-button-wrapper-hidden_155yk_jt7dv_460",
|
|
29
|
+
"direction-button": "awsui_direction-button_155yk_jt7dv_170",
|
|
30
|
+
"direction-button-disabled": "awsui_direction-button-disabled_155yk_jt7dv_503"
|
|
31
|
+
};
|
|
32
|
+
|
|
@@ -0,0 +1,508 @@
|
|
|
1
|
+
/*
|
|
2
|
+
Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
3
|
+
SPDX-License-Identifier: Apache-2.0
|
|
4
|
+
*/
|
|
5
|
+
/*
|
|
6
|
+
Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
7
|
+
SPDX-License-Identifier: Apache-2.0
|
|
8
|
+
*/
|
|
9
|
+
/*
|
|
10
|
+
Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
11
|
+
SPDX-License-Identifier: Apache-2.0
|
|
12
|
+
*/
|
|
13
|
+
/*
|
|
14
|
+
Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
15
|
+
SPDX-License-Identifier: Apache-2.0
|
|
16
|
+
*/
|
|
17
|
+
/*
|
|
18
|
+
Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
19
|
+
SPDX-License-Identifier: Apache-2.0
|
|
20
|
+
*/
|
|
21
|
+
/*
|
|
22
|
+
Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
23
|
+
SPDX-License-Identifier: Apache-2.0
|
|
24
|
+
*/
|
|
25
|
+
/*
|
|
26
|
+
Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
27
|
+
SPDX-License-Identifier: Apache-2.0
|
|
28
|
+
*/
|
|
29
|
+
/*
|
|
30
|
+
Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
31
|
+
SPDX-License-Identifier: Apache-2.0
|
|
32
|
+
*/
|
|
33
|
+
/*
|
|
34
|
+
Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
35
|
+
SPDX-License-Identifier: Apache-2.0
|
|
36
|
+
*/
|
|
37
|
+
/*
|
|
38
|
+
Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
39
|
+
SPDX-License-Identifier: Apache-2.0
|
|
40
|
+
*/
|
|
41
|
+
/*
|
|
42
|
+
Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
43
|
+
SPDX-License-Identifier: Apache-2.0
|
|
44
|
+
*/
|
|
45
|
+
/*
|
|
46
|
+
Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
47
|
+
SPDX-License-Identifier: Apache-2.0
|
|
48
|
+
*/
|
|
49
|
+
/*
|
|
50
|
+
Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
51
|
+
SPDX-License-Identifier: Apache-2.0
|
|
52
|
+
*/
|
|
53
|
+
/*
|
|
54
|
+
Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
55
|
+
SPDX-License-Identifier: Apache-2.0
|
|
56
|
+
*/
|
|
57
|
+
/*
|
|
58
|
+
Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
59
|
+
SPDX-License-Identifier: Apache-2.0
|
|
60
|
+
*/
|
|
61
|
+
/*
|
|
62
|
+
Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
63
|
+
SPDX-License-Identifier: Apache-2.0
|
|
64
|
+
*/
|
|
65
|
+
/*
|
|
66
|
+
Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
67
|
+
SPDX-License-Identifier: Apache-2.0
|
|
68
|
+
*/
|
|
69
|
+
/*
|
|
70
|
+
Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
71
|
+
SPDX-License-Identifier: Apache-2.0
|
|
72
|
+
*/
|
|
73
|
+
/*
|
|
74
|
+
Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
75
|
+
SPDX-License-Identifier: Apache-2.0
|
|
76
|
+
*/
|
|
77
|
+
/*
|
|
78
|
+
Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
79
|
+
SPDX-License-Identifier: Apache-2.0
|
|
80
|
+
*/
|
|
81
|
+
/*
|
|
82
|
+
Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
83
|
+
SPDX-License-Identifier: Apache-2.0
|
|
84
|
+
*/
|
|
85
|
+
/*
|
|
86
|
+
Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
87
|
+
SPDX-License-Identifier: Apache-2.0
|
|
88
|
+
*/
|
|
89
|
+
/*
|
|
90
|
+
Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
91
|
+
SPDX-License-Identifier: Apache-2.0
|
|
92
|
+
*/
|
|
93
|
+
/*
|
|
94
|
+
Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
95
|
+
SPDX-License-Identifier: Apache-2.0
|
|
96
|
+
*/
|
|
97
|
+
/*
|
|
98
|
+
Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
99
|
+
SPDX-License-Identifier: Apache-2.0
|
|
100
|
+
*/
|
|
101
|
+
/*
|
|
102
|
+
Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
103
|
+
SPDX-License-Identifier: Apache-2.0
|
|
104
|
+
*/
|
|
105
|
+
/*
|
|
106
|
+
Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
107
|
+
SPDX-License-Identifier: Apache-2.0
|
|
108
|
+
*/
|
|
109
|
+
/*
|
|
110
|
+
Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
111
|
+
SPDX-License-Identifier: Apache-2.0
|
|
112
|
+
*/
|
|
113
|
+
/* stylelint-disable @cloudscape-design/no-motion-outside-of-mixin, selector-combinator-disallowed-list, selector-pseudo-class-no-unknown, selector-class-pattern */
|
|
114
|
+
/* stylelint-enable @cloudscape-design/no-motion-outside-of-mixin, selector-combinator-disallowed-list, selector-pseudo-class-no-unknown, selector-class-pattern */
|
|
115
|
+
/*
|
|
116
|
+
Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
117
|
+
SPDX-License-Identifier: Apache-2.0
|
|
118
|
+
*/
|
|
119
|
+
/*
|
|
120
|
+
Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
121
|
+
SPDX-License-Identifier: Apache-2.0
|
|
122
|
+
*/
|
|
123
|
+
/*
|
|
124
|
+
Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
125
|
+
SPDX-License-Identifier: Apache-2.0
|
|
126
|
+
*/
|
|
127
|
+
/*
|
|
128
|
+
Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
129
|
+
SPDX-License-Identifier: Apache-2.0
|
|
130
|
+
*/
|
|
131
|
+
/*
|
|
132
|
+
Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
133
|
+
SPDX-License-Identifier: Apache-2.0
|
|
134
|
+
*/
|
|
135
|
+
/*
|
|
136
|
+
Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
137
|
+
SPDX-License-Identifier: Apache-2.0
|
|
138
|
+
*/
|
|
139
|
+
/*
|
|
140
|
+
Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
141
|
+
SPDX-License-Identifier: Apache-2.0
|
|
142
|
+
*/
|
|
143
|
+
/* Style used for links in slots/components that are text heavy, to help links stand out among
|
|
144
|
+
surrounding text. (WCAG F73) https://www.w3.org/WAI/WCAG21/Techniques/failures/F73#description */
|
|
145
|
+
/*
|
|
146
|
+
Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
147
|
+
SPDX-License-Identifier: Apache-2.0
|
|
148
|
+
*/
|
|
149
|
+
/*
|
|
150
|
+
Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
151
|
+
SPDX-License-Identifier: Apache-2.0
|
|
152
|
+
*/
|
|
153
|
+
@keyframes awsui_awsui-motion-fade-in_155yk_jt7dv_1 {
|
|
154
|
+
from {
|
|
155
|
+
opacity: 0.2;
|
|
156
|
+
}
|
|
157
|
+
to {
|
|
158
|
+
opacity: 1;
|
|
159
|
+
}
|
|
160
|
+
}
|
|
161
|
+
@keyframes awsui_awsui-motion-fade-out-0_155yk_jt7dv_1 {
|
|
162
|
+
from {
|
|
163
|
+
opacity: 1;
|
|
164
|
+
}
|
|
165
|
+
to {
|
|
166
|
+
opacity: 0;
|
|
167
|
+
}
|
|
168
|
+
}
|
|
169
|
+
@media (prefers-reduced-motion: reduce) {
|
|
170
|
+
.awsui_direction-button-wrapper_155yk_jt7dv_170:not(#\9) {
|
|
171
|
+
animation: none;
|
|
172
|
+
transition: none;
|
|
173
|
+
}
|
|
174
|
+
}
|
|
175
|
+
.awsui-motion-disabled .awsui_direction-button-wrapper_155yk_jt7dv_170:not(#\9), .awsui-mode-entering .awsui_direction-button-wrapper_155yk_jt7dv_170:not(#\9) {
|
|
176
|
+
animation: none;
|
|
177
|
+
transition: none;
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
.awsui_direction-button-wrapper-motion-enter_155yk_jt7dv_180:not(#\9),
|
|
181
|
+
.awsui_direction-button-wrapper-motion-entering_155yk_jt7dv_181:not(#\9),
|
|
182
|
+
.awsui_direction-button-wrapper-motion-exit_155yk_jt7dv_182:not(#\9),
|
|
183
|
+
.awsui_direction-button-wrapper-motion-exiting_155yk_jt7dv_183:not(#\9) {
|
|
184
|
+
pointer-events: none;
|
|
185
|
+
}
|
|
186
|
+
@media (prefers-reduced-motion: reduce) {
|
|
187
|
+
.awsui_direction-button-wrapper-motion-enter_155yk_jt7dv_180:not(#\9),
|
|
188
|
+
.awsui_direction-button-wrapper-motion-entering_155yk_jt7dv_181:not(#\9),
|
|
189
|
+
.awsui_direction-button-wrapper-motion-exit_155yk_jt7dv_182:not(#\9),
|
|
190
|
+
.awsui_direction-button-wrapper-motion-exiting_155yk_jt7dv_183:not(#\9) {
|
|
191
|
+
animation: none;
|
|
192
|
+
transition: none;
|
|
193
|
+
}
|
|
194
|
+
}
|
|
195
|
+
.awsui-motion-disabled .awsui_direction-button-wrapper-motion-enter_155yk_jt7dv_180:not(#\9), .awsui-mode-entering .awsui_direction-button-wrapper-motion-enter_155yk_jt7dv_180:not(#\9), .awsui-motion-disabled .awsui_direction-button-wrapper-motion-entering_155yk_jt7dv_181:not(#\9), .awsui-mode-entering .awsui_direction-button-wrapper-motion-entering_155yk_jt7dv_181:not(#\9), .awsui-motion-disabled .awsui_direction-button-wrapper-motion-exit_155yk_jt7dv_182:not(#\9), .awsui-mode-entering .awsui_direction-button-wrapper-motion-exit_155yk_jt7dv_182:not(#\9), .awsui-motion-disabled .awsui_direction-button-wrapper-motion-exiting_155yk_jt7dv_183:not(#\9), .awsui-mode-entering .awsui_direction-button-wrapper-motion-exiting_155yk_jt7dv_183:not(#\9) {
|
|
196
|
+
animation: none;
|
|
197
|
+
transition: none;
|
|
198
|
+
}
|
|
199
|
+
|
|
200
|
+
.awsui_direction-button-wrapper-block-start_155yk_jt7dv_206.awsui_direction-button-wrapper-motion-entering_155yk_jt7dv_181:not(#\9) {
|
|
201
|
+
animation: awsui_slide-up_155yk_jt7dv_1 var(--motion-duration-complex-wo6kj4, 270ms) var(--motion-easing-responsive-jm8d79, ease-out), awsui_awsui-motion-fade-in_155yk_jt7dv_1 var(--motion-duration-complex-wo6kj4, 270ms) var(--motion-easing-responsive-jm8d79, ease-out);
|
|
202
|
+
}
|
|
203
|
+
@media (prefers-reduced-motion: reduce) {
|
|
204
|
+
.awsui_direction-button-wrapper-block-start_155yk_jt7dv_206.awsui_direction-button-wrapper-motion-entering_155yk_jt7dv_181:not(#\9) {
|
|
205
|
+
animation: none;
|
|
206
|
+
transition: none;
|
|
207
|
+
}
|
|
208
|
+
}
|
|
209
|
+
.awsui-motion-disabled .awsui_direction-button-wrapper-block-start_155yk_jt7dv_206.awsui_direction-button-wrapper-motion-entering_155yk_jt7dv_181:not(#\9), .awsui-mode-entering .awsui_direction-button-wrapper-block-start_155yk_jt7dv_206.awsui_direction-button-wrapper-motion-entering_155yk_jt7dv_181:not(#\9) {
|
|
210
|
+
animation: none;
|
|
211
|
+
transition: none;
|
|
212
|
+
}
|
|
213
|
+
.awsui_direction-button-wrapper-block-start_155yk_jt7dv_206.awsui_direction-button-wrapper-motion-exiting_155yk_jt7dv_183:not(#\9) {
|
|
214
|
+
animation: awsui_slide-up-exit_155yk_jt7dv_1 var(--motion-duration-complex-wo6kj4, 270ms) var(--motion-easing-responsive-jm8d79, ease-out), awsui_awsui-motion-fade-out-0_155yk_jt7dv_1 var(--motion-duration-complex-wo6kj4, 270ms) var(--motion-easing-responsive-jm8d79, ease-out);
|
|
215
|
+
}
|
|
216
|
+
@media (prefers-reduced-motion: reduce) {
|
|
217
|
+
.awsui_direction-button-wrapper-block-start_155yk_jt7dv_206.awsui_direction-button-wrapper-motion-exiting_155yk_jt7dv_183:not(#\9) {
|
|
218
|
+
animation: none;
|
|
219
|
+
transition: none;
|
|
220
|
+
}
|
|
221
|
+
}
|
|
222
|
+
.awsui-motion-disabled .awsui_direction-button-wrapper-block-start_155yk_jt7dv_206.awsui_direction-button-wrapper-motion-exiting_155yk_jt7dv_183:not(#\9), .awsui-mode-entering .awsui_direction-button-wrapper-block-start_155yk_jt7dv_206.awsui_direction-button-wrapper-motion-exiting_155yk_jt7dv_183:not(#\9) {
|
|
223
|
+
animation: none;
|
|
224
|
+
transition: none;
|
|
225
|
+
}
|
|
226
|
+
|
|
227
|
+
.awsui_direction-button-wrapper-block-end_155yk_jt7dv_233.awsui_direction-button-wrapper-motion-entering_155yk_jt7dv_181:not(#\9) {
|
|
228
|
+
animation: awsui_slide-down_155yk_jt7dv_1 var(--motion-duration-complex-wo6kj4, 270ms) var(--motion-easing-responsive-jm8d79, ease-out), awsui_awsui-motion-fade-in_155yk_jt7dv_1 var(--motion-duration-complex-wo6kj4, 270ms) var(--motion-easing-responsive-jm8d79, ease-out);
|
|
229
|
+
}
|
|
230
|
+
@media (prefers-reduced-motion: reduce) {
|
|
231
|
+
.awsui_direction-button-wrapper-block-end_155yk_jt7dv_233.awsui_direction-button-wrapper-motion-entering_155yk_jt7dv_181:not(#\9) {
|
|
232
|
+
animation: none;
|
|
233
|
+
transition: none;
|
|
234
|
+
}
|
|
235
|
+
}
|
|
236
|
+
.awsui-motion-disabled .awsui_direction-button-wrapper-block-end_155yk_jt7dv_233.awsui_direction-button-wrapper-motion-entering_155yk_jt7dv_181:not(#\9), .awsui-mode-entering .awsui_direction-button-wrapper-block-end_155yk_jt7dv_233.awsui_direction-button-wrapper-motion-entering_155yk_jt7dv_181:not(#\9) {
|
|
237
|
+
animation: none;
|
|
238
|
+
transition: none;
|
|
239
|
+
}
|
|
240
|
+
.awsui_direction-button-wrapper-block-end_155yk_jt7dv_233.awsui_direction-button-wrapper-motion-exiting_155yk_jt7dv_183:not(#\9) {
|
|
241
|
+
animation: awsui_slide-down-exit_155yk_jt7dv_1 var(--motion-duration-complex-wo6kj4, 270ms) var(--motion-easing-responsive-jm8d79, ease-out), awsui_awsui-motion-fade-out-0_155yk_jt7dv_1 var(--motion-duration-complex-wo6kj4, 270ms) var(--motion-easing-responsive-jm8d79, ease-out);
|
|
242
|
+
}
|
|
243
|
+
@media (prefers-reduced-motion: reduce) {
|
|
244
|
+
.awsui_direction-button-wrapper-block-end_155yk_jt7dv_233.awsui_direction-button-wrapper-motion-exiting_155yk_jt7dv_183:not(#\9) {
|
|
245
|
+
animation: none;
|
|
246
|
+
transition: none;
|
|
247
|
+
}
|
|
248
|
+
}
|
|
249
|
+
.awsui-motion-disabled .awsui_direction-button-wrapper-block-end_155yk_jt7dv_233.awsui_direction-button-wrapper-motion-exiting_155yk_jt7dv_183:not(#\9), .awsui-mode-entering .awsui_direction-button-wrapper-block-end_155yk_jt7dv_233.awsui_direction-button-wrapper-motion-exiting_155yk_jt7dv_183:not(#\9) {
|
|
250
|
+
animation: none;
|
|
251
|
+
transition: none;
|
|
252
|
+
}
|
|
253
|
+
|
|
254
|
+
.awsui_direction-button-wrapper-inline-start_155yk_jt7dv_260.awsui_direction-button-wrapper-motion-entering_155yk_jt7dv_181:not(#\9) {
|
|
255
|
+
animation: awsui_slide-left_155yk_jt7dv_1 var(--motion-duration-complex-wo6kj4, 270ms) var(--motion-easing-responsive-jm8d79, ease-out), awsui_awsui-motion-fade-in_155yk_jt7dv_1 var(--motion-duration-complex-wo6kj4, 270ms) var(--motion-easing-responsive-jm8d79, ease-out);
|
|
256
|
+
}
|
|
257
|
+
@media (prefers-reduced-motion: reduce) {
|
|
258
|
+
.awsui_direction-button-wrapper-inline-start_155yk_jt7dv_260.awsui_direction-button-wrapper-motion-entering_155yk_jt7dv_181:not(#\9) {
|
|
259
|
+
animation: none;
|
|
260
|
+
transition: none;
|
|
261
|
+
}
|
|
262
|
+
}
|
|
263
|
+
.awsui-motion-disabled .awsui_direction-button-wrapper-inline-start_155yk_jt7dv_260.awsui_direction-button-wrapper-motion-entering_155yk_jt7dv_181:not(#\9), .awsui-mode-entering .awsui_direction-button-wrapper-inline-start_155yk_jt7dv_260.awsui_direction-button-wrapper-motion-entering_155yk_jt7dv_181:not(#\9) {
|
|
264
|
+
animation: none;
|
|
265
|
+
transition: none;
|
|
266
|
+
}
|
|
267
|
+
.awsui_direction-button-wrapper-inline-start_155yk_jt7dv_260.awsui_direction-button-wrapper-rtl_155yk_jt7dv_273.awsui_direction-button-wrapper-motion-entering_155yk_jt7dv_181:not(#\9) {
|
|
268
|
+
animation: awsui_slide-right_155yk_jt7dv_1 var(--motion-duration-complex-wo6kj4, 270ms) var(--motion-easing-responsive-jm8d79, ease-out), awsui_awsui-motion-fade-in_155yk_jt7dv_1 var(--motion-duration-complex-wo6kj4, 270ms) var(--motion-easing-responsive-jm8d79, ease-out);
|
|
269
|
+
}
|
|
270
|
+
@media (prefers-reduced-motion: reduce) {
|
|
271
|
+
.awsui_direction-button-wrapper-inline-start_155yk_jt7dv_260.awsui_direction-button-wrapper-rtl_155yk_jt7dv_273.awsui_direction-button-wrapper-motion-entering_155yk_jt7dv_181:not(#\9) {
|
|
272
|
+
animation: none;
|
|
273
|
+
transition: none;
|
|
274
|
+
}
|
|
275
|
+
}
|
|
276
|
+
.awsui-motion-disabled .awsui_direction-button-wrapper-inline-start_155yk_jt7dv_260.awsui_direction-button-wrapper-rtl_155yk_jt7dv_273.awsui_direction-button-wrapper-motion-entering_155yk_jt7dv_181:not(#\9), .awsui-mode-entering .awsui_direction-button-wrapper-inline-start_155yk_jt7dv_260.awsui_direction-button-wrapper-rtl_155yk_jt7dv_273.awsui_direction-button-wrapper-motion-entering_155yk_jt7dv_181:not(#\9) {
|
|
277
|
+
animation: none;
|
|
278
|
+
transition: none;
|
|
279
|
+
}
|
|
280
|
+
.awsui_direction-button-wrapper-inline-start_155yk_jt7dv_260.awsui_direction-button-wrapper-motion-exiting_155yk_jt7dv_183:not(#\9) {
|
|
281
|
+
animation: awsui_slide-left-exit_155yk_jt7dv_1 var(--motion-duration-complex-wo6kj4, 270ms) var(--motion-easing-responsive-jm8d79, ease-out), awsui_awsui-motion-fade-out-0_155yk_jt7dv_1 var(--motion-duration-complex-wo6kj4, 270ms) var(--motion-easing-responsive-jm8d79, ease-out);
|
|
282
|
+
}
|
|
283
|
+
@media (prefers-reduced-motion: reduce) {
|
|
284
|
+
.awsui_direction-button-wrapper-inline-start_155yk_jt7dv_260.awsui_direction-button-wrapper-motion-exiting_155yk_jt7dv_183:not(#\9) {
|
|
285
|
+
animation: none;
|
|
286
|
+
transition: none;
|
|
287
|
+
}
|
|
288
|
+
}
|
|
289
|
+
.awsui-motion-disabled .awsui_direction-button-wrapper-inline-start_155yk_jt7dv_260.awsui_direction-button-wrapper-motion-exiting_155yk_jt7dv_183:not(#\9), .awsui-mode-entering .awsui_direction-button-wrapper-inline-start_155yk_jt7dv_260.awsui_direction-button-wrapper-motion-exiting_155yk_jt7dv_183:not(#\9) {
|
|
290
|
+
animation: none;
|
|
291
|
+
transition: none;
|
|
292
|
+
}
|
|
293
|
+
.awsui_direction-button-wrapper-inline-start_155yk_jt7dv_260.awsui_direction-button-wrapper-rtl_155yk_jt7dv_273.awsui_direction-button-wrapper-motion-exiting_155yk_jt7dv_183:not(#\9) {
|
|
294
|
+
animation: awsui_slide-right-exit_155yk_jt7dv_1 var(--motion-duration-complex-wo6kj4, 270ms) var(--motion-easing-responsive-jm8d79, ease-out), awsui_awsui-motion-fade-out-0_155yk_jt7dv_1 var(--motion-duration-complex-wo6kj4, 270ms) var(--motion-easing-responsive-jm8d79, ease-out);
|
|
295
|
+
}
|
|
296
|
+
@media (prefers-reduced-motion: reduce) {
|
|
297
|
+
.awsui_direction-button-wrapper-inline-start_155yk_jt7dv_260.awsui_direction-button-wrapper-rtl_155yk_jt7dv_273.awsui_direction-button-wrapper-motion-exiting_155yk_jt7dv_183:not(#\9) {
|
|
298
|
+
animation: none;
|
|
299
|
+
transition: none;
|
|
300
|
+
}
|
|
301
|
+
}
|
|
302
|
+
.awsui-motion-disabled .awsui_direction-button-wrapper-inline-start_155yk_jt7dv_260.awsui_direction-button-wrapper-rtl_155yk_jt7dv_273.awsui_direction-button-wrapper-motion-exiting_155yk_jt7dv_183:not(#\9), .awsui-mode-entering .awsui_direction-button-wrapper-inline-start_155yk_jt7dv_260.awsui_direction-button-wrapper-rtl_155yk_jt7dv_273.awsui_direction-button-wrapper-motion-exiting_155yk_jt7dv_183:not(#\9) {
|
|
303
|
+
animation: none;
|
|
304
|
+
transition: none;
|
|
305
|
+
}
|
|
306
|
+
|
|
307
|
+
.awsui_direction-button-wrapper-inline-end_155yk_jt7dv_313.awsui_direction-button-wrapper-motion-entering_155yk_jt7dv_181:not(#\9) {
|
|
308
|
+
animation: awsui_slide-right_155yk_jt7dv_1 var(--motion-duration-complex-wo6kj4, 270ms) var(--motion-easing-responsive-jm8d79, ease-out), awsui_awsui-motion-fade-in_155yk_jt7dv_1 var(--motion-duration-complex-wo6kj4, 270ms) var(--motion-easing-responsive-jm8d79, ease-out);
|
|
309
|
+
}
|
|
310
|
+
@media (prefers-reduced-motion: reduce) {
|
|
311
|
+
.awsui_direction-button-wrapper-inline-end_155yk_jt7dv_313.awsui_direction-button-wrapper-motion-entering_155yk_jt7dv_181:not(#\9) {
|
|
312
|
+
animation: none;
|
|
313
|
+
transition: none;
|
|
314
|
+
}
|
|
315
|
+
}
|
|
316
|
+
.awsui-motion-disabled .awsui_direction-button-wrapper-inline-end_155yk_jt7dv_313.awsui_direction-button-wrapper-motion-entering_155yk_jt7dv_181:not(#\9), .awsui-mode-entering .awsui_direction-button-wrapper-inline-end_155yk_jt7dv_313.awsui_direction-button-wrapper-motion-entering_155yk_jt7dv_181:not(#\9) {
|
|
317
|
+
animation: none;
|
|
318
|
+
transition: none;
|
|
319
|
+
}
|
|
320
|
+
.awsui_direction-button-wrapper-inline-end_155yk_jt7dv_313.awsui_direction-button-wrapper-rtl_155yk_jt7dv_273.awsui_direction-button-wrapper-motion-entering_155yk_jt7dv_181:not(#\9) {
|
|
321
|
+
animation: awsui_slide-left_155yk_jt7dv_1 var(--motion-duration-complex-wo6kj4, 270ms) var(--motion-easing-responsive-jm8d79, ease-out), awsui_awsui-motion-fade-in_155yk_jt7dv_1 var(--motion-duration-complex-wo6kj4, 270ms) var(--motion-easing-responsive-jm8d79, ease-out);
|
|
322
|
+
}
|
|
323
|
+
@media (prefers-reduced-motion: reduce) {
|
|
324
|
+
.awsui_direction-button-wrapper-inline-end_155yk_jt7dv_313.awsui_direction-button-wrapper-rtl_155yk_jt7dv_273.awsui_direction-button-wrapper-motion-entering_155yk_jt7dv_181:not(#\9) {
|
|
325
|
+
animation: none;
|
|
326
|
+
transition: none;
|
|
327
|
+
}
|
|
328
|
+
}
|
|
329
|
+
.awsui-motion-disabled .awsui_direction-button-wrapper-inline-end_155yk_jt7dv_313.awsui_direction-button-wrapper-rtl_155yk_jt7dv_273.awsui_direction-button-wrapper-motion-entering_155yk_jt7dv_181:not(#\9), .awsui-mode-entering .awsui_direction-button-wrapper-inline-end_155yk_jt7dv_313.awsui_direction-button-wrapper-rtl_155yk_jt7dv_273.awsui_direction-button-wrapper-motion-entering_155yk_jt7dv_181:not(#\9) {
|
|
330
|
+
animation: none;
|
|
331
|
+
transition: none;
|
|
332
|
+
}
|
|
333
|
+
.awsui_direction-button-wrapper-inline-end_155yk_jt7dv_313.awsui_direction-button-wrapper-motion-exiting_155yk_jt7dv_183:not(#\9) {
|
|
334
|
+
animation: awsui_slide-right-exit_155yk_jt7dv_1 var(--motion-duration-complex-wo6kj4, 270ms) var(--motion-easing-responsive-jm8d79, ease-out), awsui_awsui-motion-fade-out-0_155yk_jt7dv_1 var(--motion-duration-complex-wo6kj4, 270ms) var(--motion-easing-responsive-jm8d79, ease-out);
|
|
335
|
+
}
|
|
336
|
+
@media (prefers-reduced-motion: reduce) {
|
|
337
|
+
.awsui_direction-button-wrapper-inline-end_155yk_jt7dv_313.awsui_direction-button-wrapper-motion-exiting_155yk_jt7dv_183:not(#\9) {
|
|
338
|
+
animation: none;
|
|
339
|
+
transition: none;
|
|
340
|
+
}
|
|
341
|
+
}
|
|
342
|
+
.awsui-motion-disabled .awsui_direction-button-wrapper-inline-end_155yk_jt7dv_313.awsui_direction-button-wrapper-motion-exiting_155yk_jt7dv_183:not(#\9), .awsui-mode-entering .awsui_direction-button-wrapper-inline-end_155yk_jt7dv_313.awsui_direction-button-wrapper-motion-exiting_155yk_jt7dv_183:not(#\9) {
|
|
343
|
+
animation: none;
|
|
344
|
+
transition: none;
|
|
345
|
+
}
|
|
346
|
+
.awsui_direction-button-wrapper-inline-end_155yk_jt7dv_313.awsui_direction-button-wrapper-rtl_155yk_jt7dv_273.awsui_direction-button-wrapper-motion-exiting_155yk_jt7dv_183:not(#\9) {
|
|
347
|
+
animation: awsui_slide-left-exit_155yk_jt7dv_1 var(--motion-duration-complex-wo6kj4, 270ms) var(--motion-easing-responsive-jm8d79, ease-out), awsui_awsui-motion-fade-out-0_155yk_jt7dv_1 var(--motion-duration-complex-wo6kj4, 270ms) var(--motion-easing-responsive-jm8d79, ease-out);
|
|
348
|
+
}
|
|
349
|
+
@media (prefers-reduced-motion: reduce) {
|
|
350
|
+
.awsui_direction-button-wrapper-inline-end_155yk_jt7dv_313.awsui_direction-button-wrapper-rtl_155yk_jt7dv_273.awsui_direction-button-wrapper-motion-exiting_155yk_jt7dv_183:not(#\9) {
|
|
351
|
+
animation: none;
|
|
352
|
+
transition: none;
|
|
353
|
+
}
|
|
354
|
+
}
|
|
355
|
+
.awsui-motion-disabled .awsui_direction-button-wrapper-inline-end_155yk_jt7dv_313.awsui_direction-button-wrapper-rtl_155yk_jt7dv_273.awsui_direction-button-wrapper-motion-exiting_155yk_jt7dv_183:not(#\9), .awsui-mode-entering .awsui_direction-button-wrapper-inline-end_155yk_jt7dv_313.awsui_direction-button-wrapper-rtl_155yk_jt7dv_273.awsui_direction-button-wrapper-motion-exiting_155yk_jt7dv_183:not(#\9) {
|
|
356
|
+
animation: none;
|
|
357
|
+
transition: none;
|
|
358
|
+
}
|
|
359
|
+
|
|
360
|
+
@keyframes awsui_slide-up_155yk_jt7dv_1 {
|
|
361
|
+
0% {
|
|
362
|
+
transform: translate(0, 20px);
|
|
363
|
+
}
|
|
364
|
+
100% {
|
|
365
|
+
transform: translate(0, 0);
|
|
366
|
+
}
|
|
367
|
+
}
|
|
368
|
+
@keyframes awsui_slide-up-exit_155yk_jt7dv_1 {
|
|
369
|
+
0% {
|
|
370
|
+
transform: translate(0, 0);
|
|
371
|
+
}
|
|
372
|
+
100% {
|
|
373
|
+
transform: translate(0, 20px);
|
|
374
|
+
}
|
|
375
|
+
}
|
|
376
|
+
@keyframes awsui_slide-down_155yk_jt7dv_1 {
|
|
377
|
+
0% {
|
|
378
|
+
transform: translate(0, -20px);
|
|
379
|
+
}
|
|
380
|
+
100% {
|
|
381
|
+
transform: translate(0, 0);
|
|
382
|
+
}
|
|
383
|
+
}
|
|
384
|
+
@keyframes awsui_slide-down-exit_155yk_jt7dv_1 {
|
|
385
|
+
0% {
|
|
386
|
+
transform: translate(0, 0);
|
|
387
|
+
}
|
|
388
|
+
100% {
|
|
389
|
+
transform: translate(0, -20px);
|
|
390
|
+
}
|
|
391
|
+
}
|
|
392
|
+
@keyframes awsui_slide-left_155yk_jt7dv_1 {
|
|
393
|
+
0% {
|
|
394
|
+
transform: translate(20px, 0);
|
|
395
|
+
}
|
|
396
|
+
100% {
|
|
397
|
+
transform: translate(0, 0);
|
|
398
|
+
}
|
|
399
|
+
}
|
|
400
|
+
@keyframes awsui_slide-left-exit_155yk_jt7dv_1 {
|
|
401
|
+
0% {
|
|
402
|
+
transform: translate(0, 0);
|
|
403
|
+
}
|
|
404
|
+
100% {
|
|
405
|
+
transform: translate(20px, 0);
|
|
406
|
+
}
|
|
407
|
+
}
|
|
408
|
+
@keyframes awsui_slide-right_155yk_jt7dv_1 {
|
|
409
|
+
0% {
|
|
410
|
+
transform: translate(-20px, 0);
|
|
411
|
+
}
|
|
412
|
+
100% {
|
|
413
|
+
transform: translate(0, 0);
|
|
414
|
+
}
|
|
415
|
+
}
|
|
416
|
+
@keyframes awsui_slide-right-exit_155yk_jt7dv_1 {
|
|
417
|
+
0% {
|
|
418
|
+
transform: translate(0, 0);
|
|
419
|
+
}
|
|
420
|
+
100% {
|
|
421
|
+
transform: translate(-20px, 0);
|
|
422
|
+
}
|
|
423
|
+
}
|
|
424
|
+
.awsui_drag-handle-wrapper_155yk_jt7dv_430:not(#\9) {
|
|
425
|
+
position: relative;
|
|
426
|
+
display: inline-block;
|
|
427
|
+
}
|
|
428
|
+
|
|
429
|
+
.awsui_portal-overlay_155yk_jt7dv_435:not(#\9) {
|
|
430
|
+
position: absolute;
|
|
431
|
+
inset-block-start: 0;
|
|
432
|
+
inset-inline-start: 0;
|
|
433
|
+
pointer-events: none;
|
|
434
|
+
z-index: 7000;
|
|
435
|
+
}
|
|
436
|
+
|
|
437
|
+
.awsui_portal-overlay-contents_155yk_jt7dv_443:not(#\9) {
|
|
438
|
+
pointer-events: auto;
|
|
439
|
+
}
|
|
440
|
+
|
|
441
|
+
.awsui_drag-handle_155yk_jt7dv_430:not(#\9) {
|
|
442
|
+
position: relative;
|
|
443
|
+
display: flex;
|
|
444
|
+
}
|
|
445
|
+
|
|
446
|
+
.awsui_direction-button-wrapper_155yk_jt7dv_170:not(#\9) {
|
|
447
|
+
position: absolute;
|
|
448
|
+
block-size: var(--space-static-xl-ry540j, 24px);
|
|
449
|
+
inline-size: var(--space-static-xl-ry540j, 24px);
|
|
450
|
+
padding-block: var(--space-static-xxs-9qxzo2, 4px);
|
|
451
|
+
padding-inline: var(--space-static-xxs-9qxzo2, 4px);
|
|
452
|
+
}
|
|
453
|
+
|
|
454
|
+
.awsui_direction-button-wrapper-hidden_155yk_jt7dv_460:not(#\9) {
|
|
455
|
+
display: none;
|
|
456
|
+
}
|
|
457
|
+
|
|
458
|
+
.awsui_direction-button-wrapper-block-start_155yk_jt7dv_206:not(#\9) {
|
|
459
|
+
inset-block-start: calc(-1 * (var(--space-static-xl-ry540j, 24px) + 2 * var(--space-static-xxs-9qxzo2, 4px)));
|
|
460
|
+
inset-inline-start: calc(50% - (var(--space-static-xl-ry540j, 24px) + 2 * var(--space-static-xxs-9qxzo2, 4px)) / 2);
|
|
461
|
+
}
|
|
462
|
+
|
|
463
|
+
.awsui_direction-button-wrapper-block-end_155yk_jt7dv_233:not(#\9) {
|
|
464
|
+
inset-block-end: calc(-1 * (var(--space-static-xl-ry540j, 24px) + 2 * var(--space-static-xxs-9qxzo2, 4px)));
|
|
465
|
+
inset-inline-start: calc(50% - (var(--space-static-xl-ry540j, 24px) + 2 * var(--space-static-xxs-9qxzo2, 4px)) / 2);
|
|
466
|
+
}
|
|
467
|
+
|
|
468
|
+
.awsui_direction-button-wrapper-inline-start_155yk_jt7dv_260:not(#\9) {
|
|
469
|
+
inset-inline-start: calc(-1 * (var(--space-static-xl-ry540j, 24px) + 2 * var(--space-static-xxs-9qxzo2, 4px)));
|
|
470
|
+
inset-block-start: calc(50% - (var(--space-static-xl-ry540j, 24px) + 2 * var(--space-static-xxs-9qxzo2, 4px)) / 2);
|
|
471
|
+
}
|
|
472
|
+
|
|
473
|
+
.awsui_direction-button-wrapper-inline-end_155yk_jt7dv_313:not(#\9) {
|
|
474
|
+
inset-inline-end: calc(-1 * (var(--space-static-xl-ry540j, 24px) + 2 * var(--space-static-xxs-9qxzo2, 4px)));
|
|
475
|
+
inset-block-start: calc(50% - (var(--space-static-xl-ry540j, 24px) + 2 * var(--space-static-xxs-9qxzo2, 4px)) / 2);
|
|
476
|
+
}
|
|
477
|
+
|
|
478
|
+
.awsui_direction-button_155yk_jt7dv_170:not(#\9) {
|
|
479
|
+
position: absolute;
|
|
480
|
+
border-width: 0;
|
|
481
|
+
cursor: pointer;
|
|
482
|
+
display: inline-block;
|
|
483
|
+
box-sizing: border-box;
|
|
484
|
+
touch-action: manipulation;
|
|
485
|
+
inline-size: var(--space-static-xl-ry540j, 24px);
|
|
486
|
+
block-size: var(--space-static-xl-ry540j, 24px);
|
|
487
|
+
padding-block: var(--space-xxs-y2432o, 4px);
|
|
488
|
+
padding-inline: var(--space-xxs-y2432o, 4px);
|
|
489
|
+
border-start-start-radius: 50%;
|
|
490
|
+
border-start-end-radius: 50%;
|
|
491
|
+
border-end-start-radius: 50%;
|
|
492
|
+
border-end-end-radius: 50%;
|
|
493
|
+
background-color: var(--color-background-direction-button-default-5hblg2, #545b64);
|
|
494
|
+
color: var(--color-text-direction-button-default-6q1q04, #ffffff);
|
|
495
|
+
box-shadow: var(--shadow-dropdown-w4gfk2, 0 1px 1px 0 rgba(0, 28, 36, 0.3), 1px 1px 1px 0 rgba(0, 28, 36, 0.15), -1px 1px 1px 0 rgba(0, 28, 36, 0.15));
|
|
496
|
+
}
|
|
497
|
+
.awsui_direction-button_155yk_jt7dv_170:not(#\9):not(.awsui_direction-button-disabled_155yk_jt7dv_503):hover {
|
|
498
|
+
background-color: var(--color-background-direction-button-hover-nuoi33, #414750);
|
|
499
|
+
}
|
|
500
|
+
.awsui_direction-button_155yk_jt7dv_170:not(#\9):not(.awsui_direction-button-disabled_155yk_jt7dv_503):active {
|
|
501
|
+
background-color: var(--color-background-direction-button-active-wssyfi, #2a2e33);
|
|
502
|
+
}
|
|
503
|
+
|
|
504
|
+
.awsui_direction-button-disabled_155yk_jt7dv_503:not(#\9) {
|
|
505
|
+
cursor: default;
|
|
506
|
+
background-color: var(--color-background-direction-button-disabled-m3uin1, #eaeded);
|
|
507
|
+
color: var(--color-text-direction-button-disabled-rx60rf, #aab7b8);
|
|
508
|
+
}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
|
|
2
|
+
// es-module interop with Babel and Typescript
|
|
3
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4
|
+
module.exports.default = {
|
|
5
|
+
"direction-button-wrapper": "awsui_direction-button-wrapper_155yk_jt7dv_170",
|
|
6
|
+
"direction-button-wrapper-motion-enter": "awsui_direction-button-wrapper-motion-enter_155yk_jt7dv_180",
|
|
7
|
+
"direction-button-wrapper-motion-entering": "awsui_direction-button-wrapper-motion-entering_155yk_jt7dv_181",
|
|
8
|
+
"direction-button-wrapper-motion-exit": "awsui_direction-button-wrapper-motion-exit_155yk_jt7dv_182",
|
|
9
|
+
"direction-button-wrapper-motion-exiting": "awsui_direction-button-wrapper-motion-exiting_155yk_jt7dv_183",
|
|
10
|
+
"direction-button-wrapper-block-start": "awsui_direction-button-wrapper-block-start_155yk_jt7dv_206",
|
|
11
|
+
"slide-up": "awsui_slide-up_155yk_jt7dv_1",
|
|
12
|
+
"awsui-motion-fade-in": "awsui_awsui-motion-fade-in_155yk_jt7dv_1",
|
|
13
|
+
"slide-up-exit": "awsui_slide-up-exit_155yk_jt7dv_1",
|
|
14
|
+
"awsui-motion-fade-out-0": "awsui_awsui-motion-fade-out-0_155yk_jt7dv_1",
|
|
15
|
+
"direction-button-wrapper-block-end": "awsui_direction-button-wrapper-block-end_155yk_jt7dv_233",
|
|
16
|
+
"slide-down": "awsui_slide-down_155yk_jt7dv_1",
|
|
17
|
+
"slide-down-exit": "awsui_slide-down-exit_155yk_jt7dv_1",
|
|
18
|
+
"direction-button-wrapper-inline-start": "awsui_direction-button-wrapper-inline-start_155yk_jt7dv_260",
|
|
19
|
+
"slide-left": "awsui_slide-left_155yk_jt7dv_1",
|
|
20
|
+
"direction-button-wrapper-rtl": "awsui_direction-button-wrapper-rtl_155yk_jt7dv_273",
|
|
21
|
+
"slide-right": "awsui_slide-right_155yk_jt7dv_1",
|
|
22
|
+
"slide-left-exit": "awsui_slide-left-exit_155yk_jt7dv_1",
|
|
23
|
+
"slide-right-exit": "awsui_slide-right-exit_155yk_jt7dv_1",
|
|
24
|
+
"direction-button-wrapper-inline-end": "awsui_direction-button-wrapper-inline-end_155yk_jt7dv_313",
|
|
25
|
+
"drag-handle-wrapper": "awsui_drag-handle-wrapper_155yk_jt7dv_430",
|
|
26
|
+
"portal-overlay": "awsui_portal-overlay_155yk_jt7dv_435",
|
|
27
|
+
"portal-overlay-contents": "awsui_portal-overlay-contents_155yk_jt7dv_443",
|
|
28
|
+
"drag-handle": "awsui_drag-handle_155yk_jt7dv_430",
|
|
29
|
+
"direction-button-wrapper-hidden": "awsui_direction-button-wrapper-hidden_155yk_jt7dv_460",
|
|
30
|
+
"direction-button": "awsui_direction-button_155yk_jt7dv_170",
|
|
31
|
+
"direction-button-disabled": "awsui_direction-button-disabled_155yk_jt7dv_503"
|
|
32
|
+
};
|
|
33
|
+
|