@kengic/vue 0.6.1-beta.3 → 0.6.1-beta.5
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 +958 -1000
- package/dist/src/components/KgButton/index.hooks.d.ts +1 -1
- package/dist/src/components/KgSubmit/index.hooks.d.ts +1 -1
- package/dist/src/components/KgTable/index.hooks.d.ts +1 -1
- package/dist/src/components/KgVar/index.store.d.ts +4 -0
- package/dist/src/utils/kg.util.d.ts +1 -1
- package/package.json +1 -1
@@ -121,6 +121,10 @@ export declare type IKgVarStoreDefinition = StoreDefinition<'KgVar', IKgVarState
|
|
121
121
|
getVarSubmitFieldsForCopyNotKey(): (formID?: string | null) => Array<VarSubmitField> | null;
|
122
122
|
/** 获取删除时的提交字段. */
|
123
123
|
getVarSubmitFieldsForDelete(): (formID?: string | null) => Array<VarSubmitField> | null;
|
124
|
+
/** 获取删除时的提交字段: 关键字段. */
|
125
|
+
getVarSubmitFieldsForDeleteKey(): (formID?: string | null) => Array<VarSubmitField> | null;
|
126
|
+
/** 获取删除时的提交字段: 不是关键字段. */
|
127
|
+
getVarSubmitFieldsForDeleteNotKey(): (formID?: string | null) => Array<VarSubmitField> | null;
|
124
128
|
getVarSubmitField(): (formID?: string | null, var_nam?: string | null) => VarSubmitField | null;
|
125
129
|
getVarButton(): (formID?: string | null, var_nam?: string | null) => VarButton | null;
|
126
130
|
getVarButtonConfig(): (formID?: string | null) => VarButtonConfig | null;
|
@@ -31,7 +31,7 @@ export declare class KgUtil {
|
|
31
31
|
* @param formID 界面标识.
|
32
32
|
* @param $dayjs dayjs 实例.
|
33
33
|
*/
|
34
|
-
static parseParams(params?: Record<string, any> | null, formID?: string, $dayjs?: typeof dayjs): any;
|
34
|
+
static parseParams(params?: Record<string, any> | null, formID?: string | null, $dayjs?: typeof dayjs): any;
|
35
35
|
/**
|
36
36
|
* 处理请求参数: 解析字符串类型的参数值.
|
37
37
|
* @param value 参数的原始值.
|