@autoafleveren/ui 0.19.10 → 0.19.11

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.
Files changed (28) hide show
  1. package/dist/icons.cjs +1 -1
  2. package/dist/icons.js +1 -1
  3. package/dist/types/components/AppActionBar/AppActionBarItem.vue.d.ts +3 -1
  4. package/dist/types/components/AppCard/AppCard.vue.d.ts +1 -1
  5. package/dist/types/components/AppColor/AppColor.vue.d.ts +3 -1
  6. package/dist/types/components/AppColorCard/AppColorCard.vue.d.ts +1 -1
  7. package/dist/types/components/AppContextMenu/AppContextMenu.vue.d.ts +3 -1
  8. package/dist/types/components/AppDataTable/AppDataTable.vue.d.ts +3 -9
  9. package/dist/types/components/AppDisclosure/AppDisclosureButton.vue.d.ts +52 -1
  10. package/dist/types/components/AppDropdownButton/AppDropdownButton.vue.d.ts +112 -1
  11. package/dist/types/components/AppImageDropzone/AppImageDropzone.vue.d.ts +4 -1
  12. package/dist/types/components/AppInput/AppInput.vue.d.ts +2 -5
  13. package/dist/types/components/AppInput/Input.vue.d.ts +3 -5
  14. package/dist/types/components/AppInput/LocationInput.vue.d.ts +3 -1
  15. package/dist/types/components/AppMaps/AppMaps.vue.d.ts +3 -1
  16. package/dist/types/components/AppModal/AppModal.vue.d.ts +4 -1
  17. package/dist/types/components/AppRating/VueStarRating/StarRating.vue.d.ts +1 -1
  18. package/dist/types/components/AppStepper/AppStepper.vue.d.ts +3 -1
  19. package/dist/types/components/AppToggleCard/AppToggleCard.vue.d.ts +1 -1
  20. package/dist/types/composables/useConfirm/index.d.ts +3 -2
  21. package/dist/types/composables/useError/index.d.ts +3 -2
  22. package/dist/types/composables/useModal/index.d.ts +5 -5
  23. package/dist/types/layouts/Base/Base.vue.d.ts +3 -1
  24. package/dist/types/layouts/Platform/Platform.vue.d.ts +3 -1
  25. package/dist/ui-storybook.css +1 -1
  26. package/dist/ui.cjs +43 -43
  27. package/dist/ui.js +11770 -11606
  28. package/package.json +1 -1
package/dist/icons.js CHANGED
@@ -1921,7 +1921,7 @@ function Na(e, t) {
1921
1921
  let n = t;
1922
1922
  return t === "fa" && Pe.styleDefault !== null && (t = F1()), new Promise((a, r) => {
1923
1923
  if (n === "fa") {
1924
- const i = Z0(e) || {};
1924
+ const i = Z0(e);
1925
1925
  e = i.iconName || e, t = i.prefix || t;
1926
1926
  }
1927
1927
  if (e && t && da[t] && da[t][e]) {
@@ -17,7 +17,9 @@ declare const __VLS_component: import("vue").DefineComponent<ActionItemProps, {}
17
17
  }>, {
18
18
  item: any;
19
19
  context: boolean;
20
- }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
20
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {
21
+ actionBarItem: HTMLDivElement;
22
+ }, any>;
21
23
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
22
24
  export default _default;
23
25
  type __VLS_WithTemplateSlots<T, S> = T & {
@@ -24,8 +24,8 @@ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
24
24
  declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
25
25
  title: string;
26
26
  description: string;
27
- bordered: boolean;
28
27
  icon: string | Component;
28
+ bordered: boolean;
29
29
  actions: Action[];
30
30
  contentClasses: string;
31
31
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, HTMLDivElement>;
@@ -9,5 +9,7 @@ declare const _default: import("vue").DefineComponent<__VLS_PublicProps, {}, {},
9
9
  "onUpdate:modelValue"?: ((value: string) => any) | undefined;
10
10
  }>, {
11
11
  disabled: boolean;
12
- }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, HTMLLabelElement>;
12
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {
13
+ colorInput: HTMLInputElement;
14
+ }, HTMLLabelElement>;
13
15
  export default _default;
@@ -9,7 +9,7 @@ declare function __VLS_template(): {
9
9
  attrs: Partial<{}>;
10
10
  slots: {
11
11
  title?(_: {
12
- "data-test-title-slot": boolean;
12
+ 'data-test-title-slot': boolean;
13
13
  }): any;
14
14
  default?(_: {}): any;
15
15
  };
@@ -17,5 +17,7 @@ declare const _default: import("vue").DefineComponent<Props, {
17
17
  onOpen?: (() => any) | undefined;
18
18
  onCancel?: (() => any) | undefined;
19
19
  onActionClicked?: ((action: Action) => any) | undefined;
20
- }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
20
+ }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {
21
+ contextMenuElement: HTMLDivElement;
22
+ }, any>;
21
23
  export default _default;
@@ -8,16 +8,12 @@ declare const _default: <Item extends {
8
8
  readonly onClickItem?: ((value: Item) => any) | undefined;
9
9
  readonly onContextMenuOpen?: ((value: Item) => any) | undefined;
10
10
  readonly onClickContextItem?: ((value: Item) => any) | undefined;
11
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>, "onUpdate:modelValue" | "onUpdatePage" | "onClickItem" | "onContextMenuOpen" | "onClickContextItem"> & Partial<{}> & Props<Item>> & import("vue").PublicProps;
11
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>, "onUpdate:modelValue" | "onUpdatePage" | "onClickItem" | "onContextMenuOpen" | "onClickContextItem"> & Props<Item> & any> & import("vue").PublicProps;
12
12
  expose(exposed: import("vue").ShallowUnwrapRef<{
13
13
  dataTableInstance: import("vue").ComputedRef<DataTableInstance | undefined>;
14
14
  }>): void;
15
15
  attrs: any;
16
- slots: Partial<Record<string, (_: any) => any>> & {
17
- "footer-results"?(_: {
18
- results: number;
19
- }): any;
20
- };
16
+ slots: any;
21
17
  emit: {
22
18
  (event: "update:modelValue", value: number[]): void;
23
19
  (event: "updatePage", value: number): void;
@@ -25,9 +21,7 @@ declare const _default: <Item extends {
25
21
  (event: "contextMenuOpen", value: Item): void;
26
22
  (event: "clickContextItem", value: Item): void;
27
23
  };
28
- }>) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
29
- [key: string]: any;
30
- }> & {
24
+ }>) => import("vue").VNode & {
31
25
  __ctx?: Awaited<typeof __VLS_setup>;
32
26
  };
33
27
  export default _default;
@@ -61,7 +61,58 @@ declare function __VLS_template(): {
61
61
  rootEl: any;
62
62
  };
63
63
  type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
64
- declare const __VLS_component: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
64
+ declare const __VLS_component: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {
65
+ toggleButton: import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<{
66
+ as: {
67
+ type: (ObjectConstructor | StringConstructor)[];
68
+ default: string;
69
+ };
70
+ disabled: {
71
+ type: BooleanConstructor[];
72
+ default: boolean;
73
+ };
74
+ id: {
75
+ type: StringConstructor;
76
+ default: null;
77
+ };
78
+ }>>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
79
+ [key: string]: any;
80
+ }> | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
81
+ [key: string]: any;
82
+ }>[] | null, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, {
83
+ id: string;
84
+ as: string | Record<string, any>;
85
+ disabled: boolean;
86
+ }, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
87
+ P: {};
88
+ B: {};
89
+ D: {};
90
+ C: {};
91
+ M: {};
92
+ Defaults: {};
93
+ }, Readonly<import("vue").ExtractPropTypes<{
94
+ as: {
95
+ type: (ObjectConstructor | StringConstructor)[];
96
+ default: string;
97
+ };
98
+ disabled: {
99
+ type: BooleanConstructor[];
100
+ default: boolean;
101
+ };
102
+ id: {
103
+ type: StringConstructor;
104
+ default: null;
105
+ };
106
+ }>>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
107
+ [key: string]: any;
108
+ }> | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
109
+ [key: string]: any;
110
+ }>[] | null, {}, {}, {}, {
111
+ id: string;
112
+ as: string | Record<string, any>;
113
+ disabled: boolean;
114
+ }> | null;
115
+ }, any>;
65
116
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
66
117
  export default _default;
67
118
  type __VLS_WithTemplateSlots<T, S> = T & {
@@ -128,7 +128,118 @@ declare const __VLS_component: import("vue").DefineComponent<Props, {
128
128
  horizontalAlign: "left" | "right";
129
129
  openDirection: "up" | "down";
130
130
  teleport: boolean;
131
- }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, HTMLDivElement>;
131
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {
132
+ button: import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<{
133
+ disabled: {
134
+ type: BooleanConstructor;
135
+ default: boolean;
136
+ };
137
+ as: {
138
+ type: (ObjectConstructor | StringConstructor)[];
139
+ default: string;
140
+ };
141
+ id: {
142
+ type: StringConstructor;
143
+ default: null;
144
+ };
145
+ }>>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
146
+ [key: string]: any;
147
+ }> | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
148
+ [key: string]: any;
149
+ }>[] | null, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, {
150
+ id: string;
151
+ as: string | Record<string, any>;
152
+ disabled: boolean;
153
+ }, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
154
+ P: {};
155
+ B: {};
156
+ D: {};
157
+ C: {};
158
+ M: {};
159
+ Defaults: {};
160
+ }, Readonly<import("vue").ExtractPropTypes<{
161
+ disabled: {
162
+ type: BooleanConstructor;
163
+ default: boolean;
164
+ };
165
+ as: {
166
+ type: (ObjectConstructor | StringConstructor)[];
167
+ default: string;
168
+ };
169
+ id: {
170
+ type: StringConstructor;
171
+ default: null;
172
+ };
173
+ }>>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
174
+ [key: string]: any;
175
+ }> | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
176
+ [key: string]: any;
177
+ }>[] | null, {}, {}, {}, {
178
+ id: string;
179
+ as: string | Record<string, any>;
180
+ disabled: boolean;
181
+ }> | null;
182
+ dropdown: import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<{
183
+ as: {
184
+ type: (ObjectConstructor | StringConstructor)[];
185
+ default: string;
186
+ };
187
+ static: {
188
+ type: BooleanConstructor;
189
+ default: boolean;
190
+ };
191
+ unmount: {
192
+ type: BooleanConstructor;
193
+ default: boolean;
194
+ };
195
+ id: {
196
+ type: StringConstructor;
197
+ default: null;
198
+ };
199
+ }>>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
200
+ [key: string]: any;
201
+ }> | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
202
+ [key: string]: any;
203
+ }>[] | null, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, {
204
+ id: string;
205
+ as: string | Record<string, any>;
206
+ unmount: boolean;
207
+ static: boolean;
208
+ }, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
209
+ P: {};
210
+ B: {};
211
+ D: {};
212
+ C: {};
213
+ M: {};
214
+ Defaults: {};
215
+ }, Readonly<import("vue").ExtractPropTypes<{
216
+ as: {
217
+ type: (ObjectConstructor | StringConstructor)[];
218
+ default: string;
219
+ };
220
+ static: {
221
+ type: BooleanConstructor;
222
+ default: boolean;
223
+ };
224
+ unmount: {
225
+ type: BooleanConstructor;
226
+ default: boolean;
227
+ };
228
+ id: {
229
+ type: StringConstructor;
230
+ default: null;
231
+ };
232
+ }>>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
233
+ [key: string]: any;
234
+ }> | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
235
+ [key: string]: any;
236
+ }>[] | null, {}, {}, {}, {
237
+ id: string;
238
+ as: string | Record<string, any>;
239
+ unmount: boolean;
240
+ static: boolean;
241
+ }> | null;
242
+ }, HTMLDivElement>;
132
243
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
133
244
  export default _default;
134
245
  type __VLS_WithTemplateSlots<T, S> = T & {
@@ -9,5 +9,8 @@ declare const _default: import("vue").DefineComponent<ImageDropzoneProps, {}, {}
9
9
  disabled: boolean;
10
10
  name: string;
11
11
  dataTypes: string[];
12
- }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, HTMLDivElement>;
12
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {
13
+ dropZoneRef: HTMLDivElement;
14
+ fileInput: HTMLInputElement;
15
+ }, HTMLDivElement>;
13
16
  export default _default;
@@ -1,10 +1,9 @@
1
1
  import '@vuepic/vue-datepicker/dist/main.css';
2
- import type { VNode } from 'vue';
3
2
  import type { AppInputProps } from './index.d';
4
3
  declare const _default: <ModelValue>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
5
4
  props: __VLS_PrettifyLocal<Pick<Partial<{}> & Omit<{
6
5
  readonly "onUpdate:modelValue"?: ((value: ModelValue) => any) | undefined;
7
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>, "onUpdate:modelValue"> & Partial<{}> & AppInputProps<ModelValue>> & import("vue").PublicProps;
6
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>, "onUpdate:modelValue"> & AppInputProps<ModelValue> & Partial<{}>> & import("vue").PublicProps;
8
7
  expose(exposed: import("vue").ShallowUnwrapRef<{}>): void;
9
8
  attrs: any;
10
9
  slots: {
@@ -19,9 +18,7 @@ declare const _default: <ModelValue>(__VLS_props: NonNullable<Awaited<typeof __V
19
18
  trailingIcon?(_: {}): any;
20
19
  };
21
20
  emit: (event: "update:modelValue", value: ModelValue) => void;
22
- }>) => VNode<import("vue").RendererNode, import("vue").RendererElement, {
23
- [key: string]: any;
24
- }> & {
21
+ }>) => import("vue").VNode & {
25
22
  __ctx?: Awaited<typeof __VLS_setup>;
26
23
  };
27
24
  export default _default;
@@ -3,9 +3,9 @@ declare const _default: <ModelValue>(__VLS_props: NonNullable<Awaited<typeof __V
3
3
  props: __VLS_PrettifyLocal<Pick<Partial<{}> & Omit<{
4
4
  readonly "onUpdate:modelValue"?: ((value: ModelValue) => any) | undefined;
5
5
  readonly onOpen?: (() => any) | undefined;
6
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>, "onUpdate:modelValue" | "onOpen"> & Partial<{}> & (InputProps<ModelValue> & {
6
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>, "onUpdate:modelValue" | "onOpen"> & (InputProps<ModelValue> & {
7
7
  custom?: boolean;
8
- })> & import("vue").PublicProps;
8
+ }) & Partial<{}>> & import("vue").PublicProps;
9
9
  expose(exposed: import("vue").ShallowUnwrapRef<{}>): void;
10
10
  attrs: any;
11
11
  slots: {
@@ -15,9 +15,7 @@ declare const _default: <ModelValue>(__VLS_props: NonNullable<Awaited<typeof __V
15
15
  (event: "update:modelValue", value: ModelValue): void;
16
16
  (event: "open"): void;
17
17
  };
18
- }>) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
19
- [key: string]: any;
20
- }> & {
18
+ }>) => import("vue").VNode & {
21
19
  __ctx?: Awaited<typeof __VLS_setup>;
22
20
  };
23
21
  export default _default;
@@ -6,5 +6,7 @@ declare const _default: import("vue").DefineComponent<LocationInputProps, {}, {}
6
6
  }>, {
7
7
  placeholder: string;
8
8
  placeOptions: google.maps.places.AutocompleteOptions | null;
9
- }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
9
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {
10
+ input: HTMLInputElement;
11
+ }, any>;
10
12
  export default _default;
@@ -17,5 +17,7 @@ declare const _default: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {
17
17
  mapCenterLatitude: number | null;
18
18
  mapCenterLongitude: number | null;
19
19
  mapOptions: google.maps.MapOptions | null;
20
- }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, HTMLDivElement>;
20
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {
21
+ mapElement: HTMLDivElement;
22
+ }, HTMLDivElement>;
21
23
  export default _default;
@@ -44,7 +44,10 @@ declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, {
44
44
  preventBackdropCloseOnLoading: boolean;
45
45
  modalClasses: string;
46
46
  properties: Record<string, unknown>;
47
- }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
47
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {
48
+ form: HTMLFormElement;
49
+ contentRef: unknown;
50
+ }, any>;
48
51
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
49
52
  export default _default;
50
53
  type __VLS_WithTemplateSlots<T, S> = T & {
@@ -27,7 +27,7 @@ type __VLS_Props = {
27
27
  declare function __VLS_template(): {
28
28
  attrs: Partial<{}>;
29
29
  slots: {
30
- "screen-reader"?(_: {
30
+ 'screen-reader'?(_: {
31
31
  rating: number;
32
32
  stars: number;
33
33
  }): any;
@@ -19,7 +19,9 @@ declare const __VLS_component: import("vue").DefineComponent<__VLS_PublicProps,
19
19
  "update:modelValue": (value: number) => any;
20
20
  }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
21
21
  "onUpdate:modelValue"?: ((value: number) => any) | undefined;
22
- }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, HTMLDivElement>;
22
+ }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {
23
+ flipRef: HTMLDivElement;
24
+ }, HTMLDivElement>;
23
25
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
24
26
  export default _default;
25
27
  type __VLS_WithTemplateSlots<T, S> = T & {
@@ -9,7 +9,7 @@ declare function __VLS_template(): {
9
9
  attrs: Partial<{}>;
10
10
  slots: {
11
11
  title?(_: {
12
- "data-test-title-slot": boolean;
12
+ 'data-test-title-slot': boolean;
13
13
  }): any;
14
14
  default?(_: {}): any;
15
15
  };
@@ -1,12 +1,13 @@
1
+ import type { App } from 'vue';
1
2
  import type { ConfirmInstance, ConfirmProps } from '~components/AppConfirm/index.d';
2
3
  export declare function useConfirm(): {
3
4
  open: (options: ConfirmProps) => Promise<unknown>;
4
5
  close: () => Promise<void>;
5
6
  instances: import("vue").Ref<{
6
- instance: any;
7
+ instance: App;
7
8
  element: HTMLDivElement;
8
9
  }[], ConfirmInstance[] | {
9
- instance: any;
10
+ instance: App;
10
11
  element: HTMLDivElement;
11
12
  }[]>;
12
13
  };
@@ -1,12 +1,13 @@
1
+ import type { App } from 'vue';
1
2
  import type { ErrorInstance, ErrorProps } from '~components/AppError/index.d';
2
3
  export declare function useError(): {
3
4
  open: (options: ErrorProps) => Promise<unknown>;
4
5
  close: () => Promise<void>;
5
6
  instances: import("vue").Ref<{
6
- instance: any;
7
+ instance: App;
7
8
  element: HTMLDivElement;
8
9
  }[], ErrorInstance[] | {
9
- instance: any;
10
+ instance: App;
10
11
  element: HTMLDivElement;
11
12
  }[]>;
12
13
  };
@@ -1,16 +1,16 @@
1
- import type { Component, MaybeRef } from 'vue';
1
+ import type { App, Component, MaybeRef } from 'vue';
2
2
  import type { ModalInstance, ModalProps } from '~components/AppModal/index.d';
3
3
  export declare function useModal(component: MaybeRef<Component | string>, options?: ModalProps): {
4
4
  instance: import("vue").Ref<ModalInstance | undefined, ModalInstance | undefined>;
5
5
  open: (openOptions: ModalProps) => Promise<unknown>;
6
6
  close: () => Promise<void>;
7
7
  instances: import("vue").Ref<{
8
- ref: any;
9
- instance: any;
8
+ ref: AppModal;
9
+ instance: App;
10
10
  element: HTMLDivElement;
11
11
  }[], ModalInstance[] | {
12
- ref: any;
13
- instance: any;
12
+ ref: AppModal;
13
+ instance: App;
14
14
  element: HTMLDivElement;
15
15
  }[]>;
16
16
  };
@@ -11,7 +11,9 @@ declare function __VLS_template(): {
11
11
  rootEl: HTMLDivElement;
12
12
  };
13
13
  type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
14
- declare const __VLS_component: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, HTMLDivElement>;
14
+ declare const __VLS_component: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {
15
+ sidebarLeft: HTMLDivElement;
16
+ }, HTMLDivElement>;
15
17
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
16
18
  export default _default;
17
19
  type __VLS_WithTemplateSlots<T, S> = T & {
@@ -11,7 +11,9 @@ declare function __VLS_template(): {
11
11
  rootEl: HTMLDivElement;
12
12
  };
13
13
  type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
14
- declare const __VLS_component: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, HTMLDivElement>;
14
+ declare const __VLS_component: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {
15
+ sidebarLeft: HTMLDivElement;
16
+ }, HTMLDivElement>;
15
17
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
16
18
  export default _default;
17
19
  type __VLS_WithTemplateSlots<T, S> = T & {