@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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eturnity/eturnity_reusable_components",
3
- "version": "7.51.6",
3
+ "version": "7.51.8",
4
4
  "files": [
5
5
  "dist",
6
6
  "src"
@@ -15,7 +15,7 @@
15
15
  <CardWrapper v-else>
16
16
  <CardTitle :class="titleClass" data-test-id="card_title">
17
17
  {{ $gettext(title) }}
18
- <EtPopover
18
+ <InfoText
19
19
  v-if="showPopover && popoverText !== ''"
20
20
  data-test-id="card_popover"
21
21
  :text="popoverText"
@@ -39,7 +39,7 @@
39
39
  ? item.quantity + ' x'
40
40
  : ''
41
41
  }}
42
- {{ item.brandName }} - {{ item.model }}
42
+ {{ item.model }}
43
43
  </TitleText>
44
44
  <TitleSubText>
45
45
  <span>{{ item.brandName }}</span>
@@ -82,13 +82,12 @@
82
82
  </ComponentItem>
83
83
  <ArrowContainer class="arrow-container" :is-disabled="disabled">
84
84
  <ArrowWrapper :show-archived="showArchived">
85
- <EtPopover
85
+ <InfoText
86
86
  v-if="showArchived"
87
- button-class="error"
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: {