@cloudscape-design/board-components 3.0.25 → 3.0.26
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-item/header.js +3 -1
- package/board-item/styles.css.js +11 -10
- package/board-item/styles.scoped.css +18 -12
- package/board-item/styles.selectors.js +11 -10
- package/internal/environment.js +1 -1
- package/internal/item-container/index.js +13 -2
- package/internal/item-container/styles.css.js +7 -7
- package/internal/item-container/styles.scoped.css +8 -8
- package/internal/item-container/styles.selectors.js +7 -7
- package/internal/manifest.json +1 -1
- package/package.json +1 -1
package/board-item/header.js
CHANGED
|
@@ -2,7 +2,9 @@ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
|
2
2
|
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
3
3
|
// SPDX-License-Identifier: Apache-2.0
|
|
4
4
|
import clsx from "clsx";
|
|
5
|
+
import { useVisualRefresh } from "../internal/base-component/use-visual-refresh.js";
|
|
5
6
|
import styles from "./styles.css.js";
|
|
6
7
|
export default function WidgetContainerHeader({ handle, children, settings }) {
|
|
7
|
-
|
|
8
|
+
const isVisualRefresh = useVisualRefresh();
|
|
9
|
+
return (_jsxs("div", { className: clsx(styles.header, isVisualRefresh && styles.refresh), children: [_jsx("div", { className: clsx(styles.fixed, styles.handle), children: handle }), _jsx("div", { className: clsx(styles.flexible, styles["header-content"]), children: children }), settings ? _jsx("div", { className: clsx(styles.fixed, styles.settings), children: settings }) : null] }));
|
|
8
10
|
}
|
package/board-item/styles.css.js
CHANGED
|
@@ -1,15 +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
|
-
"
|
|
11
|
-
"
|
|
12
|
-
"
|
|
13
|
-
"
|
|
4
|
+
"root": "awsui_root_9ckv7_h85wa_1",
|
|
5
|
+
"container-override": "awsui_container-override_9ckv7_h85wa_6",
|
|
6
|
+
"active": "awsui_active_9ckv7_h85wa_6",
|
|
7
|
+
"header": "awsui_header_9ckv7_h85wa_31",
|
|
8
|
+
"flexible": "awsui_flexible_9ckv7_h85wa_37",
|
|
9
|
+
"handle": "awsui_handle_9ckv7_h85wa_41",
|
|
10
|
+
"refresh": "awsui_refresh_9ckv7_h85wa_44",
|
|
11
|
+
"header-content": "awsui_header-content_9ckv7_h85wa_48",
|
|
12
|
+
"settings": "awsui_settings_9ckv7_h85wa_52",
|
|
13
|
+
"fixed": "awsui_fixed_9ckv7_h85wa_60",
|
|
14
|
+
"resizer": "awsui_resizer_9ckv7_h85wa_64"
|
|
14
15
|
};
|
|
15
16
|
|
|
@@ -1,21 +1,21 @@
|
|
|
1
|
-
.
|
|
1
|
+
.awsui_root_9ckv7_h85wa_1:not(#\9) {
|
|
2
2
|
display: contents;
|
|
3
3
|
}
|
|
4
4
|
|
|
5
5
|
/* TODO: use container API instead of styles override */
|
|
6
|
-
.awsui_container-
|
|
6
|
+
.awsui_container-override_9ckv7_h85wa_6.awsui_active_9ckv7_h85wa_6:not(#\9) {
|
|
7
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_h85wa_6.awsui_active_9ckv7_h85wa_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_h85wa_6.awsui_active_9ckv7_h85wa_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_h85wa_6.awsui_active_9ckv7_h85wa_6:not(#\9)::before {
|
|
19
19
|
content: " ";
|
|
20
20
|
display: block;
|
|
21
21
|
position: absolute;
|
|
@@ -28,34 +28,40 @@
|
|
|
28
28
|
border: 2px solid var(--color-border-item-focused-4t19h5, #0972d3);
|
|
29
29
|
}
|
|
30
30
|
|
|
31
|
-
.
|
|
31
|
+
.awsui_header_9ckv7_h85wa_31:not(#\9) {
|
|
32
32
|
display: flex;
|
|
33
33
|
justify-items: center;
|
|
34
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_h85wa_37:not(#\9) {
|
|
38
38
|
flex: 1 1 min-content;
|
|
39
39
|
}
|
|
40
40
|
|
|
41
|
-
.
|
|
41
|
+
.awsui_handle_9ckv7_h85wa_41:not(#\9) {
|
|
42
42
|
margin-top: calc(var(--space-scaled-xxs-t2t62i, 4px) + 1px);
|
|
43
43
|
}
|
|
44
|
+
.awsui_refresh_9ckv7_h85wa_44 > .awsui_handle_9ckv7_h85wa_41:not(#\9) {
|
|
45
|
+
margin-top: calc(var(--space-static-xxxs-b6tgp7, 2px) + 1px);
|
|
46
|
+
}
|
|
44
47
|
|
|
45
|
-
.awsui_header-
|
|
48
|
+
.awsui_header-content_9ckv7_h85wa_48:not(#\9) {
|
|
46
49
|
margin-left: var(--space-scaled-xxs-t2t62i, 4px);
|
|
47
50
|
}
|
|
48
51
|
|
|
49
|
-
.
|
|
52
|
+
.awsui_settings_9ckv7_h85wa_52:not(#\9) {
|
|
50
53
|
margin-top: calc(var(--space-scaled-xxxs-jdgipl, 2px) + 1px);
|
|
51
54
|
margin-left: var(--space-static-xs-zgeph4, 8px);
|
|
52
55
|
}
|
|
56
|
+
.awsui_refresh_9ckv7_h85wa_44 > .awsui_settings_9ckv7_h85wa_52:not(#\9) {
|
|
57
|
+
margin-top: 0px;
|
|
58
|
+
}
|
|
53
59
|
|
|
54
|
-
.
|
|
60
|
+
.awsui_fixed_9ckv7_h85wa_60:not(#\9) {
|
|
55
61
|
flex: 0 0 auto;
|
|
56
62
|
}
|
|
57
63
|
|
|
58
|
-
.
|
|
64
|
+
.awsui_resizer_9ckv7_h85wa_64:not(#\9) {
|
|
59
65
|
position: absolute;
|
|
60
66
|
bottom: calc(var(--space-static-xs-zgeph4, 8px) - var(--space-static-xxxs-b6tgp7, 2px));
|
|
61
67
|
right: calc(var(--space-static-xs-zgeph4, 8px) - var(--space-static-xxxs-b6tgp7, 2px));
|
|
@@ -2,15 +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
|
-
"
|
|
12
|
-
"
|
|
13
|
-
"
|
|
14
|
-
"
|
|
5
|
+
"root": "awsui_root_9ckv7_h85wa_1",
|
|
6
|
+
"container-override": "awsui_container-override_9ckv7_h85wa_6",
|
|
7
|
+
"active": "awsui_active_9ckv7_h85wa_6",
|
|
8
|
+
"header": "awsui_header_9ckv7_h85wa_31",
|
|
9
|
+
"flexible": "awsui_flexible_9ckv7_h85wa_37",
|
|
10
|
+
"handle": "awsui_handle_9ckv7_h85wa_41",
|
|
11
|
+
"refresh": "awsui_refresh_9ckv7_h85wa_44",
|
|
12
|
+
"header-content": "awsui_header-content_9ckv7_h85wa_48",
|
|
13
|
+
"settings": "awsui_settings_9ckv7_h85wa_52",
|
|
14
|
+
"fixed": "awsui_fixed_9ckv7_h85wa_60",
|
|
15
|
+
"resizer": "awsui_resizer_9ckv7_h85wa_64"
|
|
15
16
|
};
|
|
16
17
|
|
package/internal/environment.js
CHANGED
|
@@ -99,6 +99,17 @@ function ItemContainerComponent({ item, placed, acquired, inTransition, transfor
|
|
|
99
99
|
// draggableApi is not expected to change
|
|
100
100
|
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
101
101
|
}, [item.id, transitionInteractionType, transitionItemId]);
|
|
102
|
+
useEffect(() => {
|
|
103
|
+
if (transitionInteractionType === "keyboard" && transitionItemId === item.id) {
|
|
104
|
+
const onPointerDown = () => draggableApi.submitTransition();
|
|
105
|
+
window.addEventListener("pointerdown", onPointerDown, true);
|
|
106
|
+
return () => {
|
|
107
|
+
window.removeEventListener("pointerdown", onPointerDown, true);
|
|
108
|
+
};
|
|
109
|
+
}
|
|
110
|
+
// draggableApi is not expected to change
|
|
111
|
+
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
112
|
+
}, [item.id, transitionInteractionType, transitionItemId]);
|
|
102
113
|
function onKeyboardTransitionToggle(operation) {
|
|
103
114
|
// The acquired item is a copy and does not have the transition state.
|
|
104
115
|
// However, pressing "Space" or "Enter" on the acquired item must submit the active transition.
|
|
@@ -175,11 +186,11 @@ function ItemContainerComponent({ item, placed, acquired, inTransition, transfor
|
|
|
175
186
|
}
|
|
176
187
|
}
|
|
177
188
|
function onBlur() {
|
|
178
|
-
// When drag- or resize handle loses focus the transition must be
|
|
189
|
+
// When drag- or resize handle loses focus the transition must be submitted with two exceptions:
|
|
179
190
|
// 1. If the last interaction is not "keyboard" (the user clicked on another handle issuing a new transition);
|
|
180
191
|
// 2. If the item is borrowed (in that case the focus moves to the acquired item which is expected).
|
|
181
192
|
if (transition && transition.interactionType === "keyboard" && !transition.isBorrowed) {
|
|
182
|
-
draggableApi.
|
|
193
|
+
draggableApi.submitTransition();
|
|
183
194
|
}
|
|
184
195
|
}
|
|
185
196
|
function onDragHandlePointerDown(event) {
|
|
@@ -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
|
-
"borrowed": "
|
|
4
|
+
"root": "awsui_root_lljvd_gj9xm_1",
|
|
5
|
+
"inTransition": "awsui_inTransition_lljvd_gj9xm_7",
|
|
6
|
+
"transformed": "awsui_transformed_lljvd_gj9xm_12",
|
|
7
|
+
"removed": "awsui_removed_lljvd_gj9xm_17",
|
|
8
|
+
"dragged": "awsui_dragged_lljvd_gj9xm_21",
|
|
9
|
+
"resized": "awsui_resized_lljvd_gj9xm_26",
|
|
10
|
+
"borrowed": "awsui_borrowed_lljvd_gj9xm_31"
|
|
11
11
|
};
|
|
12
12
|
|
|
@@ -1,33 +1,33 @@
|
|
|
1
|
-
.
|
|
1
|
+
.awsui_root_lljvd_gj9xm_1:not(#\9) {
|
|
2
2
|
touch-action: none;
|
|
3
3
|
position: relative;
|
|
4
4
|
height: 100%;
|
|
5
5
|
}
|
|
6
6
|
|
|
7
|
-
.
|
|
7
|
+
.awsui_inTransition_lljvd_gj9xm_7:not(#\9) {
|
|
8
8
|
transition: transform 200ms;
|
|
9
9
|
transition-timing-function: ease;
|
|
10
10
|
}
|
|
11
11
|
|
|
12
|
-
.
|
|
12
|
+
.awsui_transformed_lljvd_gj9xm_12:not(#\9) {
|
|
13
13
|
position: absolute;
|
|
14
14
|
z-index: 1;
|
|
15
15
|
}
|
|
16
16
|
|
|
17
|
-
.
|
|
17
|
+
.awsui_removed_lljvd_gj9xm_17:not(#\9) {
|
|
18
18
|
display: none;
|
|
19
19
|
}
|
|
20
20
|
|
|
21
|
-
.
|
|
21
|
+
.awsui_dragged_lljvd_gj9xm_21:not(#\9) {
|
|
22
22
|
z-index: 5000;
|
|
23
23
|
position: fixed;
|
|
24
24
|
}
|
|
25
25
|
|
|
26
|
-
.
|
|
26
|
+
.awsui_resized_lljvd_gj9xm_26:not(#\9) {
|
|
27
27
|
z-index: 5000;
|
|
28
28
|
position: absolute;
|
|
29
29
|
}
|
|
30
30
|
|
|
31
|
-
.
|
|
32
|
-
|
|
31
|
+
.awsui_borrowed_lljvd_gj9xm_31:not(#\9) {
|
|
32
|
+
display: none;
|
|
33
33
|
}
|
|
@@ -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
|
-
"borrowed": "
|
|
5
|
+
"root": "awsui_root_lljvd_gj9xm_1",
|
|
6
|
+
"inTransition": "awsui_inTransition_lljvd_gj9xm_7",
|
|
7
|
+
"transformed": "awsui_transformed_lljvd_gj9xm_12",
|
|
8
|
+
"removed": "awsui_removed_lljvd_gj9xm_17",
|
|
9
|
+
"dragged": "awsui_dragged_lljvd_gj9xm_21",
|
|
10
|
+
"resized": "awsui_resized_lljvd_gj9xm_26",
|
|
11
|
+
"borrowed": "awsui_borrowed_lljvd_gj9xm_31"
|
|
12
12
|
};
|
|
13
13
|
|
package/internal/manifest.json
CHANGED