@eturnity/eturnity_reusable_components 1.1.38 → 1.1.39
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
|
@@ -49,7 +49,9 @@
|
|
|
49
49
|
@input-change="onCustomInputChange($event)"
|
|
50
50
|
/>
|
|
51
51
|
</input-container>
|
|
52
|
-
<
|
|
52
|
+
<text-container v-else>
|
|
53
|
+
<span> {{ item.value }}</span>
|
|
54
|
+
</text-container>
|
|
53
55
|
</component-item>
|
|
54
56
|
<arrow-container class="arrow-container">
|
|
55
57
|
<arrow-wrapper :showArchived="showArchived">
|
|
@@ -345,6 +347,12 @@ const CustomSubtext = styled.div`
|
|
|
345
347
|
color: ${(props) => props.theme.colors.grey3};
|
|
346
348
|
`
|
|
347
349
|
|
|
350
|
+
const TextContainer = styled.div`
|
|
351
|
+
height: 100%;
|
|
352
|
+
display: grid;
|
|
353
|
+
align-items: center;
|
|
354
|
+
`
|
|
355
|
+
|
|
348
356
|
export default {
|
|
349
357
|
name: "table-dropdown",
|
|
350
358
|
components: {
|
|
@@ -370,6 +378,7 @@ export default {
|
|
|
370
378
|
CustomName,
|
|
371
379
|
CustomSubtext,
|
|
372
380
|
ArrowContainer,
|
|
381
|
+
TextContainer,
|
|
373
382
|
},
|
|
374
383
|
props: {
|
|
375
384
|
colSpan: {
|