@opentinyvue/vue-cascader-node 2.25.0 → 2.27.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 -2
- package/lib/pc.js +11 -3
- package/package.json +9 -8
package/lib/mobile-first.js
CHANGED
|
@@ -125,8 +125,8 @@ function __vue2_injectStyles(context) {
|
|
|
125
125
|
this[o] = __cssModules[o];
|
|
126
126
|
}
|
|
127
127
|
}
|
|
128
|
-
var mobileFirst = /* @__PURE__ */ function() {
|
|
128
|
+
var mobileFirst = /* @__PURE__ */ (function() {
|
|
129
129
|
return __component__.exports;
|
|
130
|
-
}();
|
|
130
|
+
})();
|
|
131
131
|
|
|
132
132
|
export { mobileFirst as default };
|
package/lib/pc.js
CHANGED
|
@@ -4,6 +4,7 @@ import Checkbox from '@opentinyvue/vue-checkbox';
|
|
|
4
4
|
import Radio from '@opentinyvue/vue-radio';
|
|
5
5
|
import { isEqual } from '@opentinyvue/utils';
|
|
6
6
|
import { iconYes, iconLoadingShadow, iconChevronRight } from '@opentinyvue/vue-icon';
|
|
7
|
+
import { AutoTip } from '@opentinyvue/vue-directive';
|
|
7
8
|
import '@opentinyvue/vue-theme/cascader-node/index.css';
|
|
8
9
|
|
|
9
10
|
function normalizeComponent(scriptExports, render, staticRenderFns, functionalTemplate, injectStyles, scopeId, moduleIdentifier, shadowMode) {
|
|
@@ -47,6 +48,9 @@ function _extends() {
|
|
|
47
48
|
}
|
|
48
49
|
var __vue2_script = defineComponent({
|
|
49
50
|
name: $prefix + "CascaderNode",
|
|
51
|
+
directives: {
|
|
52
|
+
AutoTip
|
|
53
|
+
},
|
|
50
54
|
components: {
|
|
51
55
|
TinyCheckbox: Checkbox,
|
|
52
56
|
TinyRadio: Radio,
|
|
@@ -158,7 +162,11 @@ var __vue2_script = defineComponent({
|
|
|
158
162
|
data: node.data
|
|
159
163
|
}) : null;
|
|
160
164
|
return h("span", {
|
|
161
|
-
"class": "tiny-cascader-node__label"
|
|
165
|
+
"class": "tiny-cascader-node__label",
|
|
166
|
+
"directives": [{
|
|
167
|
+
name: "auto-tip",
|
|
168
|
+
value: true
|
|
169
|
+
}]
|
|
162
170
|
}, [vnode || node.label]);
|
|
163
171
|
};
|
|
164
172
|
var state = this.state;
|
|
@@ -205,8 +213,8 @@ function __vue2_injectStyles(context) {
|
|
|
205
213
|
this[o] = __cssModules[o];
|
|
206
214
|
}
|
|
207
215
|
}
|
|
208
|
-
var pc = /* @__PURE__ */ function() {
|
|
216
|
+
var pc = /* @__PURE__ */ (function() {
|
|
209
217
|
return __component__.exports;
|
|
210
|
-
}();
|
|
218
|
+
})();
|
|
211
219
|
|
|
212
220
|
export { pc as default };
|
package/package.json
CHANGED
|
@@ -1,20 +1,21 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@opentinyvue/vue-cascader-node",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "2.
|
|
4
|
+
"version": "2.27.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/
|
|
12
|
-
"@opentinyvue/
|
|
13
|
-
"@opentinyvue/vue-
|
|
14
|
-
"@opentinyvue/vue-
|
|
15
|
-
"@opentinyvue/vue-
|
|
16
|
-
"@opentinyvue/vue-
|
|
17
|
-
"@opentinyvue/vue-
|
|
11
|
+
"@opentinyvue/vue-directive": "~2.27.0",
|
|
12
|
+
"@opentinyvue/utils": "~3.27.0",
|
|
13
|
+
"@opentinyvue/vue-checkbox": "~2.27.0",
|
|
14
|
+
"@opentinyvue/vue-common": "~2.27.0",
|
|
15
|
+
"@opentinyvue/vue-icon": "~2.27.0",
|
|
16
|
+
"@opentinyvue/vue-radio": "~2.27.0",
|
|
17
|
+
"@opentinyvue/vue-renderless": "~3.27.0",
|
|
18
|
+
"@opentinyvue/vue-theme": "~3.27.0"
|
|
18
19
|
},
|
|
19
20
|
"types": "index.d.ts",
|
|
20
21
|
"scripts": {
|