@odx/ui 4.3.1 → 4.3.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.3.2
4
+
5
+ ### Patch Changes
6
+
7
+ - 2fa9021: Updated header component for title text truncation
8
+
3
9
  ## 4.3.1
4
10
 
5
11
  ### Patch Changes
package/core-theme.css CHANGED
@@ -4409,20 +4409,27 @@ html body .odx-fs-italic {
4409
4409
  min-height: auto;
4410
4410
  }
4411
4411
  .odx-header__content {
4412
+ display: none;
4412
4413
  margin-inline-end: auto;
4413
4414
  padding-right: calc(var(--odx-vertical-rythm-base-size) * 0.5);
4414
4415
  padding-left: calc(var(--odx-vertical-rythm-base-size) * 0.5);
4416
+ overflow: clip;
4417
+ text-overflow: ellipsis;
4418
+ white-space: nowrap;
4415
4419
  }
4416
4420
  @media (min-width: 768px) {
4417
4421
  .odx-header__content {
4418
4422
  padding-right: calc(var(--odx-vertical-rythm-base-size) * 1);
4419
4423
  padding-left: calc(var(--odx-vertical-rythm-base-size) * 1);
4424
+ display: block;
4425
+ overflow: hidden;
4420
4426
  }
4421
4427
  }
4422
4428
  .odx-header__title {
4423
4429
  overflow: clip;
4424
4430
  text-overflow: ellipsis;
4425
4431
  white-space: nowrap;
4432
+ overflow: hidden;
4426
4433
  }
4427
4434
  .odx-header .odx-action-group:not(:last-child) {
4428
4435
  border-inline-end: 1px solid var(--odx-c-separator);
@@ -4996,6 +5003,7 @@ html body .odx-fs-italic {
4996
5003
  background-color: unset;
4997
5004
  margin: 0 0 0 calc(var(--odx-vertical-rythm-base-size) * -0.3333);
4998
5005
  outline: none;
5006
+ z-index: 1;
4999
5007
  }
5000
5008
  .odx-mainfilter-group .odx-daterangepicker__trigger-wrapper .odx-button {
5001
5009
  margin-left: calc(var(--odx-vertical-rythm-base-size) * 0.5);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@odx/ui",
3
- "version": "4.3.1",
3
+ "version": "4.3.2",
4
4
  "author": "Drägerwerk AG & Co.KGaA",
5
5
  "license": "SEE LICENSE IN LICENSE",
6
6
  "peerDependencies": {
@@ -24,12 +24,17 @@
24
24
  }
25
25
 
26
26
  &__content {
27
+ display: none;
27
28
  margin-inline-end: auto;
28
29
 
29
30
  @include dimensions.padding-x(0.5);
31
+ @include typography.prevent-text-overflow();
30
32
 
31
33
  @include breakpoints.up(tablet) {
32
34
  @include dimensions.padding-x(1);
35
+
36
+ display: block;
37
+ overflow: hidden;
33
38
  }
34
39
  }
35
40
 
@@ -37,6 +42,8 @@
37
42
  @extend .odx-title;
38
43
  @extend .odx-title-6;
39
44
  @include typography.prevent-text-overflow();
45
+
46
+ overflow: hidden;
40
47
  }
41
48
 
42
49
  .odx-action-group:not(:last-child) {
@@ -158,6 +158,7 @@
158
158
  background-color: unset;
159
159
  margin: 0 0 0 dimensions.get-size(math.div(-8, 24));
160
160
  outline: none;
161
+ z-index: 1;
161
162
  }
162
163
  }
163
164