@kengic/vue 0.5.10 → 0.5.12-beta.0
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 +1961 -1711
- package/dist/src/apis/WMS/models.d.ts +2 -0
- package/dist/src/components/KgModal/KgModal.d.ts +3 -3
- package/dist/src/components/KgModal/components/KgModal.Close.d.ts +21 -4
- package/dist/src/components/KgModal/index.vm.d.ts +1 -1
- package/dist/src/components/KgSearch/components/KgSearch.ConfigModal.Body.d.ts +12 -3
- package/dist/src/components/KgSearch/components/KgSearch.ConfigModal.VarProfileConfig.d.ts +14 -0
- package/dist/src/components/KgSearch/components/{KgSearch.ConfigModal.Profile.d.ts → KgSearch.ConfigModal.VarProfileMaster.d.ts} +14 -5
- package/dist/src/components/KgSearch/components/KgSearch.ConfigModal.d.ts +12 -3
- package/dist/src/components/KgSubmit/KgSubmit.d.ts +6 -0
- package/dist/src/components/KgSubmit/components/KgSubmit.Header.VarSubmitConfig.d.ts +26 -1
- package/dist/src/components/KgTable/components/setting/config/KgTable.Setting.ConfigModal.Body.d.ts +22 -0
- package/dist/src/components/KgTable/components/setting/config/KgTable.Setting.ConfigModal.VarGridConfig.d.ts +26 -0
- package/dist/src/components/KgTable/components/setting/config/KgTable.Setting.ConfigModal.VarGridMaster.d.ts +25 -0
- package/dist/src/components/KgTable/components/setting/{KgTable.Setting.VarGridMasterModal.d.ts → config/KgTable.Setting.ConfigModal.d.ts} +17 -2
- package/dist/src/components/KgVarConfig/components/button/KgVarConfig.Modal.Button.VarButton.d.ts +25 -0
- package/dist/src/components/KgVarConfig/components/button/KgVarConfig.Modal.Button.VarButtonConfig.d.ts +29 -0
- package/dist/src/components/KgVarConfig/components/button/KgVarConfig.Modal.Button.d.ts +21 -2
- package/dist/src/components/KgVarConfig/components/submit/KgVarConfig.Modal.Submit.VarSubmitField.d.ts +25 -0
- package/dist/src/components/KgVarConfig/components/submit/KgVarConfig.Modal.Submit.d.ts +22 -0
- package/dist/src/consts/i18n/en.d.ts +15 -7
- package/dist/src/consts/i18n/zh_CN.d.ts +15 -7
- package/dist/src/consts/index.d.ts +8 -1
- package/package.json +1 -1
- package/dist/src/components/KgSearch/components/KgSearch.ConfigModal.Config.d.ts +0 -7
- package/dist/src/components/KgTable/components/setting/KgTable.Setting.VarGridConfig.d.ts +0 -3
- /package/dist/src/components/KgSearch/components/{KgSearch.ConfigModal.Profile.data.d.ts → KgSearch.ConfigModal.VarProfileMaster.data.d.ts} +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
import './KgModal.less';
|
2
2
|
declare const _default: import("vue").DefineComponent<{
|
3
|
-
|
3
|
+
kgShowFullscreenButton: {
|
4
4
|
type: import("vue").PropType<boolean>;
|
5
5
|
default: boolean;
|
6
6
|
};
|
@@ -187,7 +187,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
187
187
|
originVNode: import("ant-design-vue/es/_util/type").VueNode;
|
188
188
|
}) => import("ant-design-vue/es/_util/type").VueNode>;
|
189
189
|
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
190
|
-
|
190
|
+
kgShowFullscreenButton: {
|
191
191
|
type: import("vue").PropType<boolean>;
|
192
192
|
default: boolean;
|
193
193
|
};
|
@@ -374,7 +374,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
374
374
|
originVNode: import("ant-design-vue/es/_util/type").VueNode;
|
375
375
|
}) => import("ant-design-vue/es/_util/type").VueNode>;
|
376
376
|
}>>, {
|
377
|
-
|
377
|
+
kgShowFullscreenButton: boolean;
|
378
378
|
kgShowCancelButton: boolean;
|
379
379
|
kgShowOkButton: boolean;
|
380
380
|
kgFullHeight: boolean;
|
@@ -1,24 +1,41 @@
|
|
1
1
|
import { PropType } from 'vue';
|
2
|
+
import './KgModal.Close.less';
|
2
3
|
export declare const getProps: () => {
|
3
4
|
/** 是否显示全屏按钮. */
|
4
|
-
|
5
|
+
kgShowFullscreenButton: {
|
6
|
+
type: PropType<boolean>;
|
7
|
+
default: boolean;
|
8
|
+
};
|
9
|
+
/** 是否显示关闭按钮. */
|
10
|
+
kgShowCloseButton: {
|
5
11
|
type: PropType<boolean>;
|
6
12
|
default: boolean;
|
7
13
|
};
|
8
14
|
};
|
9
15
|
declare const _default: import("vue").DefineComponent<{
|
10
16
|
/** 是否显示全屏按钮. */
|
11
|
-
|
17
|
+
kgShowFullscreenButton: {
|
18
|
+
type: PropType<boolean>;
|
19
|
+
default: boolean;
|
20
|
+
};
|
21
|
+
/** 是否显示关闭按钮. */
|
22
|
+
kgShowCloseButton: {
|
12
23
|
type: PropType<boolean>;
|
13
24
|
default: boolean;
|
14
25
|
};
|
15
26
|
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
16
27
|
/** 是否显示全屏按钮. */
|
17
|
-
|
28
|
+
kgShowFullscreenButton: {
|
29
|
+
type: PropType<boolean>;
|
30
|
+
default: boolean;
|
31
|
+
};
|
32
|
+
/** 是否显示关闭按钮. */
|
33
|
+
kgShowCloseButton: {
|
18
34
|
type: PropType<boolean>;
|
19
35
|
default: boolean;
|
20
36
|
};
|
21
37
|
}>>, {
|
22
|
-
|
38
|
+
kgShowFullscreenButton: boolean;
|
39
|
+
kgShowCloseButton: boolean;
|
23
40
|
}>;
|
24
41
|
export default _default;
|
@@ -1,13 +1,22 @@
|
|
1
1
|
import { PropType } from 'vue';
|
2
2
|
export declare const getProps: () => {
|
3
3
|
/** 主页面的页面标识. */
|
4
|
-
hostFormID:
|
4
|
+
hostFormID: {
|
5
|
+
type: PropType<string>;
|
6
|
+
required: boolean;
|
7
|
+
};
|
5
8
|
};
|
6
9
|
declare const _default: import("vue").DefineComponent<{
|
7
10
|
/** 主页面的页面标识. */
|
8
|
-
hostFormID:
|
11
|
+
hostFormID: {
|
12
|
+
type: PropType<string>;
|
13
|
+
required: boolean;
|
14
|
+
};
|
9
15
|
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
10
16
|
/** 主页面的页面标识. */
|
11
|
-
hostFormID:
|
17
|
+
hostFormID: {
|
18
|
+
type: PropType<string>;
|
19
|
+
required: boolean;
|
20
|
+
};
|
12
21
|
}>>, {}>;
|
13
22
|
export default _default;
|
@@ -0,0 +1,14 @@
|
|
1
|
+
import { ExtractPropTypes, PropType } from 'vue';
|
2
|
+
export declare const FORM_ID__VAR_PROFILE_CONFIG = "kg-search.VarProfileConfig";
|
3
|
+
export declare const getProps: () => {
|
4
|
+
onKgClose: PropType<() => void>;
|
5
|
+
};
|
6
|
+
export declare type IKgSearchConfigModalVarProfileConfigProps = Partial<ExtractPropTypes<ReturnType<typeof getProps>>>;
|
7
|
+
declare const _default: import("vue").DefineComponent<{
|
8
|
+
onKgClose: PropType<() => void>;
|
9
|
+
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "kgClose"[], "kgClose", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<ExtractPropTypes<{
|
10
|
+
onKgClose: PropType<() => void>;
|
11
|
+
}>> & {
|
12
|
+
onKgClose?: ((...args: any[]) => any) | undefined;
|
13
|
+
}, {}>;
|
14
|
+
export default _default;
|
@@ -1,15 +1,24 @@
|
|
1
1
|
import { ExtractPropTypes, PropType } from 'vue';
|
2
|
-
import './KgSearch.ConfigModal.
|
2
|
+
import './KgSearch.ConfigModal.VarProfileMaster.less';
|
3
3
|
export declare const getProps: () => {
|
4
4
|
/** 主页面的页面标识. */
|
5
|
-
hostFormID:
|
5
|
+
hostFormID: {
|
6
|
+
type: PropType<string>;
|
7
|
+
required: boolean;
|
8
|
+
};
|
6
9
|
};
|
7
|
-
export declare type
|
10
|
+
export declare type IKgSearchConfigModalVarProfileMasterProps = Partial<ExtractPropTypes<ReturnType<typeof getProps>>>;
|
8
11
|
declare const _default: import("vue").DefineComponent<{
|
9
12
|
/** 主页面的页面标识. */
|
10
|
-
hostFormID:
|
13
|
+
hostFormID: {
|
14
|
+
type: PropType<string>;
|
15
|
+
required: boolean;
|
16
|
+
};
|
11
17
|
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<ExtractPropTypes<{
|
12
18
|
/** 主页面的页面标识. */
|
13
|
-
hostFormID:
|
19
|
+
hostFormID: {
|
20
|
+
type: PropType<string>;
|
21
|
+
required: boolean;
|
22
|
+
};
|
14
23
|
}>>, {}>;
|
15
24
|
export default _default;
|
@@ -3,19 +3,28 @@ export declare const getProps: () => {
|
|
3
3
|
visible: PropType<boolean>;
|
4
4
|
'onUpdate:visible': PropType<(value: boolean) => void>;
|
5
5
|
/** 主页面的页面标识. */
|
6
|
-
hostFormID:
|
6
|
+
hostFormID: {
|
7
|
+
type: PropType<string>;
|
8
|
+
required: boolean;
|
9
|
+
};
|
7
10
|
};
|
8
11
|
export declare type IKgSearchConfigModalProps = Partial<ExtractPropTypes<ReturnType<typeof getProps>>>;
|
9
12
|
declare const _default: import("vue").DefineComponent<{
|
10
13
|
visible: PropType<boolean>;
|
11
14
|
'onUpdate:visible': PropType<(value: boolean) => void>;
|
12
15
|
/** 主页面的页面标识. */
|
13
|
-
hostFormID:
|
16
|
+
hostFormID: {
|
17
|
+
type: PropType<string>;
|
18
|
+
required: boolean;
|
19
|
+
};
|
14
20
|
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:visible"[], "update:visible", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<ExtractPropTypes<{
|
15
21
|
visible: PropType<boolean>;
|
16
22
|
'onUpdate:visible': PropType<(value: boolean) => void>;
|
17
23
|
/** 主页面的页面标识. */
|
18
|
-
hostFormID:
|
24
|
+
hostFormID: {
|
25
|
+
type: PropType<string>;
|
26
|
+
required: boolean;
|
27
|
+
};
|
19
28
|
}>> & {
|
20
29
|
"onUpdate:visible"?: ((...args: any[]) => any) | undefined;
|
21
30
|
}, {}>;
|
@@ -1,6 +1,8 @@
|
|
1
1
|
import { ExtractPropTypes, PropType } from 'vue';
|
2
2
|
import './KgSubmit.less';
|
3
3
|
export declare const getProps: () => {
|
4
|
+
/** 样式. */
|
5
|
+
kgClass: PropType<string>;
|
4
6
|
/**
|
5
7
|
* 是否显示头部右侧的设置按钮.
|
6
8
|
* @default true
|
@@ -12,6 +14,8 @@ export declare const getProps: () => {
|
|
12
14
|
};
|
13
15
|
export declare type IKgSubmitProps = Partial<ExtractPropTypes<ReturnType<typeof getProps>>>;
|
14
16
|
declare const _default: import("vue").DefineComponent<{
|
17
|
+
/** 样式. */
|
18
|
+
kgClass: PropType<string>;
|
15
19
|
/**
|
16
20
|
* 是否显示头部右侧的设置按钮.
|
17
21
|
* @default true
|
@@ -21,6 +25,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
21
25
|
default: boolean;
|
22
26
|
};
|
23
27
|
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<ExtractPropTypes<{
|
28
|
+
/** 样式. */
|
29
|
+
kgClass: PropType<string>;
|
24
30
|
/**
|
25
31
|
* 是否显示头部右侧的设置按钮.
|
26
32
|
* @default true
|
@@ -1,3 +1,28 @@
|
|
1
|
+
import { PropType } from 'vue';
|
1
2
|
export declare const FORM_ID__VAR_SUBMIT_CONFIG = "kg-submit.VarSubmitConfig";
|
2
|
-
declare const
|
3
|
+
export declare const getProps: () => {
|
4
|
+
/** 主页面的页面标识. */
|
5
|
+
hostFormID: {
|
6
|
+
type: PropType<string>;
|
7
|
+
required: boolean;
|
8
|
+
};
|
9
|
+
onKgClose: PropType<() => void>;
|
10
|
+
};
|
11
|
+
declare const _default: import("vue").DefineComponent<{
|
12
|
+
/** 主页面的页面标识. */
|
13
|
+
hostFormID: {
|
14
|
+
type: PropType<string>;
|
15
|
+
required: boolean;
|
16
|
+
};
|
17
|
+
onKgClose: PropType<() => void>;
|
18
|
+
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "kgClose"[], "kgClose", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
19
|
+
/** 主页面的页面标识. */
|
20
|
+
hostFormID: {
|
21
|
+
type: PropType<string>;
|
22
|
+
required: boolean;
|
23
|
+
};
|
24
|
+
onKgClose: PropType<() => void>;
|
25
|
+
}>> & {
|
26
|
+
onKgClose?: ((...args: any[]) => any) | undefined;
|
27
|
+
}, {}>;
|
3
28
|
export default _default;
|
package/dist/src/components/KgTable/components/setting/config/KgTable.Setting.ConfigModal.Body.d.ts
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
import { PropType } from 'vue';
|
2
|
+
export declare const getProps: () => {
|
3
|
+
/** 主页面的页面标识. */
|
4
|
+
hostFormID: {
|
5
|
+
type: PropType<string>;
|
6
|
+
required: boolean;
|
7
|
+
};
|
8
|
+
};
|
9
|
+
declare const _default: import("vue").DefineComponent<{
|
10
|
+
/** 主页面的页面标识. */
|
11
|
+
hostFormID: {
|
12
|
+
type: PropType<string>;
|
13
|
+
required: boolean;
|
14
|
+
};
|
15
|
+
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
16
|
+
/** 主页面的页面标识. */
|
17
|
+
hostFormID: {
|
18
|
+
type: PropType<string>;
|
19
|
+
required: boolean;
|
20
|
+
};
|
21
|
+
}>>, {}>;
|
22
|
+
export default _default;
|
@@ -0,0 +1,26 @@
|
|
1
|
+
import { ExtractPropTypes, PropType } from 'vue';
|
2
|
+
export declare const FORM_ID__VAR_GRID_CONFIG = "kg-table.VarGridConfig";
|
3
|
+
export declare const getProps: () => {
|
4
|
+
hostFormID: {
|
5
|
+
type: PropType<string>;
|
6
|
+
required: boolean;
|
7
|
+
};
|
8
|
+
onKgClose: PropType<() => void>;
|
9
|
+
};
|
10
|
+
export declare type IKgTableSettingConfigModalVarGridConfigProps = Partial<ExtractPropTypes<ReturnType<typeof getProps>>>;
|
11
|
+
declare const _default: import("vue").DefineComponent<{
|
12
|
+
hostFormID: {
|
13
|
+
type: PropType<string>;
|
14
|
+
required: boolean;
|
15
|
+
};
|
16
|
+
onKgClose: PropType<() => void>;
|
17
|
+
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "kgClose"[], "kgClose", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<ExtractPropTypes<{
|
18
|
+
hostFormID: {
|
19
|
+
type: PropType<string>;
|
20
|
+
required: boolean;
|
21
|
+
};
|
22
|
+
onKgClose: PropType<() => void>;
|
23
|
+
}>> & {
|
24
|
+
onKgClose?: ((...args: any[]) => any) | undefined;
|
25
|
+
}, {}>;
|
26
|
+
export default _default;
|
@@ -0,0 +1,25 @@
|
|
1
|
+
import { ExtractPropTypes, PropType } from 'vue';
|
2
|
+
import './KgTable.Setting.ConfigModal.VarGridMaster.less';
|
3
|
+
export declare const FORM_ID__VAR_GRID_MASTER = "kg-table.VarGridMaster";
|
4
|
+
export declare const getProps: () => {
|
5
|
+
/** 主页面的页面标识. */
|
6
|
+
hostFormID: {
|
7
|
+
type: PropType<string>;
|
8
|
+
required: boolean;
|
9
|
+
};
|
10
|
+
};
|
11
|
+
export declare type IKgTableSettingConfigModalVarGridMasterProps = Partial<ExtractPropTypes<ReturnType<typeof getProps>>>;
|
12
|
+
declare const _default: import("vue").DefineComponent<{
|
13
|
+
/** 主页面的页面标识. */
|
14
|
+
hostFormID: {
|
15
|
+
type: PropType<string>;
|
16
|
+
required: boolean;
|
17
|
+
};
|
18
|
+
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<ExtractPropTypes<{
|
19
|
+
/** 主页面的页面标识. */
|
20
|
+
hostFormID: {
|
21
|
+
type: PropType<string>;
|
22
|
+
required: boolean;
|
23
|
+
};
|
24
|
+
}>>, {}>;
|
25
|
+
export default _default;
|
@@ -1,16 +1,31 @@
|
|
1
1
|
import { ExtractPropTypes, PropType } from 'vue';
|
2
|
-
import '
|
2
|
+
import '../KgTable.Setting.less';
|
3
3
|
export declare const getProps: () => {
|
4
4
|
visible: PropType<boolean>;
|
5
5
|
'onUpdate:visible': PropType<(value: boolean) => void>;
|
6
|
+
/** 主页面的页面标识. */
|
7
|
+
hostFormID: {
|
8
|
+
type: PropType<string>;
|
9
|
+
required: boolean;
|
10
|
+
};
|
6
11
|
};
|
7
|
-
export declare type
|
12
|
+
export declare type IKgTableSettingConfigModalProps = Partial<ExtractPropTypes<ReturnType<typeof getProps>>>;
|
8
13
|
declare const _default: import("vue").DefineComponent<{
|
9
14
|
visible: PropType<boolean>;
|
10
15
|
'onUpdate:visible': PropType<(value: boolean) => void>;
|
16
|
+
/** 主页面的页面标识. */
|
17
|
+
hostFormID: {
|
18
|
+
type: PropType<string>;
|
19
|
+
required: boolean;
|
20
|
+
};
|
11
21
|
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:visible"[], "update:visible", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<ExtractPropTypes<{
|
12
22
|
visible: PropType<boolean>;
|
13
23
|
'onUpdate:visible': PropType<(value: boolean) => void>;
|
24
|
+
/** 主页面的页面标识. */
|
25
|
+
hostFormID: {
|
26
|
+
type: PropType<string>;
|
27
|
+
required: boolean;
|
28
|
+
};
|
14
29
|
}>> & {
|
15
30
|
"onUpdate:visible"?: ((...args: any[]) => any) | undefined;
|
16
31
|
}, {}>;
|
package/dist/src/components/KgVarConfig/components/button/KgVarConfig.Modal.Button.VarButton.d.ts
ADDED
@@ -0,0 +1,25 @@
|
|
1
|
+
import { ExtractPropTypes, PropType } from 'vue';
|
2
|
+
import './KgVarConfig.Modal.Button.VarButton.less';
|
3
|
+
export declare const FORM_ID__VAR_BUTTON = "kg-button.VarButton";
|
4
|
+
export declare const getProps: () => {
|
5
|
+
/** 主页面的页面标识. */
|
6
|
+
hostFormID: {
|
7
|
+
type: PropType<string>;
|
8
|
+
required: boolean;
|
9
|
+
};
|
10
|
+
};
|
11
|
+
export declare type IKgVarConfigModalButtonVarButtonProps = Partial<ExtractPropTypes<ReturnType<typeof getProps>>>;
|
12
|
+
declare const _default: import("vue").DefineComponent<{
|
13
|
+
/** 主页面的页面标识. */
|
14
|
+
hostFormID: {
|
15
|
+
type: PropType<string>;
|
16
|
+
required: boolean;
|
17
|
+
};
|
18
|
+
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<ExtractPropTypes<{
|
19
|
+
/** 主页面的页面标识. */
|
20
|
+
hostFormID: {
|
21
|
+
type: PropType<string>;
|
22
|
+
required: boolean;
|
23
|
+
};
|
24
|
+
}>>, {}>;
|
25
|
+
export default _default;
|
@@ -0,0 +1,29 @@
|
|
1
|
+
import { ExtractPropTypes, PropType } from 'vue';
|
2
|
+
export declare const FORM_ID__VAR_BUTTON_CONFIG = "kg-button.VarButtonConfig";
|
3
|
+
export declare const getProps: () => {
|
4
|
+
/** 主页面的页面标识. */
|
5
|
+
hostFormID: {
|
6
|
+
type: PropType<string>;
|
7
|
+
required: boolean;
|
8
|
+
};
|
9
|
+
onKgClose: PropType<() => void>;
|
10
|
+
};
|
11
|
+
export declare type IKgVarConfigModalButtonVarButtonConfigProps = Partial<ExtractPropTypes<ReturnType<typeof getProps>>>;
|
12
|
+
declare const _default: import("vue").DefineComponent<{
|
13
|
+
/** 主页面的页面标识. */
|
14
|
+
hostFormID: {
|
15
|
+
type: PropType<string>;
|
16
|
+
required: boolean;
|
17
|
+
};
|
18
|
+
onKgClose: PropType<() => void>;
|
19
|
+
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "kgClose"[], "kgClose", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<ExtractPropTypes<{
|
20
|
+
/** 主页面的页面标识. */
|
21
|
+
hostFormID: {
|
22
|
+
type: PropType<string>;
|
23
|
+
required: boolean;
|
24
|
+
};
|
25
|
+
onKgClose: PropType<() => void>;
|
26
|
+
}>> & {
|
27
|
+
onKgClose?: ((...args: any[]) => any) | undefined;
|
28
|
+
}, {}>;
|
29
|
+
export default _default;
|
@@ -1,3 +1,22 @@
|
|
1
|
-
import '
|
2
|
-
declare const
|
1
|
+
import { PropType } from 'vue';
|
2
|
+
export declare const getProps: () => {
|
3
|
+
/** 主页面的页面标识. */
|
4
|
+
hostFormID: {
|
5
|
+
type: PropType<string>;
|
6
|
+
required: boolean;
|
7
|
+
};
|
8
|
+
};
|
9
|
+
declare const _default: import("vue").DefineComponent<{
|
10
|
+
/** 主页面的页面标识. */
|
11
|
+
hostFormID: {
|
12
|
+
type: PropType<string>;
|
13
|
+
required: boolean;
|
14
|
+
};
|
15
|
+
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
16
|
+
/** 主页面的页面标识. */
|
17
|
+
hostFormID: {
|
18
|
+
type: PropType<string>;
|
19
|
+
required: boolean;
|
20
|
+
};
|
21
|
+
}>>, {}>;
|
3
22
|
export default _default;
|
@@ -0,0 +1,25 @@
|
|
1
|
+
import { ExtractPropTypes, PropType } from 'vue';
|
2
|
+
import './KgVarConfig.Modal.Submit.VarSubmitField.less';
|
3
|
+
export declare const FORM_ID__VAR_SUBMIT_FIELD = "kg-submit.VarSubmitField";
|
4
|
+
export declare const getProps: () => {
|
5
|
+
/** 主页面的页面标识. */
|
6
|
+
hostFormID: {
|
7
|
+
type: PropType<string>;
|
8
|
+
required: boolean;
|
9
|
+
};
|
10
|
+
};
|
11
|
+
export declare type IKgVarConfigModalSubmitVarSubmitFieldProps = Partial<ExtractPropTypes<ReturnType<typeof getProps>>>;
|
12
|
+
declare const _default: import("vue").DefineComponent<{
|
13
|
+
/** 主页面的页面标识. */
|
14
|
+
hostFormID: {
|
15
|
+
type: PropType<string>;
|
16
|
+
required: boolean;
|
17
|
+
};
|
18
|
+
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<ExtractPropTypes<{
|
19
|
+
/** 主页面的页面标识. */
|
20
|
+
hostFormID: {
|
21
|
+
type: PropType<string>;
|
22
|
+
required: boolean;
|
23
|
+
};
|
24
|
+
}>>, {}>;
|
25
|
+
export default _default;
|
@@ -0,0 +1,22 @@
|
|
1
|
+
import { PropType } from 'vue';
|
2
|
+
export declare const getProps: () => {
|
3
|
+
/** 主页面的页面标识. */
|
4
|
+
hostFormID: {
|
5
|
+
type: PropType<string>;
|
6
|
+
required: boolean;
|
7
|
+
};
|
8
|
+
};
|
9
|
+
declare const _default: import("vue").DefineComponent<{
|
10
|
+
/** 主页面的页面标识. */
|
11
|
+
hostFormID: {
|
12
|
+
type: PropType<string>;
|
13
|
+
required: boolean;
|
14
|
+
};
|
15
|
+
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
16
|
+
/** 主页面的页面标识. */
|
17
|
+
hostFormID: {
|
18
|
+
type: PropType<string>;
|
19
|
+
required: boolean;
|
20
|
+
};
|
21
|
+
}>>, {}>;
|
22
|
+
export default _default;
|
@@ -4,12 +4,12 @@ declare const _default: {
|
|
4
4
|
title: string;
|
5
5
|
};
|
6
6
|
KgSearchConfigModal: {
|
7
|
+
VarProfileConfig: string;
|
8
|
+
VarProfileMaster: string;
|
7
9
|
canNotUpdateSystemVarProfileMaster: string;
|
8
10
|
close: string;
|
9
|
-
config: string;
|
10
11
|
formTitle: string;
|
11
12
|
pleaseSelectVarProfileMaster: string;
|
12
|
-
profile: string;
|
13
13
|
};
|
14
14
|
KgSubmitHeaderVarSubmitConfig: {
|
15
15
|
invalidWidthForSpan: string;
|
@@ -17,8 +17,7 @@ declare const _default: {
|
|
17
17
|
KgTable: {
|
18
18
|
canNotUpdateSystemVarGridMaster: string;
|
19
19
|
column: string;
|
20
|
-
|
21
|
-
configVarGridMasters: string;
|
20
|
+
config: string;
|
22
21
|
emptyText: string;
|
23
22
|
saveVarGridMaster: string;
|
24
23
|
saveVarGridMasterAs: string;
|
@@ -32,6 +31,10 @@ declare const _default: {
|
|
32
31
|
locate: string;
|
33
32
|
row: string;
|
34
33
|
};
|
34
|
+
KgTableSettingConfigModal: {
|
35
|
+
VarGridConfig: string;
|
36
|
+
VarGridMaster: string;
|
37
|
+
};
|
35
38
|
KgTableSettingGridConfigModal: {
|
36
39
|
title: string;
|
37
40
|
};
|
@@ -44,9 +47,6 @@ declare const _default: {
|
|
44
47
|
invalidPageSizeOption: string;
|
45
48
|
invalidPageSizeOptions: string;
|
46
49
|
};
|
47
|
-
KgTableSettingVarGridMasterModal: {
|
48
|
-
title: string;
|
49
|
-
};
|
50
50
|
KgVarConfig: {
|
51
51
|
action: string;
|
52
52
|
allForm: string;
|
@@ -79,6 +79,14 @@ declare const _default: {
|
|
79
79
|
KgVarConfigFormIDsModal: {
|
80
80
|
title: string;
|
81
81
|
};
|
82
|
+
KgVarConfigModalButton: {
|
83
|
+
VarButton: string;
|
84
|
+
VarButtonConfig: string;
|
85
|
+
};
|
86
|
+
KgVarConfigModalSubmit: {
|
87
|
+
VarSubmitConfig: string;
|
88
|
+
VarSubmitField: string;
|
89
|
+
};
|
82
90
|
KgWarehouse: {
|
83
91
|
reloadMessage: string;
|
84
92
|
selectWarehouse: string;
|
@@ -4,12 +4,12 @@ declare const _default: {
|
|
4
4
|
title: string;
|
5
5
|
};
|
6
6
|
KgSearchConfigModal: {
|
7
|
+
VarProfileConfig: string;
|
8
|
+
VarProfileMaster: string;
|
7
9
|
canNotUpdateSystemVarProfileMaster: string;
|
8
10
|
close: string;
|
9
|
-
config: string;
|
10
11
|
formTitle: string;
|
11
12
|
pleaseSelectVarProfileMaster: string;
|
12
|
-
profile: string;
|
13
13
|
};
|
14
14
|
KgSubmitHeaderVarSubmitConfig: {
|
15
15
|
invalidWidthForSpan: string;
|
@@ -17,8 +17,7 @@ declare const _default: {
|
|
17
17
|
KgTable: {
|
18
18
|
canNotUpdateSystemVarGridMaster: string;
|
19
19
|
column: string;
|
20
|
-
|
21
|
-
configVarGridMasters: string;
|
20
|
+
config: string;
|
22
21
|
emptyText: string;
|
23
22
|
saveVarGridMaster: string;
|
24
23
|
saveVarGridMasterAs: string;
|
@@ -32,6 +31,10 @@ declare const _default: {
|
|
32
31
|
locate: string;
|
33
32
|
row: string;
|
34
33
|
};
|
34
|
+
KgTableSettingConfigModal: {
|
35
|
+
VarGridConfig: string;
|
36
|
+
VarGridMaster: string;
|
37
|
+
};
|
35
38
|
KgTableSettingGridConfigModal: {
|
36
39
|
title: string;
|
37
40
|
};
|
@@ -44,9 +47,6 @@ declare const _default: {
|
|
44
47
|
invalidPageSizeOption: string;
|
45
48
|
invalidPageSizeOptions: string;
|
46
49
|
};
|
47
|
-
KgTableSettingVarGridMasterModal: {
|
48
|
-
title: string;
|
49
|
-
};
|
50
50
|
KgVarConfig: {
|
51
51
|
action: string;
|
52
52
|
allForm: string;
|
@@ -78,6 +78,14 @@ declare const _default: {
|
|
78
78
|
KgVarConfigFormIDsModal: {
|
79
79
|
title: string;
|
80
80
|
};
|
81
|
+
KgVarConfigModalButton: {
|
82
|
+
VarButton: string;
|
83
|
+
VarButtonConfig: string;
|
84
|
+
};
|
85
|
+
KgVarConfigModalSubmit: {
|
86
|
+
VarSubmitConfig: string;
|
87
|
+
VarSubmitField: string;
|
88
|
+
};
|
81
89
|
KgWarehouse: {
|
82
90
|
reloadMessage: string;
|
83
91
|
selectWarehouse: string;
|
@@ -95,13 +95,20 @@ export declare const enum KG_BUTTON_COLOR {
|
|
95
95
|
/** 警告. */
|
96
96
|
WARN = "WARN"
|
97
97
|
}
|
98
|
-
/**
|
98
|
+
/** 按钮显示方式. */
|
99
99
|
export declare const enum KG_BUTTON_DISPLAY_TYPE {
|
100
100
|
/** 按钮依次排列在一横排. */
|
101
101
|
DEFAULT = "DEFAULT",
|
102
102
|
/** 显示为下拉的菜单列表. */
|
103
103
|
SELECT = "SELECT"
|
104
104
|
}
|
105
|
+
/** 表单显示方式. */
|
106
|
+
export declare const enum KG_SUBMIT_DISPLAY_TYPE {
|
107
|
+
/** 弹窗. */
|
108
|
+
MODAL = "MODAL",
|
109
|
+
/** 抽屉. */
|
110
|
+
DRAWER = "DRAWER"
|
111
|
+
}
|
105
112
|
/** 定制级别. */
|
106
113
|
export declare const enum KG_CUSTOM_LEVEL {
|
107
114
|
/** 系统. */
|