@eturnity/eturnity_reusable_components 9.19.6 → 9.19.7

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eturnity/eturnity_reusable_components",
3
- "version": "9.19.6",
3
+ "version": "9.19.7",
4
4
  "files": [
5
5
  "dist",
6
6
  "src"
@@ -520,10 +520,10 @@
520
520
  : props.fontColor};
521
521
  max-height: 300px;
522
522
  overflow-y: auto;
523
+ overflow-x: hidden;
523
524
  ${(props) =>
524
525
  props.dropdownMatchMaxContent
525
526
  ? `
526
- overflow-x: visible;
527
527
  align-items: stretch;
528
528
  `
529
529
  : ''}
@@ -76,14 +76,13 @@
76
76
  :data-qa-id="`sidebar_responsible_option_${
77
77
  optionIdx + 1
78
78
  }`"
79
- min-width="min-content"
80
79
  :value="item.id"
81
80
  >
82
81
  <ResponsibleOptionRow>
83
82
  <ResponsibleOptionAvatar>{{
84
83
  initialsFromFullName(item.full_name)
85
84
  }}</ResponsibleOptionAvatar>
86
- <SelectOptionText>{{
85
+ <SelectOptionText :title="item.full_name">{{
87
86
  item.full_name
88
87
  }}</SelectOptionText>
89
88
  </ResponsibleOptionRow>
@@ -688,8 +687,8 @@
688
687
  flex-direction: row;
689
688
  align-items: center;
690
689
  gap: 10px;
691
- width: max-content;
692
- min-width: 100%;
690
+ width: 100%;
691
+ min-width: 0;
693
692
  box-sizing: border-box;
694
693
  `
695
694
 
@@ -712,9 +711,11 @@
712
711
  font-size: 14px;
713
712
  font-weight: 400;
714
713
  color: ${(p) => p.theme.semanticColors.grey[800]};
715
- flex: 0 1 auto;
714
+ flex: 1 1 auto;
715
+ min-width: 0;
716
716
  white-space: nowrap;
717
- overflow: visible;
717
+ overflow: hidden;
718
+ text-overflow: ellipsis;
718
719
  `
719
720
 
720
721
  export default {