zydx-plus 1.7.27 → 1.7.29

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.7.27",
3
+ "version": "1.7.29",
4
4
  "description": "Vue.js",
5
5
  "main": "src/index.js",
6
6
  "files": [
@@ -154,6 +154,7 @@ export default defineComponent({
154
154
  cursor: pointer;
155
155
  padding: 0 5px;
156
156
  font-weight: normal;
157
+ box-sizing: border-box;
157
158
  }
158
159
 
159
160
  .search_container {
@@ -28,7 +28,6 @@
28
28
  <li v-for="(option, idx) in options"
29
29
  :key="idx"
30
30
  @click="handleClick(option)">{{ option.label }}</li>
31
-
32
31
  </ul>
33
32
  </transition>
34
33
  </div>
@@ -121,7 +120,7 @@ export default defineComponent({
121
120
  font-weight: 400;
122
121
  color: #606266;
123
122
  line-height: 30px;
124
- padding: 0 30px 0 20px;
123
+ padding: 0 40px 0 10px;
125
124
  width: 100%;
126
125
  max-width: 100%;
127
126
  box-sizing: border-box;
@@ -135,6 +134,7 @@ export default defineComponent({
135
134
  background-color: #fff;
136
135
  position: relative;
137
136
  z-index: 10;
137
+ outline: none;
138
138
  }
139
139
 
140
140
  .select-css::-ms-expand {
package/src/index.js CHANGED
@@ -11,7 +11,6 @@ import Table from './components/data_table/index';
11
11
  import buttonGroup from './components/buttonGroup/index';
12
12
  import spinner from './components/spinner/index';
13
13
  import treeList from './components/treeList/index';
14
- import flip from './components/flip/index';
15
14
 
16
15
  const components = [
17
16
  Calendar,
@@ -24,8 +23,7 @@ const components = [
24
23
  Year,
25
24
  Table,
26
25
  buttonGroup,
27
- treeList,
28
- flip
26
+ treeList
29
27
  ];
30
28
 
31
29
  function install(app) {
@@ -37,7 +35,7 @@ function install(app) {
37
35
  }
38
36
 
39
37
  export default {
40
- version: '1.7.27',
38
+ version: '1.7.29',
41
39
  install,
42
40
  Calendar,
43
41
  Message,
@@ -51,7 +49,6 @@ export default {
51
49
  Year,
52
50
  Table,
53
51
  buttonGroup,
54
- treeList,
55
- flip
52
+ treeList
56
53
  };
57
54