@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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eturnity/eturnity_reusable_components",
3
- "version": "8.16.7",
3
+ "version": "8.16.8-EPDM-EPDM-14492.0",
4
4
  "files": [
5
5
  "dist",
6
6
  "src"
@@ -137,7 +137,7 @@
137
137
  `
138
138
 
139
139
  const TextWrapper = styled('div')`
140
- z-index: 99999;
140
+ z-index: 9999999999;
141
141
  position: absolute;
142
142
  `
143
143
 
@@ -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) {