@eturnity/eturnity_reusable_components 7.51.6 → 7.51.8
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
@@ -82,13 +82,12 @@
|
|
82
82
|
</ComponentItem>
|
83
83
|
<ArrowContainer class="arrow-container" :is-disabled="disabled">
|
84
84
|
<ArrowWrapper :show-archived="showArchived">
|
85
|
-
<
|
85
|
+
<InfoText
|
86
86
|
v-if="showArchived"
|
87
|
-
|
87
|
+
icon-color="red"
|
88
88
|
:text="
|
89
89
|
$gettext(`Component has been archived and shouldn't be used`)
|
90
90
|
"
|
91
|
-
trigger-type="hover"
|
92
91
|
/>
|
93
92
|
<ArrowDown
|
94
93
|
v-if="!isOpen"
|
@@ -184,6 +183,7 @@
|
|
184
183
|
import fileIconPng from '../../assets/icons/file_icon.png'
|
185
184
|
import Icon from '../icon'
|
186
185
|
import theme from '@/assets/theme.js'
|
186
|
+
import InfoText from '../infoText'
|
187
187
|
|
188
188
|
const rowAttrs = { disabled: Boolean, isOpen: Boolean }
|
189
189
|
const DropdownRow = styled('div', rowAttrs)`
|
@@ -442,6 +442,7 @@
|
|
442
442
|
NestedIcon,
|
443
443
|
NestedContainer,
|
444
444
|
Icon,
|
445
|
+
InfoText,
|
445
446
|
},
|
446
447
|
props: {
|
447
448
|
colSpan: {
|