@progress/kendo-angular-tooltip 24.0.2-develop.3 → 24.0.2-develop.5

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/NOTICE.txt CHANGED
@@ -264,7 +264,7 @@ path-is-absolute 1.0.1 | https://github.com/sindresorhus/path- |
264
264
  | is-absolute |
265
265
  path-to-regexp 0.1.12 | https://github.com/pillarjs/path-to-r | MIT License
266
266
  | egexp |
267
- pdfjs-dist-for-node 4.6.82 | http://mozilla.github.io/pdf.js/ | Apache License 2.0
267
+ pdfjs-dist-for-node 5.6.205 | http://mozilla.github.io/pdf.js/ | Apache License 2.0
268
268
  picocolors 1.1.1 | https://github.com/alexeyraspopov/pic | ISC License
269
269
  | ocolors#readme |
270
270
  picomatch 4.0.3 | https://github.com/micromatch/picomat | MIT License
@@ -302,8 +302,8 @@ const packageMetadata = {
302
302
  productName: 'Kendo UI for Angular',
303
303
  productCode: 'KENDOUIANGULAR',
304
304
  productCodes: ['KENDOUIANGULAR'],
305
- publishDate: 1779782217,
306
- version: '24.0.2-develop.3',
305
+ publishDate: 1779872108,
306
+ version: '24.0.2-develop.5',
307
307
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
308
308
  };
309
309
 
@@ -2069,9 +2069,9 @@ class TooltipDirective {
2069
2069
  tooltipClass;
2070
2070
  /**
2071
2071
  * Specifies the theme color of the Tooltip.
2072
- * The theme color applies the corresponding `k-tooltip-{themeColor}` class to the Tooltip element.
2072
+ * The theme color applies the corresponding `k-tooltip-{tooltipThemeColor}` class to the Tooltip element.
2073
2073
  */
2074
- themeColor;
2074
+ tooltipThemeColor;
2075
2075
  /**
2076
2076
  * @hidden
2077
2077
  * Specifies a CSS class that will be added to the kendo-tooltip element.
@@ -2303,8 +2303,8 @@ class TooltipDirective {
2303
2303
  if (this.tooltipClass) {
2304
2304
  this.renderer.addClass(this.popupRef.popupElement, this.tooltipClass);
2305
2305
  }
2306
- if (this.themeColor) {
2307
- this.renderer.addClass(this.popupRef.content.location.nativeElement, `k-tooltip-${this.themeColor}`);
2306
+ if (this.tooltipThemeColor) {
2307
+ this.renderer.addClass(this.popupRef.content.location.nativeElement, `k-tooltip-${this.tooltipThemeColor}`);
2308
2308
  }
2309
2309
  if (this.tooltipContentClass) {
2310
2310
  this.renderer.addClass(this.popupRef.content.instance['content'].nativeElement, this.tooltipContentClass);
@@ -2425,7 +2425,7 @@ class TooltipDirective {
2425
2425
  }
2426
2426
  }
2427
2427
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.20", 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 });
2428
- static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.20", type: TooltipDirective, isStandalone: true, 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", themeColor: "themeColor", tooltipContentClass: "tooltipContentClass", collision: "collision", closeTitle: "closeTitle", tooltipTemplate: "tooltipTemplate" }, exportAs: ["kendoTooltip"], usesOnChanges: true, ngImport: i0 });
2428
+ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.20", type: TooltipDirective, isStandalone: true, 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", tooltipThemeColor: "tooltipThemeColor", tooltipContentClass: "tooltipContentClass", collision: "collision", closeTitle: "closeTitle", tooltipTemplate: "tooltipTemplate" }, exportAs: ["kendoTooltip"], usesOnChanges: true, ngImport: i0 });
2429
2429
  }
2430
2430
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: TooltipDirective, decorators: [{
2431
2431
  type: Directive,
@@ -2463,7 +2463,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImpo
2463
2463
  type: Input
2464
2464
  }], tooltipClass: [{
2465
2465
  type: Input
2466
- }], themeColor: [{
2466
+ }], tooltipThemeColor: [{
2467
2467
  type: Input
2468
2468
  }], tooltipContentClass: [{
2469
2469
  type: Input
@@ -7,7 +7,7 @@ export const packageMetadata = {
7
7
  "productCodes": [
8
8
  "KENDOUIANGULAR"
9
9
  ],
10
- "publishDate": 1779782217,
11
- "version": "24.0.2-develop.3",
10
+ "publishDate": 1779872108,
11
+ "version": "24.0.2-develop.5",
12
12
  "licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
13
13
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@progress/kendo-angular-tooltip",
3
- "version": "24.0.2-develop.3",
3
+ "version": "24.0.2-develop.5",
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",
@@ -36,7 +36,7 @@
36
36
  "package": {
37
37
  "productName": "Kendo UI for Angular",
38
38
  "productCode": "KENDOUIANGULAR",
39
- "publishDate": 1779782217,
39
+ "publishDate": 1779872108,
40
40
  "licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
41
41
  }
42
42
  },
@@ -46,15 +46,15 @@
46
46
  "@angular/core": "19 - 21",
47
47
  "@angular/platform-browser": "19 - 21",
48
48
  "@progress/kendo-licensing": "^1.11.0",
49
- "@progress/kendo-angular-common": "24.0.2-develop.3",
50
- "@progress/kendo-angular-l10n": "24.0.2-develop.3",
51
- "@progress/kendo-angular-popup": "24.0.2-develop.3",
52
- "@progress/kendo-angular-icons": "24.0.2-develop.3",
49
+ "@progress/kendo-angular-common": "24.0.2-develop.5",
50
+ "@progress/kendo-angular-l10n": "24.0.2-develop.5",
51
+ "@progress/kendo-angular-popup": "24.0.2-develop.5",
52
+ "@progress/kendo-angular-icons": "24.0.2-develop.5",
53
53
  "rxjs": "^6.5.3 || ^7.0.0"
54
54
  },
55
55
  "dependencies": {
56
56
  "tslib": "^2.3.1",
57
- "@progress/kendo-angular-schematics": "24.0.2-develop.3"
57
+ "@progress/kendo-angular-schematics": "24.0.2-develop.5"
58
58
  },
59
59
  "schematics": "./schematics/collection.json",
60
60
  "module": "fesm2022/progress-kendo-angular-tooltip.mjs",
@@ -87,9 +87,9 @@ export declare class TooltipDirective implements OnDestroy, OnChanges, AfterView
87
87
  tooltipClass: string;
88
88
  /**
89
89
  * Specifies the theme color of the Tooltip.
90
- * The theme color applies the corresponding `k-tooltip-{themeColor}` class to the Tooltip element.
90
+ * The theme color applies the corresponding `k-tooltip-{tooltipThemeColor}` class to the Tooltip element.
91
91
  */
92
- themeColor: TooltipThemeColor;
92
+ tooltipThemeColor: TooltipThemeColor;
93
93
  /**
94
94
  * @hidden
95
95
  * Specifies a CSS class that will be added to the kendo-tooltip element.
@@ -156,5 +156,5 @@ export declare class TooltipDirective implements OnDestroy, OnChanges, AfterView
156
156
  private onMouseOut;
157
157
  private verifyProperties;
158
158
  static ɵfac: i0.ɵɵFactoryDeclaration<TooltipDirective, [null, null, null, null, { optional: true; }, { optional: true; }]>;
159
- static ɵdir: i0.ɵɵDirectiveDeclaration<TooltipDirective, "[kendoTooltip]", ["kendoTooltip"], { "filter": { "alias": "filter"; "required": false; }; "position": { "alias": "position"; "required": false; }; "titleTemplate": { "alias": "titleTemplate"; "required": false; }; "showOn": { "alias": "showOn"; "required": false; }; "showAfter": { "alias": "showAfter"; "required": false; }; "callout": { "alias": "callout"; "required": false; }; "closable": { "alias": "closable"; "required": false; }; "offset": { "alias": "offset"; "required": false; }; "tooltipWidth": { "alias": "tooltipWidth"; "required": false; }; "tooltipHeight": { "alias": "tooltipHeight"; "required": false; }; "tooltipClass": { "alias": "tooltipClass"; "required": false; }; "themeColor": { "alias": "themeColor"; "required": false; }; "tooltipContentClass": { "alias": "tooltipContentClass"; "required": false; }; "collision": { "alias": "collision"; "required": false; }; "closeTitle": { "alias": "closeTitle"; "required": false; }; "tooltipTemplate": { "alias": "tooltipTemplate"; "required": false; }; }, {}, never, never, true, never>;
159
+ static ɵdir: i0.ɵɵDirectiveDeclaration<TooltipDirective, "[kendoTooltip]", ["kendoTooltip"], { "filter": { "alias": "filter"; "required": false; }; "position": { "alias": "position"; "required": false; }; "titleTemplate": { "alias": "titleTemplate"; "required": false; }; "showOn": { "alias": "showOn"; "required": false; }; "showAfter": { "alias": "showAfter"; "required": false; }; "callout": { "alias": "callout"; "required": false; }; "closable": { "alias": "closable"; "required": false; }; "offset": { "alias": "offset"; "required": false; }; "tooltipWidth": { "alias": "tooltipWidth"; "required": false; }; "tooltipHeight": { "alias": "tooltipHeight"; "required": false; }; "tooltipClass": { "alias": "tooltipClass"; "required": false; }; "tooltipThemeColor": { "alias": "tooltipThemeColor"; "required": false; }; "tooltipContentClass": { "alias": "tooltipContentClass"; "required": false; }; "collision": { "alias": "collision"; "required": false; }; "closeTitle": { "alias": "closeTitle"; "required": false; }; "tooltipTemplate": { "alias": "tooltipTemplate"; "required": false; }; }, {}, never, never, true, never>;
160
160
  }