@signal24/vue-foundation 4.30.3 → 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/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 +660 -642
- package/package.json +1 -1
- package/src/components/alert-helpers.ts +1 -0
- package/src/components/vf-alert-modal.vue +3 -3
- 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>;
|
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;
|