ngx-material-entity 16.0.1 → 16.0.3
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/components/edit-page/edit-page.component.d.ts +13 -2
- package/components/input/boolean/boolean-checkbox-input/boolean-checkbox-input.component.d.ts +1 -0
- package/components/input/boolean/boolean-toggle-input/boolean-toggle-input.component.d.ts +2 -1
- package/components/input/input.component.d.ts +28 -3
- package/components/input/input.module.d.ts +5 -2
- package/components/input/number/number-slider-input/number-slider-input.component.d.ts +2 -1
- package/components/table/create-dialog/create-entity-dialog.component.d.ts +3 -0
- package/components/table/edit-dialog/edit-entity-dialog.component.d.ts +4 -0
- package/components/tooltip/tooltip.component.d.ts +9 -0
- package/decorators/array/array-decorator-internal.data.d.ts +6 -6
- package/decorators/array/array-decorator.data.d.ts +7 -7
- package/decorators/base/property-decorator-internal.data.d.ts +11 -2
- package/decorators/base/property-decorator.data.d.ts +9 -1
- package/decorators/boolean/boolean-decorator-internal.data.d.ts +3 -3
- package/decorators/boolean/boolean-decorator.data.d.ts +1 -1
- package/decorators/custom/custom-decorator-internal.data.d.ts +2 -2
- package/decorators/custom/custom-decorator.data.d.ts +4 -4
- package/decorators/date/date-decorator-internal.data.d.ts +4 -4
- package/decorators/date/date-decorator.data.d.ts +5 -5
- package/decorators/file/file-decorator-internal.data.d.ts +3 -3
- package/decorators/file/file-decorator.data.d.ts +1 -1
- package/decorators/has-many/has-many-decorator-internal.data.d.ts +1 -1
- package/decorators/has-many/has-many-decorator.data.d.ts +1 -1
- package/decorators/number/number-decorator-internal.data.d.ts +3 -3
- package/decorators/number/number-decorator.data.d.ts +1 -1
- package/decorators/object/object-decorator-internal.data.d.ts +1 -1
- package/decorators/object/object-decorator.data.d.ts +1 -1
- package/decorators/references-many/references-many-decorator-internal.data.d.ts +1 -1
- package/decorators/references-many/references-many-decorator.data.d.ts +1 -1
- package/decorators/references-one/references-one-decorator-internal.data.d.ts +1 -1
- package/decorators/references-one/references-one-decorator.data.d.ts +1 -1
- package/decorators/string/string-decorator-internal.data.d.ts +5 -6
- package/decorators/string/string-decorator.data.d.ts +1 -7
- package/directives/number.directive.d.ts +17 -0
- package/directives/password-match.directive.d.ts +14 -0
- package/directives/tooltip.directive.d.ts +33 -0
- package/esm2022/components/edit-page/edit-page.component.mjs +57 -13
- package/esm2022/components/input/array/array-date-range-input/array-date-range-input.component.mjs +1 -1
- package/esm2022/components/input/array/array-string-chips-input/array-string-chips-input.component.mjs +2 -2
- package/esm2022/components/input/base-input.component.mjs +2 -1
- package/esm2022/components/input/boolean/boolean-checkbox-input/boolean-checkbox-input.component.mjs +6 -3
- package/esm2022/components/input/boolean/boolean-toggle-input/boolean-toggle-input.component.mjs +6 -3
- package/esm2022/components/input/date/date-range-input/date-range-input.component.mjs +3 -1
- package/esm2022/components/input/file/file-image-input/file-image-input.component.mjs +3 -3
- package/esm2022/components/input/file/file-input/file-input.component.mjs +1 -1
- package/esm2022/components/input/input.component.mjs +94 -35
- package/esm2022/components/input/input.module.mjs +15 -5
- package/esm2022/components/input/number/number-input/number-input.component.mjs +4 -3
- package/esm2022/components/input/number/number-slider-input/number-slider-input.component.mjs +6 -3
- package/esm2022/components/input/string/string-password-input/string-password-input.component.mjs +4 -3
- package/esm2022/components/table/create-dialog/create-entity-dialog.component.mjs +18 -6
- package/esm2022/components/table/edit-dialog/edit-entity-dialog.component.mjs +26 -13
- package/esm2022/components/table/table.component.mjs +14 -9
- package/esm2022/components/tooltip/tooltip.component.mjs +20 -0
- package/esm2022/decorators/array/array-decorator-internal.data.mjs +1 -1
- package/esm2022/decorators/array/array-decorator.data.mjs +1 -1
- package/esm2022/decorators/base/property-decorator-internal.data.mjs +22 -1
- package/esm2022/decorators/base/property-decorator.data.mjs +10 -1
- package/esm2022/decorators/boolean/boolean-decorator-internal.data.mjs +1 -1
- package/esm2022/decorators/boolean/boolean-decorator.data.mjs +1 -1
- package/esm2022/decorators/custom/custom-decorator-internal.data.mjs +2 -2
- package/esm2022/decorators/custom/custom-decorator.data.mjs +1 -1
- package/esm2022/decorators/date/date-decorator-internal.data.mjs +2 -1
- package/esm2022/decorators/date/date-decorator.data.mjs +1 -1
- package/esm2022/decorators/file/file-decorator-internal.data.mjs +1 -1
- package/esm2022/decorators/file/file-decorator.data.mjs +1 -1
- package/esm2022/decorators/has-many/has-many-decorator-internal.data.mjs +1 -1
- package/esm2022/decorators/has-many/has-many-decorator.data.mjs +1 -1
- package/esm2022/decorators/number/number-decorator-internal.data.mjs +1 -1
- package/esm2022/decorators/number/number-decorator.data.mjs +1 -1
- package/esm2022/decorators/object/object-decorator-internal.data.mjs +1 -1
- package/esm2022/decorators/object/object-decorator.data.mjs +1 -1
- package/esm2022/decorators/references-many/references-many-decorator-internal.data.mjs +1 -1
- package/esm2022/decorators/references-many/references-many-decorator.data.mjs +1 -1
- package/esm2022/decorators/references-one/references-one-decorator-internal.data.mjs +1 -1
- package/esm2022/decorators/references-one/references-one-decorator.data.mjs +1 -1
- package/esm2022/decorators/string/string-decorator-internal.data.mjs +1 -4
- package/esm2022/decorators/string/string-decorator.data.mjs +1 -1
- package/esm2022/directives/drag-drop.directive.mjs +62 -0
- package/esm2022/directives/number.directive.mjs +38 -0
- package/esm2022/directives/password-match.directive.mjs +30 -0
- package/esm2022/directives/tooltip.directive.mjs +112 -0
- package/esm2022/functions/get-validation-error-message.function.mjs +49 -0
- package/esm2022/functions/get-validation-errors-tooltip-content.function.ts.mjs +25 -0
- package/esm2022/public-api.mjs +6 -2
- package/esm2022/utilities/entity.utilities.mjs +83 -386
- package/esm2022/utilities/validation.utilities.mjs +455 -0
- package/fesm2022/ngx-material-entity.mjs +1713 -1183
- package/fesm2022/ngx-material-entity.mjs.map +1 -1
- package/functions/get-validation-errors-tooltip-content.function.ts.d.ts +10 -0
- package/package.json +1 -1
- package/public-api.d.ts +4 -1
- package/utilities/entity.utilities.d.ts +33 -30
- package/utilities/validation.utilities.d.ts +56 -0
- package/esm2022/components/get-validation-error-message.function.mjs +0 -42
- package/esm2022/components/input/file/file-input/dragDrop.directive.mjs +0 -62
- /package/{components/input/file/file-input/dragDrop.directive.d.ts → directives/drag-drop.directive.d.ts} +0 -0
- /package/{components → functions}/get-validation-error-message.function.d.ts +0 -0
|
@@ -4,7 +4,7 @@ import { DefaultNumberDecoratorConfig, DropdownNumberDecoratorConfig, SliderNumb
|
|
|
4
4
|
/**
|
|
5
5
|
* The internal DefaultNumberDecoratorConfig. Sets default values.
|
|
6
6
|
*/
|
|
7
|
-
export declare class DefaultNumberDecoratorConfigInternal extends PropertyDecoratorConfigInternal implements DefaultNumberDecoratorConfig {
|
|
7
|
+
export declare class DefaultNumberDecoratorConfigInternal extends PropertyDecoratorConfigInternal<number> implements DefaultNumberDecoratorConfig {
|
|
8
8
|
displayStyle: 'line';
|
|
9
9
|
min?: number;
|
|
10
10
|
max?: number;
|
|
@@ -13,7 +13,7 @@ export declare class DefaultNumberDecoratorConfigInternal extends PropertyDecora
|
|
|
13
13
|
/**
|
|
14
14
|
* The internal DropdownNumberDecoratorConfig. Sets default values.
|
|
15
15
|
*/
|
|
16
|
-
export declare class DropdownNumberDecoratorConfigInternal extends PropertyDecoratorConfigInternal implements DropdownNumberDecoratorConfig {
|
|
16
|
+
export declare class DropdownNumberDecoratorConfigInternal extends PropertyDecoratorConfigInternal<number> implements DropdownNumberDecoratorConfig {
|
|
17
17
|
displayStyle: 'dropdown';
|
|
18
18
|
dropdownValues: ((entity: any) => Promise<DropdownValue<number | undefined>[]>);
|
|
19
19
|
constructor(data: DropdownNumberDecoratorConfig);
|
|
@@ -22,7 +22,7 @@ export declare class DropdownNumberDecoratorConfigInternal extends PropertyDecor
|
|
|
22
22
|
/**
|
|
23
23
|
* The internal SliderNumberDecoratorConfig. Sets default values.
|
|
24
24
|
*/
|
|
25
|
-
export declare class SliderNumberDecoratorConfigInternal extends PropertyDecoratorConfigInternal implements SliderNumberDecoratorConfig {
|
|
25
|
+
export declare class SliderNumberDecoratorConfigInternal extends PropertyDecoratorConfigInternal<number> implements SliderNumberDecoratorConfig {
|
|
26
26
|
displayStyle: 'slider';
|
|
27
27
|
min?: number;
|
|
28
28
|
max?: number;
|
|
@@ -4,7 +4,7 @@ export type NumberDropdownValues = DropdownValue<number | undefined>[] | ((entit
|
|
|
4
4
|
/**
|
|
5
5
|
* Definition for the @number metadata.
|
|
6
6
|
*/
|
|
7
|
-
declare abstract class NumberDecoratorConfig extends PropertyDecoratorConfig {
|
|
7
|
+
declare abstract class NumberDecoratorConfig extends PropertyDecoratorConfig<number> {
|
|
8
8
|
/**
|
|
9
9
|
* Whether to display the number in a single line or as a dropdown.
|
|
10
10
|
*/
|
|
@@ -4,7 +4,7 @@ import { DefaultObjectDecoratorConfig } from './object-decorator.data';
|
|
|
4
4
|
/**
|
|
5
5
|
* The internal DefaultObjectDecoratorConfig. Sets default values.
|
|
6
6
|
*/
|
|
7
|
-
export declare class DefaultObjectDecoratorConfigInternal<EntityType extends BaseEntityType<EntityType>> extends PropertyDecoratorConfigInternal implements DefaultObjectDecoratorConfig<EntityType> {
|
|
7
|
+
export declare class DefaultObjectDecoratorConfigInternal<EntityType extends BaseEntityType<EntityType>> extends PropertyDecoratorConfigInternal<EntityType> implements DefaultObjectDecoratorConfig<EntityType> {
|
|
8
8
|
displayStyle: 'inline';
|
|
9
9
|
EntityClass: EntityClassNewable<EntityType>;
|
|
10
10
|
omit: (keyof EntityType)[];
|
|
@@ -3,7 +3,7 @@ import { PropertyDecoratorConfig } from '../base/property-decorator.data';
|
|
|
3
3
|
/**
|
|
4
4
|
* Definition for the @object metadata.
|
|
5
5
|
*/
|
|
6
|
-
declare abstract class ObjectDecoratorConfig<EntityType extends BaseEntityType<EntityType>> extends PropertyDecoratorConfig {
|
|
6
|
+
declare abstract class ObjectDecoratorConfig<EntityType extends BaseEntityType<EntityType>> extends PropertyDecoratorConfig<EntityType> {
|
|
7
7
|
/**
|
|
8
8
|
* The class of the object. Is used to call the constructor so that all metadata is initialized.
|
|
9
9
|
*/
|
|
@@ -6,7 +6,7 @@ import { ReferencesManyDecoratorConfig } from './references-many-decorator.data'
|
|
|
6
6
|
/**
|
|
7
7
|
* The internal DefaultNumberDecoratorConfig. Sets default values.
|
|
8
8
|
*/
|
|
9
|
-
export declare class ReferencesManyDecoratorConfigInternal<EntityType extends BaseEntityType<EntityType>> extends PropertyDecoratorConfigInternal implements ReferencesManyDecoratorConfig<EntityType> {
|
|
9
|
+
export declare class ReferencesManyDecoratorConfigInternal<EntityType extends BaseEntityType<EntityType>> extends PropertyDecoratorConfigInternal<EntityType> implements ReferencesManyDecoratorConfig<EntityType> {
|
|
10
10
|
getReferencedEntities: () => Promise<EntityType[]>;
|
|
11
11
|
getDropdownValues: (referencedEntities: EntityType[]) => DropdownValue<string>[];
|
|
12
12
|
getEntityForId: (entityId: string, allReferencedEntities: EntityType[]) => EntityType;
|
|
@@ -5,7 +5,7 @@ import { PropertyDecoratorConfig } from '../base/property-decorator.data';
|
|
|
5
5
|
/**
|
|
6
6
|
* Definition for the @referencesMany metadata.
|
|
7
7
|
*/
|
|
8
|
-
export interface ReferencesManyDecoratorConfig<EntityType extends BaseEntityType<EntityType>> extends PropertyDecoratorConfig {
|
|
8
|
+
export interface ReferencesManyDecoratorConfig<EntityType extends BaseEntityType<EntityType>> extends PropertyDecoratorConfig<EntityType> {
|
|
9
9
|
/**
|
|
10
10
|
* The function that returns the values that can be referenced.
|
|
11
11
|
*/
|
|
@@ -5,7 +5,7 @@ import { ReferencesOneDecoratorConfig } from './references-one-decorator.data';
|
|
|
5
5
|
/**
|
|
6
6
|
* The internal DefaultNumberDecoratorConfig. Sets default values.
|
|
7
7
|
*/
|
|
8
|
-
export declare class ReferencesOneDecoratorConfigInternal<EntityType extends BaseEntityType<EntityType>> extends PropertyDecoratorConfigInternal implements ReferencesOneDecoratorConfig<EntityType> {
|
|
8
|
+
export declare class ReferencesOneDecoratorConfigInternal<EntityType extends BaseEntityType<EntityType>> extends PropertyDecoratorConfigInternal<EntityType> implements ReferencesOneDecoratorConfig<EntityType> {
|
|
9
9
|
getReferencedEntities: () => Promise<EntityType[]>;
|
|
10
10
|
getDropdownValues: (referencedEntities: EntityType[]) => DropdownValue<string>[];
|
|
11
11
|
getEntityForId: (entityId: string, allReferencedEntities: EntityType[]) => EntityType;
|
|
@@ -4,7 +4,7 @@ import { PropertyDecoratorConfig } from '../base/property-decorator.data';
|
|
|
4
4
|
/**
|
|
5
5
|
* Definition for the @referencesOne metadata.
|
|
6
6
|
*/
|
|
7
|
-
export interface ReferencesOneDecoratorConfig<EntityType extends BaseEntityType<EntityType>> extends PropertyDecoratorConfig {
|
|
7
|
+
export interface ReferencesOneDecoratorConfig<EntityType extends BaseEntityType<EntityType>> extends PropertyDecoratorConfig<EntityType> {
|
|
8
8
|
/**
|
|
9
9
|
* The function that returns the values that can be possibly referenced.
|
|
10
10
|
*/
|
|
@@ -4,7 +4,7 @@ import { AutocompleteStringDecoratorConfig, DefaultStringDecoratorConfig, Dropdo
|
|
|
4
4
|
/**
|
|
5
5
|
* The internal DropdownStringDecoratorConfig. Sets default values.
|
|
6
6
|
*/
|
|
7
|
-
export declare class DropdownStringDecoratorConfigInternal extends PropertyDecoratorConfigInternal implements DropdownStringDecoratorConfig {
|
|
7
|
+
export declare class DropdownStringDecoratorConfigInternal extends PropertyDecoratorConfigInternal<string> implements DropdownStringDecoratorConfig {
|
|
8
8
|
displayStyle: 'dropdown';
|
|
9
9
|
dropdownValues: ((entity: any) => Promise<DropdownValue<string | undefined>[]>);
|
|
10
10
|
constructor(data: DropdownStringDecoratorConfig);
|
|
@@ -13,7 +13,7 @@ export declare class DropdownStringDecoratorConfigInternal extends PropertyDecor
|
|
|
13
13
|
/**
|
|
14
14
|
* The internal DefaultStringDecoratorConfig. Sets default values.
|
|
15
15
|
*/
|
|
16
|
-
export declare class DefaultStringDecoratorConfigInternal extends PropertyDecoratorConfigInternal implements DefaultStringDecoratorConfig {
|
|
16
|
+
export declare class DefaultStringDecoratorConfigInternal extends PropertyDecoratorConfigInternal<string> implements DefaultStringDecoratorConfig {
|
|
17
17
|
displayStyle: 'line';
|
|
18
18
|
minLength?: number;
|
|
19
19
|
maxLength?: number;
|
|
@@ -23,7 +23,7 @@ export declare class DefaultStringDecoratorConfigInternal extends PropertyDecora
|
|
|
23
23
|
/**
|
|
24
24
|
* The internal TextboxStringDecoratorConfig. Sets default values.
|
|
25
25
|
*/
|
|
26
|
-
export declare class TextboxStringDecoratorConfigInternal extends PropertyDecoratorConfigInternal implements TextboxStringDecoratorConfig {
|
|
26
|
+
export declare class TextboxStringDecoratorConfigInternal extends PropertyDecoratorConfigInternal<string> implements TextboxStringDecoratorConfig {
|
|
27
27
|
displayStyle: 'textbox';
|
|
28
28
|
minLength?: number;
|
|
29
29
|
maxLength?: number;
|
|
@@ -32,7 +32,7 @@ export declare class TextboxStringDecoratorConfigInternal extends PropertyDecora
|
|
|
32
32
|
/**
|
|
33
33
|
* The internal AutocompleteStringDecoratorConfig. Sets default values.
|
|
34
34
|
*/
|
|
35
|
-
export declare class AutocompleteStringDecoratorConfigInternal extends PropertyDecoratorConfigInternal implements AutocompleteStringDecoratorConfig {
|
|
35
|
+
export declare class AutocompleteStringDecoratorConfigInternal extends PropertyDecoratorConfigInternal<string> implements AutocompleteStringDecoratorConfig {
|
|
36
36
|
displayStyle: 'autocomplete';
|
|
37
37
|
autocompleteValues: string[];
|
|
38
38
|
minLength?: number;
|
|
@@ -43,13 +43,12 @@ export declare class AutocompleteStringDecoratorConfigInternal extends PropertyD
|
|
|
43
43
|
/**
|
|
44
44
|
* The internal PasswordStringDecoratorConfig. Sets default values.
|
|
45
45
|
*/
|
|
46
|
-
export declare class PasswordStringDecoratorConfigInternal extends PropertyDecoratorConfigInternal implements PasswordStringDecoratorConfig {
|
|
46
|
+
export declare class PasswordStringDecoratorConfigInternal extends PropertyDecoratorConfigInternal<string> implements PasswordStringDecoratorConfig {
|
|
47
47
|
displayStyle: 'password';
|
|
48
48
|
minLength?: number;
|
|
49
49
|
maxLength?: number;
|
|
50
50
|
regex?: RegExp;
|
|
51
51
|
needsConfirmation: boolean;
|
|
52
52
|
confirmationDisplayName: string;
|
|
53
|
-
passwordsDontMatchErrorMessage: string;
|
|
54
53
|
constructor(data: PasswordStringDecoratorConfig);
|
|
55
54
|
}
|
|
@@ -4,7 +4,7 @@ export type StringDropdownValues = DropdownValue<string | undefined>[] | ((entit
|
|
|
4
4
|
/**
|
|
5
5
|
* Definition for the @string metadata.
|
|
6
6
|
*/
|
|
7
|
-
declare abstract class StringDecoratorConfig extends PropertyDecoratorConfig {
|
|
7
|
+
declare abstract class StringDecoratorConfig extends PropertyDecoratorConfig<string> {
|
|
8
8
|
/**
|
|
9
9
|
* How to display the string.
|
|
10
10
|
*/
|
|
@@ -104,11 +104,5 @@ export interface PasswordStringDecoratorConfig extends StringDecoratorConfig {
|
|
|
104
104
|
* @default 'Confirm Password'
|
|
105
105
|
*/
|
|
106
106
|
confirmationDisplayName?: string;
|
|
107
|
-
/**
|
|
108
|
-
* The error message to display when the password and the confirm password don't match.
|
|
109
|
-
*
|
|
110
|
-
* @default 'Passwords need to match!'
|
|
111
|
-
*/
|
|
112
|
-
passwordsDontMatchErrorMessage?: string;
|
|
113
107
|
}
|
|
114
108
|
export {};
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { ElementRef } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
/**
|
|
4
|
+
* A directive that only allows number inputs.
|
|
5
|
+
*/
|
|
6
|
+
export declare class NumberDirective {
|
|
7
|
+
private readonly el;
|
|
8
|
+
constructor(el: ElementRef);
|
|
9
|
+
/**
|
|
10
|
+
* Prevents the default event when a key is pressed that is not a valid number, eg. 'A', 'B', 'C', 'D' etc.
|
|
11
|
+
*
|
|
12
|
+
* @param e - The keydown event from the user.
|
|
13
|
+
*/
|
|
14
|
+
onKeyDown(e: KeyboardEvent): void;
|
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NumberDirective, never>;
|
|
16
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<NumberDirective, "[number]", never, {}, {}, never, never, true, never>;
|
|
17
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { AbstractControl, ValidationErrors, Validator } from '@angular/forms';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
/**
|
|
4
|
+
* A directive that validates if a given password matches the control value.
|
|
5
|
+
*/
|
|
6
|
+
export declare class PasswordMatchValidatorDirective implements Validator {
|
|
7
|
+
/**
|
|
8
|
+
* The password that the control value should be matched against.
|
|
9
|
+
*/
|
|
10
|
+
passwordMatch?: string;
|
|
11
|
+
validate(control: AbstractControl): ValidationErrors | null;
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PasswordMatchValidatorDirective, never>;
|
|
13
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<PasswordMatchValidatorDirective, "[passwordMatch]", never, { "passwordMatch": { "alias": "passwordMatch"; "required": false; }; }, {}, never, never, true, never>;
|
|
14
|
+
}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import { ElementRef, OnDestroy, Renderer2 } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
/**
|
|
4
|
+
* A directive that displays a tooltip on hover.
|
|
5
|
+
*/
|
|
6
|
+
export declare class TooltipDirective implements OnDestroy {
|
|
7
|
+
private readonly el;
|
|
8
|
+
private readonly renderer;
|
|
9
|
+
/**
|
|
10
|
+
* The content to display inside the tooltip.
|
|
11
|
+
*/
|
|
12
|
+
tooltip: string;
|
|
13
|
+
private tooltipElement?;
|
|
14
|
+
private isTooltipVisible;
|
|
15
|
+
private closeListeners;
|
|
16
|
+
constructor(el: ElementRef, renderer: Renderer2);
|
|
17
|
+
/**
|
|
18
|
+
* Shows the tooltip.
|
|
19
|
+
*/
|
|
20
|
+
onMouseEnter(): void;
|
|
21
|
+
/**
|
|
22
|
+
* Hides the tooltip.
|
|
23
|
+
*/
|
|
24
|
+
onMouseLeave(): void;
|
|
25
|
+
private showTooltip;
|
|
26
|
+
private registerCloseListeners;
|
|
27
|
+
private getCloseListener;
|
|
28
|
+
private hideTooltip;
|
|
29
|
+
private removeCloseListeners;
|
|
30
|
+
ngOnDestroy(): void;
|
|
31
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TooltipDirective, never>;
|
|
32
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<TooltipDirective, "[tooltip]", never, { "tooltip": { "alias": "tooltip"; "required": false; }; }, {}, never, never, true, never>;
|
|
33
|
+
}
|