@progress/kendo-angular-layout 19.3.0-develop.3 → 19.3.0-develop.31

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.
@@ -158,6 +158,10 @@ export declare class DrawerComponent implements OnDestroy {
158
158
  * @hidden
159
159
  */
160
160
  showLicenseWatermark: boolean;
161
+ /**
162
+ * @hidden
163
+ */
164
+ licenseMessage?: string;
161
165
  viewItems: DrawerViewItem[];
162
166
  private animationEnd;
163
167
  private dynamicRTLSubscription;
@@ -13,7 +13,7 @@ import { AnimationBuilder } from '@angular/animations';
13
13
  import { collapseAnimation, expandAnimation } from './animations';
14
14
  import { take } from 'rxjs/operators';
15
15
  import { L10N_PREFIX, LocalizationService } from '@progress/kendo-angular-l10n';
16
- import { shouldShowValidationUI, WatermarkOverlayComponent } from '@progress/kendo-angular-common';
16
+ import { getLicenseMessage, shouldShowValidationUI, WatermarkOverlayComponent } from '@progress/kendo-angular-common';
17
17
  import { DrawerListComponent } from './list.component';
18
18
  import { NgIf, NgTemplateOutlet } from '@angular/common';
19
19
  import * as i0 from "@angular/core";
@@ -193,6 +193,10 @@ export class DrawerComponent {
193
193
  * @hidden
194
194
  */
195
195
  showLicenseWatermark = false;
196
+ /**
197
+ * @hidden
198
+ */
199
+ licenseMessage;
196
200
  viewItems;
197
201
  animationEnd = new EventEmitter();
198
202
  dynamicRTLSubscription;
@@ -203,6 +207,7 @@ export class DrawerComponent {
203
207
  this.localizationService = localizationService;
204
208
  this.drawerService = drawerService;
205
209
  const isValid = validatePackage(packageMetadata);
210
+ this.licenseMessage = getLicenseMessage(packageMetadata);
206
211
  this.showLicenseWatermark = shouldShowValidationUI(isValid);
207
212
  this.dynamicRTLSubscription = this.localizationService.changes.subscribe(({ rtl }) => {
208
213
  this.rtl = rtl;
@@ -342,8 +347,8 @@ export class DrawerComponent {
342
347
  </ng-template>
343
348
  </div>
344
349
 
345
- <div kendoWatermarkOverlay *ngIf="showLicenseWatermark"></div>
346
- `, isInline: true, dependencies: [{ kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "component", type: DrawerListComponent, selector: "[kendoDrawerList]", inputs: ["itemTemplate", "mini", "expanded", "view"], outputs: ["select"] }, { kind: "component", type: WatermarkOverlayComponent, selector: "div[kendoWatermarkOverlay]" }] });
350
+ <div kendoWatermarkOverlay *ngIf="showLicenseWatermark" [licenseMessage]="licenseMessage"></div>
351
+ `, isInline: true, dependencies: [{ kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "component", type: DrawerListComponent, selector: "[kendoDrawerList]", inputs: ["itemTemplate", "mini", "expanded", "view"], outputs: ["select"] }, { kind: "component", type: WatermarkOverlayComponent, selector: "div[kendoWatermarkOverlay]", inputs: ["licenseMessage"] }] });
347
352
  }
348
353
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DrawerComponent, decorators: [{
349
354
  type: Component,
@@ -386,7 +391,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
386
391
  </ng-template>
387
392
  </div>
388
393
 
389
- <div kendoWatermarkOverlay *ngIf="showLicenseWatermark"></div>
394
+ <div kendoWatermarkOverlay *ngIf="showLicenseWatermark" [licenseMessage]="licenseMessage"></div>
390
395
  `,
391
396
  standalone: true,
392
397
  imports: [NgIf, NgTemplateOutlet, DrawerListComponent, WatermarkOverlayComponent]
@@ -10,7 +10,7 @@ export const packageMetadata = {
10
10
  productName: 'Kendo UI for Angular',
11
11
  productCode: 'KENDOUIANGULAR',
12
12
  productCodes: ['KENDOUIANGULAR'],
13
- publishDate: 1751984869,
14
- version: '19.3.0-develop.3',
13
+ publishDate: 1754576557,
14
+ version: '19.3.0-develop.31',
15
15
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/?utm_medium=product&utm_source=kendoangular&utm_campaign=kendo-ui-angular-purchase-license-keys-warning'
16
16
  };
@@ -4,7 +4,7 @@
4
4
  *-------------------------------------------------------------------------------------------*/
5
5
  import { Component, ContentChild, ContentChildren, ElementRef, EventEmitter, HostBinding, HostListener, Input, Output, QueryList, ViewChildren, isDevMode } from '@angular/core';
6
6
  import { LocalizationService, L10N_PREFIX } from '@progress/kendo-angular-l10n';
7
- import { Keys, shouldShowValidationUI, WatermarkOverlayComponent } from '@progress/kendo-angular-common';
7
+ import { Keys, shouldShowValidationUI, getLicenseMessage, WatermarkOverlayComponent } from '@progress/kendo-angular-common';
8
8
  import { validatePackage } from '@progress/kendo-licensing';
9
9
  import { packageMetadata } from '../package-metadata';
10
10
  import { PanelBarExpandMode } from './panelbar-expand-mode';
@@ -145,6 +145,10 @@ export class PanelBarComponent {
145
145
  * @hidden
146
146
  */
147
147
  showLicenseWatermark = false;
148
+ /**
149
+ * @hidden
150
+ */
151
+ licenseMessage;
148
152
  allItems;
149
153
  childrenItems;
150
154
  isViewInit = true;
@@ -158,6 +162,7 @@ export class PanelBarComponent {
158
162
  constructor(elementRef, eventService, localization) {
159
163
  this.localization = localization;
160
164
  const isValid = validatePackage(packageMetadata);
165
+ this.licenseMessage = getLicenseMessage(packageMetadata);
161
166
  this.showLicenseWatermark = shouldShowValidationUI(isValid);
162
167
  /* eslint-disable-line*/
163
168
  this.keyBindings = this.computedKeys;
@@ -566,8 +571,8 @@ export class PanelBarComponent {
566
571
  </ng-container>
567
572
  </ng-template>
568
573
 
569
- <div kendoWatermarkOverlay *ngIf="showLicenseWatermark"></div>
570
- `, isInline: true, dependencies: [{ kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: NgFor, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "component", type: PanelBarItemComponent, selector: "kendo-panelbar-item", inputs: ["title", "id", "icon", "iconClass", "svgIcon", "imageUrl", "disabled", "expanded", "selected", "content", "items", "template"], exportAs: ["kendoPanelbarItem"] }, { kind: "component", type: WatermarkOverlayComponent, selector: "div[kendoWatermarkOverlay]" }] });
574
+ <div kendoWatermarkOverlay *ngIf="showLicenseWatermark" [licenseMessage]="licenseMessage"></div>
575
+ `, isInline: true, dependencies: [{ kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: NgFor, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "component", type: PanelBarItemComponent, selector: "kendo-panelbar-item", inputs: ["title", "id", "icon", "iconClass", "svgIcon", "imageUrl", "disabled", "expanded", "selected", "content", "items", "template"], exportAs: ["kendoPanelbarItem"] }, { kind: "component", type: WatermarkOverlayComponent, selector: "div[kendoWatermarkOverlay]", inputs: ["licenseMessage"] }] });
571
576
  }
572
577
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PanelBarComponent, decorators: [{
573
578
  type: Component,
@@ -604,7 +609,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
604
609
  </ng-container>
605
610
  </ng-template>
606
611
 
607
- <div kendoWatermarkOverlay *ngIf="showLicenseWatermark"></div>
612
+ <div kendoWatermarkOverlay *ngIf="showLicenseWatermark" [licenseMessage]="licenseMessage"></div>
608
613
  `,
609
614
  standalone: true,
610
615
  imports: [NgIf, NgFor, PanelBarItemComponent, WatermarkOverlayComponent]
@@ -18,7 +18,7 @@ import { normalizeScrollableSettings } from './models/scrollable-settings';
18
18
  import { TabScrollEvent } from './events/tabscroll-event';
19
19
  import { TabStripScrollableButtonComponent } from './scrollable-button.component';
20
20
  import { take } from 'rxjs/operators';
21
- import { guid, isDocumentAvailable, shouldShowValidationUI, WatermarkOverlayComponent, ResizeSensorComponent } from '@progress/kendo-angular-common';
21
+ import { guid, isDocumentAvailable, shouldShowValidationUI, getLicenseMessage, WatermarkOverlayComponent, ResizeSensorComponent } from '@progress/kendo-angular-common';
22
22
  import { TabComponent } from './rendering/tab.component';
23
23
  import { NgIf, NgTemplateOutlet, NgClass, NgFor, NgStyle } from '@angular/common';
24
24
  import { LocalizedTabStripMessagesDirective } from './localization/localized-messages.directive';
@@ -239,6 +239,10 @@ export class TabStripComponent {
239
239
  * @hidden
240
240
  */
241
241
  showLicenseWatermark = false;
242
+ /**
243
+ * @hidden
244
+ */
245
+ licenseMessage;
242
246
  _height;
243
247
  _scrollableSettings = normalizeScrollableSettings(false);
244
248
  subscriptions = new Subscription();
@@ -256,6 +260,7 @@ export class TabStripComponent {
256
260
  this.scrollService = scrollService;
257
261
  this.ngZone = ngZone;
258
262
  const isValid = validatePackage(packageMetadata);
263
+ this.licenseMessage = getLicenseMessage(packageMetadata);
259
264
  this.showLicenseWatermark = shouldShowValidationUI(isValid);
260
265
  this.tabstripService.owner = this;
261
266
  this.scrollService.owner = this;
@@ -353,7 +358,7 @@ export class TabStripComponent {
353
358
  }
354
359
  /**
355
360
  * Allows you to programmatically select a tab by its index.
356
- * If the tab is disabled, it will not be selected.
361
+ * If the tab is disabled, it will not be selected. The `tabSelect` event will not be fired.
357
362
  * @param {number} index The index of the tab that will be selected.
358
363
  */
359
364
  selectTab(index) {
@@ -658,8 +663,8 @@ export class TabStripComponent {
658
663
  </ng-template>
659
664
  </ng-template>
660
665
  <kendo-resize-sensor *ngIf="isScrollable" (resize)="onResize()"></kendo-resize-sensor>
661
- <div kendoWatermarkOverlay *ngIf="showLicenseWatermark"></div>
662
- `, isInline: true, dependencies: [{ kind: "directive", type: LocalizedTabStripMessagesDirective, selector: "[kendoTabStripLocalizedMessages]" }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "directive", type: NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "component", type: TabStripScrollableButtonComponent, selector: "[kendoTabStripScrollableButton]", inputs: ["prev", "tabPosition", "scrollable"], outputs: ["tabScroll", "onClick"] }, { kind: "directive", type: NgFor, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "component", type: TabComponent, selector: "[kendoTabStripTab]", inputs: ["tab", "index", "tabStripClosable", "tabStripCloseIcon", "customTabstripCloseIcon", "closeSVGIcon"], outputs: ["tabClose"] }, { kind: "directive", type: NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { kind: "component", type: ResizeSensorComponent, selector: "kendo-resize-sensor", inputs: ["rateLimit"], outputs: ["resize"] }, { kind: "component", type: WatermarkOverlayComponent, selector: "div[kendoWatermarkOverlay]" }], animations: [
666
+ <div kendoWatermarkOverlay *ngIf="showLicenseWatermark" [licenseMessage]="licenseMessage"></div>
667
+ `, isInline: true, dependencies: [{ kind: "directive", type: LocalizedTabStripMessagesDirective, selector: "[kendoTabStripLocalizedMessages]" }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "directive", type: NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "component", type: TabStripScrollableButtonComponent, selector: "[kendoTabStripScrollableButton]", inputs: ["prev", "tabPosition", "scrollable"], outputs: ["tabScroll", "onClick"] }, { kind: "directive", type: NgFor, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "component", type: TabComponent, selector: "[kendoTabStripTab]", inputs: ["tab", "index", "tabStripClosable", "tabStripCloseIcon", "customTabstripCloseIcon", "closeSVGIcon"], outputs: ["tabClose"] }, { kind: "directive", type: NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { kind: "component", type: ResizeSensorComponent, selector: "kendo-resize-sensor", inputs: ["rateLimit"], outputs: ["resize"] }, { kind: "component", type: WatermarkOverlayComponent, selector: "div[kendoWatermarkOverlay]", inputs: ["licenseMessage"] }], animations: [
663
668
  trigger('state', [
664
669
  state('active', style({ opacity: 1 })),
665
670
  transition('* => active', [
@@ -841,7 +846,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
841
846
  </ng-template>
842
847
  </ng-template>
843
848
  <kendo-resize-sensor *ngIf="isScrollable" (resize)="onResize()"></kendo-resize-sensor>
844
- <div kendoWatermarkOverlay *ngIf="showLicenseWatermark"></div>
849
+ <div kendoWatermarkOverlay *ngIf="showLicenseWatermark" [licenseMessage]="licenseMessage"></div>
845
850
  `,
846
851
  standalone: true,
847
852
  imports: [LocalizedTabStripMessagesDirective, NgIf, NgTemplateOutlet, NgClass, TabStripScrollableButtonComponent, NgFor, TabComponent, NgStyle, ResizeSensorComponent, WatermarkOverlayComponent]
@@ -8,7 +8,7 @@ import { Subscription } from 'rxjs';
8
8
  import { Draggable } from '@progress/kendo-draggable';
9
9
  import { TileLayoutItemComponent } from './tilelayout-item.component';
10
10
  import { LocalizationService, L10N_PREFIX } from '@progress/kendo-angular-l10n';
11
- import { hasObservers, isChanged, shouldShowValidationUI, WatermarkOverlayComponent } from '@progress/kendo-angular-common';
11
+ import { hasObservers, isChanged, shouldShowValidationUI, getLicenseMessage, WatermarkOverlayComponent } from '@progress/kendo-angular-common';
12
12
  import { validatePackage } from '@progress/kendo-licensing';
13
13
  import { packageMetadata } from '../package-metadata';
14
14
  import { isPresent } from '../common/util';
@@ -135,6 +135,10 @@ export class TileLayoutComponent {
135
135
  * @hidden
136
136
  */
137
137
  showLicenseWatermark = false;
138
+ /**
139
+ * @hidden
140
+ */
141
+ licenseMessage;
138
142
  draggable;
139
143
  subs = new Subscription();
140
144
  _gap = {
@@ -149,6 +153,7 @@ export class TileLayoutComponent {
149
153
  this.draggingService = draggingService;
150
154
  this.navigationService = navigationService;
151
155
  const isValid = validatePackage(packageMetadata);
156
+ this.licenseMessage = getLicenseMessage(packageMetadata);
152
157
  this.showLicenseWatermark = shouldShowValidationUI(isValid);
153
158
  }
154
159
  ngOnInit() {
@@ -304,8 +309,8 @@ export class TileLayoutComponent {
304
309
  [style.gridRowStart]="currentRowStart"
305
310
  [style.zIndex]="'1'">
306
311
  </div>
307
- <div kendoWatermarkOverlay *ngIf="showLicenseWatermark"></div>
308
- `, isInline: true, dependencies: [{ kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: WatermarkOverlayComponent, selector: "div[kendoWatermarkOverlay]" }] });
312
+ <div kendoWatermarkOverlay *ngIf="showLicenseWatermark" [licenseMessage]="licenseMessage"></div>
313
+ `, isInline: true, dependencies: [{ kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: WatermarkOverlayComponent, selector: "div[kendoWatermarkOverlay]", inputs: ["licenseMessage"] }] });
309
314
  }
310
315
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: TileLayoutComponent, decorators: [{
311
316
  type: Component,
@@ -331,7 +336,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
331
336
  [style.gridRowStart]="currentRowStart"
332
337
  [style.zIndex]="'1'">
333
338
  </div>
334
- <div kendoWatermarkOverlay *ngIf="showLicenseWatermark"></div>
339
+ <div kendoWatermarkOverlay *ngIf="showLicenseWatermark" [licenseMessage]="licenseMessage"></div>
335
340
  `,
336
341
  standalone: true,
337
342
  imports: [NgIf, WatermarkOverlayComponent]
@@ -7,7 +7,7 @@ import { Injectable, Directive, Optional, isDevMode, Component, SkipSelf, Host,
7
7
  import * as i1 from '@progress/kendo-angular-l10n';
8
8
  import { LocalizationService, L10N_PREFIX, ComponentMessages } from '@progress/kendo-angular-l10n';
9
9
  import * as i1$1 from '@progress/kendo-angular-common';
10
- import { Keys, shouldShowValidationUI, WatermarkOverlayComponent, isDocumentAvailable, anyChanged, isObjectPresent, removeHTMLAttributes, parseAttributes, setHTMLAttributes, DraggableDirective, PreventableEvent as PreventableEvent$1, guid, ResizeSensorComponent, hasObservers, isPresent as isPresent$1, focusableSelector, isChanged } from '@progress/kendo-angular-common';
10
+ import { Keys, getLicenseMessage, shouldShowValidationUI, WatermarkOverlayComponent, isDocumentAvailable, anyChanged, isObjectPresent, removeHTMLAttributes, parseAttributes, setHTMLAttributes, DraggableDirective, PreventableEvent as PreventableEvent$1, guid, ResizeSensorComponent, hasObservers, isPresent as isPresent$1, focusableSelector, isChanged } from '@progress/kendo-angular-common';
11
11
  import { validatePackage } from '@progress/kendo-licensing';
12
12
  import * as i1$2 from '@angular/animations';
13
13
  import { trigger, state, style, transition, animate, AUTO_STYLE } from '@angular/animations';
@@ -29,8 +29,8 @@ const packageMetadata = {
29
29
  productName: 'Kendo UI for Angular',
30
30
  productCode: 'KENDOUIANGULAR',
31
31
  productCodes: ['KENDOUIANGULAR'],
32
- publishDate: 1751984869,
33
- version: '19.3.0-develop.3',
32
+ publishDate: 1754576557,
33
+ version: '19.3.0-develop.31',
34
34
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/?utm_medium=product&utm_source=kendoangular&utm_campaign=kendo-ui-angular-purchase-license-keys-warning'
35
35
  };
36
36
 
@@ -1205,6 +1205,10 @@ class PanelBarComponent {
1205
1205
  * @hidden
1206
1206
  */
1207
1207
  showLicenseWatermark = false;
1208
+ /**
1209
+ * @hidden
1210
+ */
1211
+ licenseMessage;
1208
1212
  allItems;
1209
1213
  childrenItems;
1210
1214
  isViewInit = true;
@@ -1218,6 +1222,7 @@ class PanelBarComponent {
1218
1222
  constructor(elementRef, eventService, localization) {
1219
1223
  this.localization = localization;
1220
1224
  const isValid = validatePackage(packageMetadata);
1225
+ this.licenseMessage = getLicenseMessage(packageMetadata);
1221
1226
  this.showLicenseWatermark = shouldShowValidationUI(isValid);
1222
1227
  /* eslint-disable-line*/
1223
1228
  this.keyBindings = this.computedKeys;
@@ -1626,8 +1631,8 @@ class PanelBarComponent {
1626
1631
  </ng-container>
1627
1632
  </ng-template>
1628
1633
 
1629
- <div kendoWatermarkOverlay *ngIf="showLicenseWatermark"></div>
1630
- `, isInline: true, dependencies: [{ kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: NgFor, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "component", type: PanelBarItemComponent, selector: "kendo-panelbar-item", inputs: ["title", "id", "icon", "iconClass", "svgIcon", "imageUrl", "disabled", "expanded", "selected", "content", "items", "template"], exportAs: ["kendoPanelbarItem"] }, { kind: "component", type: WatermarkOverlayComponent, selector: "div[kendoWatermarkOverlay]" }] });
1634
+ <div kendoWatermarkOverlay *ngIf="showLicenseWatermark" [licenseMessage]="licenseMessage"></div>
1635
+ `, isInline: true, dependencies: [{ kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: NgFor, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "component", type: PanelBarItemComponent, selector: "kendo-panelbar-item", inputs: ["title", "id", "icon", "iconClass", "svgIcon", "imageUrl", "disabled", "expanded", "selected", "content", "items", "template"], exportAs: ["kendoPanelbarItem"] }, { kind: "component", type: WatermarkOverlayComponent, selector: "div[kendoWatermarkOverlay]", inputs: ["licenseMessage"] }] });
1631
1636
  }
1632
1637
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PanelBarComponent, decorators: [{
1633
1638
  type: Component,
@@ -1664,7 +1669,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
1664
1669
  </ng-container>
1665
1670
  </ng-template>
1666
1671
 
1667
- <div kendoWatermarkOverlay *ngIf="showLicenseWatermark"></div>
1672
+ <div kendoWatermarkOverlay *ngIf="showLicenseWatermark" [licenseMessage]="licenseMessage"></div>
1668
1673
  `,
1669
1674
  standalone: true,
1670
1675
  imports: [NgIf, NgFor, PanelBarItemComponent, WatermarkOverlayComponent]
@@ -4188,6 +4193,10 @@ class TabStripComponent {
4188
4193
  * @hidden
4189
4194
  */
4190
4195
  showLicenseWatermark = false;
4196
+ /**
4197
+ * @hidden
4198
+ */
4199
+ licenseMessage;
4191
4200
  _height;
4192
4201
  _scrollableSettings = normalizeScrollableSettings(false);
4193
4202
  subscriptions = new Subscription();
@@ -4205,6 +4214,7 @@ class TabStripComponent {
4205
4214
  this.scrollService = scrollService;
4206
4215
  this.ngZone = ngZone;
4207
4216
  const isValid = validatePackage(packageMetadata);
4217
+ this.licenseMessage = getLicenseMessage(packageMetadata);
4208
4218
  this.showLicenseWatermark = shouldShowValidationUI(isValid);
4209
4219
  this.tabstripService.owner = this;
4210
4220
  this.scrollService.owner = this;
@@ -4302,7 +4312,7 @@ class TabStripComponent {
4302
4312
  }
4303
4313
  /**
4304
4314
  * Allows you to programmatically select a tab by its index.
4305
- * If the tab is disabled, it will not be selected.
4315
+ * If the tab is disabled, it will not be selected. The `tabSelect` event will not be fired.
4306
4316
  * @param {number} index The index of the tab that will be selected.
4307
4317
  */
4308
4318
  selectTab(index) {
@@ -4607,8 +4617,8 @@ class TabStripComponent {
4607
4617
  </ng-template>
4608
4618
  </ng-template>
4609
4619
  <kendo-resize-sensor *ngIf="isScrollable" (resize)="onResize()"></kendo-resize-sensor>
4610
- <div kendoWatermarkOverlay *ngIf="showLicenseWatermark"></div>
4611
- `, isInline: true, dependencies: [{ kind: "directive", type: LocalizedTabStripMessagesDirective, selector: "[kendoTabStripLocalizedMessages]" }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "directive", type: NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "component", type: TabStripScrollableButtonComponent, selector: "[kendoTabStripScrollableButton]", inputs: ["prev", "tabPosition", "scrollable"], outputs: ["tabScroll", "onClick"] }, { kind: "directive", type: NgFor, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "component", type: TabComponent, selector: "[kendoTabStripTab]", inputs: ["tab", "index", "tabStripClosable", "tabStripCloseIcon", "customTabstripCloseIcon", "closeSVGIcon"], outputs: ["tabClose"] }, { kind: "directive", type: NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { kind: "component", type: ResizeSensorComponent, selector: "kendo-resize-sensor", inputs: ["rateLimit"], outputs: ["resize"] }, { kind: "component", type: WatermarkOverlayComponent, selector: "div[kendoWatermarkOverlay]" }], animations: [
4620
+ <div kendoWatermarkOverlay *ngIf="showLicenseWatermark" [licenseMessage]="licenseMessage"></div>
4621
+ `, isInline: true, dependencies: [{ kind: "directive", type: LocalizedTabStripMessagesDirective, selector: "[kendoTabStripLocalizedMessages]" }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "directive", type: NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "component", type: TabStripScrollableButtonComponent, selector: "[kendoTabStripScrollableButton]", inputs: ["prev", "tabPosition", "scrollable"], outputs: ["tabScroll", "onClick"] }, { kind: "directive", type: NgFor, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "component", type: TabComponent, selector: "[kendoTabStripTab]", inputs: ["tab", "index", "tabStripClosable", "tabStripCloseIcon", "customTabstripCloseIcon", "closeSVGIcon"], outputs: ["tabClose"] }, { kind: "directive", type: NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { kind: "component", type: ResizeSensorComponent, selector: "kendo-resize-sensor", inputs: ["rateLimit"], outputs: ["resize"] }, { kind: "component", type: WatermarkOverlayComponent, selector: "div[kendoWatermarkOverlay]", inputs: ["licenseMessage"] }], animations: [
4612
4622
  trigger('state', [
4613
4623
  state('active', style({ opacity: 1 })),
4614
4624
  transition('* => active', [
@@ -4790,7 +4800,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
4790
4800
  </ng-template>
4791
4801
  </ng-template>
4792
4802
  <kendo-resize-sensor *ngIf="isScrollable" (resize)="onResize()"></kendo-resize-sensor>
4793
- <div kendoWatermarkOverlay *ngIf="showLicenseWatermark"></div>
4803
+ <div kendoWatermarkOverlay *ngIf="showLicenseWatermark" [licenseMessage]="licenseMessage"></div>
4794
4804
  `,
4795
4805
  standalone: true,
4796
4806
  imports: [LocalizedTabStripMessagesDirective, NgIf, NgTemplateOutlet, NgClass, TabStripScrollableButtonComponent, NgFor, TabComponent, NgStyle, ResizeSensorComponent, WatermarkOverlayComponent]
@@ -5846,6 +5856,10 @@ class DrawerComponent {
5846
5856
  * @hidden
5847
5857
  */
5848
5858
  showLicenseWatermark = false;
5859
+ /**
5860
+ * @hidden
5861
+ */
5862
+ licenseMessage;
5849
5863
  viewItems;
5850
5864
  animationEnd = new EventEmitter();
5851
5865
  dynamicRTLSubscription;
@@ -5856,6 +5870,7 @@ class DrawerComponent {
5856
5870
  this.localizationService = localizationService;
5857
5871
  this.drawerService = drawerService;
5858
5872
  const isValid = validatePackage(packageMetadata);
5873
+ this.licenseMessage = getLicenseMessage(packageMetadata);
5859
5874
  this.showLicenseWatermark = shouldShowValidationUI(isValid);
5860
5875
  this.dynamicRTLSubscription = this.localizationService.changes.subscribe(({ rtl }) => {
5861
5876
  this.rtl = rtl;
@@ -5995,8 +6010,8 @@ class DrawerComponent {
5995
6010
  </ng-template>
5996
6011
  </div>
5997
6012
 
5998
- <div kendoWatermarkOverlay *ngIf="showLicenseWatermark"></div>
5999
- `, isInline: true, dependencies: [{ kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "component", type: DrawerListComponent, selector: "[kendoDrawerList]", inputs: ["itemTemplate", "mini", "expanded", "view"], outputs: ["select"] }, { kind: "component", type: WatermarkOverlayComponent, selector: "div[kendoWatermarkOverlay]" }] });
6013
+ <div kendoWatermarkOverlay *ngIf="showLicenseWatermark" [licenseMessage]="licenseMessage"></div>
6014
+ `, isInline: true, dependencies: [{ kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "component", type: DrawerListComponent, selector: "[kendoDrawerList]", inputs: ["itemTemplate", "mini", "expanded", "view"], outputs: ["select"] }, { kind: "component", type: WatermarkOverlayComponent, selector: "div[kendoWatermarkOverlay]", inputs: ["licenseMessage"] }] });
6000
6015
  }
6001
6016
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DrawerComponent, decorators: [{
6002
6017
  type: Component,
@@ -6039,7 +6054,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
6039
6054
  </ng-template>
6040
6055
  </div>
6041
6056
 
6042
- <div kendoWatermarkOverlay *ngIf="showLicenseWatermark"></div>
6057
+ <div kendoWatermarkOverlay *ngIf="showLicenseWatermark" [licenseMessage]="licenseMessage"></div>
6043
6058
  `,
6044
6059
  standalone: true,
6045
6060
  imports: [NgIf, NgTemplateOutlet, DrawerListComponent, WatermarkOverlayComponent]
@@ -10537,6 +10552,10 @@ class TileLayoutComponent {
10537
10552
  * @hidden
10538
10553
  */
10539
10554
  showLicenseWatermark = false;
10555
+ /**
10556
+ * @hidden
10557
+ */
10558
+ licenseMessage;
10540
10559
  draggable;
10541
10560
  subs = new Subscription();
10542
10561
  _gap = {
@@ -10551,6 +10570,7 @@ class TileLayoutComponent {
10551
10570
  this.draggingService = draggingService;
10552
10571
  this.navigationService = navigationService;
10553
10572
  const isValid = validatePackage(packageMetadata);
10573
+ this.licenseMessage = getLicenseMessage(packageMetadata);
10554
10574
  this.showLicenseWatermark = shouldShowValidationUI(isValid);
10555
10575
  }
10556
10576
  ngOnInit() {
@@ -10706,8 +10726,8 @@ class TileLayoutComponent {
10706
10726
  [style.gridRowStart]="currentRowStart"
10707
10727
  [style.zIndex]="'1'">
10708
10728
  </div>
10709
- <div kendoWatermarkOverlay *ngIf="showLicenseWatermark"></div>
10710
- `, isInline: true, dependencies: [{ kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: WatermarkOverlayComponent, selector: "div[kendoWatermarkOverlay]" }] });
10729
+ <div kendoWatermarkOverlay *ngIf="showLicenseWatermark" [licenseMessage]="licenseMessage"></div>
10730
+ `, isInline: true, dependencies: [{ kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: WatermarkOverlayComponent, selector: "div[kendoWatermarkOverlay]", inputs: ["licenseMessage"] }] });
10711
10731
  }
10712
10732
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: TileLayoutComponent, decorators: [{
10713
10733
  type: Component,
@@ -10733,7 +10753,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
10733
10753
  [style.gridRowStart]="currentRowStart"
10734
10754
  [style.zIndex]="'1'">
10735
10755
  </div>
10736
- <div kendoWatermarkOverlay *ngIf="showLicenseWatermark"></div>
10756
+ <div kendoWatermarkOverlay *ngIf="showLicenseWatermark" [licenseMessage]="licenseMessage"></div>
10737
10757
  `,
10738
10758
  standalone: true,
10739
10759
  imports: [NgIf, WatermarkOverlayComponent]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@progress/kendo-angular-layout",
3
- "version": "19.3.0-develop.3",
3
+ "version": "19.3.0-develop.31",
4
4
  "description": "Kendo UI for Angular Layout Package - a collection of components to create professional application layoyts",
5
5
  "license": "SEE LICENSE IN LICENSE.md",
6
6
  "author": "Progress",
@@ -50,7 +50,7 @@
50
50
  "package": {
51
51
  "productName": "Kendo UI for Angular",
52
52
  "productCode": "KENDOUIANGULAR",
53
- "publishDate": 1751984869,
53
+ "publishDate": 1754576557,
54
54
  "licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/?utm_medium=product&utm_source=kendoangular&utm_campaign=kendo-ui-angular-purchase-license-keys-warning"
55
55
  }
56
56
  },
@@ -59,18 +59,18 @@
59
59
  "@angular/common": "16 - 20",
60
60
  "@angular/core": "16 - 20",
61
61
  "@angular/platform-browser": "16 - 20",
62
- "@progress/kendo-licensing": "^1.5.0",
63
- "@progress/kendo-angular-common": "19.3.0-develop.3",
64
- "@progress/kendo-angular-l10n": "19.3.0-develop.3",
65
- "@progress/kendo-angular-progressbar": "19.3.0-develop.3",
66
- "@progress/kendo-angular-icons": "19.3.0-develop.3",
67
- "@progress/kendo-angular-buttons": "19.3.0-develop.3",
68
- "@progress/kendo-angular-intl": "19.3.0-develop.3",
62
+ "@progress/kendo-licensing": "^1.7.0",
63
+ "@progress/kendo-angular-common": "19.3.0-develop.31",
64
+ "@progress/kendo-angular-l10n": "19.3.0-develop.31",
65
+ "@progress/kendo-angular-progressbar": "19.3.0-develop.31",
66
+ "@progress/kendo-angular-icons": "19.3.0-develop.31",
67
+ "@progress/kendo-angular-buttons": "19.3.0-develop.31",
68
+ "@progress/kendo-angular-intl": "19.3.0-develop.31",
69
69
  "rxjs": "^6.5.3 || ^7.0.0"
70
70
  },
71
71
  "dependencies": {
72
72
  "tslib": "^2.3.1",
73
- "@progress/kendo-angular-schematics": "19.3.0-develop.3",
73
+ "@progress/kendo-angular-schematics": "19.3.0-develop.31",
74
74
  "@progress/kendo-draggable": "^3.0.2",
75
75
  "node-html-parser": "^7.0.1"
76
76
  },
@@ -119,6 +119,10 @@ export declare class PanelBarComponent implements AfterViewChecked, OnChanges, O
119
119
  * @hidden
120
120
  */
121
121
  showLicenseWatermark: boolean;
122
+ /**
123
+ * @hidden
124
+ */
125
+ licenseMessage?: string;
122
126
  private allItems;
123
127
  private childrenItems;
124
128
  private isViewInit;
@@ -169,6 +169,10 @@ export declare class TabStripComponent implements AfterViewInit, OnDestroy {
169
169
  * @hidden
170
170
  */
171
171
  showLicenseWatermark: boolean;
172
+ /**
173
+ * @hidden
174
+ */
175
+ licenseMessage?: string;
172
176
  private _height;
173
177
  private _scrollableSettings;
174
178
  private subscriptions;
@@ -203,7 +207,7 @@ export declare class TabStripComponent implements AfterViewInit, OnDestroy {
203
207
  get itemsWrapperClass(): string;
204
208
  /**
205
209
  * Allows you to programmatically select a tab by its index.
206
- * If the tab is disabled, it will not be selected.
210
+ * If the tab is disabled, it will not be selected. The `tabSelect` event will not be fired.
207
211
  * @param {number} index The index of the tab that will be selected.
208
212
  */
209
213
  selectTab(index: number): void;
@@ -109,6 +109,10 @@ export declare class TileLayoutComponent implements OnInit, AfterViewInit, After
109
109
  * @hidden
110
110
  */
111
111
  showLicenseWatermark: boolean;
112
+ /**
113
+ * @hidden
114
+ */
115
+ licenseMessage?: string;
112
116
  private draggable;
113
117
  private subs;
114
118
  private _gap;