@devtable/dashboard 14.16.1 → 14.17.0

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/i18n/en.d.ts CHANGED
@@ -299,6 +299,8 @@ export declare const en: {
299
299
  copied: string;
300
300
  action: string;
301
301
  actions: {
302
+ search: string;
303
+ reload: string;
302
304
  actions: string;
303
305
  open: string;
304
306
  close: string;
package/dist/i18n/zh.d.ts CHANGED
@@ -299,6 +299,8 @@ export declare const zh: {
299
299
  copied: string;
300
300
  action: string;
301
301
  actions: {
302
+ search: string;
303
+ reload: string;
302
304
  actions: string;
303
305
  open: string;
304
306
  close: string;
package/dist/index.d.ts CHANGED
@@ -10,9 +10,12 @@ export * from './types';
10
10
  export * from './model';
11
11
  export * from './api-caller/request';
12
12
  export type { AnyObject } from './types/utils';
13
+ export type OnFiltersSubmit = (props?: {
14
+ force?: boolean;
15
+ }) => void;
13
16
  export type RenderSearchButtonProps = {
14
17
  disabled: boolean;
15
- onSubmit: () => void;
18
+ onSubmit: OnFiltersSubmit;
16
19
  };
17
20
  export interface IDashboardConfig {
18
21
  basename: string;