@cloudscape-design/board-components 3.0.75 → 3.0.77
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 +8 -8
- package/board/styles.selectors.js +5 -5
- package/board-item/styles.css.js +11 -11
- package/board-item/styles.scoped.css +14 -14
- package/board-item/styles.selectors.js +11 -11
- package/internal/drag-handle/styles.css.js +2 -2
- package/internal/drag-handle/styles.scoped.css +6 -6
- package/internal/drag-handle/styles.selectors.js +2 -2
- package/internal/environment.js +1 -1
- package/internal/environment.json +1 -1
- package/internal/handle/styles.css.js +1 -1
- package/internal/handle/styles.scoped.css +4 -4
- package/internal/handle/styles.selectors.js +1 -1
- package/internal/manifest.json +1 -1
- package/internal/resize-handle/styles.css.js +2 -2
- package/internal/resize-handle/styles.scoped.css +6 -6
- package/internal/resize-handle/styles.selectors.js +2 -2
- 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_knzlf_5",
|
|
5
|
+
"placeholder--active": "awsui_placeholder--active_1h7dk_knzlf_9",
|
|
6
|
+
"placeholder--hover": "awsui_placeholder--hover_1h7dk_knzlf_12",
|
|
7
|
+
"root": "awsui_root_1h7dk_knzlf_16",
|
|
8
|
+
"empty": "awsui_empty_1h7dk_knzlf_20"
|
|
9
9
|
};
|
|
10
10
|
|
package/board/styles.scoped.css
CHANGED
|
@@ -2,28 +2,28 @@
|
|
|
2
2
|
Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
3
3
|
SPDX-License-Identifier: Apache-2.0
|
|
4
4
|
*/
|
|
5
|
-
.
|
|
5
|
+
.awsui_placeholder_1h7dk_knzlf_5:not(#\9) {
|
|
6
6
|
border-radius: var(--border-radius-container-wqv1zi, 16px);
|
|
7
7
|
block-size: 100%;
|
|
8
8
|
}
|
|
9
|
-
.awsui_placeholder--
|
|
10
|
-
background-color: var(--color-board-placeholder-active-
|
|
9
|
+
.awsui_placeholder--active_1h7dk_knzlf_9:not(#\9) {
|
|
10
|
+
background-color: var(--color-board-placeholder-active-93q92g, #ebebf0);
|
|
11
11
|
}
|
|
12
|
-
.awsui_placeholder--
|
|
13
|
-
background-color: var(--color-board-placeholder-hover-
|
|
12
|
+
.awsui_placeholder--hover_1h7dk_knzlf_12:not(#\9) {
|
|
13
|
+
background-color: var(--color-board-placeholder-hover-yu7ixx, #d1f1ff);
|
|
14
14
|
}
|
|
15
15
|
|
|
16
|
-
.
|
|
16
|
+
.awsui_root_1h7dk_knzlf_16:not(#\9) {
|
|
17
17
|
/* used in test-utils */
|
|
18
18
|
}
|
|
19
19
|
|
|
20
|
-
.
|
|
20
|
+
.awsui_empty_1h7dk_knzlf_20:not(#\9) {
|
|
21
21
|
box-sizing: border-box;
|
|
22
22
|
inline-size: 100%;
|
|
23
23
|
padding-block-start: var(--space-scaled-m-mo5yse, 16px);
|
|
24
24
|
padding-block-end: var(--space-scaled-l-0hpmd7, 20px);
|
|
25
25
|
padding-inline: var(--space-scaled-l-0hpmd7, 20px);
|
|
26
|
-
color: var(--color-text-empty-
|
|
26
|
+
color: var(--color-text-empty-o6660v, #656871);
|
|
27
27
|
display: flex;
|
|
28
28
|
justify-content: center;
|
|
29
29
|
}
|
|
@@ -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_knzlf_5",
|
|
6
|
+
"placeholder--active": "awsui_placeholder--active_1h7dk_knzlf_9",
|
|
7
|
+
"placeholder--hover": "awsui_placeholder--hover_1h7dk_knzlf_12",
|
|
8
|
+
"root": "awsui_root_1h7dk_knzlf_16",
|
|
9
|
+
"empty": "awsui_empty_1h7dk_knzlf_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_h5u0j_9",
|
|
5
|
+
"container-override": "awsui_container-override_9ckv7_h5u0j_14",
|
|
6
|
+
"active": "awsui_active_9ckv7_h5u0j_14",
|
|
7
|
+
"header": "awsui_header_9ckv7_h5u0j_36",
|
|
8
|
+
"flexible": "awsui_flexible_9ckv7_h5u0j_43",
|
|
9
|
+
"handle": "awsui_handle_9ckv7_h5u0j_47",
|
|
10
|
+
"refresh": "awsui_refresh_9ckv7_h5u0j_50",
|
|
11
|
+
"header-content": "awsui_header-content_9ckv7_h5u0j_54",
|
|
12
|
+
"settings": "awsui_settings_9ckv7_h5u0j_58",
|
|
13
|
+
"fixed": "awsui_fixed_9ckv7_h5u0j_66",
|
|
14
|
+
"resizer": "awsui_resizer_9ckv7_h5u0j_70"
|
|
15
15
|
};
|
|
16
16
|
|
|
@@ -6,21 +6,21 @@
|
|
|
6
6
|
Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
7
7
|
SPDX-License-Identifier: Apache-2.0
|
|
8
8
|
*/
|
|
9
|
-
.
|
|
9
|
+
.awsui_root_9ckv7_h5u0j_9:not(#\9) {
|
|
10
10
|
display: contents;
|
|
11
11
|
}
|
|
12
12
|
|
|
13
13
|
/* TODO: use container API instead of styles override */
|
|
14
|
-
.awsui_container-
|
|
14
|
+
.awsui_container-override_9ckv7_h5u0j_14.awsui_active_9ckv7_h5u0j_14:not(#\9) {
|
|
15
15
|
box-shadow: var(--shadow-container-active-kl29x9, 0px 1px 1px 1px #e9ebed, 0px 6px 36px rgba(0, 7, 22, 0.1019607843));
|
|
16
16
|
}
|
|
17
|
-
[data-awsui-focus-visible] .awsui_container-
|
|
17
|
+
[data-awsui-focus-visible] .awsui_container-override_9ckv7_h5u0j_14.awsui_active_9ckv7_h5u0j_14:not(#\9) {
|
|
18
18
|
position: relative;
|
|
19
19
|
box-sizing: border-box;
|
|
20
20
|
outline: 2px dotted transparent;
|
|
21
21
|
outline-offset: -1px;
|
|
22
22
|
}
|
|
23
|
-
[data-awsui-focus-visible] .awsui_container-
|
|
23
|
+
[data-awsui-focus-visible] .awsui_container-override_9ckv7_h5u0j_14.awsui_active_9ckv7_h5u0j_14:not(#\9)::before {
|
|
24
24
|
content: " ";
|
|
25
25
|
display: block;
|
|
26
26
|
position: absolute;
|
|
@@ -30,44 +30,44 @@
|
|
|
30
30
|
inline-size: calc(100% + 2 * 0px);
|
|
31
31
|
block-size: calc(100% + 2 * 0px);
|
|
32
32
|
border-radius: var(--border-radius-container-wqv1zi, 16px);
|
|
33
|
-
border: 2px solid var(--color-border-item-focused-
|
|
33
|
+
border: 2px solid var(--color-border-item-focused-nv6mhz, #006ce0);
|
|
34
34
|
}
|
|
35
35
|
|
|
36
|
-
.
|
|
36
|
+
.awsui_header_9ckv7_h5u0j_36:not(#\9) {
|
|
37
37
|
display: flex;
|
|
38
38
|
justify-items: center;
|
|
39
39
|
padding-block: var(--space-scaled-s-aqzyko, 12px);
|
|
40
40
|
padding-inline: calc(var(--space-container-horizontal-wfukh3, 20px) - var(--space-scaled-xs-26e2du, 8px));
|
|
41
41
|
}
|
|
42
42
|
|
|
43
|
-
.
|
|
43
|
+
.awsui_flexible_9ckv7_h5u0j_43:not(#\9) {
|
|
44
44
|
flex: 1 1 min-content;
|
|
45
45
|
}
|
|
46
46
|
|
|
47
|
-
.
|
|
47
|
+
.awsui_handle_9ckv7_h5u0j_47:not(#\9) {
|
|
48
48
|
margin-block-start: calc(var(--space-scaled-xxs-7597g1, 4px) + 1px);
|
|
49
49
|
}
|
|
50
|
-
.
|
|
50
|
+
.awsui_refresh_9ckv7_h5u0j_50 > .awsui_handle_9ckv7_h5u0j_47:not(#\9) {
|
|
51
51
|
margin-block-start: calc(var(--space-static-xxxs-3gu9os, 2px) + 1px);
|
|
52
52
|
}
|
|
53
53
|
|
|
54
|
-
.awsui_header-
|
|
54
|
+
.awsui_header-content_9ckv7_h5u0j_54:not(#\9) {
|
|
55
55
|
margin-inline-start: var(--space-scaled-xxs-7597g1, 4px);
|
|
56
56
|
}
|
|
57
57
|
|
|
58
|
-
.
|
|
58
|
+
.awsui_settings_9ckv7_h5u0j_58:not(#\9) {
|
|
59
59
|
margin-block-start: calc(var(--space-scaled-xxxs-27y4hv, 2px) + 1px);
|
|
60
60
|
margin-inline-start: var(--space-static-xs-7sfb63, 8px);
|
|
61
61
|
}
|
|
62
|
-
.
|
|
62
|
+
.awsui_refresh_9ckv7_h5u0j_50 > .awsui_settings_9ckv7_h5u0j_58:not(#\9) {
|
|
63
63
|
margin-block-start: 0px;
|
|
64
64
|
}
|
|
65
65
|
|
|
66
|
-
.
|
|
66
|
+
.awsui_fixed_9ckv7_h5u0j_66:not(#\9) {
|
|
67
67
|
flex: 0 0 auto;
|
|
68
68
|
}
|
|
69
69
|
|
|
70
|
-
.
|
|
70
|
+
.awsui_resizer_9ckv7_h5u0j_70:not(#\9) {
|
|
71
71
|
position: absolute;
|
|
72
72
|
inset-block-end: calc(var(--space-static-xs-7sfb63, 8px) - var(--space-static-xxxs-3gu9os, 2px));
|
|
73
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_h5u0j_9",
|
|
6
|
+
"container-override": "awsui_container-override_9ckv7_h5u0j_14",
|
|
7
|
+
"active": "awsui_active_9ckv7_h5u0j_14",
|
|
8
|
+
"header": "awsui_header_9ckv7_h5u0j_36",
|
|
9
|
+
"flexible": "awsui_flexible_9ckv7_h5u0j_43",
|
|
10
|
+
"handle": "awsui_handle_9ckv7_h5u0j_47",
|
|
11
|
+
"refresh": "awsui_refresh_9ckv7_h5u0j_50",
|
|
12
|
+
"header-content": "awsui_header-content_9ckv7_h5u0j_54",
|
|
13
|
+
"settings": "awsui_settings_9ckv7_h5u0j_58",
|
|
14
|
+
"fixed": "awsui_fixed_9ckv7_h5u0j_66",
|
|
15
|
+
"resizer": "awsui_resizer_9ckv7_h5u0j_70"
|
|
16
16
|
};
|
|
17
17
|
|
|
@@ -6,21 +6,21 @@
|
|
|
6
6
|
Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
7
7
|
SPDX-License-Identifier: Apache-2.0
|
|
8
8
|
*/
|
|
9
|
-
.
|
|
9
|
+
.awsui_handle_umbhe_1ftli_9:not(#\9) {
|
|
10
10
|
cursor: grab;
|
|
11
11
|
}
|
|
12
12
|
|
|
13
|
-
.
|
|
13
|
+
.awsui_handle_umbhe_1ftli_9:not(#\9):active {
|
|
14
14
|
cursor: grabbing;
|
|
15
15
|
}
|
|
16
16
|
|
|
17
|
-
.
|
|
17
|
+
.awsui_handle_umbhe_1ftli_9:not(#\9):not(.awsui_active_umbhe_1ftli_17):focus-visible {
|
|
18
18
|
position: relative;
|
|
19
19
|
box-sizing: border-box;
|
|
20
20
|
outline: 2px dotted transparent;
|
|
21
21
|
outline-offset: 3px;
|
|
22
22
|
}
|
|
23
|
-
.
|
|
23
|
+
.awsui_handle_umbhe_1ftli_9:not(#\9):not(.awsui_active_umbhe_1ftli_17):focus-visible::before {
|
|
24
24
|
content: " ";
|
|
25
25
|
display: block;
|
|
26
26
|
position: absolute;
|
|
@@ -30,9 +30,9 @@
|
|
|
30
30
|
inline-size: calc(100% + 2 * 4px);
|
|
31
31
|
block-size: calc(100% + 2 * 4px);
|
|
32
32
|
border-radius: var(--border-radius-control-default-focus-ring-u8zbsz, 4px);
|
|
33
|
-
border: 2px solid var(--color-border-item-focused-
|
|
33
|
+
border: 2px solid var(--color-border-item-focused-nv6mhz, #006ce0);
|
|
34
34
|
}
|
|
35
35
|
|
|
36
|
-
.
|
|
36
|
+
.awsui_active_umbhe_1ftli_17:not(#\9) {
|
|
37
37
|
outline: none;
|
|
38
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_1ftli_9",
|
|
6
|
+
"active": "awsui_active_umbhe_1ftli_17"
|
|
7
7
|
};
|
|
8
8
|
|
package/internal/environment.js
CHANGED
|
@@ -2,15 +2,15 @@
|
|
|
2
2
|
Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
3
3
|
SPDX-License-Identifier: Apache-2.0
|
|
4
4
|
*/
|
|
5
|
-
.
|
|
5
|
+
.awsui_handle_cc1pu_v7z7o_5:not(#\9) {
|
|
6
6
|
-webkit-appearance: none;
|
|
7
7
|
appearance: none;
|
|
8
8
|
background: transparent;
|
|
9
9
|
border: none;
|
|
10
10
|
padding-block: var(--space-scaled-xxs-7597g1, 4px);
|
|
11
11
|
padding-inline: var(--space-scaled-xxs-7597g1, 4px);
|
|
12
|
-
color: var(--color-text-interactive-default-
|
|
12
|
+
color: var(--color-text-interactive-default-tkx8fe, #424650);
|
|
13
13
|
}
|
|
14
|
-
.
|
|
15
|
-
color: var(--color-text-interactive-hover-
|
|
14
|
+
.awsui_handle_cc1pu_v7z7o_5:not(#\9):hover {
|
|
15
|
+
color: var(--color-text-interactive-hover-f9gqs8, #0f141a);
|
|
16
16
|
}
|
package/internal/manifest.json
CHANGED
|
@@ -6,20 +6,20 @@
|
|
|
6
6
|
Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
7
7
|
SPDX-License-Identifier: Apache-2.0
|
|
8
8
|
*/
|
|
9
|
-
.
|
|
9
|
+
.awsui_handle_19hnz_imz5c_9:not(#\9) {
|
|
10
10
|
cursor: nwse-resize;
|
|
11
11
|
}
|
|
12
|
-
.
|
|
12
|
+
.awsui_handle_19hnz_imz5c_9:not(#\9):dir(rtl) {
|
|
13
13
|
cursor: nesw-resize;
|
|
14
14
|
}
|
|
15
15
|
|
|
16
|
-
.
|
|
16
|
+
.awsui_handle_19hnz_imz5c_9:not(#\9):not(.awsui_active_19hnz_imz5c_16):focus-visible {
|
|
17
17
|
position: relative;
|
|
18
18
|
box-sizing: border-box;
|
|
19
19
|
outline: 2px dotted transparent;
|
|
20
20
|
outline-offset: 3px;
|
|
21
21
|
}
|
|
22
|
-
.
|
|
22
|
+
.awsui_handle_19hnz_imz5c_9:not(#\9):not(.awsui_active_19hnz_imz5c_16):focus-visible::before {
|
|
23
23
|
content: " ";
|
|
24
24
|
display: block;
|
|
25
25
|
position: absolute;
|
|
@@ -29,9 +29,9 @@
|
|
|
29
29
|
inline-size: calc(100% + 2 * 4px);
|
|
30
30
|
block-size: calc(100% + 2 * 4px);
|
|
31
31
|
border-radius: var(--border-radius-control-default-focus-ring-u8zbsz, 4px);
|
|
32
|
-
border: 2px solid var(--color-border-item-focused-
|
|
32
|
+
border: 2px solid var(--color-border-item-focused-nv6mhz, #006ce0);
|
|
33
33
|
}
|
|
34
34
|
|
|
35
|
-
.
|
|
35
|
+
.awsui_active_19hnz_imz5c_16:not(#\9) {
|
|
36
36
|
outline: none;
|
|
37
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_imz5c_9",
|
|
6
|
+
"active": "awsui_active_19hnz_imz5c_16"
|
|
7
7
|
};
|
|
8
8
|
|