zydx-plus 1.35.581 → 1.35.582

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": "zydx-plus",
3
- "version": "1.35.581",
3
+ "version": "1.35.582",
4
4
  "description": "Vue.js",
5
5
  "main": "src/index.js",
6
6
  "files": [
@@ -10,9 +10,7 @@
10
10
  @click.stop="toggleDropDown"
11
11
  class="select-css" />
12
12
 
13
- <span class="custom-select-icons"
14
- v-if="!readonly"
15
- @click.stop="toggleDropDown">
13
+ <span class="custom-select-icons" v-if="!readonly">
16
14
  <svg xmlns="http://www.w3.org/2000/svg"
17
15
  width="16"
18
16
  height="16"
@@ -28,7 +26,7 @@
28
26
  <template v-if="options.length">
29
27
  <ul v-if="isOpen"
30
28
  ref="dropdown"
31
- :style="{position: 'fixed', 'z-index': '10000', left: x + 'px', top: y + 'px', width: width + 'px'}"
29
+ :style="{position: 'fixed', 'z-index': '30000', left: x + 'px', top: y + 'px', width: width + 'px'}"
32
30
  :class="{ 'custom-select-options': true, 'scroll': maxHeight > 0 }">
33
31
  <li v-for="(option, idx) in options"
34
32
  :key="idx"
@@ -115,7 +113,7 @@ export default defineComponent({
115
113
  if (this.isOpen) {
116
114
  setTimeout(() => {
117
115
  this.isOpen = false
118
- }, 100)
116
+ }, 200)
119
117
  }
120
118
  }
121
119
  },
package/src/index.js CHANGED
@@ -89,7 +89,7 @@ function install(app) {
89
89
  }
90
90
 
91
91
  export default {
92
- version: '1.35.581',
92
+ version: '1.35.582',
93
93
  install,
94
94
  Calendar,
95
95
  Message,