@progress/kendo-angular-charts 19.3.0-develop.9 → 19.3.1-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.
@@ -342,6 +342,10 @@ export declare class ChartComponent implements ChartOptions, OnChanges, OnInit,
342
342
  * @hidden
343
343
  */
344
344
  showLicenseWatermark: boolean;
345
+ /**
346
+ * @hidden
347
+ */
348
+ licenseMessage?: string;
345
349
  instance: any;
346
350
  protected options: any;
347
351
  protected theme: any;
@@ -12,15 +12,19 @@ export { LegendItemHoverEvent } from '../events/legend-item-hover-event';
12
12
  export { LegendItemLeaveEvent } from '../events/legend-item-leave-event';
13
13
  export { NoteClickEvent } from '../events/note-click-event';
14
14
  export { NoteHoverEvent } from '../events/note-hover-event';
15
+ export { NoteLeaveEvent } from '../events/note-leave-event';
15
16
  export { PaneRenderEvent } from '../events/pane-render-event';
16
17
  export { PlotAreaClickEvent } from '../events/plot-area-click-event';
17
18
  export { PlotAreaHoverEvent } from '../events/plot-area-hover-event';
19
+ export { PlotAreaLeaveEvent } from '../events/plot-area-leave-event';
18
20
  export { RenderEvent } from '../events/render-event';
19
21
  export { SelectEndEvent } from '../events/select-end-event';
20
22
  export { SelectEvent } from '../events/select-event';
21
23
  export { SelectStartEvent } from '../events/select-start-event';
22
24
  export { SeriesClickEvent } from '../events/series-click-event';
23
25
  export { SeriesHoverEvent } from '../events/series-hover-event';
26
+ export { SeriesLeaveEvent } from '../events/series-leave-event';
27
+ export { SeriesOverEvent } from '../events/series-over-event';
24
28
  export { ZoomEndEvent } from '../events/zoom-end-event';
25
29
  export { ZoomEvent } from '../events/zoom-event';
26
30
  export { ZoomStartEvent } from '../events/zoom-start-event';
@@ -3,7 +3,7 @@
3
3
  * Licensed under commercial license. See LICENSE.md in the project root for more information
4
4
  *-------------------------------------------------------------------------------------------*/
5
5
  import { ChangeDetectionStrategy, ChangeDetectorRef, Component, ContentChild, NgZone, Renderer2, ContentChildren, QueryList, ViewChild, EventEmitter, Input, Output, ElementRef } from '@angular/core';
6
- import { ResizeSensorComponent, WatermarkOverlayComponent, isDocumentAvailable, shouldShowValidationUI } from '@progress/kendo-angular-common';
6
+ import { ResizeSensorComponent, WatermarkOverlayComponent, isDocumentAvailable, shouldShowValidationUI, getLicenseMessage } from '@progress/kendo-angular-common';
7
7
  import { IntlService } from '@progress/kendo-angular-intl';
8
8
  import { L10N_PREFIX, LocalizationService } from '@progress/kendo-angular-l10n';
9
9
  import { Chart } from '@progress/kendo-charts';
@@ -346,6 +346,10 @@ export class ChartComponent {
346
346
  * @hidden
347
347
  */
348
348
  showLicenseWatermark = false;
349
+ /**
350
+ * @hidden
351
+ */
352
+ licenseMessage;
349
353
  instance;
350
354
  options;
351
355
  theme = null;
@@ -370,6 +374,7 @@ export class ChartComponent {
370
374
  this.changeDetector = changeDetector;
371
375
  this.renderer = renderer;
372
376
  const isValid = validatePackage(packageMetadata);
377
+ this.licenseMessage = getLicenseMessage(packageMetadata);
373
378
  this.showLicenseWatermark = shouldShowValidationUI(isValid);
374
379
  this.themeService.loadTheme();
375
380
  this.refreshWait();
@@ -886,8 +891,8 @@ export class ChartComponent {
886
891
  <ng-template [ngTemplateOutlet]="donutCenterTemplate.templateRef"></ng-template>
887
892
  </div>
888
893
 
889
- <div kendoWatermarkOverlay *ngIf="showLicenseWatermark"></div>
890
- `, isInline: true, dependencies: [{ kind: "directive", type: LocalizedChartMessagesDirective, selector: "[kendoChartLocalizedMessages]" }, { kind: "component", type: CrosshairTooltipsContainerComponent, selector: "kendo-chart-crosshair-tooltips-container", inputs: ["popupSettings"] }, { kind: "component", type: TooltipPopupComponent, selector: "kendo-chart-tooltip-popup", inputs: ["animate", "classNames", "wrapperClass"], outputs: ["leave"] }, { kind: "component", type: ResizeSensorComponent, selector: "kendo-resize-sensor", inputs: ["rateLimit"], outputs: ["resize"] }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "component", type: WatermarkOverlayComponent, selector: "div[kendoWatermarkOverlay]" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
894
+ <div kendoWatermarkOverlay *ngIf="showLicenseWatermark" [licenseMessage]="licenseMessage"></div>
895
+ `, isInline: true, dependencies: [{ kind: "directive", type: LocalizedChartMessagesDirective, selector: "[kendoChartLocalizedMessages]" }, { kind: "component", type: CrosshairTooltipsContainerComponent, selector: "kendo-chart-crosshair-tooltips-container", inputs: ["popupSettings"] }, { kind: "component", type: TooltipPopupComponent, selector: "kendo-chart-tooltip-popup", inputs: ["animate", "classNames", "wrapperClass"], outputs: ["leave"] }, { kind: "component", type: ResizeSensorComponent, selector: "kendo-resize-sensor", inputs: ["rateLimit"], outputs: ["resize"] }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "component", type: WatermarkOverlayComponent, selector: "div[kendoWatermarkOverlay]", inputs: ["licenseMessage"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
891
896
  }
892
897
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ChartComponent, decorators: [{
893
898
  type: Component,
@@ -930,7 +935,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
930
935
  <ng-template [ngTemplateOutlet]="donutCenterTemplate.templateRef"></ng-template>
931
936
  </div>
932
937
 
933
- <div kendoWatermarkOverlay *ngIf="showLicenseWatermark"></div>
938
+ <div kendoWatermarkOverlay *ngIf="showLicenseWatermark" [licenseMessage]="licenseMessage"></div>
934
939
  `,
935
940
  standalone: true,
936
941
  imports: [LocalizedChartMessagesDirective, CrosshairTooltipsContainerComponent, TooltipPopupComponent, ResizeSensorComponent, NgIf, NgStyle, NgTemplateOutlet, WatermarkOverlayComponent]
@@ -13,15 +13,19 @@ export { LegendItemHoverEvent } from '../events/legend-item-hover-event';
13
13
  export { LegendItemLeaveEvent } from '../events/legend-item-leave-event';
14
14
  export { NoteClickEvent } from '../events/note-click-event';
15
15
  export { NoteHoverEvent } from '../events/note-hover-event';
16
+ export { NoteLeaveEvent } from '../events/note-leave-event';
16
17
  export { PaneRenderEvent } from '../events/pane-render-event';
17
18
  export { PlotAreaClickEvent } from '../events/plot-area-click-event';
18
19
  export { PlotAreaHoverEvent } from '../events/plot-area-hover-event';
20
+ export { PlotAreaLeaveEvent } from '../events/plot-area-leave-event';
19
21
  export { RenderEvent } from '../events/render-event';
20
22
  export { SelectEndEvent } from '../events/select-end-event';
21
23
  export { SelectEvent } from '../events/select-event';
22
24
  export { SelectStartEvent } from '../events/select-start-event';
23
25
  export { SeriesClickEvent } from '../events/series-click-event';
24
26
  export { SeriesHoverEvent } from '../events/series-hover-event';
27
+ export { SeriesLeaveEvent } from '../events/series-leave-event';
28
+ export { SeriesOverEvent } from '../events/series-over-event';
25
29
  export { ZoomEndEvent } from '../events/zoom-end-event';
26
30
  export { ZoomEvent } from '../events/zoom-event';
27
31
  export { ZoomStartEvent } from '../events/zoom-start-event';
@@ -10,7 +10,7 @@ export const packageMetadata = {
10
10
  productName: 'Kendo UI for Angular',
11
11
  productCode: 'KENDOUIANGULAR',
12
12
  productCodes: ['KENDOUIANGULAR'],
13
- publishDate: 1752672352,
14
- version: '19.3.0-develop.9',
13
+ publishDate: 1755502723,
14
+ version: '19.3.1-develop.1',
15
15
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
16
16
  };
@@ -3,7 +3,7 @@
3
3
  * Licensed under commercial license. See LICENSE.md in the project root for more information
4
4
  *-------------------------------------------------------------------------------------------*/
5
5
  import { ChangeDetectionStrategy, ChangeDetectorRef, Component, ElementRef, EventEmitter, Input, NgZone, Output, Renderer2, ViewChild, } from '@angular/core';
6
- import { WatermarkOverlayComponent, isDocumentAvailable, shouldShowValidationUI } from '@progress/kendo-angular-common';
6
+ import { WatermarkOverlayComponent, isDocumentAvailable, shouldShowValidationUI, getLicenseMessage } from '@progress/kendo-angular-common';
7
7
  import { L10N_PREFIX, LocalizationService } from '@progress/kendo-angular-l10n';
8
8
  import { exportImage, exportSVG } from '@progress/kendo-drawing';
9
9
  import { validatePackage } from '@progress/kendo-licensing';
@@ -169,6 +169,10 @@ export class SankeyComponent {
169
169
  * @hidden
170
170
  */
171
171
  showLicenseWatermark = false;
172
+ /**
173
+ * @hidden
174
+ */
175
+ licenseMessage;
172
176
  instance;
173
177
  options;
174
178
  theme;
@@ -189,6 +193,7 @@ export class SankeyComponent {
189
193
  this.renderer = renderer;
190
194
  this.intlService = intlService;
191
195
  const isValid = validatePackage(packageMetadata);
196
+ this.licenseMessage = getLicenseMessage(packageMetadata);
192
197
  this.showLicenseWatermark = shouldShowValidationUI(isValid);
193
198
  this.themeService.loadTheme();
194
199
  this.refreshWait();
@@ -430,8 +435,8 @@ export class SankeyComponent {
430
435
  [tooltipUnitFormat]="messageFor('tooltipUnitFormat')"
431
436
  >
432
437
  </kendo-sankey-tooltip-popup>
433
- <div kendoWatermarkOverlay *ngIf="showLicenseWatermark"></div>
434
- `, isInline: true, dependencies: [{ kind: "directive", type: LocalizedMessagesDirective, selector: "[kendoSankeyLocalizedMessages]" }, { kind: "component", type: SankeyTooltipPopupComponent, selector: "kendo-sankey-tooltip-popup", inputs: ["animate", "wrapperClass", "tooltipUnitFormat", "offset"] }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: WatermarkOverlayComponent, selector: "div[kendoWatermarkOverlay]" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
438
+ <div kendoWatermarkOverlay *ngIf="showLicenseWatermark" [licenseMessage]="licenseMessage"></div>
439
+ `, isInline: true, dependencies: [{ kind: "directive", type: LocalizedMessagesDirective, selector: "[kendoSankeyLocalizedMessages]" }, { kind: "component", type: SankeyTooltipPopupComponent, selector: "kendo-sankey-tooltip-popup", inputs: ["animate", "wrapperClass", "tooltipUnitFormat", "offset"] }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: WatermarkOverlayComponent, selector: "div[kendoWatermarkOverlay]", inputs: ["licenseMessage"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
435
440
  }
436
441
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SankeyComponent, decorators: [{
437
442
  type: Component,
@@ -461,7 +466,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
461
466
  [tooltipUnitFormat]="messageFor('tooltipUnitFormat')"
462
467
  >
463
468
  </kendo-sankey-tooltip-popup>
464
- <div kendoWatermarkOverlay *ngIf="showLicenseWatermark"></div>
469
+ <div kendoWatermarkOverlay *ngIf="showLicenseWatermark" [licenseMessage]="licenseMessage"></div>
465
470
  `,
466
471
  standalone: true,
467
472
  imports: [LocalizedMessagesDirective, SankeyTooltipPopupComponent, NgIf, WatermarkOverlayComponent]
@@ -12,7 +12,7 @@ import { IntlService } from '@progress/kendo-angular-intl';
12
12
  import { Sparkline } from '@progress/kendo-charts';
13
13
  import { LocalizationService, L10N_PREFIX } from '@progress/kendo-angular-l10n';
14
14
  import { validatePackage } from '@progress/kendo-licensing';
15
- import { ResizeSensorComponent, WatermarkOverlayComponent, shouldShowValidationUI } from '@progress/kendo-angular-common';
15
+ import { ResizeSensorComponent, WatermarkOverlayComponent, shouldShowValidationUI, getLicenseMessage } from '@progress/kendo-angular-common';
16
16
  import { packageMetadata } from './package-metadata';
17
17
  import { NgIf } from '@angular/common';
18
18
  import { TooltipPopupComponent } from './chart/tooltip/tooltip-popup.component';
@@ -111,6 +111,7 @@ export class SparklineComponent extends ChartComponent {
111
111
  this.changeDetector = changeDetector;
112
112
  this.renderer = renderer;
113
113
  const isValid = validatePackage(packageMetadata);
114
+ this.licenseMessage = getLicenseMessage(packageMetadata);
114
115
  this.showLicenseWatermark = shouldShowValidationUI(isValid);
115
116
  }
116
117
  createInstance(element, observer) {
@@ -143,8 +144,8 @@ export class SparklineComponent extends ChartComponent {
143
144
  </kendo-chart-tooltip-popup>
144
145
  <kendo-resize-sensor (resize)="onResize()"></kendo-resize-sensor>
145
146
 
146
- <div kendoWatermarkOverlay *ngIf="showLicenseWatermark"></div>
147
- `, isInline: true, dependencies: [{ kind: "component", type: CrosshairTooltipsContainerComponent, selector: "kendo-chart-crosshair-tooltips-container", inputs: ["popupSettings"] }, { kind: "component", type: TooltipPopupComponent, selector: "kendo-chart-tooltip-popup", inputs: ["animate", "classNames", "wrapperClass"], outputs: ["leave"] }, { kind: "component", type: ResizeSensorComponent, selector: "kendo-resize-sensor", inputs: ["rateLimit"], outputs: ["resize"] }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: WatermarkOverlayComponent, selector: "div[kendoWatermarkOverlay]" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
147
+ <div kendoWatermarkOverlay *ngIf="showLicenseWatermark" [licenseMessage]="licenseMessage"></div>
148
+ `, isInline: true, dependencies: [{ kind: "component", type: CrosshairTooltipsContainerComponent, selector: "kendo-chart-crosshair-tooltips-container", inputs: ["popupSettings"] }, { kind: "component", type: TooltipPopupComponent, selector: "kendo-chart-tooltip-popup", inputs: ["animate", "classNames", "wrapperClass"], outputs: ["leave"] }, { kind: "component", type: ResizeSensorComponent, selector: "kendo-resize-sensor", inputs: ["rateLimit"], outputs: ["resize"] }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: WatermarkOverlayComponent, selector: "div[kendoWatermarkOverlay]", inputs: ["licenseMessage"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
148
149
  }
149
150
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SparklineComponent, decorators: [{
150
151
  type: Component,
@@ -171,7 +172,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
171
172
  </kendo-chart-tooltip-popup>
172
173
  <kendo-resize-sensor (resize)="onResize()"></kendo-resize-sensor>
173
174
 
174
- <div kendoWatermarkOverlay *ngIf="showLicenseWatermark"></div>
175
+ <div kendoWatermarkOverlay *ngIf="showLicenseWatermark" [licenseMessage]="licenseMessage"></div>
175
176
  `,
176
177
  standalone: true,
177
178
  imports: [CrosshairTooltipsContainerComponent, TooltipPopupComponent, ResizeSensorComponent, NgIf, WatermarkOverlayComponent]
@@ -14,7 +14,7 @@ import { StockInstanceEventService } from './stock-chart/events/instance-event.s
14
14
  import { StockChart } from '@progress/kendo-charts';
15
15
  import { LocalizationService, L10N_PREFIX } from '@progress/kendo-angular-l10n';
16
16
  import { validatePackage } from '@progress/kendo-licensing';
17
- import { ResizeSensorComponent, WatermarkOverlayComponent, shouldShowValidationUI } from '@progress/kendo-angular-common';
17
+ import { ResizeSensorComponent, WatermarkOverlayComponent, shouldShowValidationUI, getLicenseMessage } from '@progress/kendo-angular-common';
18
18
  import { packageMetadata } from './package-metadata';
19
19
  import { NgIf } from '@angular/common';
20
20
  import { TooltipPopupComponent } from './chart/tooltip/tooltip-popup.component';
@@ -66,7 +66,7 @@ const NAVIGATOR_DEFAULTS = {
66
66
  * @remarks
67
67
  * Supported children components are: {@link SeriesComponent}, {@link NavigatorComponent}, {@link TitleComponent}, {@link SubtitleComponent}, {@link AxisDefaultsComponent},
68
68
  * {@link ChartAreaComponent}, {@link CategoryAxisComponent}, {@link LegendComponent}, {@link PaneDefaultsComponent}, {@link PanesComponent}, {@link PlotAreaComponent},
69
- * {@link SeriesDefaultsComponent}, {@link ValueAxisComponent}, {@link TooltipComponent}, {@link XAxisComponent}, and {@link YAxisComponent}.
69
+ * {@link SeriesDefaultsComponent}, {@link ValueAxisComponent}, and {@link TooltipComponent}.
70
70
  */
71
71
  export class StockChartComponent extends ChartComponent {
72
72
  configurationService;
@@ -130,6 +130,7 @@ export class StockChartComponent extends ChartComponent {
130
130
  this.changeDetector = changeDetector;
131
131
  this.renderer = renderer;
132
132
  const isValid = validatePackage(packageMetadata);
133
+ this.licenseMessage = getLicenseMessage(packageMetadata);
133
134
  this.showLicenseWatermark = shouldShowValidationUI(isValid);
134
135
  }
135
136
  /**
@@ -190,8 +191,8 @@ export class StockChartComponent extends ChartComponent {
190
191
  </kendo-chart-tooltip-popup>
191
192
  <kendo-resize-sensor (resize)="onResize()"></kendo-resize-sensor>
192
193
 
193
- <div kendoWatermarkOverlay *ngIf="showLicenseWatermark"></div>
194
- `, isInline: true, dependencies: [{ kind: "component", type: CrosshairTooltipsContainerComponent, selector: "kendo-chart-crosshair-tooltips-container", inputs: ["popupSettings"] }, { kind: "component", type: TooltipPopupComponent, selector: "kendo-chart-tooltip-popup", inputs: ["animate", "classNames", "wrapperClass"], outputs: ["leave"] }, { kind: "component", type: ResizeSensorComponent, selector: "kendo-resize-sensor", inputs: ["rateLimit"], outputs: ["resize"] }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: WatermarkOverlayComponent, selector: "div[kendoWatermarkOverlay]" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
194
+ <div kendoWatermarkOverlay *ngIf="showLicenseWatermark" [licenseMessage]="licenseMessage"></div>
195
+ `, isInline: true, dependencies: [{ kind: "component", type: CrosshairTooltipsContainerComponent, selector: "kendo-chart-crosshair-tooltips-container", inputs: ["popupSettings"] }, { kind: "component", type: TooltipPopupComponent, selector: "kendo-chart-tooltip-popup", inputs: ["animate", "classNames", "wrapperClass"], outputs: ["leave"] }, { kind: "component", type: ResizeSensorComponent, selector: "kendo-resize-sensor", inputs: ["rateLimit"], outputs: ["resize"] }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: WatermarkOverlayComponent, selector: "div[kendoWatermarkOverlay]", inputs: ["licenseMessage"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
195
196
  }
196
197
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StockChartComponent, decorators: [{
197
198
  type: Component,
@@ -218,7 +219,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
218
219
  </kendo-chart-tooltip-popup>
219
220
  <kendo-resize-sensor (resize)="onResize()"></kendo-resize-sensor>
220
221
 
221
- <div kendoWatermarkOverlay *ngIf="showLicenseWatermark"></div>
222
+ <div kendoWatermarkOverlay *ngIf="showLicenseWatermark" [licenseMessage]="licenseMessage"></div>
222
223
  `,
223
224
  standalone: true,
224
225
  imports: [CrosshairTooltipsContainerComponent, TooltipPopupComponent, ResizeSensorComponent, NgIf, WatermarkOverlayComponent]
@@ -4,7 +4,7 @@
4
4
  *-------------------------------------------------------------------------------------------*/
5
5
  import * as i0 from '@angular/core';
6
6
  import { Directive, Optional, Injectable, SimpleChange, TemplateRef, Component, ChangeDetectionStrategy, Input, ContentChild, ElementRef, ViewChild, ViewChildren, EventEmitter, Output, ContentChildren, forwardRef, LOCALE_ID, Inject, isDevMode, InjectionToken, HostBinding, NgModule } from '@angular/core';
7
- import { isDocumentAvailable, shouldShowValidationUI, ResizeSensorComponent, WatermarkOverlayComponent, PreventableEvent as PreventableEvent$1, isChanged, ResizeBatchService } from '@progress/kendo-angular-common';
7
+ import { isDocumentAvailable, getLicenseMessage, shouldShowValidationUI, ResizeSensorComponent, WatermarkOverlayComponent, PreventableEvent as PreventableEvent$1, isChanged, ResizeBatchService } from '@progress/kendo-angular-common';
8
8
  import * as i3 from '@progress/kendo-angular-intl';
9
9
  import * as i1$1 from '@progress/kendo-angular-l10n';
10
10
  import { ComponentMessages, LocalizationService, L10N_PREFIX } from '@progress/kendo-angular-l10n';
@@ -2878,8 +2878,8 @@ const packageMetadata = {
2878
2878
  productName: 'Kendo UI for Angular',
2879
2879
  productCode: 'KENDOUIANGULAR',
2880
2880
  productCodes: ['KENDOUIANGULAR'],
2881
- publishDate: 1752672352,
2882
- version: '19.3.0-develop.9',
2881
+ publishDate: 1755502723,
2882
+ version: '19.3.1-develop.1',
2883
2883
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
2884
2884
  };
2885
2885
 
@@ -3376,6 +3376,10 @@ class ChartComponent {
3376
3376
  * @hidden
3377
3377
  */
3378
3378
  showLicenseWatermark = false;
3379
+ /**
3380
+ * @hidden
3381
+ */
3382
+ licenseMessage;
3379
3383
  instance;
3380
3384
  options;
3381
3385
  theme = null;
@@ -3400,6 +3404,7 @@ class ChartComponent {
3400
3404
  this.changeDetector = changeDetector;
3401
3405
  this.renderer = renderer;
3402
3406
  const isValid = validatePackage(packageMetadata);
3407
+ this.licenseMessage = getLicenseMessage(packageMetadata);
3403
3408
  this.showLicenseWatermark = shouldShowValidationUI(isValid);
3404
3409
  this.themeService.loadTheme();
3405
3410
  this.refreshWait();
@@ -3916,8 +3921,8 @@ class ChartComponent {
3916
3921
  <ng-template [ngTemplateOutlet]="donutCenterTemplate.templateRef"></ng-template>
3917
3922
  </div>
3918
3923
 
3919
- <div kendoWatermarkOverlay *ngIf="showLicenseWatermark"></div>
3920
- `, isInline: true, dependencies: [{ kind: "directive", type: LocalizedChartMessagesDirective, selector: "[kendoChartLocalizedMessages]" }, { kind: "component", type: CrosshairTooltipsContainerComponent, selector: "kendo-chart-crosshair-tooltips-container", inputs: ["popupSettings"] }, { kind: "component", type: TooltipPopupComponent, selector: "kendo-chart-tooltip-popup", inputs: ["animate", "classNames", "wrapperClass"], outputs: ["leave"] }, { kind: "component", type: ResizeSensorComponent, selector: "kendo-resize-sensor", inputs: ["rateLimit"], outputs: ["resize"] }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "component", type: WatermarkOverlayComponent, selector: "div[kendoWatermarkOverlay]" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
3924
+ <div kendoWatermarkOverlay *ngIf="showLicenseWatermark" [licenseMessage]="licenseMessage"></div>
3925
+ `, isInline: true, dependencies: [{ kind: "directive", type: LocalizedChartMessagesDirective, selector: "[kendoChartLocalizedMessages]" }, { kind: "component", type: CrosshairTooltipsContainerComponent, selector: "kendo-chart-crosshair-tooltips-container", inputs: ["popupSettings"] }, { kind: "component", type: TooltipPopupComponent, selector: "kendo-chart-tooltip-popup", inputs: ["animate", "classNames", "wrapperClass"], outputs: ["leave"] }, { kind: "component", type: ResizeSensorComponent, selector: "kendo-resize-sensor", inputs: ["rateLimit"], outputs: ["resize"] }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "component", type: WatermarkOverlayComponent, selector: "div[kendoWatermarkOverlay]", inputs: ["licenseMessage"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
3921
3926
  }
3922
3927
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ChartComponent, decorators: [{
3923
3928
  type: Component,
@@ -3960,7 +3965,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
3960
3965
  <ng-template [ngTemplateOutlet]="donutCenterTemplate.templateRef"></ng-template>
3961
3966
  </div>
3962
3967
 
3963
- <div kendoWatermarkOverlay *ngIf="showLicenseWatermark"></div>
3968
+ <div kendoWatermarkOverlay *ngIf="showLicenseWatermark" [licenseMessage]="licenseMessage"></div>
3964
3969
  `,
3965
3970
  standalone: true,
3966
3971
  imports: [LocalizedChartMessagesDirective, CrosshairTooltipsContainerComponent, TooltipPopupComponent, ResizeSensorComponent, NgIf, NgStyle, NgTemplateOutlet, WatermarkOverlayComponent]
@@ -5996,7 +6001,7 @@ const NAVIGATOR_DEFAULTS = {
5996
6001
  * @remarks
5997
6002
  * Supported children components are: {@link SeriesComponent}, {@link NavigatorComponent}, {@link TitleComponent}, {@link SubtitleComponent}, {@link AxisDefaultsComponent},
5998
6003
  * {@link ChartAreaComponent}, {@link CategoryAxisComponent}, {@link LegendComponent}, {@link PaneDefaultsComponent}, {@link PanesComponent}, {@link PlotAreaComponent},
5999
- * {@link SeriesDefaultsComponent}, {@link ValueAxisComponent}, {@link TooltipComponent}, {@link XAxisComponent}, and {@link YAxisComponent}.
6004
+ * {@link SeriesDefaultsComponent}, {@link ValueAxisComponent}, and {@link TooltipComponent}.
6000
6005
  */
6001
6006
  class StockChartComponent extends ChartComponent {
6002
6007
  configurationService;
@@ -6060,6 +6065,7 @@ class StockChartComponent extends ChartComponent {
6060
6065
  this.changeDetector = changeDetector;
6061
6066
  this.renderer = renderer;
6062
6067
  const isValid = validatePackage(packageMetadata);
6068
+ this.licenseMessage = getLicenseMessage(packageMetadata);
6063
6069
  this.showLicenseWatermark = shouldShowValidationUI(isValid);
6064
6070
  }
6065
6071
  /**
@@ -6120,8 +6126,8 @@ class StockChartComponent extends ChartComponent {
6120
6126
  </kendo-chart-tooltip-popup>
6121
6127
  <kendo-resize-sensor (resize)="onResize()"></kendo-resize-sensor>
6122
6128
 
6123
- <div kendoWatermarkOverlay *ngIf="showLicenseWatermark"></div>
6124
- `, isInline: true, dependencies: [{ kind: "component", type: CrosshairTooltipsContainerComponent, selector: "kendo-chart-crosshair-tooltips-container", inputs: ["popupSettings"] }, { kind: "component", type: TooltipPopupComponent, selector: "kendo-chart-tooltip-popup", inputs: ["animate", "classNames", "wrapperClass"], outputs: ["leave"] }, { kind: "component", type: ResizeSensorComponent, selector: "kendo-resize-sensor", inputs: ["rateLimit"], outputs: ["resize"] }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: WatermarkOverlayComponent, selector: "div[kendoWatermarkOverlay]" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
6129
+ <div kendoWatermarkOverlay *ngIf="showLicenseWatermark" [licenseMessage]="licenseMessage"></div>
6130
+ `, isInline: true, dependencies: [{ kind: "component", type: CrosshairTooltipsContainerComponent, selector: "kendo-chart-crosshair-tooltips-container", inputs: ["popupSettings"] }, { kind: "component", type: TooltipPopupComponent, selector: "kendo-chart-tooltip-popup", inputs: ["animate", "classNames", "wrapperClass"], outputs: ["leave"] }, { kind: "component", type: ResizeSensorComponent, selector: "kendo-resize-sensor", inputs: ["rateLimit"], outputs: ["resize"] }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: WatermarkOverlayComponent, selector: "div[kendoWatermarkOverlay]", inputs: ["licenseMessage"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
6125
6131
  }
6126
6132
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: StockChartComponent, decorators: [{
6127
6133
  type: Component,
@@ -6148,7 +6154,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
6148
6154
  </kendo-chart-tooltip-popup>
6149
6155
  <kendo-resize-sensor (resize)="onResize()"></kendo-resize-sensor>
6150
6156
 
6151
- <div kendoWatermarkOverlay *ngIf="showLicenseWatermark"></div>
6157
+ <div kendoWatermarkOverlay *ngIf="showLicenseWatermark" [licenseMessage]="licenseMessage"></div>
6152
6158
  `,
6153
6159
  standalone: true,
6154
6160
  imports: [CrosshairTooltipsContainerComponent, TooltipPopupComponent, ResizeSensorComponent, NgIf, WatermarkOverlayComponent]
@@ -9102,6 +9108,7 @@ class SparklineComponent extends ChartComponent {
9102
9108
  this.changeDetector = changeDetector;
9103
9109
  this.renderer = renderer;
9104
9110
  const isValid = validatePackage(packageMetadata);
9111
+ this.licenseMessage = getLicenseMessage(packageMetadata);
9105
9112
  this.showLicenseWatermark = shouldShowValidationUI(isValid);
9106
9113
  }
9107
9114
  createInstance(element, observer) {
@@ -9134,8 +9141,8 @@ class SparklineComponent extends ChartComponent {
9134
9141
  </kendo-chart-tooltip-popup>
9135
9142
  <kendo-resize-sensor (resize)="onResize()"></kendo-resize-sensor>
9136
9143
 
9137
- <div kendoWatermarkOverlay *ngIf="showLicenseWatermark"></div>
9138
- `, isInline: true, dependencies: [{ kind: "component", type: CrosshairTooltipsContainerComponent, selector: "kendo-chart-crosshair-tooltips-container", inputs: ["popupSettings"] }, { kind: "component", type: TooltipPopupComponent, selector: "kendo-chart-tooltip-popup", inputs: ["animate", "classNames", "wrapperClass"], outputs: ["leave"] }, { kind: "component", type: ResizeSensorComponent, selector: "kendo-resize-sensor", inputs: ["rateLimit"], outputs: ["resize"] }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: WatermarkOverlayComponent, selector: "div[kendoWatermarkOverlay]" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
9144
+ <div kendoWatermarkOverlay *ngIf="showLicenseWatermark" [licenseMessage]="licenseMessage"></div>
9145
+ `, isInline: true, dependencies: [{ kind: "component", type: CrosshairTooltipsContainerComponent, selector: "kendo-chart-crosshair-tooltips-container", inputs: ["popupSettings"] }, { kind: "component", type: TooltipPopupComponent, selector: "kendo-chart-tooltip-popup", inputs: ["animate", "classNames", "wrapperClass"], outputs: ["leave"] }, { kind: "component", type: ResizeSensorComponent, selector: "kendo-resize-sensor", inputs: ["rateLimit"], outputs: ["resize"] }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: WatermarkOverlayComponent, selector: "div[kendoWatermarkOverlay]", inputs: ["licenseMessage"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
9139
9146
  }
9140
9147
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SparklineComponent, decorators: [{
9141
9148
  type: Component,
@@ -9162,7 +9169,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
9162
9169
  </kendo-chart-tooltip-popup>
9163
9170
  <kendo-resize-sensor (resize)="onResize()"></kendo-resize-sensor>
9164
9171
 
9165
- <div kendoWatermarkOverlay *ngIf="showLicenseWatermark"></div>
9172
+ <div kendoWatermarkOverlay *ngIf="showLicenseWatermark" [licenseMessage]="licenseMessage"></div>
9166
9173
  `,
9167
9174
  standalone: true,
9168
9175
  imports: [CrosshairTooltipsContainerComponent, TooltipPopupComponent, ResizeSensorComponent, NgIf, WatermarkOverlayComponent]
@@ -13036,6 +13043,10 @@ class SankeyComponent {
13036
13043
  * @hidden
13037
13044
  */
13038
13045
  showLicenseWatermark = false;
13046
+ /**
13047
+ * @hidden
13048
+ */
13049
+ licenseMessage;
13039
13050
  instance;
13040
13051
  options;
13041
13052
  theme;
@@ -13056,6 +13067,7 @@ class SankeyComponent {
13056
13067
  this.renderer = renderer;
13057
13068
  this.intlService = intlService;
13058
13069
  const isValid = validatePackage(packageMetadata);
13070
+ this.licenseMessage = getLicenseMessage(packageMetadata);
13059
13071
  this.showLicenseWatermark = shouldShowValidationUI(isValid);
13060
13072
  this.themeService.loadTheme();
13061
13073
  this.refreshWait();
@@ -13297,8 +13309,8 @@ class SankeyComponent {
13297
13309
  [tooltipUnitFormat]="messageFor('tooltipUnitFormat')"
13298
13310
  >
13299
13311
  </kendo-sankey-tooltip-popup>
13300
- <div kendoWatermarkOverlay *ngIf="showLicenseWatermark"></div>
13301
- `, isInline: true, dependencies: [{ kind: "directive", type: LocalizedMessagesDirective, selector: "[kendoSankeyLocalizedMessages]" }, { kind: "component", type: SankeyTooltipPopupComponent, selector: "kendo-sankey-tooltip-popup", inputs: ["animate", "wrapperClass", "tooltipUnitFormat", "offset"] }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: WatermarkOverlayComponent, selector: "div[kendoWatermarkOverlay]" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
13312
+ <div kendoWatermarkOverlay *ngIf="showLicenseWatermark" [licenseMessage]="licenseMessage"></div>
13313
+ `, isInline: true, dependencies: [{ kind: "directive", type: LocalizedMessagesDirective, selector: "[kendoSankeyLocalizedMessages]" }, { kind: "component", type: SankeyTooltipPopupComponent, selector: "kendo-sankey-tooltip-popup", inputs: ["animate", "wrapperClass", "tooltipUnitFormat", "offset"] }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: WatermarkOverlayComponent, selector: "div[kendoWatermarkOverlay]", inputs: ["licenseMessage"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
13302
13314
  }
13303
13315
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SankeyComponent, decorators: [{
13304
13316
  type: Component,
@@ -13328,7 +13340,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
13328
13340
  [tooltipUnitFormat]="messageFor('tooltipUnitFormat')"
13329
13341
  >
13330
13342
  </kendo-sankey-tooltip-popup>
13331
- <div kendoWatermarkOverlay *ngIf="showLicenseWatermark"></div>
13343
+ <div kendoWatermarkOverlay *ngIf="showLicenseWatermark" [licenseMessage]="licenseMessage"></div>
13332
13344
  `,
13333
13345
  standalone: true,
13334
13346
  imports: [LocalizedMessagesDirective, SankeyTooltipPopupComponent, NgIf, WatermarkOverlayComponent]
@@ -14363,5 +14375,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
14363
14375
  * Generated bundle index. Do not edit.
14364
14376
  */
14365
14377
 
14366
- export { AxisDefaultsComponent, AxisDefaultsCrosshairComponent, AxisDefaultsCrosshairTooltipComponent, AxisDefaultsLabelsComponent, AxisDefaultsTitleComponent, AxisLabelClickEvent, CategoryAxisComponent, CategoryAxisCrosshairComponent, CategoryAxisCrosshairTooltipComponent, CategoryAxisItemComponent, CategoryAxisLabelsComponent, CategoryAxisNotesComponent, CategoryAxisNotesIconComponent, CategoryAxisNotesLabelComponent, CategoryAxisRangeLabelsComponent, CategoryAxisSelectComponent, CategoryAxisTitleComponent, ChartAreaComponent, ChartBreadcrumbComponent, ChartComponent, ChartCustomMessagesComponent, ChartModule, ChartsModule, CollectionService, ConfigurationService, CrosshairTooltipComponent, CrosshairTooltipsContainerComponent, DonutCenterTemplateDirective, DragEndEvent, DragEvent, DragStartEvent, DrilldownEvent, InstanceEventService, KENDO_CHART, KENDO_CHARTS, KENDO_SANKEY, KENDO_SPARKLINE, KENDO_STOCKCHART, LegendComponent, LegendInactiveItemsComponent, LegendItemClickEvent, LegendItemComponent, LegendItemHoverEvent, LegendItemLeaveEvent, LocalizedChartMessagesDirective, LocalizedMessagesDirective, NavigatorCategoryAxisComponent, NavigatorCategoryAxisCrosshairComponent, NavigatorCategoryAxisCrosshairTooltipComponent, NavigatorCategoryAxisLabelsComponent, NavigatorCategoryAxisNotesComponent, NavigatorCategoryAxisNotesIconComponent, NavigatorCategoryAxisNotesLabelComponent, NavigatorCategoryAxisSelectComponent, NavigatorCategoryAxisTitleComponent, NavigatorComponent, NavigatorFilterEvent, NavigatorHintComponent, NavigatorPaneComponent, NavigatorPaneTitleComponent, NavigatorSelectComponent, NavigatorSeriesComponent, NavigatorSeriesErrorBarsComponent, NavigatorSeriesExtremesComponent, NavigatorSeriesHighlightComponent, NavigatorSeriesItemComponent, NavigatorSeriesLabelsComponent, NavigatorSeriesLabelsFromComponent, NavigatorSeriesLabelsToComponent, NavigatorSeriesMarkersComponent, NavigatorSeriesNotesComponent, NavigatorSeriesNotesIconComponent, NavigatorSeriesNotesLabelComponent, NavigatorSeriesOutliersComponent, NavigatorSeriesTooltipComponent, NoDataTemplateDirective, NoteClickEvent, NoteHoverEvent, PaneComponent, PaneDefaultsComponent, PaneDefaultsTitleComponent, PaneRenderEvent, PanesComponent, PanesTitleComponent, PlotAreaClickEvent, PlotAreaComponent, PlotAreaHoverEvent, RenderEvent, SankeyBaseEvent, SankeyComponent, SankeyCustomMessagesComponent, SankeyFlatBindingDataBoundEvent, SankeyFlatBindingDirective, SankeyLabelsComponent, SankeyLegendComponent, SankeyLinkEvent, SankeyLinkTooltipTemplateDirective, SankeyLinksComponent, SankeyModule, SankeyNodeEvent, SankeyNodeTooltipTemplateDirective, SankeyNodesComponent, SankeyTitleComponent, SankeyTooltipComponent, SankeyTooltipPopupComponent, SelectEndEvent, SelectEvent, SelectStartEvent, SeriesClickEvent, SeriesComponent, SeriesDefaultsComponent, SeriesDefaultsLabelsComponent, SeriesDefaultsLabelsFromComponent, SeriesDefaultsLabelsToComponent, SeriesDefaultsNotesComponent, SeriesDefaultsNotesIconComponent, SeriesDefaultsNotesLabelComponent, SeriesDefaultsTooltipComponent, SeriesDrilldownTemplateDirective, SeriesErrorBarsComponent, SeriesExtremesComponent, SeriesHighlightComponent, SeriesHoverEvent, SeriesItemComponent, SeriesLabelsComponent, SeriesLabelsFromComponent, SeriesLabelsToComponent, SeriesMarkersComponent, SeriesNotesComponent, SeriesNotesIconComponent, SeriesNotesLabelComponent, SeriesOutliersComponent, SeriesTooltipComponent, SeriesTooltipTemplateDirective, SeriesTrendlineComponent, SeriesTrendlineForecastComponent, SharedTooltipTemplateDirective, SparklineComponent, SparklineModule, StockChartComponent, StockChartModule, SubtitleComponent, ThemeService, TitleComponent, TooltipComponent, TooltipPopupComponent, TooltipTemplateService, ValueAxisComponent, ValueAxisCrosshairComponent, ValueAxisCrosshairTooltipComponent, ValueAxisItemComponent, ValueAxisLabelsComponent, ValueAxisNotesComponent, ValueAxisNotesIconComponent, ValueAxisNotesLabelComponent, ValueAxisTitleComponent, WeekStartDay, XAxisComponent, XAxisCrosshairComponent, XAxisCrosshairTooltipComponent, XAxisItemComponent, XAxisLabelsComponent, XAxisNotesComponent, XAxisNotesIconComponent, XAxisNotesLabelComponent, XAxisTitleComponent, YAxisComponent, YAxisCrosshairComponent, YAxisCrosshairTooltipComponent, YAxisItemComponent, YAxisLabelsComponent, YAxisNotesComponent, YAxisNotesIconComponent, YAxisNotesLabelComponent, YAxisTitleComponent, ZoomEndEvent, ZoomEvent, ZoomStartEvent, ZoomableComponent };
14378
+ export { AxisDefaultsComponent, AxisDefaultsCrosshairComponent, AxisDefaultsCrosshairTooltipComponent, AxisDefaultsLabelsComponent, AxisDefaultsTitleComponent, AxisLabelClickEvent, CategoryAxisComponent, CategoryAxisCrosshairComponent, CategoryAxisCrosshairTooltipComponent, CategoryAxisItemComponent, CategoryAxisLabelsComponent, CategoryAxisNotesComponent, CategoryAxisNotesIconComponent, CategoryAxisNotesLabelComponent, CategoryAxisRangeLabelsComponent, CategoryAxisSelectComponent, CategoryAxisTitleComponent, ChartAreaComponent, ChartBreadcrumbComponent, ChartComponent, ChartCustomMessagesComponent, ChartModule, ChartsModule, CollectionService, ConfigurationService, CrosshairTooltipComponent, CrosshairTooltipsContainerComponent, DonutCenterTemplateDirective, DragEndEvent, DragEvent, DragStartEvent, DrilldownEvent, InstanceEventService, KENDO_CHART, KENDO_CHARTS, KENDO_SANKEY, KENDO_SPARKLINE, KENDO_STOCKCHART, LegendComponent, LegendInactiveItemsComponent, LegendItemClickEvent, LegendItemComponent, LegendItemHoverEvent, LegendItemLeaveEvent, LocalizedChartMessagesDirective, LocalizedMessagesDirective, NavigatorCategoryAxisComponent, NavigatorCategoryAxisCrosshairComponent, NavigatorCategoryAxisCrosshairTooltipComponent, NavigatorCategoryAxisLabelsComponent, NavigatorCategoryAxisNotesComponent, NavigatorCategoryAxisNotesIconComponent, NavigatorCategoryAxisNotesLabelComponent, NavigatorCategoryAxisSelectComponent, NavigatorCategoryAxisTitleComponent, NavigatorComponent, NavigatorFilterEvent, NavigatorHintComponent, NavigatorPaneComponent, NavigatorPaneTitleComponent, NavigatorSelectComponent, NavigatorSeriesComponent, NavigatorSeriesErrorBarsComponent, NavigatorSeriesExtremesComponent, NavigatorSeriesHighlightComponent, NavigatorSeriesItemComponent, NavigatorSeriesLabelsComponent, NavigatorSeriesLabelsFromComponent, NavigatorSeriesLabelsToComponent, NavigatorSeriesMarkersComponent, NavigatorSeriesNotesComponent, NavigatorSeriesNotesIconComponent, NavigatorSeriesNotesLabelComponent, NavigatorSeriesOutliersComponent, NavigatorSeriesTooltipComponent, NoDataTemplateDirective, NoteClickEvent, NoteHoverEvent, NoteLeaveEvent, PaneComponent, PaneDefaultsComponent, PaneDefaultsTitleComponent, PaneRenderEvent, PanesComponent, PanesTitleComponent, PlotAreaClickEvent, PlotAreaComponent, PlotAreaHoverEvent, PlotAreaLeaveEvent, RenderEvent, SankeyBaseEvent, SankeyComponent, SankeyCustomMessagesComponent, SankeyFlatBindingDataBoundEvent, SankeyFlatBindingDirective, SankeyLabelsComponent, SankeyLegendComponent, SankeyLinkEvent, SankeyLinkTooltipTemplateDirective, SankeyLinksComponent, SankeyModule, SankeyNodeEvent, SankeyNodeTooltipTemplateDirective, SankeyNodesComponent, SankeyTitleComponent, SankeyTooltipComponent, SankeyTooltipPopupComponent, SelectEndEvent, SelectEvent, SelectStartEvent, SeriesClickEvent, SeriesComponent, SeriesDefaultsComponent, SeriesDefaultsLabelsComponent, SeriesDefaultsLabelsFromComponent, SeriesDefaultsLabelsToComponent, SeriesDefaultsNotesComponent, SeriesDefaultsNotesIconComponent, SeriesDefaultsNotesLabelComponent, SeriesDefaultsTooltipComponent, SeriesDrilldownTemplateDirective, SeriesErrorBarsComponent, SeriesExtremesComponent, SeriesHighlightComponent, SeriesHoverEvent, SeriesItemComponent, SeriesLabelsComponent, SeriesLabelsFromComponent, SeriesLabelsToComponent, SeriesLeaveEvent, SeriesMarkersComponent, SeriesNotesComponent, SeriesNotesIconComponent, SeriesNotesLabelComponent, SeriesOutliersComponent, SeriesOverEvent, SeriesTooltipComponent, SeriesTooltipTemplateDirective, SeriesTrendlineComponent, SeriesTrendlineForecastComponent, SharedTooltipTemplateDirective, SparklineComponent, SparklineModule, StockChartComponent, StockChartModule, SubtitleComponent, ThemeService, TitleComponent, TooltipComponent, TooltipPopupComponent, TooltipTemplateService, ValueAxisComponent, ValueAxisCrosshairComponent, ValueAxisCrosshairTooltipComponent, ValueAxisItemComponent, ValueAxisLabelsComponent, ValueAxisNotesComponent, ValueAxisNotesIconComponent, ValueAxisNotesLabelComponent, ValueAxisTitleComponent, WeekStartDay, XAxisComponent, XAxisCrosshairComponent, XAxisCrosshairTooltipComponent, XAxisItemComponent, XAxisLabelsComponent, XAxisNotesComponent, XAxisNotesIconComponent, XAxisNotesLabelComponent, XAxisTitleComponent, YAxisComponent, YAxisCrosshairComponent, YAxisCrosshairTooltipComponent, YAxisItemComponent, YAxisLabelsComponent, YAxisNotesComponent, YAxisNotesIconComponent, YAxisNotesLabelComponent, YAxisTitleComponent, ZoomEndEvent, ZoomEvent, ZoomStartEvent, ZoomableComponent };
14367
14379
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@progress/kendo-angular-charts",
3
- "version": "19.3.0-develop.9",
3
+ "version": "19.3.1-develop.1",
4
4
  "description": "Kendo UI Charts for Angular - A comprehensive package for creating beautiful and interactive data visualization. Every chart type, stock charts, and sparklines are included.",
5
5
  "license": "SEE LICENSE IN LICENSE.md",
6
6
  "author": "Progress",
@@ -42,7 +42,7 @@
42
42
  "package": {
43
43
  "productName": "Kendo UI for Angular",
44
44
  "productCode": "KENDOUIANGULAR",
45
- "publishDate": 1752672352,
45
+ "publishDate": 1755502723,
46
46
  "licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
47
47
  }
48
48
  },
@@ -52,19 +52,19 @@
52
52
  "@angular/core": "16 - 20",
53
53
  "@angular/platform-browser": "16 - 20",
54
54
  "@progress/kendo-drawing": "^1.21.0",
55
- "@progress/kendo-licensing": "^1.5.0",
56
- "@progress/kendo-angular-common": "19.3.0-develop.9",
57
- "@progress/kendo-angular-intl": "19.3.0-develop.9",
58
- "@progress/kendo-angular-icons": "19.3.0-develop.9",
59
- "@progress/kendo-angular-l10n": "19.3.0-develop.9",
60
- "@progress/kendo-angular-popup": "19.3.0-develop.9",
61
- "@progress/kendo-angular-navigation": "19.3.0-develop.9",
55
+ "@progress/kendo-licensing": "^1.7.0",
56
+ "@progress/kendo-angular-common": "19.3.1-develop.1",
57
+ "@progress/kendo-angular-intl": "19.3.1-develop.1",
58
+ "@progress/kendo-angular-icons": "19.3.1-develop.1",
59
+ "@progress/kendo-angular-l10n": "19.3.1-develop.1",
60
+ "@progress/kendo-angular-popup": "19.3.1-develop.1",
61
+ "@progress/kendo-angular-navigation": "19.3.1-develop.1",
62
62
  "rxjs": "^6.5.3 || ^7.0.0"
63
63
  },
64
64
  "dependencies": {
65
65
  "tslib": "^2.3.1",
66
- "@progress/kendo-angular-schematics": "19.3.0-develop.9",
67
- "@progress/kendo-charts": "2.7.2",
66
+ "@progress/kendo-angular-schematics": "19.3.1-develop.1",
67
+ "@progress/kendo-charts": "2.8.0",
68
68
  "@progress/kendo-svg-icons": "^4.0.0"
69
69
  },
70
70
  "schematics": "./schematics/collection.json",
@@ -157,6 +157,10 @@ export declare class SankeyComponent implements AfterViewInit, OnChanges, OnDest
157
157
  * @hidden
158
158
  */
159
159
  showLicenseWatermark: boolean;
160
+ /**
161
+ * @hidden
162
+ */
163
+ licenseMessage?: string;
160
164
  instance: Sankey;
161
165
  protected options: any;
162
166
  protected theme: any;
@@ -51,7 +51,7 @@ import * as i0 from "@angular/core";
51
51
  * @remarks
52
52
  * Supported children components are: {@link SeriesComponent}, {@link NavigatorComponent}, {@link TitleComponent}, {@link SubtitleComponent}, {@link AxisDefaultsComponent},
53
53
  * {@link ChartAreaComponent}, {@link CategoryAxisComponent}, {@link LegendComponent}, {@link PaneDefaultsComponent}, {@link PanesComponent}, {@link PlotAreaComponent},
54
- * {@link SeriesDefaultsComponent}, {@link ValueAxisComponent}, {@link TooltipComponent}, {@link XAxisComponent}, and {@link YAxisComponent}.
54
+ * {@link SeriesDefaultsComponent}, {@link ValueAxisComponent}, and {@link TooltipComponent}.
55
55
  */
56
56
  export declare class StockChartComponent extends ChartComponent {
57
57
  configurationService: ConfigurationService;