@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.
- package/dist/src/components/alert-helpers.d.ts +1 -0
- package/dist/src/components/modal-helpers.d.ts +6 -0
- package/dist/src/components/vf-modal.vue.d.ts +1 -0
- package/dist/src/config.d.ts +1 -0
- package/dist/src/directives/sticky-min-width.d.ts +1 -1
- package/dist/src/directives/tooltip.d.ts +2 -0
- package/dist/tsconfig.app.tsbuildinfo +1 -1
- package/dist/vue-foundation.es.js +662 -643
- package/package.json +1 -1
- package/src/components/alert-helpers.ts +1 -0
- package/src/components/vf-alert-modal.vue +3 -3
- package/src/components/vf-modal.vue +6 -1
- package/src/config.ts +1 -0
- package/src/directives/sticky-min-width.ts +36 -15
- package/src/directives/tooltip.ts +14 -1
|
@@ -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<{
|
package/dist/src/config.d.ts
CHANGED
|
@@ -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;
|