@anzusystems/common-admin 1.47.0-beta.260 → 1.47.0-beta.261

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/labs.d.ts CHANGED
@@ -11,7 +11,6 @@ import { ComponentProvideOptions } from 'vue';
11
11
  import { ComputedRef } from 'vue';
12
12
  import { DefineComponent } from 'vue';
13
13
  import { FilterField } from './filterFactory';
14
- import { Fn } from '@vueuse/core';
15
14
  import { InjectionKey } from 'vue';
16
15
  import { Method } from 'axios';
17
16
  import { PublicProps } from 'vue';
@@ -459,8 +458,6 @@ export declare const ASubjectSelect: <TItem>(__VLS_props: NonNullable<Awaited<ty
459
458
  } & VNodeProps & AllowedComponentProps & ComponentCustomProps, never>, "onUpdate:modelValue" | "onOnConfirm" | "onOnOpen" | "onUpdate:pagination" | "onOnPageChange" | "onOnFetchNextPage"> & {
460
459
  selectedItems: Array<TItem>;
461
460
  pagination: Pagination;
462
- submitFilter: Fn;
463
- resetFilter: Fn;
464
461
  loading?: boolean;
465
462
  minCount?: number;
466
463
  maxCount?: number;
@@ -921,7 +918,7 @@ export declare function useSubjectSelect<TItem>(datatableConfig: any, datatableH
921
918
  onFetchNextPage: () => Promise<void>;
922
919
  onOpen: () => void;
923
920
  sortByChange: (option: DatatableOrderingOption) => void;
924
- getList: UseDebounceFnReturn<() => void>;
921
+ getList: UseDebounceFnReturn<() => Promise<void>>;
925
922
  resetFilter: () => void;
926
923
  submitFilter: () => void;
927
924
  };