@autoafleveren/ui 1.6.4 → 1.8.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.
@@ -1,5 +1,6 @@
1
1
  import type { DrawerProps } from './index.d';
2
2
  type __VLS_Props = Omit<DrawerProps, 'router' | 'unique' | 'onOpen' | 'onClose' | 'plugins' | 'forceCreate'>;
3
+ declare function setOptions(options: DrawerProps): void;
3
4
  declare function open(): Promise<void>;
4
5
  declare function close(): Promise<void>;
5
6
  declare var __VLS_40: {};
@@ -10,6 +11,7 @@ declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, {
10
11
  isOpen: import("vue").Ref<boolean, boolean>;
11
12
  open: typeof open;
12
13
  close: typeof close;
14
+ setOptions: typeof setOptions;
13
15
  }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
14
16
  close: (value: {
15
17
  animation: () => Promise<void>;
@@ -4,6 +4,7 @@ export declare function useDrawer(component?: MaybeRef<Component | string>, opti
4
4
  instance: import("vue").Ref<ModalInstance | undefined, ModalInstance | undefined>;
5
5
  open: (openOptions: DrawerProps) => Promise<unknown>;
6
6
  close: () => Promise<void>;
7
+ closeAll: () => Promise<void>;
7
8
  instances: import("vue").Ref<{
8
9
  ref: AppDrawer;
9
10
  instance: App;