@kengic/vue 0.5.8 → 0.5.9
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 +1122 -958
- package/dist/src/components/KgForm.Item/KgForm.Item.d.ts +2 -0
- package/dist/src/components/KgForm.Item/components/KgForm.Item.Date.d.ts +2 -0
- package/dist/src/components/KgForm.Item/components/KgForm.Item.Input.d.ts +2 -0
- package/dist/src/components/KgForm.Item/components/KgForm.Item.InputNumber.d.ts +2 -0
- package/dist/src/components/KgForm.Item/components/KgForm.Item.Select.d.ts +6 -4
- package/dist/src/components/KgForm.Item/components/KgForm.Item.Switch.d.ts +2 -0
- package/dist/src/components/KgForm.Item/index.vm.d.ts +2 -0
- package/dist/src/components/KgSearch/components/KgSearch.ConfigModal.Body.d.ts +13 -0
- package/dist/src/components/KgSubmit/index.hooks.d.ts +1 -1
- package/dist/src/components/KgSubmit/index.store.d.ts +8 -3
- package/dist/src/config/index.hooks.d.ts +4 -1
- package/dist/src/config/index.store.d.ts +12 -3
- package/dist/src/consts/i18n/en.d.ts +11 -2
- package/dist/src/consts/i18n/zh_CN.d.ts +11 -2
- package/package.json +1 -1
|
@@ -33,6 +33,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
33
33
|
type: import("vue").PropType<boolean | import("ant-design-vue/es/vc-picker/panels/TimePanel").SharedTimeProps<import("dayjs").Dayjs>>;
|
|
34
34
|
default: undefined;
|
|
35
35
|
};
|
|
36
|
+
kgRules: import("vue").PropType<import("ant-design-vue/es/form").RuleObject[]>;
|
|
36
37
|
onKgBeforeLookupOk: import("vue").PropType<(value: any, record: IKgTableRecord<{}> | IKgTableRecord<{}>[]) => boolean>;
|
|
37
38
|
value: import("vue").PropType<import("./index.vm").IKgFormItemValue>;
|
|
38
39
|
'onUpdate:value': import("vue").PropType<(value: import("./index.vm").IKgFormItemValue | null) => void>;
|
|
@@ -71,6 +72,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
71
72
|
type: import("vue").PropType<boolean | import("ant-design-vue/es/vc-picker/panels/TimePanel").SharedTimeProps<import("dayjs").Dayjs>>;
|
|
72
73
|
default: undefined;
|
|
73
74
|
};
|
|
75
|
+
kgRules: import("vue").PropType<import("ant-design-vue/es/form").RuleObject[]>;
|
|
74
76
|
onKgBeforeLookupOk: import("vue").PropType<(value: any, record: IKgTableRecord<{}> | IKgTableRecord<{}>[]) => boolean>;
|
|
75
77
|
value: import("vue").PropType<import("./index.vm").IKgFormItemValue>;
|
|
76
78
|
'onUpdate:value': import("vue").PropType<(value: import("./index.vm").IKgFormItemValue | null) => void>;
|
|
@@ -32,6 +32,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
32
32
|
type: import("vue").PropType<boolean | import("ant-design-vue/es/vc-picker/panels/TimePanel").SharedTimeProps<dayjs.Dayjs>>;
|
|
33
33
|
default: undefined;
|
|
34
34
|
};
|
|
35
|
+
kgRules: import("vue").PropType<import("ant-design-vue/es/form").RuleObject[]>;
|
|
35
36
|
onKgBeforeLookupOk: import("vue").PropType<(value: any, record: import("../..").IKgTableRecord<{}> | import("../..").IKgTableRecord<{}>[]) => boolean>;
|
|
36
37
|
value: import("vue").PropType<import("../index.vm").IKgFormItemValue>;
|
|
37
38
|
'onUpdate:value': import("vue").PropType<(value: import("../index.vm").IKgFormItemValue | null) => void>;
|
|
@@ -70,6 +71,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
70
71
|
type: import("vue").PropType<boolean | import("ant-design-vue/es/vc-picker/panels/TimePanel").SharedTimeProps<dayjs.Dayjs>>;
|
|
71
72
|
default: undefined;
|
|
72
73
|
};
|
|
74
|
+
kgRules: import("vue").PropType<import("ant-design-vue/es/form").RuleObject[]>;
|
|
73
75
|
onKgBeforeLookupOk: import("vue").PropType<(value: any, record: import("../..").IKgTableRecord<{}> | import("../..").IKgTableRecord<{}>[]) => boolean>;
|
|
74
76
|
value: import("vue").PropType<import("../index.vm").IKgFormItemValue>;
|
|
75
77
|
'onUpdate:value': import("vue").PropType<(value: import("../index.vm").IKgFormItemValue | null) => void>;
|
|
@@ -31,6 +31,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
31
31
|
type: import("vue").PropType<boolean | import("ant-design-vue/es/vc-picker/panels/TimePanel").SharedTimeProps<import("dayjs").Dayjs>>;
|
|
32
32
|
default: undefined;
|
|
33
33
|
};
|
|
34
|
+
kgRules: import("vue").PropType<import("ant-design-vue/es/form").RuleObject[]>;
|
|
34
35
|
onKgBeforeLookupOk: import("vue").PropType<(value: any, record: import("../..").IKgTableRecord<{}> | import("../..").IKgTableRecord<{}>[]) => boolean>;
|
|
35
36
|
value: import("vue").PropType<import("../index.vm").IKgFormItemValue>;
|
|
36
37
|
'onUpdate:value': import("vue").PropType<(value: import("../index.vm").IKgFormItemValue | null) => void>;
|
|
@@ -69,6 +70,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
69
70
|
type: import("vue").PropType<boolean | import("ant-design-vue/es/vc-picker/panels/TimePanel").SharedTimeProps<import("dayjs").Dayjs>>;
|
|
70
71
|
default: undefined;
|
|
71
72
|
};
|
|
73
|
+
kgRules: import("vue").PropType<import("ant-design-vue/es/form").RuleObject[]>;
|
|
72
74
|
onKgBeforeLookupOk: import("vue").PropType<(value: any, record: import("../..").IKgTableRecord<{}> | import("../..").IKgTableRecord<{}>[]) => boolean>;
|
|
73
75
|
value: import("vue").PropType<import("../index.vm").IKgFormItemValue>;
|
|
74
76
|
'onUpdate:value': import("vue").PropType<(value: import("../index.vm").IKgFormItemValue | null) => void>;
|
|
@@ -31,6 +31,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
31
31
|
type: import("vue").PropType<boolean | import("ant-design-vue/es/vc-picker/panels/TimePanel").SharedTimeProps<import("dayjs").Dayjs>>;
|
|
32
32
|
default: undefined;
|
|
33
33
|
};
|
|
34
|
+
kgRules: import("vue").PropType<import("ant-design-vue/es/form").RuleObject[]>;
|
|
34
35
|
onKgBeforeLookupOk: import("vue").PropType<(value: any, record: import("../..").IKgTableRecord<{}> | import("../..").IKgTableRecord<{}>[]) => boolean>;
|
|
35
36
|
value: import("vue").PropType<import("../index.vm").IKgFormItemValue>;
|
|
36
37
|
'onUpdate:value': import("vue").PropType<(value: import("../index.vm").IKgFormItemValue | null) => void>;
|
|
@@ -69,6 +70,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
69
70
|
type: import("vue").PropType<boolean | import("ant-design-vue/es/vc-picker/panels/TimePanel").SharedTimeProps<import("dayjs").Dayjs>>;
|
|
70
71
|
default: undefined;
|
|
71
72
|
};
|
|
73
|
+
kgRules: import("vue").PropType<import("ant-design-vue/es/form").RuleObject[]>;
|
|
72
74
|
onKgBeforeLookupOk: import("vue").PropType<(value: any, record: import("../..").IKgTableRecord<{}> | import("../..").IKgTableRecord<{}>[]) => boolean>;
|
|
73
75
|
value: import("vue").PropType<import("../index.vm").IKgFormItemValue>;
|
|
74
76
|
'onUpdate:value': import("vue").PropType<(value: import("../index.vm").IKgFormItemValue | null) => void>;
|
|
@@ -12,11 +12,12 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
12
12
|
type: import("vue").PropType<boolean>;
|
|
13
13
|
default: undefined;
|
|
14
14
|
};
|
|
15
|
+
/** 列表数据. */
|
|
15
16
|
kgGutter: {
|
|
16
17
|
type: import("vue").PropType<number>;
|
|
17
18
|
default: number;
|
|
18
19
|
};
|
|
19
|
-
kgSpan: import("vue").PropType<number>;
|
|
20
|
+
kgSpan: import("vue").PropType<number>;
|
|
20
21
|
kgPlaceholder: import("vue").PropType<string>;
|
|
21
22
|
kgShowLabel: {
|
|
22
23
|
type: import("vue").PropType<boolean>;
|
|
@@ -28,10 +29,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
28
29
|
};
|
|
29
30
|
kgType: import("vue").PropType<import("../../..").KG_CONTROL_TYPE>;
|
|
30
31
|
kgShowTime: {
|
|
31
|
-
/** 获取下拉列表数据. */
|
|
32
32
|
type: import("vue").PropType<boolean | import("ant-design-vue/es/vc-picker/panels/TimePanel").SharedTimeProps<import("dayjs").Dayjs>>;
|
|
33
33
|
default: undefined;
|
|
34
34
|
};
|
|
35
|
+
kgRules: import("vue").PropType<import("ant-design-vue/es/form").RuleObject[]>;
|
|
35
36
|
onKgBeforeLookupOk: import("vue").PropType<(value: any, record: import("../..").IKgTableRecord<{}> | import("../..").IKgTableRecord<{}>[]) => boolean>;
|
|
36
37
|
value: import("vue").PropType<import("../index.vm").IKgFormItemValue>;
|
|
37
38
|
'onUpdate:value': import("vue").PropType<(value: import("../index.vm").IKgFormItemValue | null) => void>;
|
|
@@ -51,11 +52,12 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
51
52
|
type: import("vue").PropType<boolean>;
|
|
52
53
|
default: undefined;
|
|
53
54
|
};
|
|
55
|
+
/** 列表数据. */
|
|
54
56
|
kgGutter: {
|
|
55
57
|
type: import("vue").PropType<number>;
|
|
56
58
|
default: number;
|
|
57
59
|
};
|
|
58
|
-
kgSpan: import("vue").PropType<number>;
|
|
60
|
+
kgSpan: import("vue").PropType<number>;
|
|
59
61
|
kgPlaceholder: import("vue").PropType<string>;
|
|
60
62
|
kgShowLabel: {
|
|
61
63
|
type: import("vue").PropType<boolean>;
|
|
@@ -67,10 +69,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
67
69
|
};
|
|
68
70
|
kgType: import("vue").PropType<import("../../..").KG_CONTROL_TYPE>;
|
|
69
71
|
kgShowTime: {
|
|
70
|
-
/** 获取下拉列表数据. */
|
|
71
72
|
type: import("vue").PropType<boolean | import("ant-design-vue/es/vc-picker/panels/TimePanel").SharedTimeProps<import("dayjs").Dayjs>>;
|
|
72
73
|
default: undefined;
|
|
73
74
|
};
|
|
75
|
+
kgRules: import("vue").PropType<import("ant-design-vue/es/form").RuleObject[]>;
|
|
74
76
|
onKgBeforeLookupOk: import("vue").PropType<(value: any, record: import("../..").IKgTableRecord<{}> | import("../..").IKgTableRecord<{}>[]) => boolean>;
|
|
75
77
|
value: import("vue").PropType<import("../index.vm").IKgFormItemValue>;
|
|
76
78
|
'onUpdate:value': import("vue").PropType<(value: import("../index.vm").IKgFormItemValue | null) => void>;
|
|
@@ -31,6 +31,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
31
31
|
type: import("vue").PropType<boolean | import("ant-design-vue/es/vc-picker/panels/TimePanel").SharedTimeProps<import("dayjs").Dayjs>>;
|
|
32
32
|
default: undefined;
|
|
33
33
|
};
|
|
34
|
+
kgRules: import("vue").PropType<import("ant-design-vue/es/form").RuleObject[]>;
|
|
34
35
|
onKgBeforeLookupOk: import("vue").PropType<(value: any, record: import("../..").IKgTableRecord<{}> | import("../..").IKgTableRecord<{}>[]) => boolean>;
|
|
35
36
|
value: import("vue").PropType<import("../index.vm").IKgFormItemValue>;
|
|
36
37
|
'onUpdate:value': import("vue").PropType<(value: import("../index.vm").IKgFormItemValue | null) => void>;
|
|
@@ -69,6 +70,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
69
70
|
type: import("vue").PropType<boolean | import("ant-design-vue/es/vc-picker/panels/TimePanel").SharedTimeProps<import("dayjs").Dayjs>>;
|
|
70
71
|
default: undefined;
|
|
71
72
|
};
|
|
73
|
+
kgRules: import("vue").PropType<import("ant-design-vue/es/form").RuleObject[]>;
|
|
72
74
|
onKgBeforeLookupOk: import("vue").PropType<(value: any, record: import("../..").IKgTableRecord<{}> | import("../..").IKgTableRecord<{}>[]) => boolean>;
|
|
73
75
|
value: import("vue").PropType<import("../index.vm").IKgFormItemValue>;
|
|
74
76
|
'onUpdate:value': import("vue").PropType<(value: import("../index.vm").IKgFormItemValue | null) => void>;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { RuleObject } from 'ant-design-vue/es/form';
|
|
1
2
|
import { SharedTimeProps } from 'ant-design-vue/es/vc-picker/panels/TimePanel';
|
|
2
3
|
import { Dayjs } from 'dayjs';
|
|
3
4
|
import { ComputedRef, ExtractPropTypes, InjectionKey, PropType } from 'vue';
|
|
@@ -67,6 +68,7 @@ export declare const getProps: () => {
|
|
|
67
68
|
type: PropType<boolean | SharedTimeProps<Dayjs>>;
|
|
68
69
|
default: undefined;
|
|
69
70
|
};
|
|
71
|
+
kgRules: PropType<RuleObject[]>;
|
|
70
72
|
/**
|
|
71
73
|
* 查找弹窗确定之前的回调函数, 如果返回 false, 则查找弹窗不会触发 kgOk 事件.
|
|
72
74
|
* 通常用于在弹窗确定之前, 对选择的数据进行校验, 如果校验失败, 则不允许确定, 需要重新选择数据.
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { PropType } from 'vue';
|
|
2
|
+
export declare const getProps: () => {
|
|
3
|
+
/** 主页面的页面标识. */
|
|
4
|
+
hostFormID: PropType<string>;
|
|
5
|
+
};
|
|
6
|
+
declare const _default: import("vue").DefineComponent<{
|
|
7
|
+
/** 主页面的页面标识. */
|
|
8
|
+
hostFormID: PropType<string>;
|
|
9
|
+
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
10
|
+
/** 主页面的页面标识. */
|
|
11
|
+
hostFormID: PropType<string>;
|
|
12
|
+
}>>, {}>;
|
|
13
|
+
export default _default;
|
|
@@ -8,7 +8,7 @@ export declare type IUseKgSubmit = {
|
|
|
8
8
|
onOpen(cb: IKgSubmitOpenCb): IRemoveEventListenerHandler;
|
|
9
9
|
/** 监听事件: 关闭抽屉. 点击取消或者点击确定并且成功之后, 都会触发 */
|
|
10
10
|
onClose(cb: IKgSubmitCloseCb): IRemoveEventListenerHandler;
|
|
11
|
-
/** 监听事件: 点击保存按钮之后, 执行默认逻辑之前. */
|
|
11
|
+
/** 监听事件: 点击保存按钮之后, 执行默认逻辑之前. 可以在此时修改表单的值; 可以在此时对表单的值进行验证, 如果返回 true 表示表单验证失败, 不会再执行后面的代码. */
|
|
12
12
|
onBeforeOk(cb: IKgSubmitBeforeOkCb): IRemoveEventListenerHandler;
|
|
13
13
|
/** 监听事件: 点击保存按钮之后, 执行默认逻辑之后, 调用接口成功, 即将关闭抽屉. */
|
|
14
14
|
onOk(cb: IKgSubmitOkCb): IRemoveEventListenerHandler;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { RuleObject } from 'ant-design-vue/es/form';
|
|
1
2
|
import { StoreDefinition } from 'pinia';
|
|
2
3
|
import { Ref } from 'vue';
|
|
3
4
|
import { IKgTableRecord } from '../KgTable';
|
|
@@ -21,15 +22,19 @@ export declare type IKgSubmitOpenCb = (args: IKgSubmitOpenCbParams) => Promise<b
|
|
|
21
22
|
/** 事件监听函数: close. */
|
|
22
23
|
export declare type IKgSubmitCloseCb = (args?: any | null) => Promise<boolean>;
|
|
23
24
|
/** 事件监听函数: beforeOk. */
|
|
24
|
-
export declare type
|
|
25
|
+
export declare type IKgSubmitBeforeOkCbParams = {
|
|
26
|
+
rules: Ref<Record<string, RuleObject[]>>;
|
|
27
|
+
model: Ref<Record<string, any>>;
|
|
28
|
+
};
|
|
29
|
+
export declare type IKgSubmitBeforeOkCb = (args: IKgSubmitBeforeOkCbParams) => Promise<boolean>;
|
|
25
30
|
/** 事件监听函数: ok. */
|
|
26
31
|
export declare type IKgSubmitOkCb = (args?: any | null) => Promise<boolean>;
|
|
27
32
|
export declare type IKgSubmitCb = IKgSubmitOpenCb | IKgSubmitCloseCb | IKgSubmitBeforeOkCb | IKgSubmitOkCb;
|
|
28
33
|
export interface IKgSubmitState {
|
|
29
|
-
openListenersMap: Map<string, Array<
|
|
34
|
+
openListenersMap: Map<string, Array<IKgSubmitOpenCb>>;
|
|
30
35
|
closeListenersMap: Map<string, Array<IKgSubmitCloseCb>>;
|
|
31
36
|
beforeOkListenersMap: Map<string, Array<IKgSubmitBeforeOkCb>>;
|
|
32
|
-
okListenersMap: Map<string, Array<
|
|
37
|
+
okListenersMap: Map<string, Array<IKgSubmitOkCb>>;
|
|
33
38
|
isLoadingMap: Map<string, boolean>;
|
|
34
39
|
}
|
|
35
40
|
export declare type IKgSubmitStoreDefinition = StoreDefinition<'KgSubmit', IKgSubmitState, {
|
|
@@ -1,14 +1,17 @@
|
|
|
1
1
|
import { Pinia } from 'pinia';
|
|
2
2
|
import { ComputedRef } from 'vue';
|
|
3
3
|
import { IKgLocale } from '../consts';
|
|
4
|
-
import { IKgStateOption, IKgStore, T } from './index.store';
|
|
4
|
+
import { IKgStateOption, IKgStore, P, T } from './index.store';
|
|
5
5
|
export declare type IUseKg = {
|
|
6
6
|
store: IKgStore;
|
|
7
7
|
/** 语言. */
|
|
8
8
|
locale: ComputedRef<IKgLocale> | null;
|
|
9
9
|
/** 配置参数. */
|
|
10
10
|
option: ComputedRef<IKgStateOption>;
|
|
11
|
+
/** 翻译. */
|
|
11
12
|
t: T;
|
|
13
|
+
/** 检查权限. */
|
|
14
|
+
p: P;
|
|
12
15
|
};
|
|
13
16
|
/**
|
|
14
17
|
* 在某些地方调用时(比如在路由守卫中), pinia 尚未设置, 此时需要手动传入 pinia 实例.
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { Pinia, StoreDefinition } from 'pinia';
|
|
2
2
|
import { ComputedRef } from 'vue';
|
|
3
3
|
import { IKgLocale } from '../consts';
|
|
4
|
-
/** 配置参数. */
|
|
5
4
|
export declare type IKgStateOption = {
|
|
6
5
|
/** 仓库选择. */
|
|
7
6
|
KgWarehouse?: {
|
|
@@ -11,7 +10,7 @@ export declare type IKgStateOption = {
|
|
|
11
10
|
defaultWarehouseID?: string;
|
|
12
11
|
};
|
|
13
12
|
};
|
|
14
|
-
/**
|
|
13
|
+
/** 翻译的方法. */
|
|
15
14
|
export declare type T = {
|
|
16
15
|
(key: string | undefined | null): string;
|
|
17
16
|
(key: string | undefined | null, locale: string): string;
|
|
@@ -20,11 +19,18 @@ export declare type T = {
|
|
|
20
19
|
(key: string | undefined | null, list: unknown[]): string;
|
|
21
20
|
(key: string | undefined | null, named: Record<string, unknown>): string;
|
|
22
21
|
};
|
|
22
|
+
/** 检查权限的方法. */
|
|
23
|
+
export declare type P = {
|
|
24
|
+
(permissionCode?: string | Array<string>): boolean;
|
|
25
|
+
};
|
|
23
26
|
export interface IKgState {
|
|
24
27
|
/** 语言. */
|
|
25
28
|
locale: ComputedRef<IKgLocale> | null;
|
|
26
|
-
/**
|
|
29
|
+
/** 翻译的方法. */
|
|
27
30
|
tFunction: T | null;
|
|
31
|
+
/** 检查权限的方法. */
|
|
32
|
+
pFunction: P | null;
|
|
33
|
+
/** 配置参数. */
|
|
28
34
|
option: IKgStateOption;
|
|
29
35
|
}
|
|
30
36
|
export declare type IKgStoreDefinition = StoreDefinition<'Kg', IKgState, {
|
|
@@ -35,9 +41,12 @@ export declare type IKgStoreDefinition = StoreDefinition<'Kg', IKgState, {
|
|
|
35
41
|
}, {
|
|
36
42
|
setLocale(locale: ComputedRef<IKgLocale> | null): void;
|
|
37
43
|
setT(i18n: any): void;
|
|
44
|
+
setP(fn: P): void;
|
|
38
45
|
setOption(option: IKgStateOption): void;
|
|
39
46
|
/** 翻译. */
|
|
40
47
|
t: T;
|
|
48
|
+
/** 检查权限. */
|
|
49
|
+
p: P;
|
|
41
50
|
}>;
|
|
42
51
|
export declare type IKgStore = ReturnType<IKgStoreDefinition>;
|
|
43
52
|
export declare const useKgStore: (_pinia?: Pinia) => IKgStoreDefinition;
|
|
@@ -12,7 +12,7 @@ declare const _default: {
|
|
|
12
12
|
profile: string;
|
|
13
13
|
};
|
|
14
14
|
KgSubmitHeaderVarSubmitConfig: {
|
|
15
|
-
|
|
15
|
+
invalidWidthForSpan: string;
|
|
16
16
|
};
|
|
17
17
|
KgTable: {
|
|
18
18
|
canNotUpdateSystemVarGridMaster: string;
|
|
@@ -38,11 +38,16 @@ declare const _default: {
|
|
|
38
38
|
KgTableSettingSaveGridMaster: {
|
|
39
39
|
title: string;
|
|
40
40
|
};
|
|
41
|
+
KgTableSettingVarGridConfig: {
|
|
42
|
+
emptyPageSizeOptions: string;
|
|
43
|
+
invalidCommandParameter: string;
|
|
44
|
+
invalidPageSizeOption: string;
|
|
45
|
+
invalidPageSizeOptions: string;
|
|
46
|
+
};
|
|
41
47
|
KgTableSettingVarGridMasterModal: {
|
|
42
48
|
title: string;
|
|
43
49
|
};
|
|
44
50
|
KgVarConfig: {
|
|
45
|
-
VarButton: string;
|
|
46
51
|
action: string;
|
|
47
52
|
allForm: string;
|
|
48
53
|
allLanguage: string;
|
|
@@ -63,6 +68,10 @@ declare const _default: {
|
|
|
63
68
|
language: string;
|
|
64
69
|
required: string;
|
|
65
70
|
saveSuccess: string;
|
|
71
|
+
tabButton: string;
|
|
72
|
+
tabSearch: string;
|
|
73
|
+
tabSubmit: string;
|
|
74
|
+
tabTable: string;
|
|
66
75
|
variable: string;
|
|
67
76
|
variableName: string;
|
|
68
77
|
variables: string;
|
|
@@ -12,7 +12,7 @@ declare const _default: {
|
|
|
12
12
|
profile: string;
|
|
13
13
|
};
|
|
14
14
|
KgSubmitHeaderVarSubmitConfig: {
|
|
15
|
-
|
|
15
|
+
invalidWidthForSpan: string;
|
|
16
16
|
};
|
|
17
17
|
KgTable: {
|
|
18
18
|
canNotUpdateSystemVarGridMaster: string;
|
|
@@ -38,11 +38,16 @@ declare const _default: {
|
|
|
38
38
|
KgTableSettingSaveGridMaster: {
|
|
39
39
|
title: string;
|
|
40
40
|
};
|
|
41
|
+
KgTableSettingVarGridConfig: {
|
|
42
|
+
emptyPageSizeOptions: string;
|
|
43
|
+
invalidCommandParameter: string;
|
|
44
|
+
invalidPageSizeOption: string;
|
|
45
|
+
invalidPageSizeOptions: string;
|
|
46
|
+
};
|
|
41
47
|
KgTableSettingVarGridMasterModal: {
|
|
42
48
|
title: string;
|
|
43
49
|
};
|
|
44
50
|
KgVarConfig: {
|
|
45
|
-
VarButton: string;
|
|
46
51
|
action: string;
|
|
47
52
|
allForm: string;
|
|
48
53
|
allLanguage: string;
|
|
@@ -62,6 +67,10 @@ declare const _default: {
|
|
|
62
67
|
groupName: string;
|
|
63
68
|
language: string;
|
|
64
69
|
saveSuccess: string;
|
|
70
|
+
tabButton: string;
|
|
71
|
+
tabSearch: string;
|
|
72
|
+
tabSubmit: string;
|
|
73
|
+
tabTable: string;
|
|
65
74
|
variable: string;
|
|
66
75
|
variableName: string;
|
|
67
76
|
variables: string;
|