@vsn-ux/ngx-gaia 0.11.0 → 0.11.1
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/package.json
CHANGED
|
@@ -809,16 +809,11 @@ declare const DEFAULT_MODAL_OPTIONS: Required<GaModalOptions>;
|
|
|
809
809
|
declare function provideGaModalOptions(options: GaModalOptions): Provider;
|
|
810
810
|
|
|
811
811
|
declare abstract class GaModalComponent<I = void, O = void> {
|
|
812
|
-
private
|
|
813
|
-
private readonly overlayRef;
|
|
814
|
-
private readonly destroyRef;
|
|
815
|
-
private readonly router;
|
|
816
|
-
private readonly globalOptions;
|
|
812
|
+
#private;
|
|
817
813
|
readonly options: GaModalOptions & {
|
|
818
814
|
labelledBy?: string;
|
|
819
815
|
describedBy?: string;
|
|
820
816
|
};
|
|
821
|
-
private readonly trapfocus;
|
|
822
817
|
protected readonly data: I;
|
|
823
818
|
protected readonly labelledBy: _angular_core.WritableSignal<string | null>;
|
|
824
819
|
protected readonly describedBy: _angular_core.WritableSignal<string | null>;
|
|
@@ -833,7 +828,6 @@ declare abstract class GaModalComponent<I = void, O = void> {
|
|
|
833
828
|
* Return true to permit closing. False - to refuse.
|
|
834
829
|
*/
|
|
835
830
|
protected onSoftClose(): boolean | Observable<boolean>;
|
|
836
|
-
private softClose;
|
|
837
831
|
protected createOptions(options?: GaModalOptions & {
|
|
838
832
|
labelledBy?: string;
|
|
839
833
|
describedBy?: string;
|
|
@@ -1021,6 +1015,7 @@ declare class GaTooltipDirective implements OnDestroy {
|
|
|
1021
1015
|
private mouseOver;
|
|
1022
1016
|
private _showControlMode;
|
|
1023
1017
|
private _hideControlMode;
|
|
1018
|
+
private showTimeoutId;
|
|
1024
1019
|
set content(value: string | TemplateRef<any> | null);
|
|
1025
1020
|
get content(): string | TemplateRef<any> | null;
|
|
1026
1021
|
disabled: boolean;
|
|
@@ -1037,6 +1032,7 @@ declare class GaTooltipDirective implements OnDestroy {
|
|
|
1037
1032
|
get hideControlMode(): GaTooltipControlMode;
|
|
1038
1033
|
set offset(value: number);
|
|
1039
1034
|
get offset(): number;
|
|
1035
|
+
readonly showDelay: _angular_core.InputSignalWithTransform<number, unknown>;
|
|
1040
1036
|
set placement(value: GaTooltipPlacement);
|
|
1041
1037
|
get placement(): GaTooltipPlacement;
|
|
1042
1038
|
get ariaDescribedBy(): string | null;
|
|
@@ -1051,12 +1047,13 @@ declare class GaTooltipDirective implements OnDestroy {
|
|
|
1051
1047
|
* hides only if mouse is not over the host element nor the tooltip itself
|
|
1052
1048
|
*/
|
|
1053
1049
|
private softHide;
|
|
1050
|
+
private clearShowTimeout;
|
|
1054
1051
|
private createOverlay;
|
|
1055
1052
|
private updateTooltipPlacement;
|
|
1056
1053
|
private updatePosition;
|
|
1057
1054
|
private getPositions;
|
|
1058
1055
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<GaTooltipDirective, never>;
|
|
1059
|
-
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<GaTooltipDirective, "[gaTooltip]", ["gaTooltip"], { "content": { "alias": "gaTooltip"; "required": false; }; "disabled": { "alias": "gaTooltipDisabled"; "required": false; }; "controlMode": { "alias": "gaTooltipControlMode"; "required": false; }; "showControlMode": { "alias": "gaTooltipShowControlMode"; "required": false; }; "hideControlMode": { "alias": "gaTooltipHideControlMode"; "required": false; }; "offset": { "alias": "gaTooltipOffsetSize"; "required": false; }; "placement": { "alias": "gaTooltipPlacement"; "required": false; }; }, {}, never, never, true, never>;
|
|
1056
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<GaTooltipDirective, "[gaTooltip]", ["gaTooltip"], { "content": { "alias": "gaTooltip"; "required": false; }; "disabled": { "alias": "gaTooltipDisabled"; "required": false; }; "controlMode": { "alias": "gaTooltipControlMode"; "required": false; }; "showControlMode": { "alias": "gaTooltipShowControlMode"; "required": false; }; "hideControlMode": { "alias": "gaTooltipHideControlMode"; "required": false; }; "offset": { "alias": "gaTooltipOffsetSize"; "required": false; }; "showDelay": { "alias": "gaTooltipShowDelay"; "required": false; "isSignal": true; }; "placement": { "alias": "gaTooltipPlacement"; "required": false; }; }, {}, never, never, true, never>;
|
|
1060
1057
|
static ngAcceptInputType_disabled: unknown;
|
|
1061
1058
|
static ngAcceptInputType_offset: unknown;
|
|
1062
1059
|
}
|