@eturnity/eturnity_reusable_components 8.10.3-EPDM-14085.1 → 8.10.3-EPDM-14085.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/package.json
CHANGED
@@ -32,7 +32,7 @@
|
|
32
32
|
<CollapseArrowIcon />
|
33
33
|
</ArrowIconWrapper>
|
34
34
|
</LeftIconsContainer>
|
35
|
-
<TitleContainer>
|
35
|
+
<TitleContainer :data-id="titleDataId">
|
36
36
|
<TextContainer>{{ title }}</TextContainer>
|
37
37
|
<InfoText v-if="infoText?.length" :text="infoText" />
|
38
38
|
</TitleContainer>
|
@@ -146,11 +146,13 @@
|
|
146
146
|
align-items: center;
|
147
147
|
justify-content: center;
|
148
148
|
width: 8px;
|
149
|
-
|
149
|
+
height: 26px;
|
150
150
|
cursor: pointer;
|
151
|
+
transition: transform 0.3s ease;
|
151
152
|
path {
|
152
153
|
fill: ${theme.colors.white};
|
153
154
|
}
|
155
|
+
|
154
156
|
${(props) => props.isCollapsed && 'transform: rotate(-180deg);'}
|
155
157
|
`
|
156
158
|
|
@@ -214,6 +216,11 @@
|
|
214
216
|
required: true,
|
215
217
|
type: String,
|
216
218
|
},
|
219
|
+
titleDataId: {
|
220
|
+
required: false,
|
221
|
+
type: String,
|
222
|
+
default: '',
|
223
|
+
},
|
217
224
|
isCollapsible: {
|
218
225
|
required: false,
|
219
226
|
type: Boolean,
|