@cloudscape-design/board-components 3.0.71 → 3.0.72
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/board/styles.css.js +5 -5
- package/board/styles.scoped.css +9 -5
- package/board/styles.selectors.js +5 -5
- package/board-item/styles.css.js +11 -11
- package/board-item/styles.scoped.css +21 -13
- package/board-item/styles.selectors.js +11 -11
- package/internal/drag-handle/styles.css.js +2 -2
- package/internal/drag-handle/styles.scoped.css +13 -5
- package/internal/drag-handle/styles.selectors.js +2 -2
- package/internal/environment.js +1 -1
- package/internal/environment.json +1 -1
- package/internal/global-drag-state-styles/styles.css.js +3 -3
- package/internal/global-drag-state-styles/styles.scoped.css +12 -4
- package/internal/global-drag-state-styles/styles.selectors.js +3 -3
- package/internal/grid/styles.css.js +7 -7
- package/internal/grid/styles.scoped.css +11 -7
- package/internal/grid/styles.selectors.js +7 -7
- package/internal/handle/styles.css.js +1 -1
- package/internal/handle/styles.scoped.css +6 -2
- package/internal/handle/styles.selectors.js +1 -1
- package/internal/item-container/styles.css.js +7 -7
- package/internal/item-container/styles.scoped.css +11 -7
- package/internal/item-container/styles.selectors.js +7 -7
- package/internal/manifest.json +1 -1
- package/internal/resize-handle/styles.css.js +2 -2
- package/internal/resize-handle/styles.scoped.css +13 -5
- package/internal/resize-handle/styles.selectors.js +2 -2
- package/items-palette/styles.css.js +1 -1
- package/items-palette/styles.scoped.css +5 -1
- package/items-palette/styles.selectors.js +1 -1
- package/package.json +1 -1
package/board/styles.css.js
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
|
|
2
2
|
import './styles.scoped.css';
|
|
3
3
|
export default {
|
|
4
|
-
"placeholder": "
|
|
5
|
-
"placeholder--active": "awsui_placeholder--
|
|
6
|
-
"placeholder--hover": "awsui_placeholder--
|
|
7
|
-
"root": "
|
|
8
|
-
"empty": "
|
|
4
|
+
"placeholder": "awsui_placeholder_1h7dk_svibw_5",
|
|
5
|
+
"placeholder--active": "awsui_placeholder--active_1h7dk_svibw_9",
|
|
6
|
+
"placeholder--hover": "awsui_placeholder--hover_1h7dk_svibw_12",
|
|
7
|
+
"root": "awsui_root_1h7dk_svibw_16",
|
|
8
|
+
"empty": "awsui_empty_1h7dk_svibw_20"
|
|
9
9
|
};
|
|
10
10
|
|
package/board/styles.scoped.css
CHANGED
|
@@ -1,19 +1,23 @@
|
|
|
1
|
-
|
|
1
|
+
/*
|
|
2
|
+
Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
3
|
+
SPDX-License-Identifier: Apache-2.0
|
|
4
|
+
*/
|
|
5
|
+
.awsui_placeholder_1h7dk_svibw_5:not(#\9) {
|
|
2
6
|
border-radius: var(--border-radius-container-wqv1zi, 16px);
|
|
3
7
|
block-size: 100%;
|
|
4
8
|
}
|
|
5
|
-
.awsui_placeholder--
|
|
9
|
+
.awsui_placeholder--active_1h7dk_svibw_9:not(#\9) {
|
|
6
10
|
background-color: var(--color-board-placeholder-active-jh49z8, #e9ebed);
|
|
7
11
|
}
|
|
8
|
-
.awsui_placeholder--
|
|
12
|
+
.awsui_placeholder--hover_1h7dk_svibw_12:not(#\9) {
|
|
9
13
|
background-color: var(--color-board-placeholder-hover-ombmcs, #d3e7f9);
|
|
10
14
|
}
|
|
11
15
|
|
|
12
|
-
.
|
|
16
|
+
.awsui_root_1h7dk_svibw_16:not(#\9) {
|
|
13
17
|
/* used in test-utils */
|
|
14
18
|
}
|
|
15
19
|
|
|
16
|
-
.
|
|
20
|
+
.awsui_empty_1h7dk_svibw_20:not(#\9) {
|
|
17
21
|
box-sizing: border-box;
|
|
18
22
|
inline-size: 100%;
|
|
19
23
|
padding-block-start: var(--space-scaled-m-mo5yse, 16px);
|
|
@@ -2,10 +2,10 @@
|
|
|
2
2
|
// es-module interop with Babel and Typescript
|
|
3
3
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4
4
|
module.exports.default = {
|
|
5
|
-
"placeholder": "
|
|
6
|
-
"placeholder--active": "awsui_placeholder--
|
|
7
|
-
"placeholder--hover": "awsui_placeholder--
|
|
8
|
-
"root": "
|
|
9
|
-
"empty": "
|
|
5
|
+
"placeholder": "awsui_placeholder_1h7dk_svibw_5",
|
|
6
|
+
"placeholder--active": "awsui_placeholder--active_1h7dk_svibw_9",
|
|
7
|
+
"placeholder--hover": "awsui_placeholder--hover_1h7dk_svibw_12",
|
|
8
|
+
"root": "awsui_root_1h7dk_svibw_16",
|
|
9
|
+
"empty": "awsui_empty_1h7dk_svibw_20"
|
|
10
10
|
};
|
|
11
11
|
|
package/board-item/styles.css.js
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
|
|
2
2
|
import './styles.scoped.css';
|
|
3
3
|
export default {
|
|
4
|
-
"root": "
|
|
5
|
-
"container-override": "awsui_container-
|
|
6
|
-
"active": "
|
|
7
|
-
"header": "
|
|
8
|
-
"flexible": "
|
|
9
|
-
"handle": "
|
|
10
|
-
"refresh": "
|
|
11
|
-
"header-content": "awsui_header-
|
|
12
|
-
"settings": "
|
|
13
|
-
"fixed": "
|
|
14
|
-
"resizer": "
|
|
4
|
+
"root": "awsui_root_9ckv7_69qb9_9",
|
|
5
|
+
"container-override": "awsui_container-override_9ckv7_69qb9_14",
|
|
6
|
+
"active": "awsui_active_9ckv7_69qb9_14",
|
|
7
|
+
"header": "awsui_header_9ckv7_69qb9_36",
|
|
8
|
+
"flexible": "awsui_flexible_9ckv7_69qb9_43",
|
|
9
|
+
"handle": "awsui_handle_9ckv7_69qb9_47",
|
|
10
|
+
"refresh": "awsui_refresh_9ckv7_69qb9_50",
|
|
11
|
+
"header-content": "awsui_header-content_9ckv7_69qb9_54",
|
|
12
|
+
"settings": "awsui_settings_9ckv7_69qb9_58",
|
|
13
|
+
"fixed": "awsui_fixed_9ckv7_69qb9_66",
|
|
14
|
+
"resizer": "awsui_resizer_9ckv7_69qb9_70"
|
|
15
15
|
};
|
|
16
16
|
|
|
@@ -1,18 +1,26 @@
|
|
|
1
|
-
|
|
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
|
+
.awsui_root_9ckv7_69qb9_9:not(#\9) {
|
|
2
10
|
display: contents;
|
|
3
11
|
}
|
|
4
12
|
|
|
5
13
|
/* TODO: use container API instead of styles override */
|
|
6
|
-
.awsui_container-
|
|
14
|
+
.awsui_container-override_9ckv7_69qb9_14.awsui_active_9ckv7_69qb9_14:not(#\9) {
|
|
7
15
|
box-shadow: var(--shadow-container-active-kl29x9, 0px 1px 1px 1px #e9ebed, 0px 6px 36px rgba(0, 7, 22, 0.1019607843));
|
|
8
16
|
}
|
|
9
|
-
[data-awsui-focus-visible] .awsui_container-
|
|
17
|
+
[data-awsui-focus-visible] .awsui_container-override_9ckv7_69qb9_14.awsui_active_9ckv7_69qb9_14:not(#\9) {
|
|
10
18
|
position: relative;
|
|
11
19
|
box-sizing: border-box;
|
|
12
20
|
outline: 2px dotted transparent;
|
|
13
21
|
outline-offset: -1px;
|
|
14
22
|
}
|
|
15
|
-
[data-awsui-focus-visible] .awsui_container-
|
|
23
|
+
[data-awsui-focus-visible] .awsui_container-override_9ckv7_69qb9_14.awsui_active_9ckv7_69qb9_14:not(#\9)::before {
|
|
16
24
|
content: " ";
|
|
17
25
|
display: block;
|
|
18
26
|
position: absolute;
|
|
@@ -25,41 +33,41 @@
|
|
|
25
33
|
border: 2px solid var(--color-border-item-focused-b2ntyl, #0972d3);
|
|
26
34
|
}
|
|
27
35
|
|
|
28
|
-
.
|
|
36
|
+
.awsui_header_9ckv7_69qb9_36:not(#\9) {
|
|
29
37
|
display: flex;
|
|
30
38
|
justify-items: center;
|
|
31
39
|
padding-block: var(--space-scaled-s-aqzyko, 12px);
|
|
32
40
|
padding-inline: calc(var(--space-container-horizontal-wfukh3, 20px) - var(--space-scaled-xs-26e2du, 8px));
|
|
33
41
|
}
|
|
34
42
|
|
|
35
|
-
.
|
|
43
|
+
.awsui_flexible_9ckv7_69qb9_43:not(#\9) {
|
|
36
44
|
flex: 1 1 min-content;
|
|
37
45
|
}
|
|
38
46
|
|
|
39
|
-
.
|
|
47
|
+
.awsui_handle_9ckv7_69qb9_47:not(#\9) {
|
|
40
48
|
margin-block-start: calc(var(--space-scaled-xxs-7597g1, 4px) + 1px);
|
|
41
49
|
}
|
|
42
|
-
.
|
|
50
|
+
.awsui_refresh_9ckv7_69qb9_50 > .awsui_handle_9ckv7_69qb9_47:not(#\9) {
|
|
43
51
|
margin-block-start: calc(var(--space-static-xxxs-3gu9os, 2px) + 1px);
|
|
44
52
|
}
|
|
45
53
|
|
|
46
|
-
.awsui_header-
|
|
54
|
+
.awsui_header-content_9ckv7_69qb9_54:not(#\9) {
|
|
47
55
|
margin-inline-start: var(--space-scaled-xxs-7597g1, 4px);
|
|
48
56
|
}
|
|
49
57
|
|
|
50
|
-
.
|
|
58
|
+
.awsui_settings_9ckv7_69qb9_58:not(#\9) {
|
|
51
59
|
margin-block-start: calc(var(--space-scaled-xxxs-27y4hv, 2px) + 1px);
|
|
52
60
|
margin-inline-start: var(--space-static-xs-7sfb63, 8px);
|
|
53
61
|
}
|
|
54
|
-
.
|
|
62
|
+
.awsui_refresh_9ckv7_69qb9_50 > .awsui_settings_9ckv7_69qb9_58:not(#\9) {
|
|
55
63
|
margin-block-start: 0px;
|
|
56
64
|
}
|
|
57
65
|
|
|
58
|
-
.
|
|
66
|
+
.awsui_fixed_9ckv7_69qb9_66:not(#\9) {
|
|
59
67
|
flex: 0 0 auto;
|
|
60
68
|
}
|
|
61
69
|
|
|
62
|
-
.
|
|
70
|
+
.awsui_resizer_9ckv7_69qb9_70:not(#\9) {
|
|
63
71
|
position: absolute;
|
|
64
72
|
inset-block-end: calc(var(--space-static-xs-7sfb63, 8px) - var(--space-static-xxxs-3gu9os, 2px));
|
|
65
73
|
inset-inline-end: calc(var(--space-static-xs-7sfb63, 8px) - var(--space-static-xxxs-3gu9os, 2px));
|
|
@@ -2,16 +2,16 @@
|
|
|
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
|
-
"container-override": "awsui_container-
|
|
7
|
-
"active": "
|
|
8
|
-
"header": "
|
|
9
|
-
"flexible": "
|
|
10
|
-
"handle": "
|
|
11
|
-
"refresh": "
|
|
12
|
-
"header-content": "awsui_header-
|
|
13
|
-
"settings": "
|
|
14
|
-
"fixed": "
|
|
15
|
-
"resizer": "
|
|
5
|
+
"root": "awsui_root_9ckv7_69qb9_9",
|
|
6
|
+
"container-override": "awsui_container-override_9ckv7_69qb9_14",
|
|
7
|
+
"active": "awsui_active_9ckv7_69qb9_14",
|
|
8
|
+
"header": "awsui_header_9ckv7_69qb9_36",
|
|
9
|
+
"flexible": "awsui_flexible_9ckv7_69qb9_43",
|
|
10
|
+
"handle": "awsui_handle_9ckv7_69qb9_47",
|
|
11
|
+
"refresh": "awsui_refresh_9ckv7_69qb9_50",
|
|
12
|
+
"header-content": "awsui_header-content_9ckv7_69qb9_54",
|
|
13
|
+
"settings": "awsui_settings_9ckv7_69qb9_58",
|
|
14
|
+
"fixed": "awsui_fixed_9ckv7_69qb9_66",
|
|
15
|
+
"resizer": "awsui_resizer_9ckv7_69qb9_70"
|
|
16
16
|
};
|
|
17
17
|
|
|
@@ -1,18 +1,26 @@
|
|
|
1
|
-
|
|
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
|
+
.awsui_handle_umbhe_yj4uz_9:not(#\9) {
|
|
2
10
|
cursor: grab;
|
|
3
11
|
}
|
|
4
12
|
|
|
5
|
-
.
|
|
13
|
+
.awsui_handle_umbhe_yj4uz_9:not(#\9):active {
|
|
6
14
|
cursor: grabbing;
|
|
7
15
|
}
|
|
8
16
|
|
|
9
|
-
.
|
|
17
|
+
.awsui_handle_umbhe_yj4uz_9:not(#\9):not(.awsui_active_umbhe_yj4uz_17):focus-visible {
|
|
10
18
|
position: relative;
|
|
11
19
|
box-sizing: border-box;
|
|
12
20
|
outline: 2px dotted transparent;
|
|
13
21
|
outline-offset: 3px;
|
|
14
22
|
}
|
|
15
|
-
.
|
|
23
|
+
.awsui_handle_umbhe_yj4uz_9:not(#\9):not(.awsui_active_umbhe_yj4uz_17):focus-visible::before {
|
|
16
24
|
content: " ";
|
|
17
25
|
display: block;
|
|
18
26
|
position: absolute;
|
|
@@ -25,6 +33,6 @@
|
|
|
25
33
|
border: 2px solid var(--color-border-item-focused-b2ntyl, #0972d3);
|
|
26
34
|
}
|
|
27
35
|
|
|
28
|
-
.
|
|
36
|
+
.awsui_active_umbhe_yj4uz_17:not(#\9) {
|
|
29
37
|
outline: none;
|
|
30
38
|
}
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
// es-module interop with Babel and Typescript
|
|
3
3
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4
4
|
module.exports.default = {
|
|
5
|
-
"handle": "
|
|
6
|
-
"active": "
|
|
5
|
+
"handle": "awsui_handle_umbhe_yj4uz_9",
|
|
6
|
+
"active": "awsui_active_umbhe_yj4uz_17"
|
|
7
7
|
};
|
|
8
8
|
|
package/internal/environment.js
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
|
|
2
2
|
import './styles.scoped.css';
|
|
3
3
|
export default {
|
|
4
|
-
"show-grab-cursor": "awsui_show-grab-
|
|
5
|
-
"show-resize-cursor": "awsui_show-resize-
|
|
6
|
-
"disable-selection": "awsui_disable-
|
|
4
|
+
"show-grab-cursor": "awsui_show-grab-cursor_1fgk7_1xrvg_9",
|
|
5
|
+
"show-resize-cursor": "awsui_show-resize-cursor_1fgk7_1xrvg_13",
|
|
6
|
+
"disable-selection": "awsui_disable-selection_1fgk7_1xrvg_20"
|
|
7
7
|
};
|
|
8
8
|
|
|
@@ -1,15 +1,23 @@
|
|
|
1
|
-
|
|
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
|
+
.awsui_show-grab-cursor_1fgk7_1xrvg_9 *:not(#\9) {
|
|
2
10
|
cursor: grabbing;
|
|
3
11
|
}
|
|
4
12
|
|
|
5
|
-
.awsui_show-resize-
|
|
13
|
+
.awsui_show-resize-cursor_1fgk7_1xrvg_13 *:not(#\9) {
|
|
6
14
|
cursor: nwse-resize;
|
|
7
15
|
}
|
|
8
|
-
.awsui_show-resize-
|
|
16
|
+
.awsui_show-resize-cursor_1fgk7_1xrvg_13 *:not(#\9):dir(rtl) {
|
|
9
17
|
cursor: nesw-resize;
|
|
10
18
|
}
|
|
11
19
|
|
|
12
|
-
.awsui_disable-
|
|
20
|
+
.awsui_disable-selection_1fgk7_1xrvg_20 *:not(#\9) {
|
|
13
21
|
-webkit-user-select: none;
|
|
14
22
|
user-select: none;
|
|
15
23
|
}
|
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
// es-module interop with Babel and Typescript
|
|
3
3
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4
4
|
module.exports.default = {
|
|
5
|
-
"show-grab-cursor": "awsui_show-grab-
|
|
6
|
-
"show-resize-cursor": "awsui_show-resize-
|
|
7
|
-
"disable-selection": "awsui_disable-
|
|
5
|
+
"show-grab-cursor": "awsui_show-grab-cursor_1fgk7_1xrvg_9",
|
|
6
|
+
"show-resize-cursor": "awsui_show-resize-cursor_1fgk7_1xrvg_13",
|
|
7
|
+
"disable-selection": "awsui_disable-selection_1fgk7_1xrvg_20"
|
|
8
8
|
};
|
|
9
9
|
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
|
|
2
2
|
import './styles.scoped.css';
|
|
3
3
|
export default {
|
|
4
|
-
"grid": "
|
|
5
|
-
"grid-compact": "awsui_grid-
|
|
6
|
-
"columns-1": "awsui_columns-
|
|
7
|
-
"columns-2": "awsui_columns-
|
|
8
|
-
"columns-4": "awsui_columns-
|
|
9
|
-
"columns-6": "awsui_columns-
|
|
10
|
-
"grid__item": "
|
|
4
|
+
"grid": "awsui_grid_1hw7z_109ya_5",
|
|
5
|
+
"grid-compact": "awsui_grid-compact_1hw7z_109ya_12",
|
|
6
|
+
"columns-1": "awsui_columns-1_1hw7z_109ya_17",
|
|
7
|
+
"columns-2": "awsui_columns-2_1hw7z_109ya_21",
|
|
8
|
+
"columns-4": "awsui_columns-4_1hw7z_109ya_25",
|
|
9
|
+
"columns-6": "awsui_columns-6_1hw7z_109ya_29",
|
|
10
|
+
"grid__item": "awsui_grid__item_1hw7z_109ya_33"
|
|
11
11
|
};
|
|
12
12
|
|
|
@@ -1,32 +1,36 @@
|
|
|
1
|
-
|
|
1
|
+
/*
|
|
2
|
+
Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
3
|
+
SPDX-License-Identifier: Apache-2.0
|
|
4
|
+
*/
|
|
5
|
+
.awsui_grid_1hw7z_109ya_5:not(#\9) {
|
|
2
6
|
display: grid;
|
|
3
7
|
/* Matches GRID_GAP constant used for calculations. */
|
|
4
8
|
gap: 20px;
|
|
5
9
|
/* Matches ROWSPAN_HEIGHT constant used for calculations. */
|
|
6
10
|
grid-auto-rows: 96px;
|
|
7
11
|
}
|
|
8
|
-
.awsui_grid-
|
|
12
|
+
.awsui_grid-compact_1hw7z_109ya_12:not(#\9) {
|
|
9
13
|
gap: 16px;
|
|
10
14
|
grid-auto-rows: 76px;
|
|
11
15
|
}
|
|
12
16
|
|
|
13
|
-
.
|
|
17
|
+
.awsui_grid_1hw7z_109ya_5.awsui_columns-1_1hw7z_109ya_17:not(#\9) {
|
|
14
18
|
grid-template-columns: minmax(0, 1fr);
|
|
15
19
|
}
|
|
16
20
|
|
|
17
|
-
.
|
|
21
|
+
.awsui_grid_1hw7z_109ya_5.awsui_columns-2_1hw7z_109ya_21:not(#\9) {
|
|
18
22
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
19
23
|
}
|
|
20
24
|
|
|
21
|
-
.
|
|
25
|
+
.awsui_grid_1hw7z_109ya_5.awsui_columns-4_1hw7z_109ya_25:not(#\9) {
|
|
22
26
|
grid-template-columns: repeat(4, minmax(0, 1fr));
|
|
23
27
|
}
|
|
24
28
|
|
|
25
|
-
.
|
|
29
|
+
.awsui_grid_1hw7z_109ya_5.awsui_columns-6_1hw7z_109ya_29:not(#\9) {
|
|
26
30
|
grid-template-columns: repeat(6, minmax(0, 1fr));
|
|
27
31
|
}
|
|
28
32
|
|
|
29
|
-
.
|
|
33
|
+
.awsui_grid__item_1hw7z_109ya_33:not(#\9) {
|
|
30
34
|
display: block;
|
|
31
35
|
position: relative;
|
|
32
36
|
}
|
|
@@ -2,12 +2,12 @@
|
|
|
2
2
|
// es-module interop with Babel and Typescript
|
|
3
3
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4
4
|
module.exports.default = {
|
|
5
|
-
"grid": "
|
|
6
|
-
"grid-compact": "awsui_grid-
|
|
7
|
-
"columns-1": "awsui_columns-
|
|
8
|
-
"columns-2": "awsui_columns-
|
|
9
|
-
"columns-4": "awsui_columns-
|
|
10
|
-
"columns-6": "awsui_columns-
|
|
11
|
-
"grid__item": "
|
|
5
|
+
"grid": "awsui_grid_1hw7z_109ya_5",
|
|
6
|
+
"grid-compact": "awsui_grid-compact_1hw7z_109ya_12",
|
|
7
|
+
"columns-1": "awsui_columns-1_1hw7z_109ya_17",
|
|
8
|
+
"columns-2": "awsui_columns-2_1hw7z_109ya_21",
|
|
9
|
+
"columns-4": "awsui_columns-4_1hw7z_109ya_25",
|
|
10
|
+
"columns-6": "awsui_columns-6_1hw7z_109ya_29",
|
|
11
|
+
"grid__item": "awsui_grid__item_1hw7z_109ya_33"
|
|
12
12
|
};
|
|
13
13
|
|
|
@@ -1,4 +1,8 @@
|
|
|
1
|
-
|
|
1
|
+
/*
|
|
2
|
+
Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
3
|
+
SPDX-License-Identifier: Apache-2.0
|
|
4
|
+
*/
|
|
5
|
+
.awsui_handle_cc1pu_1uyvb_5:not(#\9) {
|
|
2
6
|
-webkit-appearance: none;
|
|
3
7
|
appearance: none;
|
|
4
8
|
background: transparent;
|
|
@@ -7,6 +11,6 @@
|
|
|
7
11
|
padding-inline: var(--space-scaled-xxs-7597g1, 4px);
|
|
8
12
|
color: var(--color-text-interactive-default-lnx6lk, #414d5c);
|
|
9
13
|
}
|
|
10
|
-
.
|
|
14
|
+
.awsui_handle_cc1pu_1uyvb_5:not(#\9):hover {
|
|
11
15
|
color: var(--color-text-interactive-hover-mj8add, #000716);
|
|
12
16
|
}
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
|
|
2
2
|
import './styles.scoped.css';
|
|
3
3
|
export default {
|
|
4
|
-
"root": "
|
|
5
|
-
"inTransition": "
|
|
6
|
-
"transformed": "
|
|
7
|
-
"removed": "
|
|
8
|
-
"dragged": "
|
|
9
|
-
"resized": "
|
|
10
|
-
"hidden": "
|
|
4
|
+
"root": "awsui_root_lljvd_1evk7_5",
|
|
5
|
+
"inTransition": "awsui_inTransition_lljvd_1evk7_11",
|
|
6
|
+
"transformed": "awsui_transformed_lljvd_1evk7_16",
|
|
7
|
+
"removed": "awsui_removed_lljvd_1evk7_21",
|
|
8
|
+
"dragged": "awsui_dragged_lljvd_1evk7_25",
|
|
9
|
+
"resized": "awsui_resized_lljvd_1evk7_30",
|
|
10
|
+
"hidden": "awsui_hidden_lljvd_1evk7_35"
|
|
11
11
|
};
|
|
12
12
|
|
|
@@ -1,33 +1,37 @@
|
|
|
1
|
-
|
|
1
|
+
/*
|
|
2
|
+
Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
3
|
+
SPDX-License-Identifier: Apache-2.0
|
|
4
|
+
*/
|
|
5
|
+
.awsui_root_lljvd_1evk7_5:not(#\9) {
|
|
2
6
|
touch-action: none;
|
|
3
7
|
position: relative;
|
|
4
8
|
block-size: 100%;
|
|
5
9
|
}
|
|
6
10
|
|
|
7
|
-
.
|
|
11
|
+
.awsui_inTransition_lljvd_1evk7_11:not(#\9) {
|
|
8
12
|
transition: transform 200ms;
|
|
9
13
|
transition-timing-function: ease;
|
|
10
14
|
}
|
|
11
15
|
|
|
12
|
-
.
|
|
16
|
+
.awsui_transformed_lljvd_1evk7_16:not(#\9) {
|
|
13
17
|
position: absolute;
|
|
14
18
|
z-index: 1;
|
|
15
19
|
}
|
|
16
20
|
|
|
17
|
-
.
|
|
21
|
+
.awsui_removed_lljvd_1evk7_21:not(#\9) {
|
|
18
22
|
display: none;
|
|
19
23
|
}
|
|
20
24
|
|
|
21
|
-
.
|
|
25
|
+
.awsui_dragged_lljvd_1evk7_25:not(#\9) {
|
|
22
26
|
z-index: 2000;
|
|
23
27
|
position: fixed;
|
|
24
28
|
}
|
|
25
29
|
|
|
26
|
-
.
|
|
30
|
+
.awsui_resized_lljvd_1evk7_30:not(#\9) {
|
|
27
31
|
z-index: 2000;
|
|
28
32
|
position: absolute;
|
|
29
33
|
}
|
|
30
34
|
|
|
31
|
-
.
|
|
35
|
+
.awsui_hidden_lljvd_1evk7_35:not(#\9) {
|
|
32
36
|
display: none;
|
|
33
37
|
}
|
|
@@ -2,12 +2,12 @@
|
|
|
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
|
-
"inTransition": "
|
|
7
|
-
"transformed": "
|
|
8
|
-
"removed": "
|
|
9
|
-
"dragged": "
|
|
10
|
-
"resized": "
|
|
11
|
-
"hidden": "
|
|
5
|
+
"root": "awsui_root_lljvd_1evk7_5",
|
|
6
|
+
"inTransition": "awsui_inTransition_lljvd_1evk7_11",
|
|
7
|
+
"transformed": "awsui_transformed_lljvd_1evk7_16",
|
|
8
|
+
"removed": "awsui_removed_lljvd_1evk7_21",
|
|
9
|
+
"dragged": "awsui_dragged_lljvd_1evk7_25",
|
|
10
|
+
"resized": "awsui_resized_lljvd_1evk7_30",
|
|
11
|
+
"hidden": "awsui_hidden_lljvd_1evk7_35"
|
|
12
12
|
};
|
|
13
13
|
|
package/internal/manifest.json
CHANGED
|
@@ -1,17 +1,25 @@
|
|
|
1
|
-
|
|
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
|
+
.awsui_handle_19hnz_o00ov_9:not(#\9) {
|
|
2
10
|
cursor: nwse-resize;
|
|
3
11
|
}
|
|
4
|
-
.
|
|
12
|
+
.awsui_handle_19hnz_o00ov_9:not(#\9):dir(rtl) {
|
|
5
13
|
cursor: nesw-resize;
|
|
6
14
|
}
|
|
7
15
|
|
|
8
|
-
.
|
|
16
|
+
.awsui_handle_19hnz_o00ov_9:not(#\9):not(.awsui_active_19hnz_o00ov_16):focus-visible {
|
|
9
17
|
position: relative;
|
|
10
18
|
box-sizing: border-box;
|
|
11
19
|
outline: 2px dotted transparent;
|
|
12
20
|
outline-offset: 3px;
|
|
13
21
|
}
|
|
14
|
-
.
|
|
22
|
+
.awsui_handle_19hnz_o00ov_9:not(#\9):not(.awsui_active_19hnz_o00ov_16):focus-visible::before {
|
|
15
23
|
content: " ";
|
|
16
24
|
display: block;
|
|
17
25
|
position: absolute;
|
|
@@ -24,6 +32,6 @@
|
|
|
24
32
|
border: 2px solid var(--color-border-item-focused-b2ntyl, #0972d3);
|
|
25
33
|
}
|
|
26
34
|
|
|
27
|
-
.
|
|
35
|
+
.awsui_active_19hnz_o00ov_16:not(#\9) {
|
|
28
36
|
outline: none;
|
|
29
37
|
}
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
// es-module interop with Babel and Typescript
|
|
3
3
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4
4
|
module.exports.default = {
|
|
5
|
-
"handle": "
|
|
6
|
-
"active": "
|
|
5
|
+
"handle": "awsui_handle_19hnz_o00ov_9",
|
|
6
|
+
"active": "awsui_active_19hnz_o00ov_16"
|
|
7
7
|
};
|
|
8
8
|
|