@eturnity/eturnity_reusable_components 8.13.8 → 8.13.10

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.8",
3
+ "version": "8.13.10",
4
4
  "files": [
5
5
  "dist",
6
6
  "src"
@@ -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
  >
@@ -219,7 +219,7 @@
219
219
 
220
220
  .input-placeholder {
221
221
  height: 25px;
222
- padding-left: 12px;
222
+ margin-left: -2px;
223
223
  }
224
224
  `
225
225
 
@@ -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;
@@ -392,7 +396,7 @@
392
396
  const inputContainerAttrs = { hasMessage: Boolean }
393
397
  const InputContainer = styled('div', inputContainerAttrs)`
394
398
  margin-left: ${(props) => (props.hasMessage ? '10px' : '0')};
395
- display: flex;
399
+ display: block;
396
400
  align-items: center;
397
401
  justify-content: flex-start;
398
402
 
@@ -483,6 +487,7 @@
483
487
  InfoWrapper,
484
488
  TableItem,
485
489
  TemplateItem,
490
+ DropdownItem,
486
491
  },
487
492
  props: {
488
493
  colSpan: {