@kengic/vue 0.6.10 → 0.6.11-beta.1
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/index.css +1 -1
- package/dist/kengic-vue.js +1325 -1303
- package/dist/src/components/KgSearch/KgSearch.d.ts +22 -4
- package/package.json +86 -86
@@ -1,8 +1,26 @@
|
|
1
|
-
import { ExtractPropTypes } from 'vue';
|
1
|
+
import { ExtractPropTypes, PropType } from 'vue';
|
2
2
|
import './KgSearch.less';
|
3
|
-
export declare const getProps: () =>
|
3
|
+
export declare const getProps: () => {
|
4
|
+
/** 是否将头部放到页面顶部的导航栏中. */
|
5
|
+
kgHeaderTeleport: {
|
6
|
+
type: PropType<boolean>;
|
7
|
+
default: undefined;
|
8
|
+
};
|
9
|
+
};
|
4
10
|
export declare type IKgSearchProps = Partial<ExtractPropTypes<ReturnType<typeof getProps>>>;
|
5
|
-
declare const _default: import("vue").DefineComponent<
|
6
|
-
|
11
|
+
declare const _default: import("vue").DefineComponent<{
|
12
|
+
/** 是否将头部放到页面顶部的导航栏中. */
|
13
|
+
kgHeaderTeleport: {
|
14
|
+
type: PropType<boolean>;
|
15
|
+
default: undefined;
|
16
|
+
};
|
17
|
+
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<ExtractPropTypes<{
|
18
|
+
/** 是否将头部放到页面顶部的导航栏中. */
|
19
|
+
kgHeaderTeleport: {
|
20
|
+
type: PropType<boolean>;
|
21
|
+
default: undefined;
|
22
|
+
};
|
23
|
+
}>>, {
|
24
|
+
kgHeaderTeleport: boolean;
|
7
25
|
}>;
|
8
26
|
export default _default;
|
package/package.json
CHANGED
@@ -1,86 +1,86 @@
|
|
1
|
-
{
|
2
|
-
"name": "@kengic/vue",
|
3
|
-
"version": "0.6.
|
4
|
-
"scripts": {
|
5
|
-
"build": "rimraf dist && vue-tsc && vite build",
|
6
|
-
"build:dev": "rimraf dist && vue-tsc && vite build --mode development",
|
7
|
-
"publish:all:beta": "npm run bump-version:beta && npm run publish:all",
|
8
|
-
"publish:all:patch": "npm run bump-version:patch && npm run publish:all",
|
9
|
-
"publish:all:minor": "npm run bump-version:minor && npm run publish:all",
|
10
|
-
"publish:all:major": "npm run bump-version:major && npm run publish:all",
|
11
|
-
"----------------------- C": "",
|
12
|
-
"bump-to:luotao.c.wms-vue3": "tsx scripts/bump-to.luotao.c.wms-vue3.ts",
|
13
|
-
"copy-to:luotao.c.wms-vue3": "npm run build:dev && tsx scripts/copy-to.luotao.c.wms-vue3.ts",
|
14
|
-
"bump-to:luotao.c.wms-vue3:focus": "tsx scripts/bump-to.luotao.c.wms-vue3.focus.ts",
|
15
|
-
"copy-to:luotao.c.wms-vue3:focus": "npm run build:dev && tsx scripts/copy-to.luotao.c.wms-vue3.focus.ts",
|
16
|
-
"--------------------- D": "",
|
17
|
-
"bump-to:luotao.wms-vue3": "tsx scripts/bump-to.luotao.wms-vue3.ts",
|
18
|
-
"copy-to:luotao.wms-vue3": "npm run build:dev && tsx scripts/copy-to.luotao.wms-vue3.ts",
|
19
|
-
"bump-to:luotao.wms-vue3:focus": "tsx scripts/bump-to.luotao.wms-vue3.focus.ts",
|
20
|
-
"copy-to:luotao.wms-vue3:focus": "npm run build:dev && tsx scripts/copy-to.luotao.wms-vue3.focus.ts",
|
21
|
-
"--------------------": "",
|
22
|
-
"cnpm:sync": "cnpm sync @kengic/vue",
|
23
|
-
"gen:apis:WMS": "kengic-pont generate-apis --config kg.config.ts --origin WMS",
|
24
|
-
"bump-version:beta": "tsx scripts/bump.ts beta",
|
25
|
-
"bump-version:major": "tsx scripts/bump.ts major",
|
26
|
-
"bump-version:minor": "tsx scripts/bump.ts minor",
|
27
|
-
"bump-version:patch": "tsx scripts/bump.ts patch",
|
28
|
-
"publish:all": "tsx scripts/publish.ts",
|
29
|
-
"publish:npm": "npmrc kengic && npm publish ./ --registry https://registry.npmjs.org/ --access public"
|
30
|
-
},
|
31
|
-
"peerDependencies": {
|
32
|
-
"vue": "3.2.43"
|
33
|
-
},
|
34
|
-
"dependencies": {
|
35
|
-
"@ant-design/icons-vue": "6.1.0",
|
36
|
-
"@iconify-icons/ant-design": "1.2.5",
|
37
|
-
"@iconify/vue": "4.1.1",
|
38
|
-
"@vueuse/core": "8.9.4",
|
39
|
-
"@vueuse/shared": "8.9.4",
|
40
|
-
"ant-design-vue": "3.2.14",
|
41
|
-
"axios": "0.26.1",
|
42
|
-
"dayjs": "1.11.6",
|
43
|
-
"filesize": "10.0.6",
|
44
|
-
"lodash-es": "4.17.21",
|
45
|
-
"pinia": "2.0.12",
|
46
|
-
"store": "2.0.12",
|
47
|
-
"vue-router": "4.1.6"
|
48
|
-
},
|
49
|
-
"devDependencies": {
|
50
|
-
"@kengic/pont": "1.2.10-beta.44",
|
51
|
-
"@types/lodash-es": "~4.17.7",
|
52
|
-
"@types/node": "~18.14.6",
|
53
|
-
"@types/semver": "~7.3.13",
|
54
|
-
"@types/store": "2.0.2",
|
55
|
-
"@vitejs/plugin-vue": "~3.2.0",
|
56
|
-
"@vitejs/plugin-vue-jsx": "~1.3.10",
|
57
|
-
"chalk": "~4.1.2",
|
58
|
-
"less": "~4.1.3",
|
59
|
-
"prettier": "~2.8.4",
|
60
|
-
"rimraf": "~3.0.2",
|
61
|
-
"rollup": "~2.79.1",
|
62
|
-
"semver": "~7.3.8",
|
63
|
-
"tsx": "~3.12.3",
|
64
|
-
"typescript": "~4.8.4",
|
65
|
-
"vite": "~3.2.5",
|
66
|
-
"vue": "~3.2.45",
|
67
|
-
"vue-tsc": "~1.2.0"
|
68
|
-
},
|
69
|
-
"main": "./dist/kengic-vue.js",
|
70
|
-
"module": "./dist/kengic-vue.js",
|
71
|
-
"types": "./dist/src/index.d.ts",
|
72
|
-
"exports": {
|
73
|
-
".": {
|
74
|
-
"import": "./dist/kengic-vue.js"
|
75
|
-
},
|
76
|
-
"./dist/index.css": "./dist/index.css"
|
77
|
-
},
|
78
|
-
"prettier": {
|
79
|
-
"endOfLine": "auto",
|
80
|
-
"printWidth": 160,
|
81
|
-
"semi": true,
|
82
|
-
"singleQuote": true,
|
83
|
-
"tabWidth": 4,
|
84
|
-
"trailingComma": "all"
|
85
|
-
}
|
86
|
-
}
|
1
|
+
{
|
2
|
+
"name": "@kengic/vue",
|
3
|
+
"version": "0.6.11-beta.1",
|
4
|
+
"scripts": {
|
5
|
+
"build": "rimraf dist && vue-tsc && vite build",
|
6
|
+
"build:dev": "rimraf dist && vue-tsc && vite build --mode development",
|
7
|
+
"publish:all:beta": "npm run bump-version:beta && npm run publish:all",
|
8
|
+
"publish:all:patch": "npm run bump-version:patch && npm run publish:all",
|
9
|
+
"publish:all:minor": "npm run bump-version:minor && npm run publish:all",
|
10
|
+
"publish:all:major": "npm run bump-version:major && npm run publish:all",
|
11
|
+
"----------------------- C": "",
|
12
|
+
"bump-to:luotao.c.wms-vue3": "tsx scripts/bump-to.luotao.c.wms-vue3.ts",
|
13
|
+
"copy-to:luotao.c.wms-vue3": "npm run build:dev && tsx scripts/copy-to.luotao.c.wms-vue3.ts",
|
14
|
+
"bump-to:luotao.c.wms-vue3:focus": "tsx scripts/bump-to.luotao.c.wms-vue3.focus.ts",
|
15
|
+
"copy-to:luotao.c.wms-vue3:focus": "npm run build:dev && tsx scripts/copy-to.luotao.c.wms-vue3.focus.ts",
|
16
|
+
"--------------------- D": "",
|
17
|
+
"bump-to:luotao.wms-vue3": "tsx scripts/bump-to.luotao.wms-vue3.ts",
|
18
|
+
"copy-to:luotao.wms-vue3": "npm run build:dev && tsx scripts/copy-to.luotao.wms-vue3.ts",
|
19
|
+
"bump-to:luotao.wms-vue3:focus": "tsx scripts/bump-to.luotao.wms-vue3.focus.ts",
|
20
|
+
"copy-to:luotao.wms-vue3:focus": "npm run build:dev && tsx scripts/copy-to.luotao.wms-vue3.focus.ts",
|
21
|
+
"--------------------": "",
|
22
|
+
"cnpm:sync": "cnpm sync @kengic/vue",
|
23
|
+
"gen:apis:WMS": "kengic-pont generate-apis --config kg.config.ts --origin WMS",
|
24
|
+
"bump-version:beta": "tsx scripts/bump.ts beta",
|
25
|
+
"bump-version:major": "tsx scripts/bump.ts major",
|
26
|
+
"bump-version:minor": "tsx scripts/bump.ts minor",
|
27
|
+
"bump-version:patch": "tsx scripts/bump.ts patch",
|
28
|
+
"publish:all": "tsx scripts/publish.ts",
|
29
|
+
"publish:npm": "npmrc kengic && npm publish ./ --registry https://registry.npmjs.org/ --access public"
|
30
|
+
},
|
31
|
+
"peerDependencies": {
|
32
|
+
"vue": "3.2.43"
|
33
|
+
},
|
34
|
+
"dependencies": {
|
35
|
+
"@ant-design/icons-vue": "6.1.0",
|
36
|
+
"@iconify-icons/ant-design": "1.2.5",
|
37
|
+
"@iconify/vue": "4.1.1",
|
38
|
+
"@vueuse/core": "8.9.4",
|
39
|
+
"@vueuse/shared": "8.9.4",
|
40
|
+
"ant-design-vue": "3.2.14",
|
41
|
+
"axios": "0.26.1",
|
42
|
+
"dayjs": "1.11.6",
|
43
|
+
"filesize": "10.0.6",
|
44
|
+
"lodash-es": "4.17.21",
|
45
|
+
"pinia": "2.0.12",
|
46
|
+
"store": "2.0.12",
|
47
|
+
"vue-router": "4.1.6"
|
48
|
+
},
|
49
|
+
"devDependencies": {
|
50
|
+
"@kengic/pont": "1.2.10-beta.44",
|
51
|
+
"@types/lodash-es": "~4.17.7",
|
52
|
+
"@types/node": "~18.14.6",
|
53
|
+
"@types/semver": "~7.3.13",
|
54
|
+
"@types/store": "2.0.2",
|
55
|
+
"@vitejs/plugin-vue": "~3.2.0",
|
56
|
+
"@vitejs/plugin-vue-jsx": "~1.3.10",
|
57
|
+
"chalk": "~4.1.2",
|
58
|
+
"less": "~4.1.3",
|
59
|
+
"prettier": "~2.8.4",
|
60
|
+
"rimraf": "~3.0.2",
|
61
|
+
"rollup": "~2.79.1",
|
62
|
+
"semver": "~7.3.8",
|
63
|
+
"tsx": "~3.12.3",
|
64
|
+
"typescript": "~4.8.4",
|
65
|
+
"vite": "~3.2.5",
|
66
|
+
"vue": "~3.2.45",
|
67
|
+
"vue-tsc": "~1.2.0"
|
68
|
+
},
|
69
|
+
"main": "./dist/kengic-vue.js",
|
70
|
+
"module": "./dist/kengic-vue.js",
|
71
|
+
"types": "./dist/src/index.d.ts",
|
72
|
+
"exports": {
|
73
|
+
".": {
|
74
|
+
"import": "./dist/kengic-vue.js"
|
75
|
+
},
|
76
|
+
"./dist/index.css": "./dist/index.css"
|
77
|
+
},
|
78
|
+
"prettier": {
|
79
|
+
"endOfLine": "auto",
|
80
|
+
"printWidth": 160,
|
81
|
+
"semi": true,
|
82
|
+
"singleQuote": true,
|
83
|
+
"tabWidth": 4,
|
84
|
+
"trailingComma": "all"
|
85
|
+
}
|
86
|
+
}
|