@eturnity/eturnity_reusable_components 8.13.6 → 8.13.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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eturnity/eturnity_reusable_components",
3
- "version": "8.13.6",
3
+ "version": "8.13.7",
4
4
  "files": [
5
5
  "dist",
6
6
  "src"
@@ -25,7 +25,7 @@
25
25
  item.type === 'template')
26
26
  "
27
27
  />
28
- <TableItem
28
+ <TemplateItem
29
29
  v-if="
30
30
  item.type &&
31
31
  item.type === 'template' &&
@@ -40,7 +40,7 @@
40
40
  :variant="showArchived ? 'cancel' : 'main'"
41
41
  @click.stop="onTemplateClick(item.row)"
42
42
  />
43
- </TableItem>
43
+ </TemplateItem>
44
44
  <TemplateLink
45
45
  v-else-if="
46
46
  item.type && item.type === 'template' && item.value !== ''
@@ -143,7 +143,7 @@
143
143
  <TableItem v-if="option !== 'template'">
144
144
  {{ !!item[option] ? item[option] : '-' }}
145
145
  </TableItem>
146
- <TableItem
146
+ <TemplateItem
147
147
  v-else-if="option === 'template' && item.has_template"
148
148
  >
149
149
  <MainButton
@@ -152,7 +152,7 @@
152
152
  type="secondary"
153
153
  @click.stop="onTemplateClick(item)"
154
154
  />
155
- </TableItem>
155
+ </TemplateItem>
156
156
  <NoTemplate
157
157
  v-else-if="option === 'template' && !item.has_template"
158
158
  >
@@ -246,7 +246,9 @@
246
246
  }
247
247
  `
248
248
 
249
- const TableItem = styled.span`
249
+ const TableItem = styled.span``
250
+
251
+ const TemplateItem = styled.span`
250
252
  padding-left: 15px;
251
253
  `
252
254
 
@@ -480,6 +482,7 @@
480
482
  InfoText,
481
483
  InfoWrapper,
482
484
  TableItem,
485
+ TemplateItem,
483
486
  },
484
487
  props: {
485
488
  colSpan: {