@kengic/vue 0.19.2-beta.0 → 0.19.2-beta.2
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/CHANGELOG.md +36 -2
- package/dist/index.css +1 -1
- package/dist/kengic-vue.js +5757 -5645
- package/dist/src/apis/WMS/models.d.ts +2 -0
- package/dist/src/components/KgSubmit/index.hooks.d.ts +50 -34
- package/dist/src/components/KgTable/KgTable.hooks.d.ts +3 -5
- package/dist/src/components/KgTable/components/{KgTable.Cell.d.ts → KgTable.BodyCell.d.ts} +10 -10
- package/dist/src/components/KgTable/components/KgTable.HeaderCell.d.ts +53 -0
- package/dist/src/components/KgTable/index.vm.d.ts +1 -1
- package/dist/src/components/KgVar/index.hooks.d.ts +11 -15
- package/dist/src/consts/index.vm.d.ts +1 -1
- package/dist/src/pages/KgPageDda/components/KgPageDda.Create.store.d.ts +134 -11
- package/package.json +1 -1
@@ -28,6 +28,8 @@ export declare class CreateVarDdaQuery {
|
|
28
28
|
varSubmitFields?: Array<VarSubmitField> | null;
|
29
29
|
/** 变量翻译. */
|
30
30
|
varVariableCatalogs?: Array<VarVariableCatalog> | null;
|
31
|
+
/** 控件配置. */
|
32
|
+
varVariableConfigs?: Array<VarVariableConfig> | null;
|
31
33
|
constructor(obj?: CreateVarDdaQuery);
|
32
34
|
}
|
33
35
|
/** 创建表格视图. */
|
@@ -1,74 +1,90 @@
|
|
1
|
-
import {
|
2
|
-
import {
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
export declare
|
1
|
+
import { KG_VAR_SUBMIT__DISPLAY_TYPE } from '../../consts';
|
2
|
+
import { IKgSubmitAfterValidateCb, IKgSubmitBeforeOkCb, IKgSubmitBeforeOpenCb, IKgSubmitBeforeRequestCb, IKgSubmitCloseCb, IKgSubmitErrorCb, IKgSubmitEvent, IKgSubmitOkCb, IKgSubmitOpenCb } from './index.store';
|
3
|
+
/**
|
4
|
+
* @param formID 界面标识.
|
5
|
+
*/
|
6
|
+
export declare function useKgSubmit(formID?: string | null): {
|
7
|
+
/** 界面标识. */
|
7
8
|
formID: string;
|
8
9
|
/** 状态数据. */
|
9
|
-
store:
|
10
|
+
store: import("pinia").Store<"KgSubmit", import("./index.store").IKgSubmitState, {
|
11
|
+
isLoading(): (formID?: string | null | undefined) => boolean;
|
12
|
+
getModel(): (formID: string | null | undefined) => Record<string, any> | null;
|
13
|
+
getFormRef(): (formID?: string | null | undefined) => import("vue").Ref<import("ant-design-vue").FormInstance | null>;
|
14
|
+
getRules(): (formID?: string | null | undefined) => import("vue").Ref<Record<string, import("ant-design-vue/es/form").RuleObject[]>>;
|
15
|
+
}, {
|
16
|
+
dispose(formID?: string | null | undefined): void;
|
17
|
+
addEventListener(formID: string, event: IKgSubmitEvent, cb: import("./index.store").IKgSubmitCb): void;
|
18
|
+
removeEventListener(formID: string, event: IKgSubmitEvent, cb?: import("./index.store").IKgSubmitCb | undefined): void;
|
19
|
+
emit(formID: string, event: IKgSubmitEvent, param: import("./index.store").IKgSubmitCbParam): Promise<boolean>;
|
20
|
+
setIsLoading(formID: string, value: boolean): void;
|
21
|
+
setModel(formID: string, model: Record<string, any>): void;
|
22
|
+
}>;
|
10
23
|
/** 表单数据对象. */
|
11
|
-
model:
|
12
|
-
|
13
|
-
|
24
|
+
model: import("vue").ComputedRef<Record<string, any>>;
|
25
|
+
/** 表单组件. */
|
26
|
+
formRef: import("vue").Ref<import("ant-design-vue").FormInstance | null>;
|
27
|
+
/** 表单验证规则. */
|
28
|
+
rules: import("vue").Ref<Record<string, import("ant-design-vue/es/form").RuleObject[]>>;
|
14
29
|
/** 显示方式. */
|
15
|
-
displayType:
|
30
|
+
displayType: import("vue").ComputedRef<KG_VAR_SUBMIT__DISPLAY_TYPE>;
|
16
31
|
/**
|
17
|
-
*
|
32
|
+
* <p>事件: 打开提交弹窗之前.</p>
|
18
33
|
* @param cb 回调函数.
|
19
34
|
* @param once 是否只会触发一次. 默认为 undefined.
|
20
35
|
* @return {} 移除事件监听函数.
|
21
36
|
*/
|
22
|
-
onBeforeOpen(cb: IKgSubmitBeforeOpenCb, once?: boolean)
|
37
|
+
onBeforeOpen: (cb: IKgSubmitBeforeOpenCb, once?: boolean | undefined) => import("../../consts").IRemoveEventListenerHandler;
|
23
38
|
/**
|
24
|
-
*
|
39
|
+
* <p>事件: 打开提交弹窗.</p>
|
25
40
|
* @param cb 回调函数.
|
26
41
|
* @param once 是否只会触发一次. 默认为 undefined.
|
27
42
|
* @return {} 移除事件监听函数.
|
28
43
|
*/
|
29
|
-
onOpen(cb: IKgSubmitOpenCb, once?: boolean)
|
44
|
+
onOpen: (cb: IKgSubmitOpenCb, once?: boolean | undefined) => import("../../consts").IRemoveEventListenerHandler;
|
30
45
|
/**
|
31
|
-
*
|
32
|
-
* <p>回调函数如果返回 true,
|
46
|
+
* <p>事件: 点击确认按钮之后, 执行默认逻辑之前. 可以在此时修改表单的值; 可以在此时对表单的值进行验证.</p>
|
47
|
+
* <p>回调函数如果返回 true, 则不会再执行后面的代码.</p>
|
33
48
|
* @param cb 回调函数.
|
34
49
|
* @param once 是否只会触发一次. 默认为 undefined.
|
35
50
|
* @return {} 移除事件监听函数.
|
36
51
|
*/
|
37
|
-
onBeforeOk(cb: IKgSubmitBeforeOkCb, once?: boolean)
|
38
|
-
/**
|
39
|
-
* <p
|
52
|
+
onBeforeOk: (cb: IKgSubmitBeforeOkCb, once?: boolean | undefined) => import("../../consts").IRemoveEventListenerHandler;
|
53
|
+
/**
|
54
|
+
* <p>事件: 点击确认按钮之后, 表单验证完成.</p>
|
55
|
+
* <p>回调函数如果返回 true, 则不会再执行后面的代码.</p>
|
40
56
|
* @param cb 回调函数.
|
41
57
|
* @param once 是否只会触发一次. 默认为 undefined.
|
42
58
|
* @return {} 移除事件监听函数.
|
43
59
|
*/
|
44
|
-
onAfterValidate(cb: IKgSubmitAfterValidateCb, once?: boolean)
|
45
|
-
/**
|
46
|
-
* <p
|
60
|
+
onAfterValidate: (cb: IKgSubmitAfterValidateCb, once?: boolean | undefined) => import("../../consts").IRemoveEventListenerHandler;
|
61
|
+
/**
|
62
|
+
* <p>事件: 发起接口请求之前. 表单验证完成, 参数解析完成.</p>
|
63
|
+
* <p>回调函数如果返回 true, 则不会再执行后面的代码.</p>
|
47
64
|
* @param cb 回调函数.
|
48
65
|
* @param once 是否只会触发一次. 默认为 undefined.
|
49
66
|
* @return {} 移除事件监听函数.
|
50
67
|
*/
|
51
|
-
onBeforeRequest(cb: IKgSubmitBeforeRequestCb, once?: boolean)
|
52
|
-
/**
|
68
|
+
onBeforeRequest: (cb: IKgSubmitBeforeRequestCb, once?: boolean | undefined) => import("../../consts").IRemoveEventListenerHandler;
|
69
|
+
/**
|
70
|
+
* <p>事件: 点击保存按钮之后, 执行默认逻辑之后, 调用接口成功, 即将关闭提交弹窗.</p>
|
53
71
|
* @param cb 回调函数.
|
54
72
|
* @param once 是否只会触发一次. 默认为 undefined.
|
55
73
|
* @return {} 移除事件监听函数.
|
56
74
|
*/
|
57
|
-
onOk(cb: IKgSubmitOkCb, once?: boolean)
|
58
|
-
/**
|
75
|
+
onOk: (cb: IKgSubmitOkCb, once?: boolean | undefined) => import("../../consts").IRemoveEventListenerHandler;
|
76
|
+
/**
|
77
|
+
* <p>事件: 请求失败. 请求失败了, 或者请求返回了错误消息.</p>
|
59
78
|
* @param cb 回调函数.
|
60
79
|
* @param once 是否只会触发一次. 默认为 undefined.
|
61
80
|
* @return {} 移除事件监听函数.
|
62
81
|
*/
|
63
|
-
onError(cb: IKgSubmitErrorCb, once?: boolean)
|
64
|
-
/**
|
82
|
+
onError: (cb: IKgSubmitErrorCb, once?: boolean | undefined) => import("../../consts").IRemoveEventListenerHandler;
|
83
|
+
/**
|
84
|
+
* <p>事件: 关闭提交弹窗. 点击取消或者点击确定并且成功之后, 都会触发.</p>
|
65
85
|
* @param cb 回调函数.
|
66
86
|
* @param once 是否只会触发一次. 默认为 undefined.
|
67
87
|
* @return {} 移除事件监听函数.
|
68
88
|
*/
|
69
|
-
onClose(cb: IKgSubmitCloseCb, once?: boolean)
|
89
|
+
onClose: (cb: IKgSubmitCloseCb, once?: boolean | undefined) => import("../../consts").IRemoveEventListenerHandler;
|
70
90
|
};
|
71
|
-
/**
|
72
|
-
* @param formID 界面标识.
|
73
|
-
*/
|
74
|
-
export declare function useKgSubmit(formID?: string | null): IUseKgSubmit;
|
@@ -1,13 +1,11 @@
|
|
1
1
|
import { ColumnsType } from 'ant-design-vue/es/table';
|
2
2
|
import { SorterResult } from 'ant-design-vue/es/table/interface';
|
3
|
-
import { ComputedRef, Ref, UnwrapRef
|
3
|
+
import { ComputedRef, Ref, UnwrapRef } from 'vue';
|
4
4
|
import { IKgTableRow, KG_TABLE_CELL_CONTEXT } from './index.vm';
|
5
5
|
import { IKgTableProps } from './KgTable';
|
6
|
-
export declare
|
7
|
-
|
8
|
-
renderBodyCell: (args: any, context?: KG_TABLE_CELL_CONTEXT) => VNode;
|
6
|
+
export declare function _useRenderBodyCell(): {
|
7
|
+
renderBodyCell: (args: any, context?: KG_TABLE_CELL_CONTEXT) => any;
|
9
8
|
};
|
10
|
-
export declare function _useRenderBodyCell(): IUseRenderBodyCell;
|
11
9
|
export declare type IUseColumns = {
|
12
10
|
/** 表格的列. */
|
13
11
|
columns: ComputedRef<ColumnsType<IKgTableRow>>;
|
@@ -1,16 +1,16 @@
|
|
1
1
|
import { PropType } from 'vue';
|
2
2
|
import { IKgTableRow, KG_TABLE_CELL_CONTEXT } from '../index.vm';
|
3
|
-
import './KgTable.
|
3
|
+
import './KgTable.BodyCell.less';
|
4
4
|
export declare const getProps: () => {
|
5
|
-
/**
|
5
|
+
/** 行对象. */
|
6
6
|
kgRow: PropType<IKgTableRow>;
|
7
|
-
/**
|
7
|
+
/** 列数据. */
|
8
8
|
kgValue: PropType<any>;
|
9
9
|
/** 变量名称. */
|
10
10
|
kgVarName: PropType<string | null>;
|
11
11
|
/**
|
12
12
|
* 所处环境.
|
13
|
-
* @default
|
13
|
+
* @default KG_TABLE_CELL_CONTEXT.TABLE_CELL
|
14
14
|
*/
|
15
15
|
kgContext: {
|
16
16
|
type: PropType<string>;
|
@@ -20,15 +20,15 @@ export declare const getProps: () => {
|
|
20
20
|
onKgUpdateLinkClick: PropType<() => void>;
|
21
21
|
};
|
22
22
|
declare const _default: import("vue").DefineComponent<{
|
23
|
-
/**
|
23
|
+
/** 行对象. */
|
24
24
|
kgRow: PropType<IKgTableRow>;
|
25
|
-
/**
|
25
|
+
/** 列数据. */
|
26
26
|
kgValue: PropType<any>;
|
27
27
|
/** 变量名称. */
|
28
28
|
kgVarName: PropType<string | null>;
|
29
29
|
/**
|
30
30
|
* 所处环境.
|
31
|
-
* @default
|
31
|
+
* @default KG_TABLE_CELL_CONTEXT.TABLE_CELL
|
32
32
|
*/
|
33
33
|
kgContext: {
|
34
34
|
type: PropType<string>;
|
@@ -37,15 +37,15 @@ declare const _default: import("vue").DefineComponent<{
|
|
37
37
|
/** 点击链接, 打开更新弹窗. */
|
38
38
|
onKgUpdateLinkClick: PropType<() => void>;
|
39
39
|
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "kgUpdateLinkClick"[], "kgUpdateLinkClick", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
40
|
-
/**
|
40
|
+
/** 行对象. */
|
41
41
|
kgRow: PropType<IKgTableRow>;
|
42
|
-
/**
|
42
|
+
/** 列数据. */
|
43
43
|
kgValue: PropType<any>;
|
44
44
|
/** 变量名称. */
|
45
45
|
kgVarName: PropType<string | null>;
|
46
46
|
/**
|
47
47
|
* 所处环境.
|
48
|
-
* @default
|
48
|
+
* @default KG_TABLE_CELL_CONTEXT.TABLE_CELL
|
49
49
|
*/
|
50
50
|
kgContext: {
|
51
51
|
type: PropType<string>;
|
@@ -0,0 +1,53 @@
|
|
1
|
+
import { ColumnType } from 'ant-design-vue/es/table';
|
2
|
+
import { PropType } from 'vue';
|
3
|
+
import './KgTable.HeaderCell.less';
|
4
|
+
export declare const getProps: () => {
|
5
|
+
/**
|
6
|
+
* 列的数据.
|
7
|
+
*/
|
8
|
+
column: {
|
9
|
+
type: PropType<ColumnType<any>>;
|
10
|
+
};
|
11
|
+
/**
|
12
|
+
* 表格是否禁用.
|
13
|
+
* @default undefined
|
14
|
+
*/
|
15
|
+
kgDisabled: {
|
16
|
+
type: PropType<boolean>;
|
17
|
+
default: undefined;
|
18
|
+
};
|
19
|
+
};
|
20
|
+
declare const _default: import("vue").DefineComponent<{
|
21
|
+
/**
|
22
|
+
* 列的数据.
|
23
|
+
*/
|
24
|
+
column: {
|
25
|
+
type: PropType<ColumnType<any>>;
|
26
|
+
};
|
27
|
+
/**
|
28
|
+
* 表格是否禁用.
|
29
|
+
* @default undefined
|
30
|
+
*/
|
31
|
+
kgDisabled: {
|
32
|
+
type: PropType<boolean>;
|
33
|
+
default: undefined;
|
34
|
+
};
|
35
|
+
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, never[], never, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
36
|
+
/**
|
37
|
+
* 列的数据.
|
38
|
+
*/
|
39
|
+
column: {
|
40
|
+
type: PropType<ColumnType<any>>;
|
41
|
+
};
|
42
|
+
/**
|
43
|
+
* 表格是否禁用.
|
44
|
+
* @default undefined
|
45
|
+
*/
|
46
|
+
kgDisabled: {
|
47
|
+
type: PropType<boolean>;
|
48
|
+
default: undefined;
|
49
|
+
};
|
50
|
+
}>> & {}, {
|
51
|
+
kgDisabled: boolean;
|
52
|
+
}>;
|
53
|
+
export default _default;
|
@@ -22,9 +22,8 @@ export declare function useKgVar(formID?: string | null, init?: boolean, level?:
|
|
22
22
|
getTopFormIDs(): string[];
|
23
23
|
getFormLevel(): (frm_id: string | null | undefined) => number;
|
24
24
|
t(): (frm_id: string | null | undefined, var_nam: string | null | undefined) => string;
|
25
|
-
/** 正在查询变量配置. */
|
26
25
|
isRetrieving(): (frm_id: string | null | undefined) => boolean | null;
|
27
|
-
isRetrievingVarProfileMaster(): (frm_id: string | null | undefined) => boolean | null;
|
26
|
+
isRetrievingVarProfileMaster(): (frm_id: string | null | undefined) => boolean | null; /** 正在查询变量配置. */
|
28
27
|
isRetrievingVarGridMaster(): (frm_id: string | null | undefined) => boolean | null;
|
29
28
|
isSearched(): (frm_id: string | null | undefined) => boolean;
|
30
29
|
isCreating(): (frm_id: string | null | undefined) => boolean | null;
|
@@ -34,36 +33,31 @@ export declare function useKgVar(formID?: string | null, init?: boolean, level?:
|
|
34
33
|
isCreatingRequesting(): (frm_id: string | null | undefined) => boolean | null;
|
35
34
|
isUpdatingRequesting(): (frm_id: string | null | undefined) => boolean | null;
|
36
35
|
isCopyingRequesting(): (frm_id: string | null | undefined) => boolean | null;
|
36
|
+
/** 其他按钮:正在调用接口. */
|
37
37
|
isDeletingRequesting(): (frm_id: string | null | undefined) => boolean | null;
|
38
38
|
isOtherRequesting(): (frm_id: string | null | undefined) => boolean | null;
|
39
39
|
getVarCatalogs(): (frm_id: string | null | undefined) => import("../../apis/WMS/models").VarVariableCatalog[] | null;
|
40
|
-
/** 当前的 VarProfileMaster. */
|
41
40
|
getVarCatalog(): (frm_id: string | null | undefined, var_nam: string | null | undefined) => import("../../apis/WMS/models").VarVariableCatalog | null;
|
42
41
|
getVarLookup(): (frm_id: string | null | undefined, var_nam: string | null | undefined) => import("../../apis/WMS/models").VarVariableLookup | null;
|
43
42
|
getVarPossibility(): (frm_id: string | null | undefined, var_nam: string | null | undefined) => import("../../apis/WMS/models").VarVariablePossibility | null;
|
44
|
-
/**
|
45
|
-
* 设置'是否正在创建'.
|
46
|
-
* @param value 是否正在创建.
|
47
|
-
*/
|
48
|
-
getVarVariableConfig(): (frm_id: string | null | undefined, var_nam: string | null | undefined) => import("../../apis/WMS/models").VarVariableConfig | null;
|
43
|
+
getVarVariableConfig(): (frm_id: string | null | undefined, var_nam: string | null | undefined) => import("../../apis/WMS/models").VarVariableConfig | null; /** 提交弹窗的配置属性. */
|
49
44
|
getVarVariableInput(): (frm_id: string | null | undefined, var_nam: string | null | undefined) => import("../../apis/WMS/models").VarVariableInput | null;
|
50
45
|
getVarButtons(): (frm_id: string | null | undefined) => import("../../apis/WMS/models").VarButton[] | null;
|
51
46
|
getVarSubmitConfig(): (frm_id: string | null | undefined) => import("../../apis/WMS/models").VarSubmitConfig | null;
|
52
47
|
getVarSubmitConfigProps(): (frm_id: string | null | undefined) => import("../../consts").IKgSubmitConfigProps;
|
53
48
|
getVarSubmitFields(): (frm_id: string | null | undefined) => VarSubmitField[] | null;
|
54
|
-
getVarSubmitFieldsForCreate(): (frm_id: string | null | undefined) => VarSubmitField[] | null;
|
55
|
-
* 修改 VarSubmitField 的部分属性.
|
56
|
-
* @param variableName 变量名称
|
57
|
-
* @param properties 要修改的部分属性.
|
58
|
-
* @param isTriggerEvent 是否触发变更事件.
|
59
|
-
*/
|
49
|
+
getVarSubmitFieldsForCreate(): (frm_id: string | null | undefined) => VarSubmitField[] | null;
|
60
50
|
getVarSubmitFieldsForCreateKey(): (frm_id: string | null | undefined) => VarSubmitField[] | null;
|
61
51
|
getVarSubmitFieldsForCreateNotKey(): (frm_id: string | null | undefined) => VarSubmitField[] | null;
|
62
52
|
getVarSubmitFieldsForCreateKeyVisible(): (frm_id: string | null | undefined) => VarSubmitField[] | null;
|
63
53
|
getVarSubmitFieldsForCreateNotKeyVisible(): (frm_id: string | null | undefined) => VarSubmitField[] | null;
|
64
54
|
getVarSubmitFieldsForUpdate(): (frm_id: string | null | undefined) => VarSubmitField[] | null;
|
65
55
|
getVarSubmitFieldsForUpdateKey(): (frm_id: string | null | undefined) => VarSubmitField[] | null;
|
66
|
-
getVarSubmitFieldsForUpdateNotKey(): (frm_id: string | null | undefined) => VarSubmitField[] | null;
|
56
|
+
getVarSubmitFieldsForUpdateNotKey(): (frm_id: string | null | undefined) => VarSubmitField[] | null; /**
|
57
|
+
* 事件: 变量配置查询完成.
|
58
|
+
* @param cb 回调函数.
|
59
|
+
* @param once 是否只会触发一次. 默认为 undefined.
|
60
|
+
*/
|
67
61
|
getVarSubmitFieldsForUpdateKeyVisible(): (frm_id: string | null | undefined) => VarSubmitField[] | null;
|
68
62
|
getVarSubmitFieldsForUpdateNotKeyVisible(): (frm_id: string | null | undefined) => VarSubmitField[] | null;
|
69
63
|
getVarSubmitFieldsForCopy(): (frm_id: string | null | undefined) => VarSubmitField[] | null;
|
@@ -180,6 +174,8 @@ export declare function useKgVar(formID?: string | null, init?: boolean, level?:
|
|
180
174
|
systemVarGridDetails: ComputedRef<import("../../apis/WMS/models").VarGridDetail[] | null>;
|
181
175
|
/** 当前的 VarGridDetail 列表. */
|
182
176
|
currentVarGridDetails: ComputedRef<import("../../apis/WMS/models").VarGridDetail[] | null>;
|
177
|
+
/** 提交弹窗的配置属性. */
|
178
|
+
varSubmitConfigProps: ComputedRef<import("../../consts").IKgSubmitConfigProps>;
|
183
179
|
/**
|
184
180
|
* 设置'是否正在创建'.
|
185
181
|
* @param value 是否正在创建.
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { ResultSetMetadataColumn, SysPermission, VarButton, VarGridDetail, VarProfileDetail, VarSubmitField } from '../../../apis/WMS/models';
|
1
|
+
import { ResultSetMetadataColumn, SysPermission, VarButton, VarGridDetail, VarProfileDetail, VarSubmitField, VarVariableConfig } from '../../../apis/WMS/models';
|
2
2
|
export declare const useKgPageDdaCreateStore: import("pinia").StoreDefinition<"KgPageDdaCreate", import("pinia")._UnwrapAll<Pick<{
|
3
3
|
isLoading: import("vue").Ref<boolean>;
|
4
4
|
resultSetMetadataColumns: import("vue").Ref<{
|
@@ -243,6 +243,26 @@ export declare const useKgPageDdaCreateStore: import("pinia").StoreDefinition<"K
|
|
243
243
|
var_nam?: string | null | undefined;
|
244
244
|
var_text?: string | null | undefined;
|
245
245
|
}[] | null | undefined;
|
246
|
+
varVariableConfigs?: {
|
247
|
+
cpy_ctrl_prop?: string | null | undefined;
|
248
|
+
cpy_ctrl_typ?: string | null | undefined;
|
249
|
+
crt_ctrl_prop?: string | null | undefined;
|
250
|
+
crt_ctrl_typ?: string | null | undefined;
|
251
|
+
ctrl_prop?: string | null | undefined;
|
252
|
+
ctrl_typ?: string | null | undefined;
|
253
|
+
cust_lvl?: number | null | undefined;
|
254
|
+
del_ctrl_prop?: string | null | undefined;
|
255
|
+
del_ctrl_typ?: string | null | undefined;
|
256
|
+
frm_id?: string | null | undefined;
|
257
|
+
grp_nam?: string | null | undefined;
|
258
|
+
id?: string | null | undefined;
|
259
|
+
locale_id?: string | null | undefined;
|
260
|
+
prf_ctrl_prop?: string | null | undefined;
|
261
|
+
prf_ctrl_typ?: string | null | undefined;
|
262
|
+
upt_ctrl_prop?: string | null | undefined;
|
263
|
+
upt_ctrl_typ?: string | null | undefined;
|
264
|
+
var_nam?: string | null | undefined;
|
265
|
+
}[] | null | undefined;
|
246
266
|
}>;
|
247
267
|
getIsLoading: import("vue").ComputedRef<boolean>;
|
248
268
|
getResultSetMetadataColumns: import("vue").ComputedRef<{
|
@@ -487,6 +507,26 @@ export declare const useKgPageDdaCreateStore: import("pinia").StoreDefinition<"K
|
|
487
507
|
var_nam?: string | null | undefined;
|
488
508
|
var_text?: string | null | undefined;
|
489
509
|
}[] | null | undefined;
|
510
|
+
varVariableConfigs?: {
|
511
|
+
cpy_ctrl_prop?: string | null | undefined;
|
512
|
+
cpy_ctrl_typ?: string | null | undefined;
|
513
|
+
crt_ctrl_prop?: string | null | undefined;
|
514
|
+
crt_ctrl_typ?: string | null | undefined;
|
515
|
+
ctrl_prop?: string | null | undefined;
|
516
|
+
ctrl_typ?: string | null | undefined;
|
517
|
+
cust_lvl?: number | null | undefined;
|
518
|
+
del_ctrl_prop?: string | null | undefined;
|
519
|
+
del_ctrl_typ?: string | null | undefined;
|
520
|
+
frm_id?: string | null | undefined;
|
521
|
+
grp_nam?: string | null | undefined;
|
522
|
+
id?: string | null | undefined;
|
523
|
+
locale_id?: string | null | undefined;
|
524
|
+
prf_ctrl_prop?: string | null | undefined;
|
525
|
+
prf_ctrl_typ?: string | null | undefined;
|
526
|
+
upt_ctrl_prop?: string | null | undefined;
|
527
|
+
upt_ctrl_typ?: string | null | undefined;
|
528
|
+
var_nam?: string | null | undefined;
|
529
|
+
}[] | null | undefined;
|
490
530
|
}>;
|
491
531
|
getFrmId: import("vue").ComputedRef<string | null | undefined>;
|
492
532
|
getVarButtons: import("vue").ComputedRef<{
|
@@ -534,9 +574,9 @@ export declare const useKgPageDdaCreateStore: import("pinia").StoreDefinition<"K
|
|
534
574
|
deleteVarButton: (param: {
|
535
575
|
varNam: string | null | undefined;
|
536
576
|
}) => void;
|
537
|
-
setVarProfileDetails: (
|
538
|
-
setVarGridDetails: (
|
539
|
-
setVarSubmitFields: (
|
577
|
+
setVarProfileDetails: (varProfileDetails: Array<VarProfileDetail>) => void;
|
578
|
+
setVarGridDetails: (varGridDetails: Array<VarGridDetail>) => void;
|
579
|
+
setVarSubmitFields: (varSubmitFields: Array<VarSubmitField>) => void;
|
540
580
|
createVarVariableCatalog: (param: {
|
541
581
|
varNam: string | null | undefined;
|
542
582
|
varText: string | null | undefined;
|
@@ -545,6 +585,7 @@ export declare const useKgPageDdaCreateStore: import("pinia").StoreDefinition<"K
|
|
545
585
|
varNam: string | null | undefined;
|
546
586
|
varText: string | null | undefined;
|
547
587
|
}) => void;
|
588
|
+
setVarVariableConfigs: (varVariableConfigs: Array<VarVariableConfig>) => void;
|
548
589
|
getVarText: (varNam: string | null | undefined) => string;
|
549
590
|
}, "isLoading" | "resultSetMetadataColumns" | "createVarDdaQuery">>, import("pinia")._UnwrapAll<Pick<{
|
550
591
|
isLoading: import("vue").Ref<boolean>;
|
@@ -790,6 +831,26 @@ export declare const useKgPageDdaCreateStore: import("pinia").StoreDefinition<"K
|
|
790
831
|
var_nam?: string | null | undefined;
|
791
832
|
var_text?: string | null | undefined;
|
792
833
|
}[] | null | undefined;
|
834
|
+
varVariableConfigs?: {
|
835
|
+
cpy_ctrl_prop?: string | null | undefined;
|
836
|
+
cpy_ctrl_typ?: string | null | undefined;
|
837
|
+
crt_ctrl_prop?: string | null | undefined;
|
838
|
+
crt_ctrl_typ?: string | null | undefined;
|
839
|
+
ctrl_prop?: string | null | undefined;
|
840
|
+
ctrl_typ?: string | null | undefined;
|
841
|
+
cust_lvl?: number | null | undefined;
|
842
|
+
del_ctrl_prop?: string | null | undefined;
|
843
|
+
del_ctrl_typ?: string | null | undefined;
|
844
|
+
frm_id?: string | null | undefined;
|
845
|
+
grp_nam?: string | null | undefined;
|
846
|
+
id?: string | null | undefined;
|
847
|
+
locale_id?: string | null | undefined;
|
848
|
+
prf_ctrl_prop?: string | null | undefined;
|
849
|
+
prf_ctrl_typ?: string | null | undefined;
|
850
|
+
upt_ctrl_prop?: string | null | undefined;
|
851
|
+
upt_ctrl_typ?: string | null | undefined;
|
852
|
+
var_nam?: string | null | undefined;
|
853
|
+
}[] | null | undefined;
|
793
854
|
}>;
|
794
855
|
getIsLoading: import("vue").ComputedRef<boolean>;
|
795
856
|
getResultSetMetadataColumns: import("vue").ComputedRef<{
|
@@ -1034,6 +1095,26 @@ export declare const useKgPageDdaCreateStore: import("pinia").StoreDefinition<"K
|
|
1034
1095
|
var_nam?: string | null | undefined;
|
1035
1096
|
var_text?: string | null | undefined;
|
1036
1097
|
}[] | null | undefined;
|
1098
|
+
varVariableConfigs?: {
|
1099
|
+
cpy_ctrl_prop?: string | null | undefined;
|
1100
|
+
cpy_ctrl_typ?: string | null | undefined;
|
1101
|
+
crt_ctrl_prop?: string | null | undefined;
|
1102
|
+
crt_ctrl_typ?: string | null | undefined;
|
1103
|
+
ctrl_prop?: string | null | undefined;
|
1104
|
+
ctrl_typ?: string | null | undefined;
|
1105
|
+
cust_lvl?: number | null | undefined;
|
1106
|
+
del_ctrl_prop?: string | null | undefined;
|
1107
|
+
del_ctrl_typ?: string | null | undefined;
|
1108
|
+
frm_id?: string | null | undefined;
|
1109
|
+
grp_nam?: string | null | undefined;
|
1110
|
+
id?: string | null | undefined;
|
1111
|
+
locale_id?: string | null | undefined;
|
1112
|
+
prf_ctrl_prop?: string | null | undefined;
|
1113
|
+
prf_ctrl_typ?: string | null | undefined;
|
1114
|
+
upt_ctrl_prop?: string | null | undefined;
|
1115
|
+
upt_ctrl_typ?: string | null | undefined;
|
1116
|
+
var_nam?: string | null | undefined;
|
1117
|
+
}[] | null | undefined;
|
1037
1118
|
}>;
|
1038
1119
|
getFrmId: import("vue").ComputedRef<string | null | undefined>;
|
1039
1120
|
getVarButtons: import("vue").ComputedRef<{
|
@@ -1081,9 +1162,9 @@ export declare const useKgPageDdaCreateStore: import("pinia").StoreDefinition<"K
|
|
1081
1162
|
deleteVarButton: (param: {
|
1082
1163
|
varNam: string | null | undefined;
|
1083
1164
|
}) => void;
|
1084
|
-
setVarProfileDetails: (
|
1085
|
-
setVarGridDetails: (
|
1086
|
-
setVarSubmitFields: (
|
1165
|
+
setVarProfileDetails: (varProfileDetails: Array<VarProfileDetail>) => void;
|
1166
|
+
setVarGridDetails: (varGridDetails: Array<VarGridDetail>) => void;
|
1167
|
+
setVarSubmitFields: (varSubmitFields: Array<VarSubmitField>) => void;
|
1087
1168
|
createVarVariableCatalog: (param: {
|
1088
1169
|
varNam: string | null | undefined;
|
1089
1170
|
varText: string | null | undefined;
|
@@ -1092,6 +1173,7 @@ export declare const useKgPageDdaCreateStore: import("pinia").StoreDefinition<"K
|
|
1092
1173
|
varNam: string | null | undefined;
|
1093
1174
|
varText: string | null | undefined;
|
1094
1175
|
}) => void;
|
1176
|
+
setVarVariableConfigs: (varVariableConfigs: Array<VarVariableConfig>) => void;
|
1095
1177
|
getVarText: (varNam: string | null | undefined) => string;
|
1096
1178
|
}, "getVarButtons" | "getIsLoading" | "getResultSetMetadataColumns" | "getCreateVarDdaQuery" | "getFrmId">>, Pick<{
|
1097
1179
|
isLoading: import("vue").Ref<boolean>;
|
@@ -1337,6 +1419,26 @@ export declare const useKgPageDdaCreateStore: import("pinia").StoreDefinition<"K
|
|
1337
1419
|
var_nam?: string | null | undefined;
|
1338
1420
|
var_text?: string | null | undefined;
|
1339
1421
|
}[] | null | undefined;
|
1422
|
+
varVariableConfigs?: {
|
1423
|
+
cpy_ctrl_prop?: string | null | undefined;
|
1424
|
+
cpy_ctrl_typ?: string | null | undefined;
|
1425
|
+
crt_ctrl_prop?: string | null | undefined;
|
1426
|
+
crt_ctrl_typ?: string | null | undefined;
|
1427
|
+
ctrl_prop?: string | null | undefined;
|
1428
|
+
ctrl_typ?: string | null | undefined;
|
1429
|
+
cust_lvl?: number | null | undefined;
|
1430
|
+
del_ctrl_prop?: string | null | undefined;
|
1431
|
+
del_ctrl_typ?: string | null | undefined;
|
1432
|
+
frm_id?: string | null | undefined;
|
1433
|
+
grp_nam?: string | null | undefined;
|
1434
|
+
id?: string | null | undefined;
|
1435
|
+
locale_id?: string | null | undefined;
|
1436
|
+
prf_ctrl_prop?: string | null | undefined;
|
1437
|
+
prf_ctrl_typ?: string | null | undefined;
|
1438
|
+
upt_ctrl_prop?: string | null | undefined;
|
1439
|
+
upt_ctrl_typ?: string | null | undefined;
|
1440
|
+
var_nam?: string | null | undefined;
|
1441
|
+
}[] | null | undefined;
|
1340
1442
|
}>;
|
1341
1443
|
getIsLoading: import("vue").ComputedRef<boolean>;
|
1342
1444
|
getResultSetMetadataColumns: import("vue").ComputedRef<{
|
@@ -1581,6 +1683,26 @@ export declare const useKgPageDdaCreateStore: import("pinia").StoreDefinition<"K
|
|
1581
1683
|
var_nam?: string | null | undefined;
|
1582
1684
|
var_text?: string | null | undefined;
|
1583
1685
|
}[] | null | undefined;
|
1686
|
+
varVariableConfigs?: {
|
1687
|
+
cpy_ctrl_prop?: string | null | undefined;
|
1688
|
+
cpy_ctrl_typ?: string | null | undefined;
|
1689
|
+
crt_ctrl_prop?: string | null | undefined;
|
1690
|
+
crt_ctrl_typ?: string | null | undefined;
|
1691
|
+
ctrl_prop?: string | null | undefined;
|
1692
|
+
ctrl_typ?: string | null | undefined;
|
1693
|
+
cust_lvl?: number | null | undefined;
|
1694
|
+
del_ctrl_prop?: string | null | undefined;
|
1695
|
+
del_ctrl_typ?: string | null | undefined;
|
1696
|
+
frm_id?: string | null | undefined;
|
1697
|
+
grp_nam?: string | null | undefined;
|
1698
|
+
id?: string | null | undefined;
|
1699
|
+
locale_id?: string | null | undefined;
|
1700
|
+
prf_ctrl_prop?: string | null | undefined;
|
1701
|
+
prf_ctrl_typ?: string | null | undefined;
|
1702
|
+
upt_ctrl_prop?: string | null | undefined;
|
1703
|
+
upt_ctrl_typ?: string | null | undefined;
|
1704
|
+
var_nam?: string | null | undefined;
|
1705
|
+
}[] | null | undefined;
|
1584
1706
|
}>;
|
1585
1707
|
getFrmId: import("vue").ComputedRef<string | null | undefined>;
|
1586
1708
|
getVarButtons: import("vue").ComputedRef<{
|
@@ -1628,9 +1750,9 @@ export declare const useKgPageDdaCreateStore: import("pinia").StoreDefinition<"K
|
|
1628
1750
|
deleteVarButton: (param: {
|
1629
1751
|
varNam: string | null | undefined;
|
1630
1752
|
}) => void;
|
1631
|
-
setVarProfileDetails: (
|
1632
|
-
setVarGridDetails: (
|
1633
|
-
setVarSubmitFields: (
|
1753
|
+
setVarProfileDetails: (varProfileDetails: Array<VarProfileDetail>) => void;
|
1754
|
+
setVarGridDetails: (varGridDetails: Array<VarGridDetail>) => void;
|
1755
|
+
setVarSubmitFields: (varSubmitFields: Array<VarSubmitField>) => void;
|
1634
1756
|
createVarVariableCatalog: (param: {
|
1635
1757
|
varNam: string | null | undefined;
|
1636
1758
|
varText: string | null | undefined;
|
@@ -1639,5 +1761,6 @@ export declare const useKgPageDdaCreateStore: import("pinia").StoreDefinition<"K
|
|
1639
1761
|
varNam: string | null | undefined;
|
1640
1762
|
varText: string | null | undefined;
|
1641
1763
|
}) => void;
|
1764
|
+
setVarVariableConfigs: (varVariableConfigs: Array<VarVariableConfig>) => void;
|
1642
1765
|
getVarText: (varNam: string | null | undefined) => string;
|
1643
|
-
}, "setIsLoading" | "setResultSetMetadataColumns" | "setFrmId" | "patchSysPermission" | "updateVarDda" | "createVarButton" | "patchVarButton" | "deleteVarButton" | "setVarProfileDetails" | "setVarGridDetails" | "setVarSubmitFields" | "createVarVariableCatalog" | "updateVarVariableCatalog" | "getVarText">>;
|
1766
|
+
}, "setIsLoading" | "setResultSetMetadataColumns" | "setFrmId" | "patchSysPermission" | "updateVarDda" | "createVarButton" | "patchVarButton" | "deleteVarButton" | "setVarProfileDetails" | "setVarGridDetails" | "setVarSubmitFields" | "createVarVariableCatalog" | "updateVarVariableCatalog" | "setVarVariableConfigs" | "getVarText">>;
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@kengic/vue",
|
3
|
-
"version": "0.19.2-beta.
|
3
|
+
"version": "0.19.2-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",
|