@signal24/vue-foundation 4.30.2 → 4.30.4

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.
@@ -3,6 +3,7 @@ interface IAlertOptions {
3
3
  message: string | Error;
4
4
  classes?: string[];
5
5
  iconClass?: string | string[];
6
+ isHtml?: boolean;
6
7
  }
7
8
  export declare function showAlert(title: string, message: string | Error): Promise<void>;
8
9
  export declare function showAlert(message: string | Error): Promise<void>;
@@ -7,6 +7,7 @@ export declare function vfModalRef(): import("vue").Ref<({
7
7
  readonly scrolls?: boolean | undefined;
8
8
  readonly closeX?: boolean | undefined;
9
9
  readonly class?: string | string[] | undefined;
10
+ readonly onClose?: (() => void) | undefined;
10
11
  readonly onFormSubmit?: ((...args: any[]) => any) | undefined;
11
12
  } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps;
12
13
  $attrs: {
@@ -29,6 +30,7 @@ export declare function vfModalRef(): import("vue").Ref<({
29
30
  scrolls?: boolean;
30
31
  closeX?: boolean;
31
32
  class?: string | string[];
33
+ onClose?: () => void;
32
34
  }> & Readonly<{
33
35
  onFormSubmit?: ((...args: any[]) => any) | undefined;
34
36
  }>, {
@@ -64,6 +66,7 @@ export declare function vfModalRef(): import("vue").Ref<({
64
66
  scrolls?: boolean;
65
67
  closeX?: boolean;
66
68
  class?: string | string[];
69
+ onClose?: () => void;
67
70
  }> & Readonly<{
68
71
  onFormSubmit?: ((...args: any[]) => any) | undefined;
69
72
  }>, "mask" | "hide" | "unmask" | "unhide"> & import("vue").ShallowUnwrapRef<{
@@ -88,6 +91,7 @@ export declare function vfModalRef(): import("vue").Ref<({
88
91
  readonly scrolls?: boolean | undefined;
89
92
  readonly closeX?: boolean | undefined;
90
93
  readonly class?: string | string[] | undefined;
94
+ readonly onClose?: (() => void) | undefined;
91
95
  readonly onFormSubmit?: ((...args: any[]) => any) | undefined;
92
96
  } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps;
93
97
  $attrs: {
@@ -110,6 +114,7 @@ export declare function vfModalRef(): import("vue").Ref<({
110
114
  scrolls?: boolean;
111
115
  closeX?: boolean;
112
116
  class?: string | string[];
117
+ onClose?: () => void;
113
118
  }> & Readonly<{
114
119
  onFormSubmit?: ((...args: any[]) => any) | undefined;
115
120
  }>, {
@@ -145,6 +150,7 @@ export declare function vfModalRef(): import("vue").Ref<({
145
150
  scrolls?: boolean;
146
151
  closeX?: boolean;
147
152
  class?: string | string[];
153
+ onClose?: () => void;
148
154
  }> & Readonly<{
149
155
  onFormSubmit?: ((...args: any[]) => any) | undefined;
150
156
  }>, "mask" | "hide" | "unmask" | "unhide"> & import("vue").ShallowUnwrapRef<{
@@ -4,6 +4,7 @@ type __VLS_Props = {
4
4
  scrolls?: boolean;
5
5
  closeX?: boolean;
6
6
  class?: string | string[];
7
+ onClose?: () => void;
7
8
  };
8
9
  declare function mask(): () => void;
9
10
  declare function unmask(): void;
@@ -5,6 +5,7 @@ interface IOptions {
5
5
  defaultTimeFormat: string;
6
6
  defaultCurrencyDivisor: number;
7
7
  onOverlaysChanged?: (count: number) => void;
8
+ disableStickyMinWidthDirective?: boolean;
8
9
  }
9
10
  export declare const VfOptions: IOptions;
10
11
  export declare function configureVf(options: Partial<IOptions>): void;
@@ -1,2 +1,2 @@
1
1
  import type { ObjectDirective } from 'vue';
2
- export declare const vStickyMinWidth: ObjectDirective<HTMLElement>;
2
+ export declare const vStickyMinWidth: ObjectDirective<HTMLElement, boolean | undefined>;
@@ -12,6 +12,7 @@ interface ITooltipOptions {
12
12
  delay?: number;
13
13
  html?: boolean;
14
14
  class?: string | string[];
15
+ alertOnTap?: boolean;
15
16
  }
16
17
  declare class VfTooltip {
17
18
  private el;
@@ -31,6 +32,7 @@ declare class VfTooltip {
31
32
  handleTargetMouseEnter(e: MouseEvent): void;
32
33
  handleTargetMouseLeave(): void;
33
34
  show(e?: MouseEvent): void;
35
+ showTapAlert(): void;
34
36
  renderTooltip(): void;
35
37
  getClasses(): string[];
36
38
  removeTooltip(): void;