@kengic/vue 0.2.1-beta.1 → 0.2.1-beta.3
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/dist/index.css +1 -1
- package/dist/kengic-vue.js +3421 -1959
- package/dist/src/apis/WMS/models.d.ts +54 -2
- package/dist/src/components/KgButton/KgButton.Copy.d.ts +19 -15
- package/dist/src/components/KgButton/KgButton.Create.d.ts +19 -15
- package/dist/src/components/KgButton/KgButton.Delete.d.ts +19 -15
- package/dist/src/components/KgButton/KgButton.Export.d.ts +19 -15
- package/dist/src/components/KgButton/KgButton.Import.d.ts +30 -0
- package/dist/src/components/KgButton/KgButton.Other.d.ts +30 -0
- package/dist/src/components/KgButton/KgButton.Update.d.ts +19 -15
- package/dist/src/components/KgButton/KgButton.d.ts +19 -15
- package/dist/src/components/KgButton/KgButtons.d.ts +21 -0
- package/dist/src/components/KgButton/index.d.ts +1 -0
- package/dist/src/components/KgButton/index.vm.d.ts +13 -9
- package/dist/src/components/KgSearch/index.store.d.ts +3 -2
- package/dist/src/components/KgTable/index.store.d.ts +3 -2
- package/dist/src/components/KgVar/index.hook.d.ts +12 -38
- package/dist/src/components/KgVar/index.store.d.ts +10 -3
- package/dist/src/consts/i18n/en.d.ts +1 -0
- package/dist/src/consts/i18n/index.d.ts +2 -0
- package/dist/src/consts/i18n/zh_CN.d.ts +1 -0
- package/package.json +3 -1
|
@@ -19,6 +19,7 @@ export declare const KG_I18N: {
|
|
|
19
19
|
cancel: string;
|
|
20
20
|
confirm: string;
|
|
21
21
|
lookup: string;
|
|
22
|
+
button: string;
|
|
22
23
|
confirmDelete: string;
|
|
23
24
|
KgSearch: {
|
|
24
25
|
title: string;
|
|
@@ -45,6 +46,7 @@ export declare const KG_I18N: {
|
|
|
45
46
|
cancel: string;
|
|
46
47
|
confirm: string;
|
|
47
48
|
lookup: string;
|
|
49
|
+
button: string;
|
|
48
50
|
confirmDelete: string;
|
|
49
51
|
KgSearch: {
|
|
50
52
|
title: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kengic/vue",
|
|
3
|
-
"version": "0.2.1-beta.
|
|
3
|
+
"version": "0.2.1-beta.3",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"build": "rimraf dist && vue-tsc && vite build",
|
|
6
6
|
"build:dev": "rimraf dist && vue-tsc && vite build --mode development",
|
|
@@ -10,6 +10,7 @@
|
|
|
10
10
|
"publish:all:major": "npm run bump-version:major && npm run publish:all",
|
|
11
11
|
"bump-to:luotao.wms-vue3": "tsx scripts/bump-to.luotao.wms-vue3.ts",
|
|
12
12
|
"copy-to:luotao.wms-vue3": "tsx scripts/copy-to.luotao.wms-vue3.ts",
|
|
13
|
+
"build:dev && copy-to:luotao.wms-vue3": "npm run build:dev && npm run copy-to:luotao.wms-vue3",
|
|
13
14
|
"gen:apis:WMS": "kengic-pont generate-apis --config kg.config.ts --origin WMS",
|
|
14
15
|
"--------------------": "",
|
|
15
16
|
"bump-version:beta": "tsx scripts/bump.ts beta",
|
|
@@ -24,6 +25,7 @@
|
|
|
24
25
|
},
|
|
25
26
|
"dependencies": {
|
|
26
27
|
"@ant-design/icons-vue": "6.1.0",
|
|
28
|
+
"@iconify/vue": "4.1.1",
|
|
27
29
|
"ant-design-vue": "3.2.14",
|
|
28
30
|
"axios": "0.26.1",
|
|
29
31
|
"dayjs": "1.11.6",
|