@vue-ui-kit/ant 2.1.1 → 2.1.3

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.
@@ -143,7 +143,7 @@ export interface ToolbarConfig {
143
143
  buttons?: Array<ToolbarButtonProps>;
144
144
  tools?: Array<{
145
145
  code: string;
146
- icon: string;
146
+ icon?: string;
147
147
  type?: ButtonType;
148
148
  content?: string;
149
149
  disabled?: boolean;
@@ -325,6 +325,7 @@ export interface PGridInstance<D extends Recordable = Recordable, F extends Reco
325
325
  reload: () => Promise<D[]>;
326
326
  reloadPage: () => Promise<D[]>;
327
327
  passQuery: (query: Partial<F>, lazy?: boolean) => Promise<void | D[]>;
328
+ forcePassQuery: (query: Partial<F>, lazy?: boolean) => Promise<void | D[]>;
328
329
  };
329
330
  selectedRowKeys: string[] | number[];
330
331
  selectedRecords: D[];