@signal24/vue-foundation 4.21.1 → 4.23.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.
@@ -5,33 +5,18 @@ type __VLS_Props = {
5
5
  closeX?: boolean;
6
6
  class?: string | string[];
7
7
  };
8
- declare const overlay: import("vue").Ref<HTMLElement | undefined, HTMLElement | undefined>;
9
- declare const form: import("vue").Ref<HTMLFormElement | undefined, HTMLFormElement | undefined>;
10
- declare const classList: import("vue").ComputedRef<string[]>;
11
- declare function closeParent(): void;
12
8
  declare function mask(): () => void;
13
9
  declare function unmask(): void;
14
10
  declare function hide(): () => void;
15
11
  declare function unhide(): void;
16
- declare const __VLS_ctx: InstanceType<__VLS_PickNotAny<typeof __VLS_self, new () => {}>>;
17
12
  declare var __VLS_1: {}, __VLS_3: {}, __VLS_5: {};
18
- type __VLS_Slots = __VLS_PrettifyGlobal<__VLS_OmitStringIndex<typeof __VLS_ctx.$slots> & {
13
+ type __VLS_Slots = {} & {
19
14
  header?: (props: typeof __VLS_1) => any;
20
15
  } & {
21
16
  default?: (props: typeof __VLS_3) => any;
22
17
  } & {
23
18
  footer?: (props: typeof __VLS_5) => any;
24
- }>;
25
- declare const __VLS_self: import("vue").DefineComponent<__VLS_Props, {
26
- overlay: typeof overlay;
27
- form: typeof form;
28
- classList: typeof classList;
29
- closeParent: typeof closeParent;
30
- }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
31
- formSubmit: (...args: any[]) => void;
32
- }, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
33
- onFormSubmit?: ((...args: any[]) => any) | undefined;
34
- }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
19
+ };
35
20
  declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, {
36
21
  mask: typeof mask;
37
22
  unmask: typeof unmask;
@@ -36,10 +36,11 @@ declare const _default: <T, V = T>(__VLS_props: NonNullable<Awaited<typeof __VLS
36
36
  }>): void;
37
37
  attrs: any;
38
38
  slots: {
39
- option?: ((props: {
39
+ option?: (props: {
40
40
  option: VfSmartSelectOptionDescriptor<T>;
41
- }) => any) | undefined;
42
- 'no-results'?: ((props: {}) => any) | undefined;
41
+ }) => any;
42
+ } & {
43
+ 'no-results'?: (props: {}) => any;
43
44
  };
44
45
  emit: ((evt: "update:modelValue", args_0: V) => void) & ((evt: "optionsLoaded", args_0: T[]) => void);
45
46
  }>) => import("vue").VNode & {
@@ -3,6 +3,7 @@ export declare class UserError extends Error {
3
3
  }
4
4
  export declare function formatError(err: any): string;
5
5
  export declare function toError(err: any): Error;
6
+ export declare function isError(err: unknown): err is Error;
6
7
  interface IErrorAlertOptions {
7
8
  title?: string;
8
9
  classes?: string[];