@odx/ui 4.0.1 → 4.0.2

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
+ ## 4.0.2
4
+
5
+ ### Patch Changes
6
+
7
+ - cddf0cf: toast text content overflow fixed
8
+
3
9
  ## 4.0.1
4
10
 
5
11
  ### Patch Changes
package/core-theme.css CHANGED
@@ -6844,13 +6844,13 @@ html body .odx-fs-italic {
6844
6844
  .odx-toast-item__text-content {
6845
6845
  font-size: calc(var(--odx-typography-base-size) * (1*1/var(--odx-typography-negative-font-scaling-factor)));
6846
6846
  flex: 1;
6847
+ overflow: auto;
6847
6848
  }
6848
6849
  .odx-toast-item__title {
6849
6850
  font-weight: var(--odx-typography-font-weight-bold);
6850
6851
  }
6851
6852
  .odx-toast-item__description {
6852
6853
  max-height: calc(var(--odx-vertical-rythm-base-size) * 5);
6853
- overflow: auto;
6854
6854
  overflow-wrap: break-word;
6855
6855
  }
6856
6856
  .odx-toast-item__close {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@odx/ui",
3
- "version": "4.0.1",
3
+ "version": "4.0.2",
4
4
  "author": "Drägerwerk AG & Co.KGaA",
5
5
  "license": "SEE LICENSE IN LICENSE",
6
6
  "peerDependencies": {
@@ -27,6 +27,7 @@
27
27
  @include typography.font-size(-1);
28
28
 
29
29
  flex: 1;
30
+ overflow: auto;
30
31
  }
31
32
 
32
33
  &__title {
@@ -35,7 +36,6 @@
35
36
 
36
37
  &__description {
37
38
  max-height: dimensions.get-size(5);
38
- overflow: auto;
39
39
  overflow-wrap: break-word;
40
40
  }
41
41