@sunny-base-web/effects 0.8.22 → 0.8.24
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.d.ts +5 -2
- package/dist/index.js +5 -5
- package/dist/index.mjs +22753 -26149
- package/package.json +9 -9
package/dist/index.d.ts
CHANGED
|
@@ -3115,9 +3115,12 @@ export declare interface UseSelectOptionsReturn {
|
|
|
3115
3115
|
clearCache: (dictCode?: string | number) => void;
|
|
3116
3116
|
}
|
|
3117
3117
|
|
|
3118
|
-
export declare function useTable({ columns, editRules, toolbarButtons, data, editable, editTrigger, editMode, height, gridId, gridEvents, }?: UseTableOptions): readonly [DefineSetupFnComponent<Record<string, any>, {}, {}, Record<string, any> & {}, PublicProps>, {
|
|
3119
|
-
reloadData: (newData: any[]) => Promise<void>;
|
|
3118
|
+
export declare function useTable({ columns, editRules, toolbarButtons, data, editable, editTrigger, editMode, height, gridId, gridEvents, }?: UseTableOptions): readonly [DefineSetupFnComponent<Record<string, any>, {}, {}, Record<string, any> & {}, PublicProps>, VxeGridApi_2 & {
|
|
3120
3119
|
setColumns: (newColumns: any[]) => void;
|
|
3120
|
+
setToolbarButtons: (buttons: Array<{
|
|
3121
|
+
code: string;
|
|
3122
|
+
name: string;
|
|
3123
|
+
}>) => void;
|
|
3121
3124
|
}];
|
|
3122
3125
|
|
|
3123
3126
|
declare interface UseTableOptions {
|