@odx/ui 3.4.1 → 3.4.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
+ ## 3.4.2
4
+
5
+ ### Patch Changes
6
+
7
+ - ce320b1: Automatically break words in card titles with long words
8
+
3
9
  ## 3.4.1
4
10
 
5
11
  ### Patch Changes
package/core-theme.css CHANGED
@@ -3155,6 +3155,7 @@ html body .odx-fs-italic {
3155
3155
  .odx-card--launch-tile .odx-card__title, .odx-card--launch-tile-centered .odx-card__title {
3156
3156
  font-size: calc(var(--odx-vertical-rythm-base-size) * 0.8334);
3157
3157
  line-height: calc(var(--odx-vertical-rythm-base-size) * 1.25);
3158
+ overflow-wrap: anywhere;
3158
3159
  font-weight: var(--odx-typography-font-weight-medium);
3159
3160
  letter-spacing: var(--odx-typography-font-weight-medium-letter-spacing);
3160
3161
  -webkit-box-orient: block-axis;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@odx/ui",
3
- "version": "3.4.1",
3
+ "version": "3.4.2",
4
4
  "author": "Drägerwerk AG & Co.KGaA",
5
5
  "license": "SEE LICENSE IN LICENSE",
6
6
  "peerDependencies": {
@@ -86,6 +86,7 @@
86
86
  #{$root}__title {
87
87
  font-size: dimensions.get-size(math.div(20, 24));
88
88
  line-height: dimensions.get-size(math.div(30, 24));
89
+ overflow-wrap: anywhere;
89
90
 
90
91
  @include typography.font-weight(medium);
91
92
  @include typography.line-clamp(3);