@eturnity/eturnity_reusable_components 7.30.1 → 7.30.2
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
@@ -53,7 +53,7 @@
|
|
53
53
|
"
|
54
54
|
:fontSize="fontSize"
|
55
55
|
:hasError="hasError"
|
56
|
-
:hasNoPadding="
|
56
|
+
:hasNoPadding="isSearchBarVisible || !hasSelectButtonPadding"
|
57
57
|
:disabled="disabled"
|
58
58
|
@keydown="onKeyDown"
|
59
59
|
:showBorder="showBorder"
|
@@ -162,7 +162,7 @@
|
|
162
162
|
// alignItems="vertical"
|
163
163
|
// label-data-id="test-label-data-id"
|
164
164
|
// data-id="test-data-id"
|
165
|
-
// :
|
165
|
+
// :hasSelectButtonPadding="false"
|
166
166
|
// >
|
167
167
|
// <template #selector="{selectedValue}">
|
168
168
|
// value selected: {{selectedValue}}
|
@@ -533,6 +533,11 @@ export default {
|
|
533
533
|
type: String,
|
534
534
|
default: ''
|
535
535
|
},
|
536
|
+
hasSelectButtonPadding: {
|
537
|
+
required: false,
|
538
|
+
type: Boolean,
|
539
|
+
default: true
|
540
|
+
},
|
536
541
|
isDraggable: {
|
537
542
|
type: Boolean,
|
538
543
|
default: false
|
@@ -556,11 +561,6 @@ export default {
|
|
556
561
|
type: String,
|
557
562
|
default: DROPDOWN_MENU_POSITIONS.Automatic // options: ['automatic', bottom]
|
558
563
|
},
|
559
|
-
hasNoPadding: {
|
560
|
-
required: false,
|
561
|
-
default: false,
|
562
|
-
type: Boolean
|
563
|
-
},
|
564
564
|
infoTextWidth: {
|
565
565
|
type: String,
|
566
566
|
required: false
|