@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
|
@@ -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:
|
|
692
|
-
min-width:
|
|
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:
|
|
714
|
+
flex: 1 1 auto;
|
|
715
|
+
min-width: 0;
|
|
716
716
|
white-space: nowrap;
|
|
717
|
-
overflow:
|
|
717
|
+
overflow: hidden;
|
|
718
|
+
text-overflow: ellipsis;
|
|
718
719
|
`
|
|
719
720
|
|
|
720
721
|
export default {
|