@progress/kendo-angular-tooltip 14.4.0-develop.16 → 14.4.0-develop.17
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.
|
@@ -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:
|
|
13
|
-
version: '14.4.0-develop.
|
|
12
|
+
publishDate: 1706192561,
|
|
13
|
+
version: '14.4.0-develop.17',
|
|
14
14
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
15
15
|
};
|
|
@@ -282,6 +282,9 @@ export class TooltipDirective {
|
|
|
282
282
|
if (this.tooltipClass) {
|
|
283
283
|
this.renderer.addClass(this.popupRef.popupElement, this.tooltipClass);
|
|
284
284
|
}
|
|
285
|
+
if (this.tooltipContentClass) {
|
|
286
|
+
this.renderer.addClass(this.popupRef.content.instance['content'].nativeElement, this.tooltipContentClass);
|
|
287
|
+
}
|
|
285
288
|
const popupInstance = this.popupRef.content.instance;
|
|
286
289
|
if (anchorRef) {
|
|
287
290
|
this.renderer.setAttribute(anchorRef.nativeElement, 'aria-labelledby', popupInstance.tooltipId);
|
|
@@ -399,7 +402,7 @@ export class TooltipDirective {
|
|
|
399
402
|
}
|
|
400
403
|
}
|
|
401
404
|
TooltipDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: TooltipDirective, deps: [{ token: i0.ElementRef }, { token: i0.NgZone }, { token: i0.Renderer2 }, { token: i1.PopupService }, { token: i2.TooltipSettings, optional: true }, { token: TOOLTIP_SETTINGS, optional: true }], target: i0.ɵɵFactoryTarget.Directive });
|
|
402
|
-
TooltipDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.12", type: TooltipDirective, selector: "[kendoTooltip]", inputs: { filter: "filter", position: "position", titleTemplate: "titleTemplate", showOn: "showOn", showAfter: "showAfter", callout: "callout", closable: "closable", offset: "offset", tooltipWidth: "tooltipWidth", tooltipHeight: "tooltipHeight", tooltipClass: "tooltipClass", collision: "collision", closeTitle: "closeTitle", tooltipTemplate: "tooltipTemplate" }, exportAs: ["kendoTooltip"], usesOnChanges: true, ngImport: i0 });
|
|
405
|
+
TooltipDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.12", type: TooltipDirective, selector: "[kendoTooltip]", inputs: { 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" }, exportAs: ["kendoTooltip"], usesOnChanges: true, ngImport: i0 });
|
|
403
406
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: TooltipDirective, decorators: [{
|
|
404
407
|
type: Directive,
|
|
405
408
|
args: [{
|
|
@@ -435,6 +438,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
435
438
|
type: Input
|
|
436
439
|
}], tooltipClass: [{
|
|
437
440
|
type: Input
|
|
441
|
+
}], tooltipContentClass: [{
|
|
442
|
+
type: Input
|
|
438
443
|
}], collision: [{
|
|
439
444
|
type: Input
|
|
440
445
|
}], closeTitle: [{
|
|
@@ -25,8 +25,8 @@ const packageMetadata = {
|
|
|
25
25
|
name: '@progress/kendo-angular-tooltip',
|
|
26
26
|
productName: 'Kendo UI for Angular',
|
|
27
27
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
28
|
-
publishDate:
|
|
29
|
-
version: '14.4.0-develop.
|
|
28
|
+
publishDate: 1706192561,
|
|
29
|
+
version: '14.4.0-develop.17',
|
|
30
30
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
31
31
|
};
|
|
32
32
|
|
|
@@ -761,6 +761,9 @@ class TooltipDirective {
|
|
|
761
761
|
if (this.tooltipClass) {
|
|
762
762
|
this.renderer.addClass(this.popupRef.popupElement, this.tooltipClass);
|
|
763
763
|
}
|
|
764
|
+
if (this.tooltipContentClass) {
|
|
765
|
+
this.renderer.addClass(this.popupRef.content.instance['content'].nativeElement, this.tooltipContentClass);
|
|
766
|
+
}
|
|
764
767
|
const popupInstance = this.popupRef.content.instance;
|
|
765
768
|
if (anchorRef) {
|
|
766
769
|
this.renderer.setAttribute(anchorRef.nativeElement, 'aria-labelledby', popupInstance.tooltipId);
|
|
@@ -878,7 +881,7 @@ class TooltipDirective {
|
|
|
878
881
|
}
|
|
879
882
|
}
|
|
880
883
|
TooltipDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: TooltipDirective, deps: [{ token: i0.ElementRef }, { token: i0.NgZone }, { token: i0.Renderer2 }, { token: i1$1.PopupService }, { token: TooltipSettings, optional: true }, { token: TOOLTIP_SETTINGS, optional: true }], target: i0.ɵɵFactoryTarget.Directive });
|
|
881
|
-
TooltipDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.12", type: TooltipDirective, selector: "[kendoTooltip]", inputs: { filter: "filter", position: "position", titleTemplate: "titleTemplate", showOn: "showOn", showAfter: "showAfter", callout: "callout", closable: "closable", offset: "offset", tooltipWidth: "tooltipWidth", tooltipHeight: "tooltipHeight", tooltipClass: "tooltipClass", collision: "collision", closeTitle: "closeTitle", tooltipTemplate: "tooltipTemplate" }, exportAs: ["kendoTooltip"], usesOnChanges: true, ngImport: i0 });
|
|
884
|
+
TooltipDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.12", type: TooltipDirective, selector: "[kendoTooltip]", inputs: { 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" }, exportAs: ["kendoTooltip"], usesOnChanges: true, ngImport: i0 });
|
|
882
885
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: TooltipDirective, decorators: [{
|
|
883
886
|
type: Directive,
|
|
884
887
|
args: [{
|
|
@@ -916,6 +919,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
916
919
|
type: Input
|
|
917
920
|
}], tooltipClass: [{
|
|
918
921
|
type: Input
|
|
922
|
+
}], tooltipContentClass: [{
|
|
923
|
+
type: Input
|
|
919
924
|
}], collision: [{
|
|
920
925
|
type: Input
|
|
921
926
|
}], closeTitle: [{
|
|
@@ -25,8 +25,8 @@ const packageMetadata = {
|
|
|
25
25
|
name: '@progress/kendo-angular-tooltip',
|
|
26
26
|
productName: 'Kendo UI for Angular',
|
|
27
27
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
28
|
-
publishDate:
|
|
29
|
-
version: '14.4.0-develop.
|
|
28
|
+
publishDate: 1706192561,
|
|
29
|
+
version: '14.4.0-develop.17',
|
|
30
30
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
31
31
|
};
|
|
32
32
|
|
|
@@ -761,6 +761,9 @@ class TooltipDirective {
|
|
|
761
761
|
if (this.tooltipClass) {
|
|
762
762
|
this.renderer.addClass(this.popupRef.popupElement, this.tooltipClass);
|
|
763
763
|
}
|
|
764
|
+
if (this.tooltipContentClass) {
|
|
765
|
+
this.renderer.addClass(this.popupRef.content.instance['content'].nativeElement, this.tooltipContentClass);
|
|
766
|
+
}
|
|
764
767
|
const popupInstance = this.popupRef.content.instance;
|
|
765
768
|
if (anchorRef) {
|
|
766
769
|
this.renderer.setAttribute(anchorRef.nativeElement, 'aria-labelledby', popupInstance.tooltipId);
|
|
@@ -878,7 +881,7 @@ class TooltipDirective {
|
|
|
878
881
|
}
|
|
879
882
|
}
|
|
880
883
|
TooltipDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: TooltipDirective, deps: [{ token: i0.ElementRef }, { token: i0.NgZone }, { token: i0.Renderer2 }, { token: i1$1.PopupService }, { token: TooltipSettings, optional: true }, { token: TOOLTIP_SETTINGS, optional: true }], target: i0.ɵɵFactoryTarget.Directive });
|
|
881
|
-
TooltipDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.12", type: TooltipDirective, selector: "[kendoTooltip]", inputs: { filter: "filter", position: "position", titleTemplate: "titleTemplate", showOn: "showOn", showAfter: "showAfter", callout: "callout", closable: "closable", offset: "offset", tooltipWidth: "tooltipWidth", tooltipHeight: "tooltipHeight", tooltipClass: "tooltipClass", collision: "collision", closeTitle: "closeTitle", tooltipTemplate: "tooltipTemplate" }, exportAs: ["kendoTooltip"], usesOnChanges: true, ngImport: i0 });
|
|
884
|
+
TooltipDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.12", type: TooltipDirective, selector: "[kendoTooltip]", inputs: { 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" }, exportAs: ["kendoTooltip"], usesOnChanges: true, ngImport: i0 });
|
|
882
885
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: TooltipDirective, decorators: [{
|
|
883
886
|
type: Directive,
|
|
884
887
|
args: [{
|
|
@@ -914,6 +917,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
914
917
|
type: Input
|
|
915
918
|
}], tooltipClass: [{
|
|
916
919
|
type: Input
|
|
920
|
+
}], tooltipContentClass: [{
|
|
921
|
+
type: Input
|
|
917
922
|
}], collision: [{
|
|
918
923
|
type: Input
|
|
919
924
|
}], closeTitle: [{
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-tooltip",
|
|
3
|
-
"version": "14.4.0-develop.
|
|
3
|
+
"version": "14.4.0-develop.17",
|
|
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": "13 - 17",
|
|
26
26
|
"@angular/platform-browser": "13 - 17",
|
|
27
27
|
"@progress/kendo-licensing": "^1.0.2",
|
|
28
|
-
"@progress/kendo-angular-common": "14.4.0-develop.
|
|
29
|
-
"@progress/kendo-angular-l10n": "14.4.0-develop.
|
|
30
|
-
"@progress/kendo-angular-popup": "14.4.0-develop.
|
|
31
|
-
"@progress/kendo-angular-icons": "14.4.0-develop.
|
|
28
|
+
"@progress/kendo-angular-common": "14.4.0-develop.17",
|
|
29
|
+
"@progress/kendo-angular-l10n": "14.4.0-develop.17",
|
|
30
|
+
"@progress/kendo-angular-popup": "14.4.0-develop.17",
|
|
31
|
+
"@progress/kendo-angular-icons": "14.4.0-develop.17",
|
|
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": "14.4.0-develop.
|
|
36
|
+
"@progress/kendo-angular-schematics": "14.4.0-develop.17"
|
|
37
37
|
},
|
|
38
38
|
"schematics": "./schematics/collection.json",
|
|
39
39
|
"module": "fesm2015/progress-kendo-angular-tooltip.mjs",
|
|
@@ -96,6 +96,11 @@ export declare class TooltipDirective implements OnDestroy, OnChanges, AfterView
|
|
|
96
96
|
* Specifies a CSS class that will be added to the Tooltip.
|
|
97
97
|
*/
|
|
98
98
|
tooltipClass: string;
|
|
99
|
+
/**
|
|
100
|
+
* @hidden
|
|
101
|
+
* Specifies a CSS class that will be added to the kendo-tooltip element.
|
|
102
|
+
*/
|
|
103
|
+
tooltipContentClass: string;
|
|
99
104
|
/**
|
|
100
105
|
* Provides screen boundary detection when the Тooltip is shown.
|
|
101
106
|
*/
|
|
@@ -159,5 +164,5 @@ export declare class TooltipDirective implements OnDestroy, OnChanges, AfterView
|
|
|
159
164
|
private onMouseOut;
|
|
160
165
|
private verifyProperties;
|
|
161
166
|
static ɵfac: i0.ɵɵFactoryDeclaration<TooltipDirective, [null, null, null, null, { optional: true; }, { optional: true; }]>;
|
|
162
|
-
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"; "collision": "collision"; "closeTitle": "closeTitle"; "tooltipTemplate": "tooltipTemplate"; }, {}, 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>;
|
|
163
168
|
}
|