@kengic/vue 0.5.19-beta.0 → 0.5.19-beta.1
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.
@@ -39,7 +39,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
39
39
|
'onUpdate:value': import("vue").PropType<(value: import("./index.vm").IKgFormItemValue | null) => void>;
|
40
40
|
onKgSubmit: import("vue").PropType<() => void>;
|
41
41
|
onKgChange: import("vue").PropType<(value: any) => void>;
|
42
|
-
onKgSelectDatasChange: import("vue").PropType<(datas: any[]) => void>;
|
42
|
+
onKgSelectDatasChange: import("vue").PropType<(datas: any[]) => void>; /** 是否禁用. */
|
43
43
|
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("kgSubmit" | "kgChange")[], "kgSubmit" | "kgChange", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
44
44
|
kgVarName: {
|
45
45
|
type: import("vue").PropType<string>;
|
@@ -78,7 +78,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
78
78
|
'onUpdate:value': import("vue").PropType<(value: import("./index.vm").IKgFormItemValue | null) => void>;
|
79
79
|
onKgSubmit: import("vue").PropType<() => void>;
|
80
80
|
onKgChange: import("vue").PropType<(value: any) => void>;
|
81
|
-
onKgSelectDatasChange: import("vue").PropType<(datas: any[]) => void>;
|
81
|
+
onKgSelectDatasChange: import("vue").PropType<(datas: any[]) => void>; /** 是否禁用. */
|
82
82
|
}>> & {
|
83
83
|
onKgSubmit?: ((...args: any[]) => any) | undefined;
|
84
84
|
onKgChange?: ((...args: any[]) => any) | undefined;
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import { type StoreDefinition } from 'pinia';
|
2
|
-
import { VarButton, VarCatalog,
|
2
|
+
import { VarButton, VarCatalog, VarGridConfig, VarGridDetail, VarGridDTO, VarGridMasterDTO, VarLookup, VarPossibility, VarProfileConfig, VarProfileDetail, VarProfileDTO, VarProfileMasterDTO, VarSubmitConfig, VarSubmitField, VarVariableConfig, VarVariableInput } from '../../apis/WMS/models';
|
3
3
|
export declare type IFormID = {
|
4
4
|
formID: string;
|
5
5
|
/**
|
@@ -150,9 +150,9 @@ export declare type IKgVarStoreDefinition = StoreDefinition<'KgVar', IKgVarState
|
|
150
150
|
*
|
151
151
|
* @param formID
|
152
152
|
* @param value
|
153
|
-
* @param
|
153
|
+
* @param whenReady 是否等待变量配置数据加载完成.
|
154
154
|
*/
|
155
|
-
setIsUpdating(formID: string, value: boolean,
|
155
|
+
setIsUpdating(formID: string, value: boolean, whenReady?: boolean): void;
|
156
156
|
setIsCopying(formID: string, value: boolean): void;
|
157
157
|
setIsDeleting(formID: string, deleting: boolean): void;
|
158
158
|
setIsCreatingRequesting(formID: string, value: boolean): void;
|