@kengic/vue 0.21.4-beta.0 → 0.21.4-beta.2
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 +2806 -2798
- package/dist/src/components/KgVar/index.hooks.d.ts +2776 -108
- package/dist/src/components/KgVar/index.store.d.ts +3032 -23
- package/dist/src/components/KgVarConfig/KgVarConfig.d.ts +1 -0
- package/dist/src/components/KgVarConfig/components/KgVarConfig.Modal.d.ts +0 -1
- package/dist/src/components/KgVarConfig/components/{KgVarConfig.FormIDsModal.d.ts → KgVarConfig.SelectFormIdModal.d.ts} +5 -2
- package/dist/src/components/KgVarConfig/components/button/KgVarConfig.Modal.Button.VarButton.d.ts +0 -1
- package/dist/src/components/KgVarConfig/components/submit/KgVarConfig.Modal.Submit.VarSubmitField.d.ts +0 -1
- package/dist/src/components/KgVarConfig/components/var/KgVarConfig.Modal.Var.CreateModal.d.ts +0 -1
- package/dist/src/components/KgVarConfig/components/var/KgVarConfig.Modal.Var.VarVariableCatalog.d.ts +0 -1
- package/dist/src/components/KgVarConfig/components/var/KgVarConfig.Modal.Var.Vars.d.ts +0 -1
- package/dist/src/components/KgVarConfig/components/var/KgVarConfig.Modal.Var.d.ts +0 -1
- package/dist/src/components/KgVarConfig/index.vm.d.ts +1 -1
- package/dist/src/consts/i18n/en.d.ts +1 -1
- package/dist/src/consts/i18n/zh_CN.d.ts +1 -1
- package/package.json +2 -2
- package/dist/src/components/KgVarConfig/components/var/KgVarConfig.Modal.Var.VarVariableCatalog.data.d.ts +0 -3
- package/dist/src/components/KgVarConfig/components/var/KgVarConfig.Modal.Var.Vars.data.d.ts +0 -3
- /package/dist/src/components/KgButton/components/{KgButton.ImportTemplate.d.ts → KgButton.ExportTemplate.d.ts} +0 -0
@@ -1,2 +1,3 @@
|
|
1
|
+
import './KgVarConfig.less';
|
1
2
|
declare const _default: import("vue").DefineComponent<{}, () => JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
2
3
|
export default _default;
|
@@ -1,12 +1,15 @@
|
|
1
1
|
import { ExtractPropTypes, PropType } from 'vue';
|
2
|
-
import './KgVarConfig.FormIDsModal.less';
|
3
2
|
export declare const getProps: () => {
|
4
3
|
visible: PropType<boolean>;
|
5
4
|
'onUpdate:visible': PropType<(value: boolean) => void>;
|
6
5
|
formIDs: PropType<string[]>;
|
7
6
|
onKgOk: PropType<(formID: string) => void>;
|
8
7
|
};
|
9
|
-
export declare type
|
8
|
+
export declare type KgVarConfigSelectFormIdModalProps = Partial<ExtractPropTypes<ReturnType<typeof getProps>>>;
|
9
|
+
/**
|
10
|
+
* <p>界面标识选择弹窗.</p>
|
11
|
+
* <p>当前界面存在多个界面标识时, 需要用户手动选择要配置哪个弹窗.</p>
|
12
|
+
*/
|
10
13
|
declare const _default: import("vue").DefineComponent<{
|
11
14
|
visible: PropType<boolean>;
|
12
15
|
'onUpdate:visible': PropType<(value: boolean) => void>;
|
package/dist/src/components/KgVarConfig/components/var/KgVarConfig.Modal.Var.VarVariableCatalog.d.ts
CHANGED
@@ -1,3 +1,2 @@
|
|
1
|
-
import './KgVarConfig.Modal.Var.VarVariableCatalog.less';
|
2
1
|
declare const _default: import("vue").DefineComponent<{}, () => JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
3
2
|
export default _default;
|
@@ -1,3 +1,2 @@
|
|
1
|
-
import './KgVarConfig.Modal.Var.Vars.less';
|
2
1
|
declare const _default: import("vue").DefineComponent<{}, () => JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
3
2
|
export default _default;
|
@@ -1,3 +1,2 @@
|
|
1
|
-
import './KgVarConfig.Modal.Var.less';
|
2
1
|
declare const _default: import("vue").DefineComponent<{}, () => JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
3
2
|
export default _default;
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@kengic/vue",
|
3
|
-
"version": "0.21.4-beta.
|
3
|
+
"version": "0.21.4-beta.2",
|
4
4
|
"scripts": {
|
5
5
|
"build": "npm run switch-node-version && rimraf dist && vue-tsc && vite build",
|
6
6
|
"build:dev": "npm run switch-node-version && rimraf dist && vue-tsc && vite build --mode development",
|
@@ -17,7 +17,7 @@
|
|
17
17
|
"bump-to:luotao.wms-vue3--focus": "npm run switch-node-version && tsx scripts/bump-to.luotao.wms-vue3.focus.ts",
|
18
18
|
"copy-to:luotao.wms-vue3--focus": "npm run build:dev && tsx scripts/copy-to.luotao.wms-vue3.focus.ts",
|
19
19
|
"- ------------------------------------------------": "",
|
20
|
-
"cnpm:sync": "npm run switch-node-version && cnpm sync @kengic/vue",
|
20
|
+
"cnpm:sync": "npm run switch-node-version && npx cnpm --yes sync @kengic/vue",
|
21
21
|
"switch-node-version": "nvm use 18.16.0 && corepack enable && corepack prepare pnpm@7.30.5 --activate",
|
22
22
|
"-- -----------------------------------------------": "",
|
23
23
|
"bump-version:beta": "npm run switch-node-version && tsx scripts/bump.ts beta",
|
File without changes
|