@opentinyvue/vue-base-select 2.28.0 → 2.29.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/lib/mobile-first.js +2 -1
- package/lib/pc.js +2 -1
- package/package.json +18 -18
package/lib/mobile-first.js
CHANGED
|
@@ -108,7 +108,8 @@ var render = function render2() {
|
|
|
108
108
|
return item.state ? item.state.currentLabel : item.currentLabel;
|
|
109
109
|
}).join("; ") : _vm.state.selectedLabel,
|
|
110
110
|
"drop-down-visible": _vm.state.visible,
|
|
111
|
-
"blank": _vm.blank
|
|
111
|
+
"blank": _vm.blank,
|
|
112
|
+
"size": _vm.state.selectSize
|
|
112
113
|
},
|
|
113
114
|
on: {
|
|
114
115
|
"click": _vm.toggleMenu
|
package/lib/pc.js
CHANGED
|
@@ -251,7 +251,8 @@ var render = function render2() {
|
|
|
251
251
|
return item.state ? item.state.currentLabel : item.currentLabel;
|
|
252
252
|
}).join("; ") : _vm.state.selectedLabel,
|
|
253
253
|
"drop-down-visible": _vm.state.visible,
|
|
254
|
-
"blank": _vm.blank
|
|
254
|
+
"blank": _vm.blank,
|
|
255
|
+
"size": _vm.state.selectSize
|
|
255
256
|
},
|
|
256
257
|
on: {
|
|
257
258
|
"click": _vm.toggleMenu
|
package/package.json
CHANGED
|
@@ -1,30 +1,30 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@opentinyvue/vue-base-select",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "2.
|
|
4
|
+
"version": "2.29.0",
|
|
5
5
|
"description": "",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"sideEffects": false,
|
|
8
8
|
"main": "./lib/index.js",
|
|
9
9
|
"module": "./lib/index.js",
|
|
10
10
|
"dependencies": {
|
|
11
|
-
"@opentinyvue/vue-button": "~2.
|
|
12
|
-
"@opentinyvue/vue-checkbox": "~2.
|
|
13
|
-
"@opentinyvue/vue-common": "~2.
|
|
14
|
-
"@opentinyvue/vue-directive": "~2.
|
|
15
|
-
"@opentinyvue/vue-filter-box": "~2.
|
|
16
|
-
"@opentinyvue/vue-icon": "~2.
|
|
17
|
-
"@opentinyvue/vue-input": "~2.
|
|
18
|
-
"@opentinyvue/vue-locale": "~2.
|
|
19
|
-
"@opentinyvue/vue-option": "~2.
|
|
20
|
-
"@opentinyvue/vue-recycle-scroller": "~2.
|
|
21
|
-
"@opentinyvue/vue-renderless": "~3.
|
|
22
|
-
"@opentinyvue/vue-scrollbar": "~2.
|
|
23
|
-
"@opentinyvue/vue-select-dropdown": "~2.
|
|
24
|
-
"@opentinyvue/vue-tag": "~2.
|
|
25
|
-
"@opentinyvue/vue-theme": "~3.
|
|
26
|
-
"@opentinyvue/vue-tooltip": "~2.
|
|
27
|
-
"@opentinyvue/vue-tree": "~2.
|
|
11
|
+
"@opentinyvue/vue-button": "~2.29.0",
|
|
12
|
+
"@opentinyvue/vue-checkbox": "~2.29.0",
|
|
13
|
+
"@opentinyvue/vue-common": "~2.29.0",
|
|
14
|
+
"@opentinyvue/vue-directive": "~2.29.0",
|
|
15
|
+
"@opentinyvue/vue-filter-box": "~2.29.0",
|
|
16
|
+
"@opentinyvue/vue-icon": "~2.29.0",
|
|
17
|
+
"@opentinyvue/vue-input": "~2.29.0",
|
|
18
|
+
"@opentinyvue/vue-locale": "~2.29.0",
|
|
19
|
+
"@opentinyvue/vue-option": "~2.29.0",
|
|
20
|
+
"@opentinyvue/vue-recycle-scroller": "~2.29.0",
|
|
21
|
+
"@opentinyvue/vue-renderless": "~3.29.0",
|
|
22
|
+
"@opentinyvue/vue-scrollbar": "~2.29.0",
|
|
23
|
+
"@opentinyvue/vue-select-dropdown": "~2.29.0",
|
|
24
|
+
"@opentinyvue/vue-tag": "~2.29.0",
|
|
25
|
+
"@opentinyvue/vue-theme": "~3.29.0",
|
|
26
|
+
"@opentinyvue/vue-tooltip": "~2.29.0",
|
|
27
|
+
"@opentinyvue/vue-tree": "~2.29.0"
|
|
28
28
|
},
|
|
29
29
|
"types": "index.d.ts",
|
|
30
30
|
"scripts": {
|