@odx/ui 3.4.3 → 3.4.4

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.4.4
4
+
5
+ ### Patch Changes
6
+
7
+ - 9f98096: fix: additional class for "expand" icon expanded state
8
+
3
9
  ## 3.4.3
4
10
 
5
11
  ### Patch Changes
package/core-theme.css CHANGED
@@ -3838,7 +3838,7 @@ html body .odx-fs-italic {
3838
3838
  .odx-expandable-list-item:first-child > .odx-expandable-list-item__header .odx-list-item {
3839
3839
  --separator-color: transparent;
3840
3840
  }
3841
- .odx-expandable-list-item--expanded > .odx-expandable-list-item__header .odx-expandable-list-item__action .odx-button .odx-icon {
3841
+ .odx-expandable-list-item__icon--expanded {
3842
3842
  transform: scaleY(-1);
3843
3843
  }
3844
3844
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@odx/ui",
3
- "version": "3.4.3",
3
+ "version": "3.4.4",
4
4
  "author": "Drägerwerk AG & Co.KGaA",
5
5
  "license": "SEE LICENSE IN LICENSE",
6
6
  "peerDependencies": {
@@ -47,9 +47,7 @@
47
47
  --separator-color: transparent;
48
48
  }
49
49
 
50
- &--expanded {
51
- > #{$root}__header #{$root}__action .odx-button .odx-icon {
52
- transform: scaleY(-1);
53
- }
50
+ &__icon--expanded {
51
+ transform: scaleY(-1);
54
52
  }
55
53
  }