@eturnity/eturnity_reusable_components 1.1.73 → 1.1.74
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
|
@@ -9,6 +9,9 @@
|
|
|
9
9
|
:colSpan="isNested ? colSpan : colSpan - 1"
|
|
10
10
|
class="table-dropdown"
|
|
11
11
|
>
|
|
12
|
+
<td v-if="isNested">
|
|
13
|
+
<nested-icon />
|
|
14
|
+
</td>
|
|
12
15
|
<component-item
|
|
13
16
|
v-for="(item, index) in tableItems"
|
|
14
17
|
:key="index"
|
|
@@ -17,7 +20,6 @@
|
|
|
17
20
|
'table-dropdown-item': item.type !== 'input',
|
|
18
21
|
}"
|
|
19
22
|
>
|
|
20
|
-
<nested-icon v-if="isNested" />
|
|
21
23
|
<template-button
|
|
22
24
|
@click.stop="onTemplateClick(item.row)"
|
|
23
25
|
v-if="
|
|
@@ -395,6 +397,8 @@ const TextContainer = styled.div`
|
|
|
395
397
|
const NestedIcon = styled.div`
|
|
396
398
|
background-image: ${() =>
|
|
397
399
|
`url(${require("../../assets/icons/subposition_marker.svg")})`};
|
|
400
|
+
height: 10px;
|
|
401
|
+
width: 6px;
|
|
398
402
|
`
|
|
399
403
|
|
|
400
404
|
export default {
|