@kengic/vue 0.9.4 → 0.9.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.
@@ -54,6 +54,7 @@ export interface IKgButtonState {
|
|
54
54
|
export declare type IKgButtonStoreDefinition = StoreDefinition<'KgButton', IKgButtonState, {
|
55
55
|
getClickListeners(): (formID?: string | null) => Array<IKgButtonClickCb> | null;
|
56
56
|
}, {
|
57
|
+
dispose(formID: string | null | undefined): void;
|
57
58
|
/**
|
58
59
|
* 注册事件监听.
|
59
60
|
* @param formID 界面标识.
|
@@ -86,6 +86,10 @@ export declare type IKgTableStoreDefinition = StoreDefinition<'KgTable', IKgTabl
|
|
86
86
|
getIsRetrieving(): (formID: string | null | undefined) => boolean | null;
|
87
87
|
getTableWidth(): (formID: string | null | undefined) => number | null;
|
88
88
|
}, {
|
89
|
+
/**
|
90
|
+
* 清理数据.
|
91
|
+
* @param formID 页面标识.
|
92
|
+
*/
|
89
93
|
dispose(formID: string | null | undefined): void;
|
90
94
|
addEventListener(formID: string | null | undefined, event: IKgTableEvent, cb: IKgTableCb): void;
|
91
95
|
removeEventListener(formID: string | null | undefined, event: IKgTableEvent, cb?: IKgTableCb): void;
|