@kengic/vue 0.21.4-beta.0 → 0.21.4-beta.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/dist/index.css +1 -1
- package/dist/kengic-vue.js +2800 -2792
- 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 +1 -1
- 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
@@ -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.1",
|
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",
|