@sunny-base-web/effects 0.8.21 → 0.8.23

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 CHANGED
@@ -3118,6 +3118,10 @@ export declare interface UseSelectOptionsReturn {
3118
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
3119
  reloadData: (newData: any[]) => Promise<void>;
3120
3120
  setColumns: (newColumns: any[]) => void;
3121
+ setToolbarButtons: (buttons: Array<{
3122
+ code: string;
3123
+ name: string;
3124
+ }>) => void;
3121
3125
  }];
3122
3126
 
3123
3127
  declare interface UseTableOptions {