@kengic/vue 0.19.2-beta.1 → 0.19.2-beta.3
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 +2125 -1979
- package/dist/src/apis/WMS/models.d.ts +2 -0
- package/dist/src/components/KgButton/index.d.ts +2 -2
- package/dist/src/components/KgButton/{KgButton.hooks.d.ts → index.hooks.d.ts} +1 -1
- package/dist/src/components/KgSearch/index.store.d.ts +0 -5
- 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 +16 -14
- package/dist/src/components/KgVar/index.store.d.ts +5 -5
- package/dist/src/components/KgWarehouse/index.hooks.d.ts +0 -3
- package/dist/src/components/KgWarehouse/index.store.d.ts +0 -3
- 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
- /package/dist/src/components/KgButton/{KgButton.store.d.ts → index.store.d.ts} +0 -0
@@ -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,5 +1,5 @@
|
|
1
1
|
import { IRemoveEventListenerHandler, KG_BUTTON_TYPE } from '../../consts';
|
2
|
-
import { IKgButtonClickCb, IKgButtonDeleteOkCb, IKgButtonImportOkCb, IKgButtonOtherOkCb, IKgButtonStore, IKgButtonSubmitCancelCb, IKgButtonSubmitSaveCb, IKgButtonUpdateBeforeClickCb } from './
|
2
|
+
import { IKgButtonClickCb, IKgButtonDeleteOkCb, IKgButtonImportOkCb, IKgButtonOtherOkCb, IKgButtonStore, IKgButtonSubmitCancelCb, IKgButtonSubmitSaveCb, IKgButtonUpdateBeforeClickCb } from './index.store';
|
3
3
|
export declare type IUseKgButton = {
|
4
4
|
formID: string;
|
5
5
|
/** 状态数据. */
|
@@ -38,17 +38,12 @@ export interface IKgSearchState {
|
|
38
38
|
resetFnMap: Map<string, IKgSearchResetFn>;
|
39
39
|
}
|
40
40
|
export declare type IKgSearchStoreDefinition = StoreDefinition<'KgSearch', IKgSearchState, {
|
41
|
-
/** 是否就绪. */
|
42
41
|
getIsReady(): (formID: string | null | undefined) => boolean;
|
43
42
|
getModel(): (formID: string | null | undefined) => Record<string, any> | null;
|
44
43
|
getOperatorModel(): (formID: string | null | undefined) => Record<string, string> | null;
|
45
44
|
getSearchFn(): (formID: string | null | undefined) => IKgSearchSearchFn | null;
|
46
45
|
getResetFn(): (formID: string | null | undefined) => IKgSearchResetFn | null;
|
47
46
|
}, {
|
48
|
-
/**
|
49
|
-
* 清理数据.
|
50
|
-
* @param formID 页面标识.
|
51
|
-
*/
|
52
47
|
dispose(formID: string | null | undefined): void;
|
53
48
|
addEventListener(formID: string, event: IKgSearchEvent, cb: IKgSearchCb): void;
|
54
49
|
removeEventListener(formID: string, event: IKgSearchEvent, cb?: IKgSearchCb): void;
|
@@ -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,25 +22,26 @@ 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
|
-
isRetrieving(): (frm_id: string | null | undefined) => boolean | null;
|
26
|
-
|
25
|
+
isRetrieving(): (frm_id: string | null | undefined) => boolean | null; /**
|
26
|
+
* 界面标识.
|
27
|
+
*/
|
28
|
+
isRetrievingVarProfileMaster(): (frm_id: string | null | undefined) => boolean | null; /** 状态数据. */
|
27
29
|
isRetrievingVarGridMaster(): (frm_id: string | null | undefined) => boolean | null;
|
28
|
-
isSearched(): (frm_id: string | null | undefined) => boolean;
|
29
|
-
isCreating(): (frm_id: string | null | undefined) => boolean | null;
|
30
|
+
isSearched(): (frm_id: string | null | undefined) => boolean; /** 正在查询 VarGridMaster. */
|
31
|
+
isCreating(): (frm_id: string | null | undefined) => boolean | null; /** 变量配置是否查询完成. */
|
30
32
|
isUpdating(): (frm_id: string | null | undefined) => boolean | null;
|
31
33
|
isCopying(): (frm_id: string | null | undefined) => boolean | null;
|
32
|
-
isDeleting(): (frm_id: string | null | undefined) => boolean | null;
|
34
|
+
isDeleting(): (frm_id: string | null | undefined) => boolean | null; /** 正在更新:正在调用接口. */
|
33
35
|
isCreatingRequesting(): (frm_id: string | null | undefined) => boolean | null;
|
34
36
|
isUpdatingRequesting(): (frm_id: string | null | undefined) => boolean | null;
|
35
37
|
isCopyingRequesting(): (frm_id: string | null | undefined) => boolean | null;
|
36
|
-
/** 其他按钮:正在调用接口. */
|
37
38
|
isDeletingRequesting(): (frm_id: string | null | undefined) => boolean | null;
|
38
39
|
isOtherRequesting(): (frm_id: string | null | undefined) => boolean | null;
|
39
40
|
getVarCatalogs(): (frm_id: string | null | undefined) => import("../../apis/WMS/models").VarVariableCatalog[] | null;
|
40
41
|
getVarCatalog(): (frm_id: string | null | undefined, var_nam: string | null | undefined) => import("../../apis/WMS/models").VarVariableCatalog | null;
|
41
42
|
getVarLookup(): (frm_id: string | null | undefined, var_nam: string | null | undefined) => import("../../apis/WMS/models").VarVariableLookup | null;
|
42
|
-
getVarPossibility(): (frm_id: string | null | undefined, var_nam: string | null | undefined) => import("../../apis/WMS/models").VarVariablePossibility | null;
|
43
|
-
getVarVariableConfig(): (frm_id: string | null | undefined, var_nam: string | null | undefined) => import("../../apis/WMS/models").VarVariableConfig | null;
|
43
|
+
getVarPossibility(): (frm_id: string | null | undefined, var_nam: string | null | undefined) => import("../../apis/WMS/models").VarVariablePossibility | null; /** 当前的 VarGridMaster. */
|
44
|
+
getVarVariableConfig(): (frm_id: string | null | undefined, var_nam: string | null | undefined) => import("../../apis/WMS/models").VarVariableConfig | null;
|
44
45
|
getVarVariableInput(): (frm_id: string | null | undefined, var_nam: string | null | undefined) => import("../../apis/WMS/models").VarVariableInput | null;
|
45
46
|
getVarButtons(): (frm_id: string | null | undefined) => import("../../apis/WMS/models").VarButton[] | null;
|
46
47
|
getVarSubmitConfig(): (frm_id: string | null | undefined) => import("../../apis/WMS/models").VarSubmitConfig | null;
|
@@ -48,16 +49,17 @@ export declare function useKgVar(formID?: string | null, init?: boolean, level?:
|
|
48
49
|
getVarSubmitFields(): (frm_id: string | null | undefined) => VarSubmitField[] | null;
|
49
50
|
getVarSubmitFieldsForCreate(): (frm_id: string | null | undefined) => VarSubmitField[] | null;
|
50
51
|
getVarSubmitFieldsForCreateKey(): (frm_id: string | null | undefined) => VarSubmitField[] | null;
|
51
|
-
getVarSubmitFieldsForCreateNotKey(): (frm_id: string | null | undefined) => VarSubmitField[] | null;
|
52
|
+
getVarSubmitFieldsForCreateNotKey(): (frm_id: string | null | undefined) => VarSubmitField[] | null; /**
|
53
|
+
* 修改 VarSubmitField 的部分属性.
|
54
|
+
* @param variableName 变量名称
|
55
|
+
* @param properties 要修改的部分属性.
|
56
|
+
* @param isTriggerEvent 是否触发变更事件.
|
57
|
+
*/
|
52
58
|
getVarSubmitFieldsForCreateKeyVisible(): (frm_id: string | null | undefined) => VarSubmitField[] | null;
|
53
59
|
getVarSubmitFieldsForCreateNotKeyVisible(): (frm_id: string | null | undefined) => VarSubmitField[] | null;
|
54
60
|
getVarSubmitFieldsForUpdate(): (frm_id: string | null | undefined) => VarSubmitField[] | null;
|
55
61
|
getVarSubmitFieldsForUpdateKey(): (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
|
-
*/
|
62
|
+
getVarSubmitFieldsForUpdateNotKey(): (frm_id: string | null | undefined) => VarSubmitField[] | null;
|
61
63
|
getVarSubmitFieldsForUpdateKeyVisible(): (frm_id: string | null | undefined) => VarSubmitField[] | null;
|
62
64
|
getVarSubmitFieldsForUpdateNotKeyVisible(): (frm_id: string | null | undefined) => VarSubmitField[] | null;
|
63
65
|
getVarSubmitFieldsForCopy(): (frm_id: string | null | undefined) => VarSubmitField[] | null;
|
@@ -102,7 +102,7 @@ export declare type IKgVarStoreDefinition = StoreDefinition<'KgVar', IKgVarState
|
|
102
102
|
isOtherRequesting(): (frm_id: string | null | undefined) => boolean | null;
|
103
103
|
getVarCatalogs(): (frm_id: string | null | undefined) => Array<VarVariableCatalog> | null;
|
104
104
|
/**
|
105
|
-
*
|
105
|
+
* 和 var_nam 获取 VarVariableCatalog.
|
106
106
|
*/
|
107
107
|
getVarCatalog(): (frm_id: string | null | undefined, var_nam: string | null | undefined) => VarVariableCatalog | null;
|
108
108
|
getVarLookup(): (frm_id: string | null | undefined, var_nam: string | null | undefined) => VarVariableLookup | null;
|
@@ -165,15 +165,15 @@ export declare type IKgVarStoreDefinition = StoreDefinition<'KgVar', IKgVarState
|
|
165
165
|
getVarProfileConfig(): (frm_id: string | null | undefined) => VarProfileConfig | null;
|
166
166
|
getVarProfileMasters(): (frm_id: string | null | undefined) => Array<VarProfileMasterDTO> | null;
|
167
167
|
/**
|
168
|
-
*
|
168
|
+
* 和 var_nam 获取当前 VarProfileMaster 下的某个 VarProfileDetail.
|
169
169
|
*/
|
170
170
|
getVarProfileDetail(): (frm_id: string | null | undefined, var_nam: string | null | undefined) => VarProfileDetail | null;
|
171
171
|
/**
|
172
|
-
*
|
172
|
+
* 获取 VarProfileDetail 列表.
|
173
173
|
*/
|
174
174
|
getVarProfileDetails(): (frm_id: string | null | undefined) => Array<VarProfileDetail> | null;
|
175
175
|
/**
|
176
|
-
*
|
176
|
+
* 获取系统的 VarProfileDetail 列表, 即 customLevel 为 0 的 VarProfileMaster 下面的所有 VarProfileDetail.
|
177
177
|
*/
|
178
178
|
getSystemVarProfileDetails(): (frm_id: string | null | undefined) => Array<VarProfileDetail> | null;
|
179
179
|
/** 获取当前 VarProfileMaster 的 ID. */
|
@@ -189,7 +189,7 @@ export declare type IKgVarStoreDefinition = StoreDefinition<'KgVar', IKgVarState
|
|
189
189
|
getCurrentVarGridMaster(): (frm_id: string | null | undefined) => VarGridMasterDTO | null;
|
190
190
|
getCurrentVarGridDetails(): (frm_id: string | null | undefined) => Array<VarGridDetail> | null;
|
191
191
|
/**
|
192
|
-
*
|
192
|
+
* 获取系统的 VarGridDetail 列表, 即 customLevel 为 0 的 VarGridMaster 下面的所有 VarGridDetail.
|
193
193
|
*/
|
194
194
|
getSystemVarGridDetails(): (frm_id: string | null | undefined) => Array<VarGridDetail> | null;
|
195
195
|
getCurrentVisibleVarGridDetails(): (frm_id: string | null | undefined) => Array<VarGridDetail> | null;
|
@@ -44,7 +44,7 @@ export interface IKgSubmitConfigProps {
|
|
44
44
|
'footer.ok-button.text-var-name.deleting'?: string;
|
45
45
|
}
|
46
46
|
/**
|
47
|
-
*
|
47
|
+
* <p>表单控件的参数.</p>
|
48
48
|
* <p>对应于 {@link VarVariableConfig.ctrl_prop} 字段, 根据表单控件的类型, 设置额外的参数.</p>
|
49
49
|
* @see VarVariableConfig.ctrl_prop
|
50
50
|
* @see KG_FORM_ITEM_TYPE
|
@@ -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.3",
|
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",
|
File without changes
|