@kengic/vue 0.30.1-beta.6 → 0.30.1-beta.8
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/align-left-outlined.579b01c6.mjs +8 -0
- package/dist/caret-down-outlined.c0564a3f.mjs +8 -0
- package/dist/caret-left-outlined.35b1d7d1.mjs +8 -0
- package/dist/caret-up-outlined.81b559ad.mjs +8 -0
- package/dist/double-right-outlined.f057a6b2.mjs +8 -0
- package/dist/eye-invisible-outlined.5f8d6151.mjs +8 -0
- package/dist/holder-outlined.9e698750.mjs +8 -0
- package/dist/index.css +1 -1
- package/dist/kengic-vue.js +20544 -20690
- package/dist/loading-outlined.13a15197.mjs +8 -0
- package/dist/project/build/utils.ts +20 -15
- package/dist/src/component/KgForm.Item/components/KgForm.Item.Select.d.ts +2 -2
- package/dist/src/config/config.store.d.ts +5 -1
- package/package.json +4 -3
@@ -0,0 +1,8 @@
|
|
1
|
+
const c = {
|
2
|
+
width: 1024,
|
3
|
+
height: 1024,
|
4
|
+
body: '<path fill="currentColor" d="M988 548c-19.9 0-36-16.1-36-36c0-59.4-11.6-117-34.6-171.3a440.45 440.45 0 0 0-94.3-139.9a437.71 437.71 0 0 0-139.9-94.3C629 83.6 571.4 72 512 72c-19.9 0-36-16.1-36-36s16.1-36 36-36c69.1 0 136.2 13.5 199.3 40.3C772.3 66 827 103 874 150c47 47 83.9 101.8 109.7 162.7c26.7 63.1 40.2 130.2 40.2 199.3c.1 19.9-16 36-35.9 36z"/>'
|
5
|
+
};
|
6
|
+
export {
|
7
|
+
c as default
|
8
|
+
};
|
@@ -19,30 +19,35 @@ export function isReportMode(): boolean {
|
|
19
19
|
|
20
20
|
// Read all environment variable configuration files to process.env
|
21
21
|
export function wrapperEnv(envConf: Recordable): ViteEnv {
|
22
|
-
const
|
22
|
+
const result: any = {};
|
23
23
|
|
24
|
-
for (const
|
25
|
-
let
|
26
|
-
realName = realName === 'true' ? true : realName === 'false' ? false : realName;
|
24
|
+
for (const key of Object.keys(envConf)) {
|
25
|
+
let value = envConf[key].replace(/\\n/g, '\n');
|
27
26
|
|
28
|
-
|
29
|
-
|
27
|
+
value = value === 'true' ? true : value === 'false' ? false : value;
|
28
|
+
|
29
|
+
if (key === 'VITE_PORT') {
|
30
|
+
value = Number(value);
|
30
31
|
}
|
31
|
-
|
32
|
+
|
33
|
+
if (key === 'VITE_PROXY' && value) {
|
32
34
|
try {
|
33
|
-
|
35
|
+
value = JSON.parse(value.replace(/'/g, '"'));
|
34
36
|
} catch (error) {
|
35
|
-
|
37
|
+
value = '';
|
36
38
|
}
|
37
39
|
}
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
process.env[
|
40
|
+
|
41
|
+
result[key] = value;
|
42
|
+
|
43
|
+
if (typeof value === 'string') {
|
44
|
+
process.env[key] = value;
|
45
|
+
} else if (typeof value === 'object') {
|
46
|
+
process.env[key] = JSON.stringify(value);
|
43
47
|
}
|
44
48
|
}
|
45
|
-
|
49
|
+
|
50
|
+
return result;
|
46
51
|
}
|
47
52
|
|
48
53
|
/**
|
@@ -28,7 +28,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
28
28
|
default: undefined;
|
29
29
|
};
|
30
30
|
kgPicker: {
|
31
|
-
type: import("vue").PropType<import("ant-design-vue/lib/vc-picker/interface").PickerMode>;
|
31
|
+
type: import("vue").PropType<import("ant-design-vue/lib/vc-picker/interface").PickerMode>;
|
32
32
|
default: undefined;
|
33
33
|
};
|
34
34
|
kgRules: import("vue").PropType<import("ant-design-vue/es/form").RuleObject[]>;
|
@@ -68,7 +68,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
68
68
|
default: undefined;
|
69
69
|
};
|
70
70
|
kgPicker: {
|
71
|
-
type: import("vue").PropType<import("ant-design-vue/lib/vc-picker/interface").PickerMode>;
|
71
|
+
type: import("vue").PropType<import("ant-design-vue/lib/vc-picker/interface").PickerMode>;
|
72
72
|
default: undefined;
|
73
73
|
};
|
74
74
|
kgRules: import("vue").PropType<import("ant-design-vue/es/form").RuleObject[]>;
|
@@ -296,8 +296,12 @@ export interface IUseKgStoreActions {
|
|
296
296
|
setUseUserStore(useUserStore: StoreDefinition<any, any, any, any>): void;
|
297
297
|
/**
|
298
298
|
* 翻译.
|
299
|
+
*
|
300
|
+
* @param key 键.
|
301
|
+
* @param param 参数对象.
|
302
|
+
* @param defaultValue 默认翻译结果.
|
299
303
|
*/
|
300
|
-
t:
|
304
|
+
t(key: string | null | undefined, param?: Record<string, any> | null | undefined, defaultValue?: string | null | undefined): string;
|
301
305
|
}
|
302
306
|
export declare const useKgStore: KgStoreDefinition<IUseKgStoreGetters, IUseKgStoreActions>;
|
303
307
|
export {};
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@kengic/vue",
|
3
|
-
"version": "0.30.1-beta.
|
3
|
+
"version": "0.30.1-beta.8",
|
4
4
|
"scripts": {
|
5
5
|
"build": "npm run use-node && rimraf dist && vue-tsc && vite build",
|
6
6
|
"build:dev": "npm run use-node && rimraf dist && vue-tsc && vite build --mode development",
|
@@ -15,6 +15,7 @@
|
|
15
15
|
"copy-to:luotao:smartfactory.product.wms.wms--project-kengic-factory": "npm run use-node && npm run build:dev && tsx script/copy-to.luotao.smartfactory.product.wms.wms--project-kengic-factory.ts",
|
16
16
|
"bump-to:luotao:smartfactory.product.wms.wms--project-kengic-factory": "npm run use-node && tsx script/bump-to.luotao.smartfactory.product.wms.wms--project-kengic-factory.ts",
|
17
17
|
"copy-to:luotao:smartfactory.product.wms.wms--project-kengic-factory-test": "npm run use-node && npm run build:dev && tsx script/copy-to.luotao.smartfactory.product.wms.wms--project-kengic-factory-test.ts",
|
18
|
+
"copy-to:luotao:smartfactory.product.simulator--main": "npm run use-node && npm run build:dev && tsx script/copy-to.luotao.smartfactory.product.simulator--main.ts",
|
18
19
|
"copy-to:luotao:smartfactory.tyre.haohua.basic.was-java--PcrTireWeb": "npm run use-node && npm run build:dev && tsx script/copy-to.luotao.smartfactory.tyre.haohua.basic.was-java--PcrTireWeb.ts",
|
19
20
|
"----- --------------------------------------------": "更新组件库的版本",
|
20
21
|
"bump:major": "npm run use-node && tsx script/bump.ts major",
|
@@ -34,7 +35,6 @@
|
|
34
35
|
},
|
35
36
|
"dependencies": {
|
36
37
|
"@ant-design/colors": "6.0.0",
|
37
|
-
"@ant-design/icons-vue": "6.1.0",
|
38
38
|
"@iconify-icons/akar-icons": "1.2.19",
|
39
39
|
"@iconify-icons/ant-design": "1.2.7",
|
40
40
|
"@iconify-icons/fluent-mdl2": "1.2.1",
|
@@ -116,7 +116,8 @@
|
|
116
116
|
"types": "./dist/src/index.d.ts",
|
117
117
|
"exports": {
|
118
118
|
".": {
|
119
|
-
"import": "./dist/kengic-vue.js"
|
119
|
+
"import": "./dist/kengic-vue.js",
|
120
|
+
"types": "./dist/src/index.d.ts"
|
120
121
|
},
|
121
122
|
"./dist/index.css": "./dist/index.css"
|
122
123
|
},
|