@opentinyvue/vue-cascader-node 2.21.0 → 2.22.1
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/index.js +2 -2
- package/lib/pc.js +1 -1
- package/package.json +11 -10
package/lib/index.js
CHANGED
|
@@ -7,7 +7,7 @@ function _extends() {
|
|
|
7
7
|
return n;
|
|
8
8
|
}, _extends.apply(null, arguments);
|
|
9
9
|
}
|
|
10
|
-
import { defineComponent, $
|
|
10
|
+
import { defineComponent, $props, $setup, $prefix } from "@opentinyvue/vue-common";
|
|
11
11
|
import PcTemplate from "./pc.js";
|
|
12
12
|
import MobileFirstTemplate from "./mobile-first.js";
|
|
13
13
|
var template = function template2(mode) {
|
|
@@ -38,7 +38,7 @@ var CascaderNode = defineComponent({
|
|
|
38
38
|
});
|
|
39
39
|
}
|
|
40
40
|
});
|
|
41
|
-
var version = "2.
|
|
41
|
+
var version = "2.undefined";
|
|
42
42
|
CascaderNode.install = function(Vue) {
|
|
43
43
|
Vue.component(CascaderNode.name, CascaderNode);
|
|
44
44
|
};
|
package/lib/pc.js
CHANGED
|
@@ -2,7 +2,7 @@ import { renderless, api } from '@opentinyvue/vue-renderless/cascader-node/vue';
|
|
|
2
2
|
import { defineComponent, $prefix, setup, $props } from '@opentinyvue/vue-common';
|
|
3
3
|
import Checkbox from '@opentinyvue/vue-checkbox';
|
|
4
4
|
import Radio from '@opentinyvue/vue-radio';
|
|
5
|
-
import { isEqual } from '@opentinyvue/
|
|
5
|
+
import { isEqual } from '@opentinyvue/utils';
|
|
6
6
|
import { iconYes, iconLoadingShadow, iconChevronRight } from '@opentinyvue/vue-icon';
|
|
7
7
|
import '@opentinyvue/vue-theme/cascader-node/index.css';
|
|
8
8
|
|
package/package.json
CHANGED
|
@@ -1,20 +1,21 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@opentinyvue/vue-cascader-node",
|
|
3
|
-
"
|
|
3
|
+
"type": "module",
|
|
4
|
+
"version": "2.22.1",
|
|
4
5
|
"description": "",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"sideEffects": false,
|
|
5
8
|
"main": "./lib/index.js",
|
|
6
9
|
"module": "./lib/index.js",
|
|
7
|
-
"sideEffects": false,
|
|
8
|
-
"type": "module",
|
|
9
10
|
"dependencies": {
|
|
10
|
-
"@opentinyvue/
|
|
11
|
-
"@opentinyvue/vue-
|
|
12
|
-
"@opentinyvue/vue-
|
|
13
|
-
"@opentinyvue/vue-
|
|
14
|
-
"@opentinyvue/vue-
|
|
15
|
-
"@opentinyvue/vue-
|
|
11
|
+
"@opentinyvue/utils": "~3.22.0",
|
|
12
|
+
"@opentinyvue/vue-checkbox": "~2.22.0",
|
|
13
|
+
"@opentinyvue/vue-common": "~2.22.0",
|
|
14
|
+
"@opentinyvue/vue-icon": "~2.22.0",
|
|
15
|
+
"@opentinyvue/vue-radio": "~2.22.0",
|
|
16
|
+
"@opentinyvue/vue-renderless": "~3.22.0",
|
|
17
|
+
"@opentinyvue/vue-theme": "~3.22.0"
|
|
16
18
|
},
|
|
17
|
-
"license": "MIT",
|
|
18
19
|
"types": "index.d.ts",
|
|
19
20
|
"scripts": {
|
|
20
21
|
"build": "pnpm -w build:ui $npm_package_name",
|