@sunny-base-web/effects 0.8.14 → 0.8.15
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 +4 -1
- package/dist/index.js +5 -5
- package/dist/index.mjs +960 -956
- package/package.json +10 -10
package/dist/index.d.ts
CHANGED
|
@@ -3075,7 +3075,10 @@ export declare interface UseSelectOptionsReturn {
|
|
|
3075
3075
|
clearCache: (dictCode?: string | number) => void;
|
|
3076
3076
|
}
|
|
3077
3077
|
|
|
3078
|
-
export declare function useTable({ columns, editRules, toolbarButtons, data, editable, editTrigger, editMode, height, gridId, gridEvents, }?: UseTableOptions): readonly [DefineSetupFnComponent<Record<string, any>, {}, {}, Record<string, any> & {}, PublicProps>,
|
|
3078
|
+
export declare function useTable({ columns, editRules, toolbarButtons, data, editable, editTrigger, editMode, height, gridId, gridEvents, }?: UseTableOptions): readonly [DefineSetupFnComponent<Record<string, any>, {}, {}, Record<string, any> & {}, PublicProps>, {
|
|
3079
|
+
reloadData: (newData: any[]) => Promise<void>;
|
|
3080
|
+
setColumns: (newColumns: any[]) => void;
|
|
3081
|
+
}];
|
|
3079
3082
|
|
|
3080
3083
|
declare interface UseTableOptions {
|
|
3081
3084
|
/** 表格列配置 */
|