@cloudscape-design/components-themeable 3.0.210 → 3.0.212

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.
Files changed (26) hide show
  1. package/lib/internal/manifest.json +1 -1
  2. package/lib/internal/scss/app-layout/notifications/styles.scss +1 -1
  3. package/lib/internal/scss/app-layout/styles.scss +1 -2
  4. package/lib/internal/scss/app-layout/visual-refresh/navigation.scss +5 -5
  5. package/lib/internal/scss/app-layout/visual-refresh/notifications.scss +7 -7
  6. package/lib/internal/scss/app-layout/visual-refresh/split-panel.scss +15 -15
  7. package/lib/internal/scss/app-layout/visual-refresh/tools.scss +11 -11
  8. package/lib/internal/scss/split-panel/styles.scss +2 -2
  9. package/lib/internal/template/app-layout/notifications/styles.css.js +2 -2
  10. package/lib/internal/template/app-layout/notifications/styles.scoped.css +5 -5
  11. package/lib/internal/template/app-layout/notifications/styles.selectors.js +2 -2
  12. package/lib/internal/template/app-layout/styles.css.js +26 -26
  13. package/lib/internal/template/app-layout/styles.scoped.css +35 -35
  14. package/lib/internal/template/app-layout/styles.selectors.js +26 -26
  15. package/lib/internal/template/app-layout/visual-refresh/styles.css.js +60 -60
  16. package/lib/internal/template/app-layout/visual-refresh/styles.scoped.css +185 -185
  17. package/lib/internal/template/app-layout/visual-refresh/styles.selectors.js +60 -60
  18. package/lib/internal/template/internal/components/visual-context/index.d.ts +1 -1
  19. package/lib/internal/template/internal/components/visual-context/index.d.ts.map +1 -1
  20. package/lib/internal/template/internal/components/visual-context/index.js +11 -9
  21. package/lib/internal/template/internal/components/visual-context/index.js.map +1 -1
  22. package/lib/internal/template/internal/environment.js +1 -1
  23. package/lib/internal/template/split-panel/styles.css.js +59 -59
  24. package/lib/internal/template/split-panel/styles.scoped.css +83 -83
  25. package/lib/internal/template/split-panel/styles.selectors.js +59 -59
  26. package/package.json +1 -1
@@ -1,3 +1,3 @@
1
1
  {
2
- "commit": "869e01f1192b53a2729036472506637cc33cba03"
2
+ "commit": "c4635f8cbdee024ec80c5b47efe7fb2b69343007"
3
3
  }
@@ -8,7 +8,7 @@
8
8
 
9
9
  .notifications,
10
10
  .notifications-sticky {
11
- z-index: 825;
11
+ z-index: 850;
12
12
  }
13
13
 
14
14
  .notifications {
@@ -7,8 +7,7 @@
7
7
  @use '../internal/styles/tokens' as awsui;
8
8
  @use './constants' as constants;
9
9
 
10
- // should be above sticky notifications
11
- $drawer-z-index: 850;
10
+ $drawer-z-index: 830;
12
11
  // should be above mobile toolbar
13
12
  $drawer-z-index-mobile: 1001;
14
13
 
@@ -15,13 +15,13 @@
15
15
  height: var(#{custom-props.$contentHeight});
16
16
  position: sticky;
17
17
  top: var(#{custom-props.$offsetTop});
18
- z-index: 850;
18
+ z-index: 830;
19
19
 
20
20
  /*
21
21
  The navigation and tools containers (that contain the toggle buttons)
22
22
  stretch the full height of the app layout. Normally, this wouldn't be an
23
23
  issue because they sit above the app layout's content padding.
24
-
24
+
25
25
  But if disableContentPaddings is set to true and there are buttons on the
26
26
  left/right edges of the screen, they will be covered by the containers. So
27
27
  we need to disable pointer events in the container and re-enable them in
@@ -60,7 +60,7 @@ nav.show-navigation {
60
60
  }
61
61
 
62
62
  /*
63
- Apply the animation only in desktop viewports because the AppBar will
63
+ Apply the animation only in desktop viewports because the AppBar will
64
64
  take control in responsive viewports.
65
65
  */
66
66
  @include styles.media-breakpoint-up(styles.$breakpoint-x-small) {
@@ -117,8 +117,8 @@ nav.navigation {
117
117
  }
118
118
 
119
119
  /*
120
- A non-semantic node is added with a fixed width equal to the final Navigation
121
- width. This will create the visual appearance of horizontal movement and
120
+ A non-semantic node is added with a fixed width equal to the final Navigation
121
+ width. This will create the visual appearance of horizontal movement and
122
122
  prevent unwanted text wrapping.
123
123
  */
124
124
  > .animated-content {
@@ -10,11 +10,11 @@
10
10
  .notifications {
11
11
  grid-column: 3;
12
12
  grid-row: 1;
13
- z-index: 825;
13
+ z-index: 850;
14
14
 
15
15
  /*
16
- In desktop viewports the notifications will always be the first
17
- slot rendered in the center column. The padding should create
16
+ In desktop viewports the notifications will always be the first
17
+ slot rendered in the center column. The padding should create
18
18
  a centered vertical alignment with the circular buttons for the
19
19
  navigation and tools drawers.
20
20
  */
@@ -22,8 +22,8 @@
22
22
  margin: awsui.$space-xs 0;
23
23
 
24
24
  /*
25
- #{awsui.$space-xs} token needs to align with the $offsetTopWithNotifications
26
- calculation in the layout CSS.
25
+ #{awsui.$space-xs} token needs to align with the $offsetTopWithNotifications
26
+ calculation in the layout CSS.
27
27
  */
28
28
  &.sticky-notifications {
29
29
  position: sticky;
@@ -37,8 +37,8 @@
37
37
  }
38
38
 
39
39
  /*
40
- In mobile viewports the notifications should never be sticky even
41
- if the property is set. Padding is added to give adequate
40
+ In mobile viewports the notifications should never be sticky even
41
+ if the property is set. Padding is added to give adequate
42
42
  vertical space from the sticky AppBar the subsequent adjacent sibling.
43
43
  */
44
44
  @include styles.media-breakpoint-down(styles.$breakpoint-x-small) {
@@ -8,9 +8,9 @@
8
8
  @use '../../internal/generated/custom-css-properties/index.scss' as custom-props;
9
9
 
10
10
  /*
11
- When the Split Panel is in the bottom position it was share the same row
12
- as the content area. This row is defined as 1 fractional unit which will
13
- consume the remaining vertical space in the grid after the notifications
11
+ When the Split Panel is in the bottom position it was share the same row
12
+ as the content area. This row is defined as 1 fractional unit which will
13
+ consume the remaining vertical space in the grid after the notifications
14
14
  and breadcrumbs.
15
15
  */
16
16
  section.split-panel-bottom {
@@ -24,13 +24,13 @@ section.split-panel-bottom {
24
24
  grid-column: 1 / 6;
25
25
  grid-row: 5;
26
26
  height: auto;
27
- /*
27
+ /*
28
28
  The position sticky will work in conjunction with the align self: end; property.
29
- If the grid row scrolls beyond the viewport, the sticky bottom position
29
+ If the grid row scrolls beyond the viewport, the sticky bottom position
30
30
  will lift it up above the footer so it is always visible.
31
31
  */
32
32
  position: sticky;
33
- z-index: 851;
33
+ z-index: 840;
34
34
 
35
35
  // Animation for the height when opening the split panel
36
36
  @keyframes openSplitPanelBottom {
@@ -57,7 +57,7 @@ section.split-panel-bottom {
57
57
  }
58
58
 
59
59
  /*
60
- Unlike the side position the Split Panel is persistent in the DOM
60
+ Unlike the side position the Split Panel is persistent in the DOM
61
61
  when in the bottom position.
62
62
  */
63
63
  &.position-bottom {
@@ -65,11 +65,11 @@ section.split-panel-bottom {
65
65
  }
66
66
 
67
67
  /*
68
- Warning! This is a hack! The existing design token for the split panel
68
+ Warning! This is a hack! The existing design token for the split panel
69
69
  shadow in the bottom position does not render in the refactored code.
70
- It appears to be related to the fact that the legacy split panel element
71
- has a height equal to the expanded height and a corresponding translation
72
- of the Y position so it is moved off the screen. This will need to be
70
+ It appears to be related to the fact that the legacy split panel element
71
+ has a height equal to the expanded height and a corresponding translation
72
+ of the Y position so it is moved off the screen. This will need to be
73
73
  refactored with an adjustment to the split panel design token.
74
74
  */
75
75
  &:not(.is-split-panel-open).position-bottom {
@@ -114,8 +114,8 @@ section.split-panel-side {
114
114
  }
115
115
 
116
116
  /*
117
- The min and max widths are applied when the Split Panel is opened otherwise
118
- it would not be possible to animate the width and the box shadow would
117
+ The min and max widths are applied when the Split Panel is opened otherwise
118
+ it would not be possible to animate the width and the box shadow would
119
119
  be persistent in the DOM when closed.
120
120
  */
121
121
  &.is-split-panel-open.position-side {
@@ -130,8 +130,8 @@ section.split-panel-side {
130
130
  }
131
131
 
132
132
  /*
133
- A non-semantic node is added with a fixed width equal to the final Split Panel
134
- width. This will create the visual appearance of horizontal movement and
133
+ A non-semantic node is added with a fixed width equal to the final Split Panel
134
+ width. This will create the visual appearance of horizontal movement and
135
135
  prevent unwanted text wrapping.
136
136
  */
137
137
  > .animated-content {
@@ -8,12 +8,12 @@
8
8
  @use '../../internal/generated/custom-css-properties/index.scss' as custom-props;
9
9
 
10
10
  /*
11
- The Tools component container has a max width calculation that depends on the
11
+ The Tools component container has a max width calculation that depends on the
12
12
  state of the other siblings within the Layout grid definition. The layout width
13
- is set in the resize observer in the Layout component. The main offset left
14
- will calculate the distance from the start of the Layout component. The minimum
13
+ is set in the resize observer in the Layout component. The main offset left
14
+ will calculate the distance from the start of the Layout component. The minimum
15
15
  content width has a default value that can be set directly with the minContentWidth
16
- property. The content gap right is computed in the Layout styles based on the
16
+ property. The content gap right is computed in the Layout styles based on the
17
17
  viewport size and state of the Tools drawer.
18
18
  */
19
19
  .tools-container {
@@ -31,7 +31,7 @@ viewport size and state of the Tools drawer.
31
31
  max-width: var(#{custom-props.$toolsMaxWidth});
32
32
  position: sticky;
33
33
  top: var(#{custom-props.$offsetTop});
34
- z-index: 850;
34
+ z-index: 830;
35
35
 
36
36
  pointer-events: none;
37
37
 
@@ -91,8 +91,8 @@ viewport size and state of the Tools drawer.
91
91
  }
92
92
 
93
93
  /*
94
- A non-semantic node is added with a fixed width equal to the final Tools
95
- width. This will create the visual appearance of horizontal movement and
94
+ A non-semantic node is added with a fixed width equal to the final Tools
95
+ width. This will create the visual appearance of horizontal movement and
96
96
  prevent unwanted text wrapping.
97
97
  */
98
98
  > .animated-content {
@@ -101,7 +101,7 @@ viewport size and state of the Tools drawer.
101
101
 
102
102
  /*
103
103
  A right border is needed if the Tools is open and the buttons are persistent in
104
- the DOM. This creates a visual vertical boundary between the Tools and the Buttons
104
+ the DOM. This creates a visual vertical boundary between the Tools and the Buttons
105
105
  only when they are both present. This is the circumstance when there is a Split Panel
106
106
  in the side position.
107
107
  */
@@ -125,8 +125,8 @@ viewport size and state of the Tools drawer.
125
125
  }
126
126
 
127
127
  /*
128
- Warning! If these design tokens for padding change it will adversely impact
129
- the calculation used to determine the Split Panel maximum width in the
128
+ Warning! If these design tokens for padding change it will adversely impact
129
+ the calculation used to determine the Split Panel maximum width in the
130
130
  handleSplitPanelMaxWidth function in the context.
131
131
  */
132
132
  .show-tools {
@@ -149,7 +149,7 @@ handleSplitPanelMaxWidth function in the context.
149
149
  }
150
150
 
151
151
  /*
152
- Apply the animation only in desktop viewports because the AppBar will
152
+ Apply the animation only in desktop viewports because the AppBar will
153
153
  take control in responsive viewports.
154
154
  */
155
155
  @include styles.media-breakpoint-up(styles.$breakpoint-x-small) {
@@ -52,7 +52,7 @@ $app-layout-drawer-width: calc(#{awsui.$space-layout-toggle-diameter} + 2 * #{aw
52
52
  word-wrap: break-word;
53
53
  background-color: awsui.$color-background-layout-panel-content;
54
54
  // should be above tools and navigation panels to avoid their shadows
55
- z-index: 851;
55
+ z-index: 840;
56
56
  &-closed {
57
57
  cursor: pointer;
58
58
  min-width: constants.$sidebar-size-closed;
@@ -114,7 +114,7 @@ $app-layout-drawer-width: calc(#{awsui.$space-layout-toggle-diameter} + 2 * #{aw
114
114
  }
115
115
 
116
116
  /*
117
- Removed the position fixed with the AppLayout refactor because the
117
+ Removed the position fixed with the AppLayout refactor because the
118
118
  SplitPanel is no longer in fixed position in the DOM.
119
119
  */
120
120
  &.refresh {
@@ -1,7 +1,7 @@
1
1
 
2
2
  import './styles.scoped.css';
3
3
  export default {
4
- "notifications": "awsui_notifications_1hmm4_28zpo_9",
5
- "notifications-sticky": "awsui_notifications-sticky_1hmm4_28zpo_10"
4
+ "notifications": "awsui_notifications_1hmm4_1u99k_9",
5
+ "notifications-sticky": "awsui_notifications-sticky_1hmm4_1u99k_10"
6
6
  };
7
7
 
@@ -6,17 +6,17 @@
6
6
  Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
7
7
  SPDX-License-Identifier: Apache-2.0
8
8
  */
9
- .awsui_notifications_1hmm4_28zpo_9:not(#\9),
10
- .awsui_notifications-sticky_1hmm4_28zpo_10:not(#\9) {
11
- z-index: 825;
9
+ .awsui_notifications_1hmm4_1u99k_9:not(#\9),
10
+ .awsui_notifications-sticky_1hmm4_1u99k_10:not(#\9) {
11
+ z-index: 850;
12
12
  }
13
13
 
14
- .awsui_notifications_1hmm4_28zpo_9:not(#\9) {
14
+ .awsui_notifications_1hmm4_1u99k_9:not(#\9) {
15
15
  /* This is necessary for the z-index to have effect */
16
16
  position: relative;
17
17
  }
18
18
 
19
- .awsui_notifications-sticky_1hmm4_28zpo_10:not(#\9) {
19
+ .awsui_notifications-sticky_1hmm4_1u99k_10:not(#\9) {
20
20
  top: 0;
21
21
  position: sticky;
22
22
  --awsui-flashbar-sticky-bottom-margin-20d8jh: var(--space-xxl-2nvmf1, 32px);
@@ -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
- "notifications": "awsui_notifications_1hmm4_28zpo_9",
6
- "notifications-sticky": "awsui_notifications-sticky_1hmm4_28zpo_10"
5
+ "notifications": "awsui_notifications_1hmm4_1u99k_9",
6
+ "notifications-sticky": "awsui_notifications-sticky_1hmm4_1u99k_10"
7
7
  };
8
8
 
@@ -1,31 +1,31 @@
1
1
 
2
2
  import './styles.scoped.css';
3
3
  export default {
4
- "root": "awsui_root_lm6vo_9anjf_97",
5
- "layout-wrapper": "awsui_layout-wrapper_lm6vo_9anjf_98",
6
- "root-no-scroll": "awsui_root-no-scroll_lm6vo_9anjf_104",
7
- "layout": "awsui_layout_lm6vo_9anjf_98",
8
- "layout-no-scroll": "awsui_layout-no-scroll_lm6vo_9anjf_115",
9
- "layout-main": "awsui_layout-main_lm6vo_9anjf_119",
10
- "layout-main-scrollable": "awsui_layout-main-scrollable_lm6vo_9anjf_125",
11
- "unfocusable": "awsui_unfocusable_lm6vo_9anjf_130",
12
- "navigation-panel": "awsui_navigation-panel_lm6vo_9anjf_134",
13
- "drawer": "awsui_drawer_lm6vo_9anjf_138",
14
- "drawer-mobile": "awsui_drawer-mobile_lm6vo_9anjf_144",
15
- "drawer-closed": "awsui_drawer-closed_lm6vo_9anjf_147",
16
- "drawer-content": "awsui_drawer-content_lm6vo_9anjf_155",
17
- "toggle": "awsui_toggle_lm6vo_9anjf_177",
18
- "visual-refresh-toggle": "awsui_visual-refresh-toggle_lm6vo_9anjf_182",
19
- "visual-refresh-toggle-type-tools": "awsui_visual-refresh-toggle-type-tools_lm6vo_9anjf_186",
20
- "visual-refresh-toggle-type-navigation": "awsui_visual-refresh-toggle-type-navigation_lm6vo_9anjf_189",
21
- "breadcrumbs-desktop": "awsui_breadcrumbs-desktop_lm6vo_9anjf_199",
22
- "content-header-wrapper": "awsui_content-header-wrapper_lm6vo_9anjf_204",
23
- "content-wrapper": "awsui_content-wrapper_lm6vo_9anjf_208",
24
- "content-overlapped": "awsui_content-overlapped_lm6vo_9anjf_212",
25
- "content-extra-top-padding": "awsui_content-extra-top-padding_lm6vo_9anjf_216",
26
- "panel-wrapper-outer": "awsui_panel-wrapper-outer_lm6vo_9anjf_220",
27
- "mobile": "awsui_mobile_lm6vo_9anjf_226",
28
- "open": "awsui_open_lm6vo_9anjf_232",
29
- "panel-wrapper-inner": "awsui_panel-wrapper-inner_lm6vo_9anjf_238"
4
+ "root": "awsui_root_lm6vo_hpygk_97",
5
+ "layout-wrapper": "awsui_layout-wrapper_lm6vo_hpygk_98",
6
+ "root-no-scroll": "awsui_root-no-scroll_lm6vo_hpygk_104",
7
+ "layout": "awsui_layout_lm6vo_hpygk_98",
8
+ "layout-no-scroll": "awsui_layout-no-scroll_lm6vo_hpygk_115",
9
+ "layout-main": "awsui_layout-main_lm6vo_hpygk_119",
10
+ "layout-main-scrollable": "awsui_layout-main-scrollable_lm6vo_hpygk_125",
11
+ "unfocusable": "awsui_unfocusable_lm6vo_hpygk_130",
12
+ "navigation-panel": "awsui_navigation-panel_lm6vo_hpygk_134",
13
+ "drawer": "awsui_drawer_lm6vo_hpygk_138",
14
+ "drawer-mobile": "awsui_drawer-mobile_lm6vo_hpygk_144",
15
+ "drawer-closed": "awsui_drawer-closed_lm6vo_hpygk_147",
16
+ "drawer-content": "awsui_drawer-content_lm6vo_hpygk_155",
17
+ "toggle": "awsui_toggle_lm6vo_hpygk_177",
18
+ "visual-refresh-toggle": "awsui_visual-refresh-toggle_lm6vo_hpygk_182",
19
+ "visual-refresh-toggle-type-tools": "awsui_visual-refresh-toggle-type-tools_lm6vo_hpygk_186",
20
+ "visual-refresh-toggle-type-navigation": "awsui_visual-refresh-toggle-type-navigation_lm6vo_hpygk_189",
21
+ "breadcrumbs-desktop": "awsui_breadcrumbs-desktop_lm6vo_hpygk_199",
22
+ "content-header-wrapper": "awsui_content-header-wrapper_lm6vo_hpygk_204",
23
+ "content-wrapper": "awsui_content-wrapper_lm6vo_hpygk_208",
24
+ "content-overlapped": "awsui_content-overlapped_lm6vo_hpygk_212",
25
+ "content-extra-top-padding": "awsui_content-extra-top-padding_lm6vo_hpygk_216",
26
+ "panel-wrapper-outer": "awsui_panel-wrapper-outer_lm6vo_hpygk_220",
27
+ "mobile": "awsui_mobile_lm6vo_hpygk_226",
28
+ "open": "awsui_open_lm6vo_hpygk_232",
29
+ "panel-wrapper-inner": "awsui_panel-wrapper-inner_lm6vo_hpygk_238"
30
30
  };
31
31
 
@@ -94,147 +94,147 @@ surrounding text. (WCAG F73) https://www.w3.org/WAI/WCAG21/Techniques/failures/F
94
94
  Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
95
95
  SPDX-License-Identifier: Apache-2.0
96
96
  */
97
- .awsui_root_lm6vo_9anjf_97:not(#\9),
98
- .awsui_layout-wrapper_lm6vo_9anjf_98:not(#\9) {
97
+ .awsui_root_lm6vo_hpygk_97:not(#\9),
98
+ .awsui_layout-wrapper_lm6vo_hpygk_98:not(#\9) {
99
99
  display: flex;
100
100
  flex-direction: column;
101
101
  position: relative;
102
102
  }
103
103
 
104
- .awsui_root-no-scroll_lm6vo_9anjf_104:not(#\9) {
104
+ .awsui_root-no-scroll_lm6vo_hpygk_104:not(#\9) {
105
105
  position: relative;
106
106
  z-index: 1;
107
107
  }
108
108
 
109
- .awsui_layout_lm6vo_9anjf_98:not(#\9) {
109
+ .awsui_layout_lm6vo_hpygk_98:not(#\9) {
110
110
  flex: 1 1 auto;
111
111
  display: flex;
112
112
  align-items: stretch;
113
113
  background-color: var(--color-background-layout-main-q0tbxx, #f2f3f3);
114
114
  }
115
- .awsui_layout-no-scroll_lm6vo_9anjf_115:not(#\9) {
115
+ .awsui_layout-no-scroll_lm6vo_hpygk_115:not(#\9) {
116
116
  overflow: hidden;
117
117
  }
118
118
 
119
- .awsui_layout-main_lm6vo_9anjf_119:not(#\9) {
119
+ .awsui_layout-main_lm6vo_hpygk_119:not(#\9) {
120
120
  flex: 1;
121
121
  min-width: 0;
122
122
  background-color: var(--color-background-layout-main-q0tbxx, #f2f3f3);
123
123
  position: relative;
124
124
  }
125
- .awsui_layout-main-scrollable_lm6vo_9anjf_125:not(#\9) {
125
+ .awsui_layout-main-scrollable_lm6vo_hpygk_125:not(#\9) {
126
126
  overflow: auto;
127
127
  }
128
128
 
129
129
  /* stylelint-disable-next-line selector-combinator-disallowed-list, selector-max-universal */
130
- .awsui_unfocusable_lm6vo_9anjf_130 *:not(#\9) {
130
+ .awsui_unfocusable_lm6vo_hpygk_130 *:not(#\9) {
131
131
  visibility: hidden;
132
132
  }
133
133
 
134
- .awsui_navigation-panel_lm6vo_9anjf_134:not(#\9) {
134
+ .awsui_navigation-panel_lm6vo_hpygk_134:not(#\9) {
135
135
  overflow-anchor: none;
136
136
  }
137
137
 
138
- .awsui_drawer_lm6vo_9anjf_138:not(#\9) {
138
+ .awsui_drawer_lm6vo_hpygk_138:not(#\9) {
139
139
  flex-shrink: 0;
140
140
  position: relative;
141
141
  word-wrap: break-word;
142
142
  box-shadow: var(--shadow-panel-v9vx7i, 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));
143
143
  }
144
- .awsui_drawer_lm6vo_9anjf_138:not(#\9):not(.awsui_drawer-mobile_lm6vo_9anjf_144) {
145
- z-index: 850;
144
+ .awsui_drawer_lm6vo_hpygk_138:not(#\9):not(.awsui_drawer-mobile_lm6vo_hpygk_144) {
145
+ z-index: 830;
146
146
  }
147
- .awsui_drawer-closed_lm6vo_9anjf_147:not(#\9) {
147
+ .awsui_drawer-closed_lm6vo_hpygk_147:not(#\9) {
148
148
  min-width: 40px;
149
149
  cursor: pointer;
150
150
  }
151
- .awsui_drawer-closed_lm6vo_9anjf_147.awsui_drawer-mobile_lm6vo_9anjf_144:not(#\9) {
151
+ .awsui_drawer-closed_lm6vo_hpygk_147.awsui_drawer-mobile_lm6vo_hpygk_144:not(#\9) {
152
152
  display: none;
153
153
  }
154
154
 
155
- .awsui_drawer-content_lm6vo_9anjf_155:not(#\9) {
155
+ .awsui_drawer-content_lm6vo_hpygk_155:not(#\9) {
156
156
  position: fixed;
157
157
  overflow: auto;
158
158
  background-color: var(--color-background-layout-panel-content-r9pdjh, #ffffff);
159
159
  }
160
- .awsui_drawer-mobile_lm6vo_9anjf_144 > .awsui_drawer-content_lm6vo_9anjf_155:not(#\9) {
160
+ .awsui_drawer-mobile_lm6vo_hpygk_144 > .awsui_drawer-content_lm6vo_hpygk_155:not(#\9) {
161
161
  z-index: 1001;
162
162
  top: 0;
163
163
  bottom: 0;
164
164
  left: 0;
165
165
  right: 0;
166
166
  }
167
- .awsui_drawer-closed_lm6vo_9anjf_147 > .awsui_drawer-content_lm6vo_9anjf_155:not(#\9) {
167
+ .awsui_drawer-closed_lm6vo_hpygk_147 > .awsui_drawer-content_lm6vo_hpygk_155:not(#\9) {
168
168
  width: 40px;
169
169
  }
170
- .awsui_drawer-closed_lm6vo_9anjf_147 > .awsui_drawer-content_lm6vo_9anjf_155:not(#\9):hover {
170
+ .awsui_drawer-closed_lm6vo_hpygk_147 > .awsui_drawer-content_lm6vo_hpygk_155:not(#\9):hover {
171
171
  background: var(--color-background-layout-panel-hover-thdv3z, #eaeded);
172
172
  }
173
- .awsui_drawer-content_lm6vo_9anjf_155 > [aria-hidden=true]:not(#\9) {
173
+ .awsui_drawer-content_lm6vo_hpygk_155 > [aria-hidden=true]:not(#\9) {
174
174
  display: none;
175
175
  }
176
176
 
177
- .awsui_toggle_lm6vo_9anjf_177:not(#\9) {
177
+ .awsui_toggle_lm6vo_hpygk_177:not(#\9) {
178
178
  box-sizing: border-box;
179
179
  padding: var(--space-xxs-ynfts5, 4px) 7px;
180
180
  }
181
181
 
182
- .awsui_visual-refresh-toggle_lm6vo_9anjf_182:not(#\9) {
182
+ .awsui_visual-refresh-toggle_lm6vo_hpygk_182:not(#\9) {
183
183
  position: fixed;
184
184
  padding: var(--space-scaled-s-cu1hzn, 12px) var(--space-layout-toggle-padding-axl9jr, 20px);
185
185
  }
186
- .awsui_visual-refresh-toggle-type-tools_lm6vo_9anjf_186:not(#\9) {
186
+ .awsui_visual-refresh-toggle-type-tools_lm6vo_hpygk_186:not(#\9) {
187
187
  right: 0;
188
188
  }
189
- .awsui_visual-refresh-toggle-type-navigation_lm6vo_9anjf_189:not(#\9) {
189
+ .awsui_visual-refresh-toggle-type-navigation_lm6vo_hpygk_189:not(#\9) {
190
190
  left: 0;
191
191
  }
192
- .awsui_visual-refresh-toggle_lm6vo_9anjf_182[aria-hidden=true]:not(#\9) {
192
+ .awsui_visual-refresh-toggle_lm6vo_hpygk_182[aria-hidden=true]:not(#\9) {
193
193
  visibility: hidden;
194
194
  }
195
- .awsui_visual-refresh-toggle_lm6vo_9anjf_182[aria-hidden=false]:not(#\9) {
195
+ .awsui_visual-refresh-toggle_lm6vo_hpygk_182[aria-hidden=false]:not(#\9) {
196
196
  visibility: visible;
197
197
  }
198
198
 
199
- .awsui_breadcrumbs-desktop_lm6vo_9anjf_199:not(#\9) {
199
+ .awsui_breadcrumbs-desktop_lm6vo_hpygk_199:not(#\9) {
200
200
  padding-top: var(--space-scaled-m-pv0fmt, 16px);
201
201
  padding-bottom: var(--space-scaled-s-cu1hzn, 12px);
202
202
  }
203
203
 
204
- .awsui_content-header-wrapper_lm6vo_9anjf_204:not(#\9) {
204
+ .awsui_content-header-wrapper_lm6vo_hpygk_204:not(#\9) {
205
205
  padding-bottom: var(--space-content-header-padding-bottom-m7tdoi, 16px);
206
206
  }
207
207
 
208
- .awsui_content-wrapper_lm6vo_9anjf_208:not(#\9) {
208
+ .awsui_content-wrapper_lm6vo_hpygk_208:not(#\9) {
209
209
  padding-bottom: var(--space-layout-content-bottom-ebez2l, 20px);
210
210
  }
211
211
 
212
- .awsui_content-overlapped_lm6vo_9anjf_212:not(#\9) {
212
+ .awsui_content-overlapped_lm6vo_hpygk_212:not(#\9) {
213
213
  margin-top: calc(-1 * var(--space-dark-header-overlap-distance-ync2s3, 0px));
214
214
  }
215
215
 
216
- .awsui_content-extra-top-padding_lm6vo_9anjf_216:not(#\9) {
216
+ .awsui_content-extra-top-padding_lm6vo_hpygk_216:not(#\9) {
217
217
  padding-top: var(--space-scaled-m-pv0fmt, 16px);
218
218
  }
219
219
 
220
- .awsui_panel-wrapper-outer_lm6vo_9anjf_220:not(#\9) {
220
+ .awsui_panel-wrapper-outer_lm6vo_hpygk_220:not(#\9) {
221
221
  position: fixed;
222
222
  height: 100%;
223
- z-index: 850;
223
+ z-index: 830;
224
224
  display: flex;
225
225
  }
226
- .awsui_panel-wrapper-outer_lm6vo_9anjf_220.awsui_mobile_lm6vo_9anjf_226:not(#\9) {
226
+ .awsui_panel-wrapper-outer_lm6vo_hpygk_220.awsui_mobile_lm6vo_hpygk_226:not(#\9) {
227
227
  left: 0;
228
228
  right: 0;
229
229
  z-index: -1;
230
230
  pointer-events: none;
231
231
  }
232
- .awsui_panel-wrapper-outer_lm6vo_9anjf_220.awsui_mobile_lm6vo_9anjf_226.awsui_open_lm6vo_9anjf_232:not(#\9) {
232
+ .awsui_panel-wrapper-outer_lm6vo_hpygk_220.awsui_mobile_lm6vo_hpygk_226.awsui_open_lm6vo_hpygk_232:not(#\9) {
233
233
  z-index: 1001;
234
234
  width: 100vw;
235
235
  pointer-events: auto;
236
236
  }
237
237
 
238
- .awsui_panel-wrapper-inner_lm6vo_9anjf_238:not(#\9) {
238
+ .awsui_panel-wrapper-inner_lm6vo_hpygk_238:not(#\9) {
239
239
  background: var(--color-background-layout-panel-content-r9pdjh, #ffffff);
240
240
  }
@@ -2,31 +2,31 @@
2
2
  // es-module interop with Babel and Typescript
3
3
  Object.defineProperty(exports, "__esModule", { value: true });
4
4
  module.exports.default = {
5
- "root": "awsui_root_lm6vo_9anjf_97",
6
- "layout-wrapper": "awsui_layout-wrapper_lm6vo_9anjf_98",
7
- "root-no-scroll": "awsui_root-no-scroll_lm6vo_9anjf_104",
8
- "layout": "awsui_layout_lm6vo_9anjf_98",
9
- "layout-no-scroll": "awsui_layout-no-scroll_lm6vo_9anjf_115",
10
- "layout-main": "awsui_layout-main_lm6vo_9anjf_119",
11
- "layout-main-scrollable": "awsui_layout-main-scrollable_lm6vo_9anjf_125",
12
- "unfocusable": "awsui_unfocusable_lm6vo_9anjf_130",
13
- "navigation-panel": "awsui_navigation-panel_lm6vo_9anjf_134",
14
- "drawer": "awsui_drawer_lm6vo_9anjf_138",
15
- "drawer-mobile": "awsui_drawer-mobile_lm6vo_9anjf_144",
16
- "drawer-closed": "awsui_drawer-closed_lm6vo_9anjf_147",
17
- "drawer-content": "awsui_drawer-content_lm6vo_9anjf_155",
18
- "toggle": "awsui_toggle_lm6vo_9anjf_177",
19
- "visual-refresh-toggle": "awsui_visual-refresh-toggle_lm6vo_9anjf_182",
20
- "visual-refresh-toggle-type-tools": "awsui_visual-refresh-toggle-type-tools_lm6vo_9anjf_186",
21
- "visual-refresh-toggle-type-navigation": "awsui_visual-refresh-toggle-type-navigation_lm6vo_9anjf_189",
22
- "breadcrumbs-desktop": "awsui_breadcrumbs-desktop_lm6vo_9anjf_199",
23
- "content-header-wrapper": "awsui_content-header-wrapper_lm6vo_9anjf_204",
24
- "content-wrapper": "awsui_content-wrapper_lm6vo_9anjf_208",
25
- "content-overlapped": "awsui_content-overlapped_lm6vo_9anjf_212",
26
- "content-extra-top-padding": "awsui_content-extra-top-padding_lm6vo_9anjf_216",
27
- "panel-wrapper-outer": "awsui_panel-wrapper-outer_lm6vo_9anjf_220",
28
- "mobile": "awsui_mobile_lm6vo_9anjf_226",
29
- "open": "awsui_open_lm6vo_9anjf_232",
30
- "panel-wrapper-inner": "awsui_panel-wrapper-inner_lm6vo_9anjf_238"
5
+ "root": "awsui_root_lm6vo_hpygk_97",
6
+ "layout-wrapper": "awsui_layout-wrapper_lm6vo_hpygk_98",
7
+ "root-no-scroll": "awsui_root-no-scroll_lm6vo_hpygk_104",
8
+ "layout": "awsui_layout_lm6vo_hpygk_98",
9
+ "layout-no-scroll": "awsui_layout-no-scroll_lm6vo_hpygk_115",
10
+ "layout-main": "awsui_layout-main_lm6vo_hpygk_119",
11
+ "layout-main-scrollable": "awsui_layout-main-scrollable_lm6vo_hpygk_125",
12
+ "unfocusable": "awsui_unfocusable_lm6vo_hpygk_130",
13
+ "navigation-panel": "awsui_navigation-panel_lm6vo_hpygk_134",
14
+ "drawer": "awsui_drawer_lm6vo_hpygk_138",
15
+ "drawer-mobile": "awsui_drawer-mobile_lm6vo_hpygk_144",
16
+ "drawer-closed": "awsui_drawer-closed_lm6vo_hpygk_147",
17
+ "drawer-content": "awsui_drawer-content_lm6vo_hpygk_155",
18
+ "toggle": "awsui_toggle_lm6vo_hpygk_177",
19
+ "visual-refresh-toggle": "awsui_visual-refresh-toggle_lm6vo_hpygk_182",
20
+ "visual-refresh-toggle-type-tools": "awsui_visual-refresh-toggle-type-tools_lm6vo_hpygk_186",
21
+ "visual-refresh-toggle-type-navigation": "awsui_visual-refresh-toggle-type-navigation_lm6vo_hpygk_189",
22
+ "breadcrumbs-desktop": "awsui_breadcrumbs-desktop_lm6vo_hpygk_199",
23
+ "content-header-wrapper": "awsui_content-header-wrapper_lm6vo_hpygk_204",
24
+ "content-wrapper": "awsui_content-wrapper_lm6vo_hpygk_208",
25
+ "content-overlapped": "awsui_content-overlapped_lm6vo_hpygk_212",
26
+ "content-extra-top-padding": "awsui_content-extra-top-padding_lm6vo_hpygk_216",
27
+ "panel-wrapper-outer": "awsui_panel-wrapper-outer_lm6vo_hpygk_220",
28
+ "mobile": "awsui_mobile_lm6vo_hpygk_226",
29
+ "open": "awsui_open_lm6vo_hpygk_232",
30
+ "panel-wrapper-inner": "awsui_panel-wrapper-inner_lm6vo_hpygk_238"
31
31
  };
32
32