@progress/kendo-angular-tooltip 16.5.0 → 16.6.0-develop.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/directives.d.ts +25 -0
- package/esm2020/directives.mjs +39 -0
- package/esm2020/index.mjs +2 -0
- package/esm2020/localization/localized-messages.directive.mjs +3 -2
- package/esm2020/package-metadata.mjs +2 -2
- package/esm2020/popover/anchor.directive.mjs +4 -3
- package/esm2020/popover/container.directive.mjs +4 -3
- package/esm2020/popover/directives-base.mjs +1 -1
- package/esm2020/popover/popover.component.mjs +7 -5
- package/esm2020/popover/template-directives/actions-template.directive.mjs +3 -2
- package/esm2020/popover/template-directives/body-template.directive.mjs +3 -2
- package/esm2020/popover/template-directives/title-template.directive.mjs +3 -2
- package/esm2020/popover.module.mjs +15 -35
- package/esm2020/tooltip/tooltip.content.component.mjs +8 -6
- package/esm2020/tooltip/tooltip.directive.mjs +3 -2
- package/esm2020/tooltip.module.mjs +13 -12
- package/esm2020/tooltips.module.mjs +19 -5
- package/fesm2015/progress-kendo-angular-tooltip.mjs +1745 -1729
- package/fesm2020/progress-kendo-angular-tooltip.mjs +1729 -1713
- package/index.d.ts +1 -0
- package/localization/localized-messages.directive.d.ts +1 -1
- package/package.json +6 -6
- package/popover/anchor.directive.d.ts +2 -2
- package/popover/container.directive.d.ts +3 -3
- package/popover/directives-base.d.ts +1 -1
- package/popover/popover.component.d.ts +2 -2
- package/popover/template-directives/actions-template.directive.d.ts +1 -1
- package/popover/template-directives/body-template.directive.d.ts +1 -1
- package/popover/template-directives/title-template.directive.d.ts +1 -1
- package/popover.module.d.ts +7 -9
- package/tooltip/tooltip.content.component.d.ts +1 -1
- package/tooltip/tooltip.directive.d.ts +1 -1
- package/tooltip.module.d.ts +1 -4
- package/tooltips.module.d.ts +10 -3
package/index.d.ts
CHANGED
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
* Copyright © 2024 Progress Software Corporation. All rights reserved.
|
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
|
+
export * from './directives';
|
|
5
6
|
export { TooltipDirective } from './tooltip/tooltip.directive';
|
|
6
7
|
export { TooltipSettings, TOOLTIP_SETTINGS } from './tooltip/tooltip.settings';
|
|
7
8
|
export { TooltipContentComponent } from './tooltip/tooltip.content.component';
|
|
@@ -15,5 +15,5 @@ export declare class LocalizedMessagesDirective extends ComponentMessages {
|
|
|
15
15
|
closeTitle: string;
|
|
16
16
|
constructor(service: LocalizationService);
|
|
17
17
|
static ɵfac: i0.ɵɵFactoryDeclaration<LocalizedMessagesDirective, never>;
|
|
18
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<LocalizedMessagesDirective, "[kendoTooltipLocalizedMessages]", never, { "closeTitle": "closeTitle"; }, {}, never, never,
|
|
18
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<LocalizedMessagesDirective, "[kendoTooltipLocalizedMessages]", never, { "closeTitle": "closeTitle"; }, {}, never, never, true, never>;
|
|
19
19
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-tooltip",
|
|
3
|
-
"version": "16.
|
|
3
|
+
"version": "16.6.0-develop.1",
|
|
4
4
|
"description": "Kendo UI Tooltip for Angular - A highly customizable and easily themeable tooltip from the creators developers trust for professional Angular components.",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
6
|
"author": "Progress",
|
|
@@ -25,15 +25,15 @@
|
|
|
25
25
|
"@angular/core": "15 - 18",
|
|
26
26
|
"@angular/platform-browser": "15 - 18",
|
|
27
27
|
"@progress/kendo-licensing": "^1.0.2",
|
|
28
|
-
"@progress/kendo-angular-common": "16.
|
|
29
|
-
"@progress/kendo-angular-l10n": "16.
|
|
30
|
-
"@progress/kendo-angular-popup": "16.
|
|
31
|
-
"@progress/kendo-angular-icons": "16.
|
|
28
|
+
"@progress/kendo-angular-common": "16.6.0-develop.1",
|
|
29
|
+
"@progress/kendo-angular-l10n": "16.6.0-develop.1",
|
|
30
|
+
"@progress/kendo-angular-popup": "16.6.0-develop.1",
|
|
31
|
+
"@progress/kendo-angular-icons": "16.6.0-develop.1",
|
|
32
32
|
"rxjs": "^6.5.3 || ^7.0.0"
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
35
|
"tslib": "^2.3.1",
|
|
36
|
-
"@progress/kendo-angular-schematics": "16.
|
|
36
|
+
"@progress/kendo-angular-schematics": "16.6.0-develop.1"
|
|
37
37
|
},
|
|
38
38
|
"schematics": "./schematics/collection.json",
|
|
39
39
|
"module": "fesm2015/progress-kendo-angular-tooltip.mjs",
|
|
@@ -8,7 +8,7 @@ import { PopoverDirectivesBase } from "./directives-base";
|
|
|
8
8
|
import { PopoverService } from "./popover.service";
|
|
9
9
|
import * as i0 from "@angular/core";
|
|
10
10
|
/**
|
|
11
|
-
* Represents the [`kendoPopoverAnchor`](
|
|
11
|
+
* Represents the [`kendoPopoverAnchor`](slug:configuration_popover#toc-popover-anchor) directive.
|
|
12
12
|
* It is used to target an element, which should display a popover on interaction.
|
|
13
13
|
*
|
|
14
14
|
* @example
|
|
@@ -43,5 +43,5 @@ export declare class PopoverAnchorDirective extends PopoverDirectivesBase {
|
|
|
43
43
|
private onClick;
|
|
44
44
|
private controlVisibility;
|
|
45
45
|
static ɵfac: i0.ɵɵFactoryDeclaration<PopoverAnchorDirective, never>;
|
|
46
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<PopoverAnchorDirective, "[kendoPopoverAnchor]", ["kendoPopoverAnchor"], {}, {}, never, never,
|
|
46
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<PopoverAnchorDirective, "[kendoPopoverAnchor]", ["kendoPopoverAnchor"], {}, {}, never, never, true, never>;
|
|
47
47
|
}
|
|
@@ -8,7 +8,7 @@ import { PopoverDirectivesBase } from './directives-base';
|
|
|
8
8
|
import { PopoverService } from "./popover.service";
|
|
9
9
|
import * as i0 from "@angular/core";
|
|
10
10
|
/**
|
|
11
|
-
* Represents the [`kendoPopoverContainer`](
|
|
11
|
+
* Represents the [`kendoPopoverContainer`](slug:configuration_popover#toc-popover-container) directive.
|
|
12
12
|
* It is used to filter and target multiple elements, which should display a popover on interaction.
|
|
13
13
|
*
|
|
14
14
|
* @example
|
|
@@ -30,7 +30,7 @@ export declare class PopoverContainerDirective extends PopoverDirectivesBase {
|
|
|
30
30
|
* Specifies a selector for the elements that should display a popover.
|
|
31
31
|
*
|
|
32
32
|
* The possible values include any valid query selector.
|
|
33
|
-
* [See example](
|
|
33
|
+
* [See example](slug:configuration_popover#toc-popover-container)
|
|
34
34
|
*/
|
|
35
35
|
filter: string;
|
|
36
36
|
constructor(wrapperEl: ElementRef, ngZone: NgZone, popupService: PopupService, renderer: Renderer2, popoverService: PopoverService);
|
|
@@ -55,5 +55,5 @@ export declare class PopoverContainerDirective extends PopoverDirectivesBase {
|
|
|
55
55
|
private clickHandler;
|
|
56
56
|
private controlVisibility;
|
|
57
57
|
static ɵfac: i0.ɵɵFactoryDeclaration<PopoverContainerDirective, never>;
|
|
58
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<PopoverContainerDirective, "[kendoPopoverContainer]", ["kendoPopoverContainer"], { "filter": "filter"; }, {}, never, never,
|
|
58
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<PopoverContainerDirective, "[kendoPopoverContainer]", ["kendoPopoverContainer"], { "filter": "filter"; }, {}, never, never, true, never>;
|
|
59
59
|
}
|
|
@@ -23,7 +23,7 @@ export declare abstract class PopoverDirectivesBase {
|
|
|
23
23
|
* a [`PopoverFn`]({% slug api_tooltip_popoverfn %}) callback which returns a [`PopoverComponent`]({% slug api_tooltip_popovercomponent %}) instance
|
|
24
24
|
* depending on the current anchor element.
|
|
25
25
|
*
|
|
26
|
-
* [See example](
|
|
26
|
+
* [See example](slug:templates_popover#toc-passing-data-to-templates)
|
|
27
27
|
*/
|
|
28
28
|
set popover(value: PopoverComponent | PopoverFn);
|
|
29
29
|
get popover(): PopoverComponent | PopoverFn;
|
|
@@ -105,7 +105,7 @@ export declare class PopoverComponent implements OnInit, AfterViewInit, OnDestro
|
|
|
105
105
|
animation: PopoverAnimation;
|
|
106
106
|
/**
|
|
107
107
|
* Defines a callback function which returns custom data passed to the Popover templates.
|
|
108
|
-
* It exposes the current anchor element as an argument. [See example](
|
|
108
|
+
* It exposes the current anchor element as an argument. [See example](slug:templates_popover#toc-passing-data-to-templates)
|
|
109
109
|
*/
|
|
110
110
|
set templateData(fn: PopoverDataFn);
|
|
111
111
|
get templateData(): PopoverDataFn;
|
|
@@ -202,5 +202,5 @@ export declare class PopoverComponent implements OnInit, AfterViewInit, OnDestro
|
|
|
202
202
|
private keepFocusWithinComponent;
|
|
203
203
|
private setAriaAttributes;
|
|
204
204
|
static ɵfac: i0.ɵɵFactoryDeclaration<PopoverComponent, never>;
|
|
205
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PopoverComponent, "kendo-popover", never, { "position": "position"; "offset": "offset"; "width": "width"; "height": "height"; "title": "title"; "subtitle": "subtitle"; "body": "body"; "callout": "callout"; "animation": "animation"; "templateData": "templateData"; }, { "show": "show"; "shown": "shown"; "hide": "hide"; "hidden": "hidden"; "closeOnKeyDown": "closeOnKeyDown"; }, ["titleTemplate", "bodyTemplate", "actionsTemplate"], never,
|
|
205
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PopoverComponent, "kendo-popover", never, { "position": "position"; "offset": "offset"; "width": "width"; "height": "height"; "title": "title"; "subtitle": "subtitle"; "body": "body"; "callout": "callout"; "animation": "animation"; "templateData": "templateData"; }, { "show": "show"; "shown": "shown"; "hide": "hide"; "hidden": "hidden"; "closeOnKeyDown": "closeOnKeyDown"; }, ["titleTemplate", "bodyTemplate", "actionsTemplate"], never, true, never>;
|
|
206
206
|
}
|
|
@@ -14,5 +14,5 @@ export declare class PopoverActionsTemplateDirective {
|
|
|
14
14
|
templateRef: TemplateRef<any>;
|
|
15
15
|
constructor(templateRef: TemplateRef<any>);
|
|
16
16
|
static ɵfac: i0.ɵɵFactoryDeclaration<PopoverActionsTemplateDirective, [{ optional: true; }]>;
|
|
17
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<PopoverActionsTemplateDirective, "[kendoPopoverActionsTemplate]", never, {}, {}, never, never,
|
|
17
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<PopoverActionsTemplateDirective, "[kendoPopoverActionsTemplate]", never, {}, {}, never, never, true, never>;
|
|
18
18
|
}
|
|
@@ -14,5 +14,5 @@ export declare class PopoverBodyTemplateDirective {
|
|
|
14
14
|
templateRef: TemplateRef<any>;
|
|
15
15
|
constructor(templateRef: TemplateRef<any>);
|
|
16
16
|
static ɵfac: i0.ɵɵFactoryDeclaration<PopoverBodyTemplateDirective, [{ optional: true; }]>;
|
|
17
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<PopoverBodyTemplateDirective, "[kendoPopoverBodyTemplate]", never, {}, {}, never, never,
|
|
17
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<PopoverBodyTemplateDirective, "[kendoPopoverBodyTemplate]", never, {}, {}, never, never, true, never>;
|
|
18
18
|
}
|
|
@@ -14,5 +14,5 @@ export declare class PopoverTitleTemplateDirective {
|
|
|
14
14
|
templateRef: TemplateRef<any>;
|
|
15
15
|
constructor(templateRef: TemplateRef<any>);
|
|
16
16
|
static ɵfac: i0.ɵɵFactoryDeclaration<PopoverTitleTemplateDirective, [{ optional: true; }]>;
|
|
17
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<PopoverTitleTemplateDirective, "[kendoPopoverTitleTemplate]", never, {}, {}, never, never,
|
|
17
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<PopoverTitleTemplateDirective, "[kendoPopoverTitleTemplate]", never, {}, {}, never, never, true, never>;
|
|
18
18
|
}
|
package/popover.module.d.ts
CHANGED
|
@@ -3,14 +3,12 @@
|
|
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
|
-
import * as i1 from "./popover/
|
|
7
|
-
import * as i2 from "./popover/template-directives/
|
|
8
|
-
import * as i3 from "./popover/template-directives/
|
|
9
|
-
import * as i4 from "./popover/
|
|
10
|
-
import * as i5 from "./popover/
|
|
11
|
-
import * as i6 from "./popover/
|
|
12
|
-
import * as i7 from "@angular/common";
|
|
13
|
-
import * as i8 from "@progress/kendo-angular-popup";
|
|
6
|
+
import * as i1 from "./popover/popover.component";
|
|
7
|
+
import * as i2 from "./popover/template-directives/actions-template.directive";
|
|
8
|
+
import * as i3 from "./popover/template-directives/body-template.directive";
|
|
9
|
+
import * as i4 from "./popover/template-directives/title-template.directive";
|
|
10
|
+
import * as i5 from "./popover/anchor.directive";
|
|
11
|
+
import * as i6 from "./popover/container.directive";
|
|
14
12
|
/**
|
|
15
13
|
* Represents the [NgModule](link:site.data.urls.angular['ngmoduleapi'])
|
|
16
14
|
* definition for the Popover component.
|
|
@@ -38,6 +36,6 @@ import * as i8 from "@progress/kendo-angular-popup";
|
|
|
38
36
|
*/
|
|
39
37
|
export declare class PopoverModule {
|
|
40
38
|
static ɵfac: i0.ɵɵFactoryDeclaration<PopoverModule, never>;
|
|
41
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<PopoverModule, [typeof i1.
|
|
39
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<PopoverModule, never, [typeof i1.PopoverComponent, typeof i2.PopoverActionsTemplateDirective, typeof i3.PopoverBodyTemplateDirective, typeof i4.PopoverTitleTemplateDirective, typeof i5.PopoverAnchorDirective, typeof i6.PopoverContainerDirective], [typeof i1.PopoverComponent, typeof i2.PopoverActionsTemplateDirective, typeof i3.PopoverBodyTemplateDirective, typeof i4.PopoverTitleTemplateDirective, typeof i5.PopoverAnchorDirective, typeof i6.PopoverContainerDirective]>;
|
|
42
40
|
static ɵinj: i0.ɵɵInjectorDeclaration<PopoverModule>;
|
|
43
41
|
}
|
|
@@ -51,5 +51,5 @@ export declare class TooltipContentComponent {
|
|
|
51
51
|
updateCalloutPosition(position: Position, isFlip: boolean): void;
|
|
52
52
|
private calloutStyles;
|
|
53
53
|
static ɵfac: i0.ɵɵFactoryDeclaration<TooltipContentComponent, never>;
|
|
54
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TooltipContentComponent, "kendo-tooltip", never, { "tooltipWidth": "tooltipWidth"; "tooltipHeight": "tooltipHeight"; "titleTemplate": "titleTemplate"; "anchor": "anchor"; "closable": "closable"; "templateRef": "templateRef"; "templateString": "templateString"; }, { "close": "close"; }, never, never,
|
|
54
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TooltipContentComponent, "kendo-tooltip", never, { "tooltipWidth": "tooltipWidth"; "tooltipHeight": "tooltipHeight"; "titleTemplate": "titleTemplate"; "anchor": "anchor"; "closable": "closable"; "templateRef": "templateRef"; "templateString": "templateString"; }, { "close": "close"; }, never, never, true, never>;
|
|
55
55
|
}
|
|
@@ -164,5 +164,5 @@ export declare class TooltipDirective implements OnDestroy, OnChanges, AfterView
|
|
|
164
164
|
private onMouseOut;
|
|
165
165
|
private verifyProperties;
|
|
166
166
|
static ɵfac: i0.ɵɵFactoryDeclaration<TooltipDirective, [null, null, null, null, { optional: true; }, { optional: true; }]>;
|
|
167
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<TooltipDirective, "[kendoTooltip]", ["kendoTooltip"], { "filter": "filter"; "position": "position"; "titleTemplate": "titleTemplate"; "showOn": "showOn"; "showAfter": "showAfter"; "callout": "callout"; "closable": "closable"; "offset": "offset"; "tooltipWidth": "tooltipWidth"; "tooltipHeight": "tooltipHeight"; "tooltipClass": "tooltipClass"; "tooltipContentClass": "tooltipContentClass"; "collision": "collision"; "closeTitle": "closeTitle"; "tooltipTemplate": "tooltipTemplate"; }, {}, never, never,
|
|
167
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<TooltipDirective, "[kendoTooltip]", ["kendoTooltip"], { "filter": "filter"; "position": "position"; "titleTemplate": "titleTemplate"; "showOn": "showOn"; "showAfter": "showAfter"; "callout": "callout"; "closable": "closable"; "offset": "offset"; "tooltipWidth": "tooltipWidth"; "tooltipHeight": "tooltipHeight"; "tooltipClass": "tooltipClass"; "tooltipContentClass": "tooltipContentClass"; "collision": "collision"; "closeTitle": "closeTitle"; "tooltipTemplate": "tooltipTemplate"; }, {}, never, never, true, never>;
|
|
168
168
|
}
|
package/tooltip.module.d.ts
CHANGED
|
@@ -6,9 +6,6 @@ import * as i0 from "@angular/core";
|
|
|
6
6
|
import * as i1 from "./tooltip/tooltip.directive";
|
|
7
7
|
import * as i2 from "./tooltip/tooltip.content.component";
|
|
8
8
|
import * as i3 from "./localization/localized-messages.directive";
|
|
9
|
-
import * as i4 from "@angular/common";
|
|
10
|
-
import * as i5 from "@progress/kendo-angular-popup";
|
|
11
|
-
import * as i6 from "@progress/kendo-angular-icons";
|
|
12
9
|
/**
|
|
13
10
|
* Represents the [NgModule](link:site.data.urls.angular['ngmoduleapi'])
|
|
14
11
|
* definition for the Tooltip component.
|
|
@@ -41,6 +38,6 @@ import * as i6 from "@progress/kendo-angular-icons";
|
|
|
41
38
|
*/
|
|
42
39
|
export declare class TooltipModule {
|
|
43
40
|
static ɵfac: i0.ɵɵFactoryDeclaration<TooltipModule, never>;
|
|
44
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<TooltipModule, [typeof i1.TooltipDirective, typeof i2.TooltipContentComponent, typeof i3.LocalizedMessagesDirective], [typeof
|
|
41
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<TooltipModule, never, [typeof i1.TooltipDirective, typeof i2.TooltipContentComponent, typeof i3.LocalizedMessagesDirective], [typeof i1.TooltipDirective, typeof i2.TooltipContentComponent, typeof i3.LocalizedMessagesDirective]>;
|
|
45
42
|
static ɵinj: i0.ɵɵInjectorDeclaration<TooltipModule>;
|
|
46
43
|
}
|
package/tooltips.module.d.ts
CHANGED
|
@@ -3,8 +3,15 @@
|
|
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
|
-
import * as i1 from "./tooltip.
|
|
7
|
-
import * as i2 from "./
|
|
6
|
+
import * as i1 from "./tooltip/tooltip.directive";
|
|
7
|
+
import * as i2 from "./tooltip/tooltip.content.component";
|
|
8
|
+
import * as i3 from "./localization/localized-messages.directive";
|
|
9
|
+
import * as i4 from "./popover/popover.component";
|
|
10
|
+
import * as i5 from "./popover/template-directives/actions-template.directive";
|
|
11
|
+
import * as i6 from "./popover/template-directives/body-template.directive";
|
|
12
|
+
import * as i7 from "./popover/template-directives/title-template.directive";
|
|
13
|
+
import * as i8 from "./popover/anchor.directive";
|
|
14
|
+
import * as i9 from "./popover/container.directive";
|
|
8
15
|
/**
|
|
9
16
|
* Represents the [NgModule](link:site.data.urls.angular['ngmoduleapi'])
|
|
10
17
|
* definition for the Tooltips components.
|
|
@@ -33,6 +40,6 @@ import * as i2 from "./popover.module";
|
|
|
33
40
|
*/
|
|
34
41
|
export declare class TooltipsModule {
|
|
35
42
|
static ɵfac: i0.ɵɵFactoryDeclaration<TooltipsModule, never>;
|
|
36
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<TooltipsModule, never,
|
|
43
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<TooltipsModule, never, [typeof i1.TooltipDirective, typeof i2.TooltipContentComponent, typeof i3.LocalizedMessagesDirective, typeof i4.PopoverComponent, typeof i5.PopoverActionsTemplateDirective, typeof i6.PopoverBodyTemplateDirective, typeof i7.PopoverTitleTemplateDirective, typeof i8.PopoverAnchorDirective, typeof i9.PopoverContainerDirective], [typeof i1.TooltipDirective, typeof i2.TooltipContentComponent, typeof i3.LocalizedMessagesDirective, typeof i4.PopoverComponent, typeof i5.PopoverActionsTemplateDirective, typeof i6.PopoverBodyTemplateDirective, typeof i7.PopoverTitleTemplateDirective, typeof i8.PopoverAnchorDirective, typeof i9.PopoverContainerDirective]>;
|
|
37
44
|
static ɵinj: i0.ɵɵInjectorDeclaration<TooltipsModule>;
|
|
38
45
|
}
|