@eturnity/eturnity_reusable_components 8.16.7 → 8.16.8-EPDM-EPDM-14492.0
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
@@ -513,9 +513,10 @@
|
|
513
513
|
default: '40px',
|
514
514
|
},
|
515
515
|
value: {
|
516
|
-
type: [String, Number],
|
517
516
|
required: true,
|
518
517
|
default: null,
|
518
|
+
validator: (val) =>
|
519
|
+
typeof val === 'string' || typeof val === 'number' || val === null,
|
519
520
|
},
|
520
521
|
clearInput: {
|
521
522
|
type: Boolean,
|
@@ -658,6 +658,13 @@
|
|
658
658
|
default: false,
|
659
659
|
},
|
660
660
|
},
|
661
|
+
setup() {
|
662
|
+
const modalRef = inject('modalRef')
|
663
|
+
|
664
|
+
return {
|
665
|
+
modalRef,
|
666
|
+
}
|
667
|
+
},
|
661
668
|
|
662
669
|
data() {
|
663
670
|
return {
|
@@ -680,13 +687,6 @@
|
|
680
687
|
animationFrameId: null,
|
681
688
|
}
|
682
689
|
},
|
683
|
-
setup() {
|
684
|
-
const modalRef = inject('modalRef')
|
685
|
-
|
686
|
-
return {
|
687
|
-
modalRef,
|
688
|
-
}
|
689
|
-
},
|
690
690
|
computed: {
|
691
691
|
optionLength() {
|
692
692
|
if (this.isDropdownOpen) {
|