@eturnity/eturnity_reusable_components 8.13.7 → 8.13.9

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": "8.13.7",
3
+ "version": "8.13.9",
4
4
  "files": [
5
5
  "dist",
6
6
  "src"
@@ -101,7 +101,7 @@
101
101
  <ArrowWrapper :show-archived="showArchived">
102
102
  <InfoWrapper v-if="showArchived">
103
103
  <InfoText
104
- icon-color="red"
104
+ button-type="error"
105
105
  :text="
106
106
  $gettext(`Component has been archived and shouldn't be used`)
107
107
  "
@@ -140,9 +140,9 @@
140
140
  @keyup.enter="onItemClick(item)"
141
141
  >
142
142
  <template v-for="(option, idx) in optionsDisplay" :key="idx">
143
- <TableItem v-if="option !== 'template'">
143
+ <DropdownItem v-if="option !== 'template'">
144
144
  {{ !!item[option] ? item[option] : '-' }}
145
- </TableItem>
145
+ </DropdownItem>
146
146
  <TemplateItem
147
147
  v-else-if="option === 'template' && item.has_template"
148
148
  >
@@ -246,12 +246,16 @@
246
246
  }
247
247
  `
248
248
 
249
- const TableItem = styled.span``
249
+ const TableItem = styled.span`
250
+ padding-left: 15px;
251
+ `
250
252
 
251
253
  const TemplateItem = styled.span`
252
254
  padding-left: 15px;
253
255
  `
254
256
 
257
+ const DropdownItem = styled.span``
258
+
255
259
  const containerAttrs = { colSpan: Number, width: String }
256
260
  const ComponentContainer = styled('div', containerAttrs)`
257
261
  display: contents;
@@ -483,6 +487,7 @@
483
487
  InfoWrapper,
484
488
  TableItem,
485
489
  TemplateItem,
490
+ DropdownItem,
486
491
  },
487
492
  props: {
488
493
  colSpan: {