@odx/ui 3.5.0 → 3.5.1

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.1
4
+
5
+ ### Patch Changes
6
+
7
+ - 16d6965: Fix text overflow in toast item description
8
+
3
9
  ## 3.5.0
4
10
 
5
11
  ### Minor Changes
package/core-theme.css CHANGED
@@ -6575,6 +6575,7 @@ html body .odx-fs-italic {
6575
6575
  .odx-toast-item__description {
6576
6576
  max-height: calc(var(--odx-vertical-rythm-base-size) * 5);
6577
6577
  overflow: auto;
6578
+ overflow-wrap: break-word;
6578
6579
  }
6579
6580
  .odx-toast-item__close {
6580
6581
  outline: var(--odx-v-outline-width) solid transparent;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@odx/ui",
3
- "version": "3.5.0",
3
+ "version": "3.5.1",
4
4
  "author": "Drägerwerk AG & Co.KGaA",
5
5
  "license": "SEE LICENSE IN LICENSE",
6
6
  "peerDependencies": {
@@ -36,6 +36,7 @@
36
36
  &__description {
37
37
  max-height: dimensions.get-size(5);
38
38
  overflow: auto;
39
+ overflow-wrap: break-word;
39
40
  }
40
41
 
41
42
  &__close {