@progress/kendo-angular-tooltip 11.0.0-develop.100 → 11.0.0-develop.101
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/esm2020/package-metadata.mjs +1 -1
- package/esm2020/tooltip/tooltip.content.component.mjs +21 -5
- package/esm2020/tooltip.module.mjs +3 -2
- package/fesm2015/progress-kendo-angular-tooltip.mjs +25 -8
- package/fesm2020/progress-kendo-angular-tooltip.mjs +25 -8
- package/package.json +6 -5
- package/schematics/ngAdd/index.js +4 -1
- package/tooltip/tooltip.content.component.d.ts +5 -0
- package/tooltip.module.d.ts +2 -1
|
@@ -9,7 +9,7 @@ export const packageMetadata = {
|
|
|
9
9
|
name: '@progress/kendo-angular-tooltip',
|
|
10
10
|
productName: 'Kendo UI for Angular',
|
|
11
11
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
12
|
-
publishDate:
|
|
12
|
+
publishDate: 1673510450,
|
|
13
13
|
version: '',
|
|
14
14
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
15
15
|
};
|
|
@@ -5,10 +5,12 @@
|
|
|
5
5
|
import { Component, HostBinding, Input, ElementRef, TemplateRef, Output, EventEmitter } from '@angular/core';
|
|
6
6
|
import { LocalizationService, L10N_PREFIX } from '@progress/kendo-angular-l10n';
|
|
7
7
|
import { getCenterOffset, getId } from '../utils';
|
|
8
|
+
import { xIcon } from '@progress/kendo-svg-icons';
|
|
8
9
|
import * as i0 from "@angular/core";
|
|
9
10
|
import * as i1 from "@progress/kendo-angular-l10n";
|
|
10
|
-
import * as i2 from "
|
|
11
|
-
import * as i3 from "
|
|
11
|
+
import * as i2 from "@progress/kendo-angular-icons";
|
|
12
|
+
import * as i3 from "../localization/localized-messages.directive";
|
|
13
|
+
import * as i4 from "@angular/common";
|
|
12
14
|
/**
|
|
13
15
|
* @hidden
|
|
14
16
|
*/
|
|
@@ -16,6 +18,10 @@ export class TooltipContentComponent {
|
|
|
16
18
|
constructor(content, localizationService) {
|
|
17
19
|
this.content = content;
|
|
18
20
|
this.localizationService = localizationService;
|
|
21
|
+
/**
|
|
22
|
+
* @hidden
|
|
23
|
+
*/
|
|
24
|
+
this.xIcon = xIcon;
|
|
19
25
|
this.close = new EventEmitter();
|
|
20
26
|
this.hostRole = 'tooltip';
|
|
21
27
|
this.tooltipWidth = null;
|
|
@@ -143,11 +149,16 @@ TooltipContentComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0"
|
|
|
143
149
|
</div>
|
|
144
150
|
|
|
145
151
|
<div *ngIf="closable" [attr.aria-hidden]="true" class="k-tooltip-button" (click)="onCloseClick($event)">
|
|
146
|
-
<a href="#"
|
|
152
|
+
<a href="#" [attr.title]="closeButtonTitle" class="k-icon">
|
|
153
|
+
<kendo-icon-wrapper
|
|
154
|
+
name="x"
|
|
155
|
+
[svgIcon]="xIcon">
|
|
156
|
+
</kendo-icon-wrapper>
|
|
157
|
+
</a>
|
|
147
158
|
</div>
|
|
148
159
|
|
|
149
160
|
<div class="k-callout" *ngIf="callout" [ngClass]="calloutPositionClass()"></div>
|
|
150
|
-
`, isInline: true,
|
|
161
|
+
`, isInline: true, components: [{ type: i2.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass"], exportAs: ["kendoIconWrapper"] }], directives: [{ type: i3.LocalizedMessagesDirective, selector: "[kendoTooltipLocalizedMessages]", inputs: ["closeTitle"] }, { type: i4.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i4.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet"] }, { type: i4.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }] });
|
|
151
162
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: TooltipContentComponent, decorators: [{
|
|
152
163
|
type: Component,
|
|
153
164
|
args: [{
|
|
@@ -180,7 +191,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
180
191
|
</div>
|
|
181
192
|
|
|
182
193
|
<div *ngIf="closable" [attr.aria-hidden]="true" class="k-tooltip-button" (click)="onCloseClick($event)">
|
|
183
|
-
<a href="#"
|
|
194
|
+
<a href="#" [attr.title]="closeButtonTitle" class="k-icon">
|
|
195
|
+
<kendo-icon-wrapper
|
|
196
|
+
name="x"
|
|
197
|
+
[svgIcon]="xIcon">
|
|
198
|
+
</kendo-icon-wrapper>
|
|
199
|
+
</a>
|
|
184
200
|
</div>
|
|
185
201
|
|
|
186
202
|
<div class="k-callout" *ngIf="callout" [ngClass]="calloutPositionClass()"></div>
|
|
@@ -6,11 +6,12 @@ import { NgModule } from '@angular/core';
|
|
|
6
6
|
import { CommonModule } from '@angular/common';
|
|
7
7
|
import { TooltipDirective } from './tooltip/tooltip.directive';
|
|
8
8
|
import { PopupModule } from '@progress/kendo-angular-popup';
|
|
9
|
+
import { IconsModule } from '@progress/kendo-angular-icons';
|
|
9
10
|
import { TooltipContentComponent } from './tooltip/tooltip.content.component';
|
|
10
11
|
import { LocalizedMessagesDirective } from './localization/localized-messages.directive';
|
|
11
12
|
import * as i0 from "@angular/core";
|
|
12
13
|
const COMPONENT_DIRECTIVES = [TooltipDirective, TooltipContentComponent, LocalizedMessagesDirective];
|
|
13
|
-
const COMPONENT_MODULES = [PopupModule];
|
|
14
|
+
const COMPONENT_MODULES = [PopupModule, IconsModule];
|
|
14
15
|
/**
|
|
15
16
|
* Represents the [NgModule](link:site.data.urls.angular['ngmoduleapi'])
|
|
16
17
|
* definition for the Tooltip component.
|
|
@@ -44,7 +45,7 @@ const COMPONENT_MODULES = [PopupModule];
|
|
|
44
45
|
export class TooltipModule {
|
|
45
46
|
}
|
|
46
47
|
TooltipModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: TooltipModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
47
|
-
TooltipModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: TooltipModule, declarations: [TooltipDirective, TooltipContentComponent, LocalizedMessagesDirective], imports: [CommonModule, PopupModule], exports: [TooltipDirective, TooltipContentComponent, LocalizedMessagesDirective] });
|
|
48
|
+
TooltipModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: TooltipModule, declarations: [TooltipDirective, TooltipContentComponent, LocalizedMessagesDirective], imports: [CommonModule, PopupModule, IconsModule], exports: [TooltipDirective, TooltipContentComponent, LocalizedMessagesDirective] });
|
|
48
49
|
TooltipModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: TooltipModule, imports: [[CommonModule, ...COMPONENT_MODULES]] });
|
|
49
50
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: TooltipModule, decorators: [{
|
|
50
51
|
type: NgModule,
|
|
@@ -9,7 +9,10 @@ import { Subscription, fromEvent, BehaviorSubject, Subject, combineLatest } from
|
|
|
9
9
|
import { validatePackage } from '@progress/kendo-licensing';
|
|
10
10
|
import * as i1 from '@progress/kendo-angular-l10n';
|
|
11
11
|
import { ComponentMessages, LocalizationService, L10N_PREFIX } from '@progress/kendo-angular-l10n';
|
|
12
|
-
import
|
|
12
|
+
import { xIcon } from '@progress/kendo-svg-icons';
|
|
13
|
+
import * as i2 from '@progress/kendo-angular-icons';
|
|
14
|
+
import { IconsModule } from '@progress/kendo-angular-icons';
|
|
15
|
+
import * as i2$1 from '@angular/common';
|
|
13
16
|
import { CommonModule } from '@angular/common';
|
|
14
17
|
import { isDocumentAvailable, Keys, PreventableEvent, closest, hasObservers } from '@progress/kendo-angular-common';
|
|
15
18
|
import * as i1$1 from '@progress/kendo-angular-popup';
|
|
@@ -22,7 +25,7 @@ const packageMetadata = {
|
|
|
22
25
|
name: '@progress/kendo-angular-tooltip',
|
|
23
26
|
productName: 'Kendo UI for Angular',
|
|
24
27
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
25
|
-
publishDate:
|
|
28
|
+
publishDate: 1673510450,
|
|
26
29
|
version: '',
|
|
27
30
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
28
31
|
};
|
|
@@ -228,6 +231,10 @@ class TooltipContentComponent {
|
|
|
228
231
|
constructor(content, localizationService) {
|
|
229
232
|
this.content = content;
|
|
230
233
|
this.localizationService = localizationService;
|
|
234
|
+
/**
|
|
235
|
+
* @hidden
|
|
236
|
+
*/
|
|
237
|
+
this.xIcon = xIcon;
|
|
231
238
|
this.close = new EventEmitter();
|
|
232
239
|
this.hostRole = 'tooltip';
|
|
233
240
|
this.tooltipWidth = null;
|
|
@@ -355,11 +362,16 @@ TooltipContentComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0"
|
|
|
355
362
|
</div>
|
|
356
363
|
|
|
357
364
|
<div *ngIf="closable" [attr.aria-hidden]="true" class="k-tooltip-button" (click)="onCloseClick($event)">
|
|
358
|
-
<a href="#"
|
|
365
|
+
<a href="#" [attr.title]="closeButtonTitle" class="k-icon">
|
|
366
|
+
<kendo-icon-wrapper
|
|
367
|
+
name="x"
|
|
368
|
+
[svgIcon]="xIcon">
|
|
369
|
+
</kendo-icon-wrapper>
|
|
370
|
+
</a>
|
|
359
371
|
</div>
|
|
360
372
|
|
|
361
373
|
<div class="k-callout" *ngIf="callout" [ngClass]="calloutPositionClass()"></div>
|
|
362
|
-
`, isInline: true, directives: [{ type: LocalizedMessagesDirective, selector: "[kendoTooltipLocalizedMessages]", inputs: ["closeTitle"] }, { type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i2.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet"] }, { type: i2.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }] });
|
|
374
|
+
`, isInline: true, components: [{ type: i2.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass"], exportAs: ["kendoIconWrapper"] }], directives: [{ type: LocalizedMessagesDirective, selector: "[kendoTooltipLocalizedMessages]", inputs: ["closeTitle"] }, { type: i2$1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i2$1.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet"] }, { type: i2$1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }] });
|
|
363
375
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: TooltipContentComponent, decorators: [{
|
|
364
376
|
type: Component,
|
|
365
377
|
args: [{
|
|
@@ -392,7 +404,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
392
404
|
</div>
|
|
393
405
|
|
|
394
406
|
<div *ngIf="closable" [attr.aria-hidden]="true" class="k-tooltip-button" (click)="onCloseClick($event)">
|
|
395
|
-
<a href="#"
|
|
407
|
+
<a href="#" [attr.title]="closeButtonTitle" class="k-icon">
|
|
408
|
+
<kendo-icon-wrapper
|
|
409
|
+
name="x"
|
|
410
|
+
[svgIcon]="xIcon">
|
|
411
|
+
</kendo-icon-wrapper>
|
|
412
|
+
</a>
|
|
396
413
|
</div>
|
|
397
414
|
|
|
398
415
|
<div class="k-callout" *ngIf="callout" [ngClass]="calloutPositionClass()"></div>
|
|
@@ -1165,7 +1182,7 @@ PopoverComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", versi
|
|
|
1165
1182
|
</div>
|
|
1166
1183
|
</ng-template>
|
|
1167
1184
|
</div>
|
|
1168
|
-
`, isInline: true, directives: [{ type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i2.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { type: i2.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { type: i2.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet"] }] });
|
|
1185
|
+
`, isInline: true, directives: [{ type: i2$1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i2$1.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { type: i2$1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { type: i2$1.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet"] }] });
|
|
1169
1186
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PopoverComponent, decorators: [{
|
|
1170
1187
|
type: Component,
|
|
1171
1188
|
args: [{
|
|
@@ -1969,7 +1986,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
1969
1986
|
}], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.NgZone }, { type: i1$1.PopupService }, { type: i0.Renderer2 }, { type: PopoverService }]; } });
|
|
1970
1987
|
|
|
1971
1988
|
const COMPONENT_DIRECTIVES = [TooltipDirective, TooltipContentComponent, LocalizedMessagesDirective];
|
|
1972
|
-
const COMPONENT_MODULES = [PopupModule];
|
|
1989
|
+
const COMPONENT_MODULES = [PopupModule, IconsModule];
|
|
1973
1990
|
/**
|
|
1974
1991
|
* Represents the [NgModule](link:site.data.urls.angular['ngmoduleapi'])
|
|
1975
1992
|
* definition for the Tooltip component.
|
|
@@ -2003,7 +2020,7 @@ const COMPONENT_MODULES = [PopupModule];
|
|
|
2003
2020
|
class TooltipModule {
|
|
2004
2021
|
}
|
|
2005
2022
|
TooltipModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: TooltipModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
2006
|
-
TooltipModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: TooltipModule, declarations: [TooltipDirective, TooltipContentComponent, LocalizedMessagesDirective], imports: [CommonModule, PopupModule], exports: [TooltipDirective, TooltipContentComponent, LocalizedMessagesDirective] });
|
|
2023
|
+
TooltipModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: TooltipModule, declarations: [TooltipDirective, TooltipContentComponent, LocalizedMessagesDirective], imports: [CommonModule, PopupModule, IconsModule], exports: [TooltipDirective, TooltipContentComponent, LocalizedMessagesDirective] });
|
|
2007
2024
|
TooltipModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: TooltipModule, imports: [[CommonModule, ...COMPONENT_MODULES]] });
|
|
2008
2025
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: TooltipModule, decorators: [{
|
|
2009
2026
|
type: NgModule,
|
|
@@ -11,7 +11,10 @@ import { PopupModule } from '@progress/kendo-angular-popup';
|
|
|
11
11
|
import { validatePackage } from '@progress/kendo-licensing';
|
|
12
12
|
import * as i1 from '@progress/kendo-angular-l10n';
|
|
13
13
|
import { ComponentMessages, LocalizationService, L10N_PREFIX } from '@progress/kendo-angular-l10n';
|
|
14
|
-
import
|
|
14
|
+
import { xIcon } from '@progress/kendo-svg-icons';
|
|
15
|
+
import * as i2 from '@progress/kendo-angular-icons';
|
|
16
|
+
import { IconsModule } from '@progress/kendo-angular-icons';
|
|
17
|
+
import * as i2$1 from '@angular/common';
|
|
15
18
|
import { CommonModule } from '@angular/common';
|
|
16
19
|
import { isDocumentAvailable, Keys, PreventableEvent, closest, hasObservers } from '@progress/kendo-angular-common';
|
|
17
20
|
|
|
@@ -22,7 +25,7 @@ const packageMetadata = {
|
|
|
22
25
|
name: '@progress/kendo-angular-tooltip',
|
|
23
26
|
productName: 'Kendo UI for Angular',
|
|
24
27
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
25
|
-
publishDate:
|
|
28
|
+
publishDate: 1673510450,
|
|
26
29
|
version: '',
|
|
27
30
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
28
31
|
};
|
|
@@ -228,6 +231,10 @@ class TooltipContentComponent {
|
|
|
228
231
|
constructor(content, localizationService) {
|
|
229
232
|
this.content = content;
|
|
230
233
|
this.localizationService = localizationService;
|
|
234
|
+
/**
|
|
235
|
+
* @hidden
|
|
236
|
+
*/
|
|
237
|
+
this.xIcon = xIcon;
|
|
231
238
|
this.close = new EventEmitter();
|
|
232
239
|
this.hostRole = 'tooltip';
|
|
233
240
|
this.tooltipWidth = null;
|
|
@@ -355,11 +362,16 @@ TooltipContentComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0"
|
|
|
355
362
|
</div>
|
|
356
363
|
|
|
357
364
|
<div *ngIf="closable" [attr.aria-hidden]="true" class="k-tooltip-button" (click)="onCloseClick($event)">
|
|
358
|
-
<a href="#"
|
|
365
|
+
<a href="#" [attr.title]="closeButtonTitle" class="k-icon">
|
|
366
|
+
<kendo-icon-wrapper
|
|
367
|
+
name="x"
|
|
368
|
+
[svgIcon]="xIcon">
|
|
369
|
+
</kendo-icon-wrapper>
|
|
370
|
+
</a>
|
|
359
371
|
</div>
|
|
360
372
|
|
|
361
373
|
<div class="k-callout" *ngIf="callout" [ngClass]="calloutPositionClass()"></div>
|
|
362
|
-
`, isInline: true, directives: [{ type: LocalizedMessagesDirective, selector: "[kendoTooltipLocalizedMessages]", inputs: ["closeTitle"] }, { type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i2.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet"] }, { type: i2.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }] });
|
|
374
|
+
`, isInline: true, components: [{ type: i2.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass"], exportAs: ["kendoIconWrapper"] }], directives: [{ type: LocalizedMessagesDirective, selector: "[kendoTooltipLocalizedMessages]", inputs: ["closeTitle"] }, { type: i2$1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i2$1.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet"] }, { type: i2$1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }] });
|
|
363
375
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: TooltipContentComponent, decorators: [{
|
|
364
376
|
type: Component,
|
|
365
377
|
args: [{
|
|
@@ -392,7 +404,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
392
404
|
</div>
|
|
393
405
|
|
|
394
406
|
<div *ngIf="closable" [attr.aria-hidden]="true" class="k-tooltip-button" (click)="onCloseClick($event)">
|
|
395
|
-
<a href="#"
|
|
407
|
+
<a href="#" [attr.title]="closeButtonTitle" class="k-icon">
|
|
408
|
+
<kendo-icon-wrapper
|
|
409
|
+
name="x"
|
|
410
|
+
[svgIcon]="xIcon">
|
|
411
|
+
</kendo-icon-wrapper>
|
|
412
|
+
</a>
|
|
396
413
|
</div>
|
|
397
414
|
|
|
398
415
|
<div class="k-callout" *ngIf="callout" [ngClass]="calloutPositionClass()"></div>
|
|
@@ -1157,7 +1174,7 @@ PopoverComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", versi
|
|
|
1157
1174
|
</div>
|
|
1158
1175
|
</ng-template>
|
|
1159
1176
|
</div>
|
|
1160
|
-
`, isInline: true, directives: [{ type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i2.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { type: i2.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { type: i2.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet"] }] });
|
|
1177
|
+
`, isInline: true, directives: [{ type: i2$1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i2$1.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { type: i2$1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { type: i2$1.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet"] }] });
|
|
1161
1178
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PopoverComponent, decorators: [{
|
|
1162
1179
|
type: Component,
|
|
1163
1180
|
args: [{
|
|
@@ -1961,7 +1978,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
1961
1978
|
}], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.NgZone }, { type: i1$1.PopupService }, { type: i0.Renderer2 }, { type: PopoverService }]; } });
|
|
1962
1979
|
|
|
1963
1980
|
const COMPONENT_DIRECTIVES = [TooltipDirective, TooltipContentComponent, LocalizedMessagesDirective];
|
|
1964
|
-
const COMPONENT_MODULES = [PopupModule];
|
|
1981
|
+
const COMPONENT_MODULES = [PopupModule, IconsModule];
|
|
1965
1982
|
/**
|
|
1966
1983
|
* Represents the [NgModule](link:site.data.urls.angular['ngmoduleapi'])
|
|
1967
1984
|
* definition for the Tooltip component.
|
|
@@ -1995,7 +2012,7 @@ const COMPONENT_MODULES = [PopupModule];
|
|
|
1995
2012
|
class TooltipModule {
|
|
1996
2013
|
}
|
|
1997
2014
|
TooltipModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: TooltipModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
1998
|
-
TooltipModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: TooltipModule, declarations: [TooltipDirective, TooltipContentComponent, LocalizedMessagesDirective], imports: [CommonModule, PopupModule], exports: [TooltipDirective, TooltipContentComponent, LocalizedMessagesDirective] });
|
|
2015
|
+
TooltipModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: TooltipModule, declarations: [TooltipDirective, TooltipContentComponent, LocalizedMessagesDirective], imports: [CommonModule, PopupModule, IconsModule], exports: [TooltipDirective, TooltipContentComponent, LocalizedMessagesDirective] });
|
|
1999
2016
|
TooltipModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: TooltipModule, imports: [[CommonModule, ...COMPONENT_MODULES]] });
|
|
2000
2017
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: TooltipModule, decorators: [{
|
|
2001
2018
|
type: NgModule,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-tooltip",
|
|
3
|
-
"version": "11.0.0-develop.
|
|
3
|
+
"version": "11.0.0-develop.101",
|
|
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,10 +25,11 @@
|
|
|
25
25
|
"@angular/core": "13 - 15",
|
|
26
26
|
"@angular/platform-browser": "13 - 15",
|
|
27
27
|
"@progress/kendo-licensing": "^1.0.2",
|
|
28
|
-
"@progress/kendo-angular-common": "11.0.0-develop.
|
|
29
|
-
"@progress/kendo-angular-l10n": "11.0.0-develop.
|
|
30
|
-
"@progress/kendo-angular-popup": "11.0.0-develop.
|
|
31
|
-
"@progress/kendo-angular-
|
|
28
|
+
"@progress/kendo-angular-common": "11.0.0-develop.101",
|
|
29
|
+
"@progress/kendo-angular-l10n": "11.0.0-develop.101",
|
|
30
|
+
"@progress/kendo-angular-popup": "11.0.0-develop.101",
|
|
31
|
+
"@progress/kendo-angular-icons": "11.0.0-develop.101",
|
|
32
|
+
"@progress/kendo-angular-schematics": "11.0.0-develop.101",
|
|
32
33
|
"rxjs": "^6.5.3 || ^7.0.0"
|
|
33
34
|
},
|
|
34
35
|
"dependencies": {
|
|
@@ -2,7 +2,10 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
const schematics_1 = require("@angular-devkit/schematics");
|
|
4
4
|
function default_1(options) {
|
|
5
|
-
const finalOptions = Object.assign(Object.assign({}, options), { mainNgModule: 'TooltipsModule', package: 'tooltip'
|
|
5
|
+
const finalOptions = Object.assign(Object.assign({}, options), { mainNgModule: 'TooltipsModule', package: 'tooltip', peerDependencies: {
|
|
6
|
+
// Peer dependency of icons
|
|
7
|
+
"@progress/kendo-svg-icons": "^1.0.0"
|
|
8
|
+
} });
|
|
6
9
|
return (0, schematics_1.externalSchematic)('@progress/kendo-angular-schematics', 'ng-add', finalOptions);
|
|
7
10
|
}
|
|
8
11
|
exports.default = default_1;
|
|
@@ -5,6 +5,7 @@
|
|
|
5
5
|
import { ElementRef, TemplateRef, EventEmitter } from '@angular/core';
|
|
6
6
|
import { LocalizationService } from '@progress/kendo-angular-l10n';
|
|
7
7
|
import { Position } from '../models/position.type';
|
|
8
|
+
import { SVGIcon } from '@progress/kendo-svg-icons';
|
|
8
9
|
import * as i0 from "@angular/core";
|
|
9
10
|
/**
|
|
10
11
|
* @hidden
|
|
@@ -12,6 +13,10 @@ import * as i0 from "@angular/core";
|
|
|
12
13
|
export declare class TooltipContentComponent {
|
|
13
14
|
private content;
|
|
14
15
|
private localizationService;
|
|
16
|
+
/**
|
|
17
|
+
* @hidden
|
|
18
|
+
*/
|
|
19
|
+
xIcon: SVGIcon;
|
|
15
20
|
/**
|
|
16
21
|
* @hidden
|
|
17
22
|
*/
|
package/tooltip.module.d.ts
CHANGED
|
@@ -8,6 +8,7 @@ import * as i2 from "./tooltip/tooltip.content.component";
|
|
|
8
8
|
import * as i3 from "./localization/localized-messages.directive";
|
|
9
9
|
import * as i4 from "@angular/common";
|
|
10
10
|
import * as i5 from "@progress/kendo-angular-popup";
|
|
11
|
+
import * as i6 from "@progress/kendo-angular-icons";
|
|
11
12
|
/**
|
|
12
13
|
* Represents the [NgModule](link:site.data.urls.angular['ngmoduleapi'])
|
|
13
14
|
* definition for the Tooltip component.
|
|
@@ -40,6 +41,6 @@ import * as i5 from "@progress/kendo-angular-popup";
|
|
|
40
41
|
*/
|
|
41
42
|
export declare class TooltipModule {
|
|
42
43
|
static ɵfac: i0.ɵɵFactoryDeclaration<TooltipModule, never>;
|
|
43
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<TooltipModule, [typeof i1.TooltipDirective, typeof i2.TooltipContentComponent, typeof i3.LocalizedMessagesDirective], [typeof i4.CommonModule, typeof i5.PopupModule], [typeof i1.TooltipDirective, typeof i2.TooltipContentComponent, typeof i3.LocalizedMessagesDirective]>;
|
|
44
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<TooltipModule, [typeof i1.TooltipDirective, typeof i2.TooltipContentComponent, typeof i3.LocalizedMessagesDirective], [typeof i4.CommonModule, typeof i5.PopupModule, typeof i6.IconsModule], [typeof i1.TooltipDirective, typeof i2.TooltipContentComponent, typeof i3.LocalizedMessagesDirective]>;
|
|
44
45
|
static ɵinj: i0.ɵɵInjectorDeclaration<TooltipModule>;
|
|
45
46
|
}
|