@cloudscape-design/board-components 3.0.17 → 3.0.19
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 +7 -7
- package/board/styles.scoped.css +12 -12
- package/board/styles.selectors.js +7 -7
- package/board-item/styles.css.js +10 -10
- package/board-item/styles.scoped.css +22 -22
- package/board-item/styles.selectors.js +10 -10
- package/internal/environment.js +1 -1
- package/internal/handle/styles.css.js +1 -1
- package/internal/handle/styles.scoped.css +5 -5
- package/internal/handle/styles.selectors.js +1 -1
- package/internal/manifest.json +1 -1
- package/package.json +1 -1
package/board/styles.css.js
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
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": "
|
|
9
|
-
"current-operation-reorder": "awsui_current-operation-
|
|
10
|
-
"current-operation-resize": "awsui_current-operation-
|
|
4
|
+
"placeholder": "awsui_placeholder_1h7dk_1vsa2_1",
|
|
5
|
+
"placeholder--active": "awsui_placeholder--active_1h7dk_1vsa2_5",
|
|
6
|
+
"placeholder--hover": "awsui_placeholder--hover_1h7dk_1vsa2_8",
|
|
7
|
+
"root": "awsui_root_1h7dk_1vsa2_12",
|
|
8
|
+
"empty": "awsui_empty_1h7dk_1vsa2_16",
|
|
9
|
+
"current-operation-reorder": "awsui_current-operation-reorder_1h7dk_1vsa2_25",
|
|
10
|
+
"current-operation-resize": "awsui_current-operation-resize_1h7dk_1vsa2_29"
|
|
11
11
|
};
|
|
12
12
|
|
package/board/styles.scoped.css
CHANGED
|
@@ -1,31 +1,31 @@
|
|
|
1
|
-
.
|
|
2
|
-
border-radius: var(--border-radius-container-
|
|
1
|
+
.awsui_placeholder_1h7dk_1vsa2_1:not(#\9) {
|
|
2
|
+
border-radius: var(--border-radius-container-pmtq2d, 16px);
|
|
3
3
|
height: 100%;
|
|
4
4
|
}
|
|
5
|
-
.awsui_placeholder--
|
|
6
|
-
background-color: var(--color-board-placeholder-active-
|
|
5
|
+
.awsui_placeholder--active_1h7dk_1vsa2_5:not(#\9) {
|
|
6
|
+
background-color: var(--color-board-placeholder-active-kxfgmn, #e9ebed);
|
|
7
7
|
}
|
|
8
|
-
.awsui_placeholder--
|
|
9
|
-
background-color: var(--color-board-placeholder-hover-
|
|
8
|
+
.awsui_placeholder--hover_1h7dk_1vsa2_8:not(#\9) {
|
|
9
|
+
background-color: var(--color-board-placeholder-hover-8tcom5, #d3e7f9);
|
|
10
10
|
}
|
|
11
11
|
|
|
12
|
-
.
|
|
12
|
+
.awsui_root_1h7dk_1vsa2_12:not(#\9) {
|
|
13
13
|
/* used in test-utils */
|
|
14
14
|
}
|
|
15
15
|
|
|
16
|
-
.
|
|
16
|
+
.awsui_empty_1h7dk_1vsa2_16:not(#\9) {
|
|
17
17
|
box-sizing: border-box;
|
|
18
18
|
width: 100%;
|
|
19
|
-
padding: var(--space-scaled-m-
|
|
20
|
-
color: var(--color-text-empty-
|
|
19
|
+
padding: var(--space-scaled-m-gxhdpl, 16px) var(--space-scaled-l-2rs0gk, 20px) var(--space-scaled-l-2rs0gk, 20px);
|
|
20
|
+
color: var(--color-text-empty-v5xueo, #5f6b7a);
|
|
21
21
|
display: flex;
|
|
22
22
|
justify-content: center;
|
|
23
23
|
}
|
|
24
24
|
|
|
25
|
-
.awsui_current-operation-
|
|
25
|
+
.awsui_current-operation-reorder_1h7dk_1vsa2_25:not(#\9) {
|
|
26
26
|
cursor: grabbing;
|
|
27
27
|
}
|
|
28
28
|
|
|
29
|
-
.awsui_current-operation-
|
|
29
|
+
.awsui_current-operation-resize_1h7dk_1vsa2_29:not(#\9) {
|
|
30
30
|
cursor: nwse-resize;
|
|
31
31
|
}
|
|
@@ -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
|
-
"placeholder": "
|
|
6
|
-
"placeholder--active": "awsui_placeholder--
|
|
7
|
-
"placeholder--hover": "awsui_placeholder--
|
|
8
|
-
"root": "
|
|
9
|
-
"empty": "
|
|
10
|
-
"current-operation-reorder": "awsui_current-operation-
|
|
11
|
-
"current-operation-resize": "awsui_current-operation-
|
|
5
|
+
"placeholder": "awsui_placeholder_1h7dk_1vsa2_1",
|
|
6
|
+
"placeholder--active": "awsui_placeholder--active_1h7dk_1vsa2_5",
|
|
7
|
+
"placeholder--hover": "awsui_placeholder--hover_1h7dk_1vsa2_8",
|
|
8
|
+
"root": "awsui_root_1h7dk_1vsa2_12",
|
|
9
|
+
"empty": "awsui_empty_1h7dk_1vsa2_16",
|
|
10
|
+
"current-operation-reorder": "awsui_current-operation-reorder_1h7dk_1vsa2_25",
|
|
11
|
+
"current-operation-resize": "awsui_current-operation-resize_1h7dk_1vsa2_29"
|
|
12
12
|
};
|
|
13
13
|
|
package/board-item/styles.css.js
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
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
|
-
"header-content": "awsui_header-
|
|
11
|
-
"settings": "
|
|
12
|
-
"fixed": "
|
|
13
|
-
"resizer": "
|
|
4
|
+
"root": "awsui_root_9ckv7_tgeft_1",
|
|
5
|
+
"container-override": "awsui_container-override_9ckv7_tgeft_6",
|
|
6
|
+
"active": "awsui_active_9ckv7_tgeft_6",
|
|
7
|
+
"header": "awsui_header_9ckv7_tgeft_31",
|
|
8
|
+
"flexible": "awsui_flexible_9ckv7_tgeft_37",
|
|
9
|
+
"handle": "awsui_handle_9ckv7_tgeft_41",
|
|
10
|
+
"header-content": "awsui_header-content_9ckv7_tgeft_45",
|
|
11
|
+
"settings": "awsui_settings_9ckv7_tgeft_49",
|
|
12
|
+
"fixed": "awsui_fixed_9ckv7_tgeft_54",
|
|
13
|
+
"resizer": "awsui_resizer_9ckv7_tgeft_58"
|
|
14
14
|
};
|
|
15
15
|
|
|
@@ -1,21 +1,21 @@
|
|
|
1
|
-
.
|
|
1
|
+
.awsui_root_9ckv7_tgeft_1:not(#\9) {
|
|
2
2
|
display: contents;
|
|
3
3
|
}
|
|
4
4
|
|
|
5
5
|
/* TODO: use container API instead of styles override */
|
|
6
|
-
.awsui_container-
|
|
7
|
-
box-shadow: var(--shadow-container-active-
|
|
6
|
+
.awsui_container-override_9ckv7_tgeft_6.awsui_active_9ckv7_tgeft_6:not(#\9) {
|
|
7
|
+
box-shadow: var(--shadow-container-active-x0fzbz, 0px 1px 1px 1px #e9ebed, 0px 6px 36px rgba(0, 7, 22, 0.1019607843));
|
|
8
8
|
}
|
|
9
|
-
[data-awsui-focus-visible] .awsui_container-
|
|
9
|
+
[data-awsui-focus-visible] .awsui_container-override_9ckv7_tgeft_6.awsui_active_9ckv7_tgeft_6:not(#\9) {
|
|
10
10
|
position: relative;
|
|
11
11
|
box-sizing: border-box;
|
|
12
12
|
outline: none;
|
|
13
13
|
}
|
|
14
|
-
[data-awsui-focus-visible] .awsui_container-
|
|
14
|
+
[data-awsui-focus-visible] .awsui_container-override_9ckv7_tgeft_6.awsui_active_9ckv7_tgeft_6:not(#\9) {
|
|
15
15
|
outline: 2px dotted transparent;
|
|
16
16
|
outline-offset: -1px;
|
|
17
17
|
}
|
|
18
|
-
[data-awsui-focus-visible] .awsui_container-
|
|
18
|
+
[data-awsui-focus-visible] .awsui_container-override_9ckv7_tgeft_6.awsui_active_9ckv7_tgeft_6:not(#\9)::before {
|
|
19
19
|
content: " ";
|
|
20
20
|
display: block;
|
|
21
21
|
position: absolute;
|
|
@@ -24,39 +24,39 @@
|
|
|
24
24
|
top: calc(-1 * 0px);
|
|
25
25
|
width: calc(100% + 2 * 0px);
|
|
26
26
|
height: calc(100% + 2 * 0px);
|
|
27
|
-
border-radius: var(--border-radius-container-
|
|
28
|
-
border: 2px solid var(--color-border-item-focused-
|
|
27
|
+
border-radius: var(--border-radius-container-pmtq2d, 16px);
|
|
28
|
+
border: 2px solid var(--color-border-item-focused-4t19h5, #0972d3);
|
|
29
29
|
}
|
|
30
30
|
|
|
31
|
-
.
|
|
31
|
+
.awsui_header_9ckv7_tgeft_31:not(#\9) {
|
|
32
32
|
display: flex;
|
|
33
33
|
justify-items: center;
|
|
34
|
-
padding: var(--space-scaled-s-
|
|
34
|
+
padding: var(--space-scaled-s-913kwi, 12px) calc(var(--space-container-horizontal-jxdgil, 20px) - var(--space-scaled-xs-wbfgrv, 8px));
|
|
35
35
|
}
|
|
36
36
|
|
|
37
|
-
.
|
|
37
|
+
.awsui_flexible_9ckv7_tgeft_37:not(#\9) {
|
|
38
38
|
flex: 1 1 min-content;
|
|
39
39
|
}
|
|
40
40
|
|
|
41
|
-
.
|
|
42
|
-
margin-top: calc(var(--space-scaled-xxs-
|
|
41
|
+
.awsui_handle_9ckv7_tgeft_41:not(#\9) {
|
|
42
|
+
margin-top: calc(var(--space-scaled-xxs-t2t62i, 4px) + 1px);
|
|
43
43
|
}
|
|
44
44
|
|
|
45
|
-
.awsui_header-
|
|
46
|
-
margin-left: var(--space-scaled-xxs-
|
|
45
|
+
.awsui_header-content_9ckv7_tgeft_45:not(#\9) {
|
|
46
|
+
margin-left: var(--space-scaled-xxs-t2t62i, 4px);
|
|
47
47
|
}
|
|
48
48
|
|
|
49
|
-
.
|
|
50
|
-
margin-top: calc(var(--space-scaled-xxxs-
|
|
51
|
-
margin-left: var(--space-static-xs-
|
|
49
|
+
.awsui_settings_9ckv7_tgeft_49:not(#\9) {
|
|
50
|
+
margin-top: calc(var(--space-scaled-xxxs-jdgipl, 2px) + 1px);
|
|
51
|
+
margin-left: var(--space-static-xs-zgeph4, 8px);
|
|
52
52
|
}
|
|
53
53
|
|
|
54
|
-
.
|
|
54
|
+
.awsui_fixed_9ckv7_tgeft_54:not(#\9) {
|
|
55
55
|
flex: 0 0 auto;
|
|
56
56
|
}
|
|
57
57
|
|
|
58
|
-
.
|
|
58
|
+
.awsui_resizer_9ckv7_tgeft_58:not(#\9) {
|
|
59
59
|
position: absolute;
|
|
60
|
-
bottom: calc(var(--space-static-xs-
|
|
61
|
-
right: calc(var(--space-static-xs-
|
|
60
|
+
bottom: calc(var(--space-static-xs-zgeph4, 8px) - var(--space-static-xxxs-b6tgp7, 2px));
|
|
61
|
+
right: calc(var(--space-static-xs-zgeph4, 8px) - var(--space-static-xxxs-b6tgp7, 2px));
|
|
62
62
|
}
|
|
@@ -2,15 +2,15 @@
|
|
|
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
|
-
"header-content": "awsui_header-
|
|
12
|
-
"settings": "
|
|
13
|
-
"fixed": "
|
|
14
|
-
"resizer": "
|
|
5
|
+
"root": "awsui_root_9ckv7_tgeft_1",
|
|
6
|
+
"container-override": "awsui_container-override_9ckv7_tgeft_6",
|
|
7
|
+
"active": "awsui_active_9ckv7_tgeft_6",
|
|
8
|
+
"header": "awsui_header_9ckv7_tgeft_31",
|
|
9
|
+
"flexible": "awsui_flexible_9ckv7_tgeft_37",
|
|
10
|
+
"handle": "awsui_handle_9ckv7_tgeft_41",
|
|
11
|
+
"header-content": "awsui_header-content_9ckv7_tgeft_45",
|
|
12
|
+
"settings": "awsui_settings_9ckv7_tgeft_49",
|
|
13
|
+
"fixed": "awsui_fixed_9ckv7_tgeft_54",
|
|
14
|
+
"resizer": "awsui_resizer_9ckv7_tgeft_58"
|
|
15
15
|
};
|
|
16
16
|
|
package/internal/environment.js
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
.
|
|
1
|
+
.awsui_handle_cc1pu_1yi9f_1:not(#\9) {
|
|
2
2
|
-webkit-appearance: none;
|
|
3
3
|
appearance: none;
|
|
4
4
|
background: transparent;
|
|
5
5
|
border: none;
|
|
6
|
-
padding: var(--space-scaled-xxs-
|
|
7
|
-
color: var(--color-text-interactive-default-
|
|
6
|
+
padding: var(--space-scaled-xxs-t2t62i, 4px);
|
|
7
|
+
color: var(--color-text-interactive-default-2sml2m, #414d5c);
|
|
8
8
|
}
|
|
9
|
-
.
|
|
10
|
-
color: var(--color-text-interactive-hover-
|
|
9
|
+
.awsui_handle_cc1pu_1yi9f_1:not(#\9):hover {
|
|
10
|
+
color: var(--color-text-interactive-hover-8bpozs, #000716);
|
|
11
11
|
}
|
package/internal/manifest.json
CHANGED