@odx/ui 3.5.7 → 3.5.8

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/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @odx/ui
2
2
 
3
+ ## 3.5.8
4
+
5
+ ### Patch Changes
6
+
7
+ - f7e1aa3: Fix connected overlay stacking issues to prevent badges from overlaying modals
8
+
3
9
  ## 3.5.7
4
10
 
5
11
  ### Patch Changes
package/core-theme.css CHANGED
@@ -2052,10 +2052,6 @@ html body .odx-fs-italic {
2052
2052
  opacity: 1;
2053
2053
  }
2054
2054
 
2055
- :root {
2056
- --odx-cdk-connected-overlay-current-z-layer: 0;
2057
- }
2058
-
2059
2055
  .odx-cdk-connected-overlay {
2060
2056
  transition-delay: 0ms;
2061
2057
  transition-duration: var(--odx-v-transition-duration);
@@ -2063,7 +2059,7 @@ html body .odx-fs-italic {
2063
2059
  transition-timing-function: var(--odx-v-transition-easing-fn);
2064
2060
  display: block;
2065
2061
  position: fixed;
2066
- z-index: calc(var(--odx-v-layer-4) + var(--odx-cdk-connected-overlay-current-z-layer, 0));
2062
+ z-index: var(--odx-v-layer-4);
2067
2063
  }
2068
2064
  .odx-cdk-connected-overlay.is-hidden {
2069
2065
  opacity: 0;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@odx/ui",
3
- "version": "3.5.7",
3
+ "version": "3.5.8",
4
4
  "author": "Drägerwerk AG & Co.KGaA",
5
5
  "license": "SEE LICENSE IN LICENSE",
6
6
  "peerDependencies": {
@@ -4,16 +4,12 @@
4
4
  @use '../abstract/typography';
5
5
  @use '../abstract/utils';
6
6
 
7
- :root {
8
- --odx-cdk-connected-overlay-current-z-layer: 0;
9
- }
10
-
11
7
  .odx-cdk-connected-overlay {
12
8
  @include motion.transition(opacity visibility);
13
9
 
14
10
  display: block;
15
11
  position: fixed;
16
- z-index: calc(var(--odx-v-layer-4) + var(--odx-cdk-connected-overlay-current-z-layer, 0));
12
+ z-index: var(--odx-v-layer-4);
17
13
 
18
14
  &.is-hidden {
19
15
  opacity: 0;