@progress/kendo-angular-dialog 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.
@@ -151,6 +151,10 @@ export declare class DialogComponent implements AfterContentInit, AfterViewInit,
151
151
  * @hidden
152
152
  */
153
153
  showLicenseWatermark: boolean;
154
+ /**
155
+ * @hidden
156
+ */
157
+ licenseMessage?: string;
154
158
  /**
155
159
  * Emits when the user clicks an action button in the Dialog. Fires only if you specify action buttons through the `actions` option.
156
160
  *
@@ -11,7 +11,7 @@ import { LocalizationService, L10N_PREFIX } from '@progress/kendo-angular-l10n';
11
11
  import { validatePackage } from '@progress/kendo-licensing';
12
12
  import { packageMetadata } from '../package-metadata';
13
13
  import { hasClasses, Keys, isPresent, isFocusable, DIALOG_ELEMENTS_HANDLING_ARROWS, DIALOG_ELEMENTS_HANDLING_ESC_KEY, createValueWithUnit, parseCSSClassNames, findPrimaryButton } from '../common/util';
14
- import { focusableSelector, shouldShowValidationUI, setHTMLAttributes } from '@progress/kendo-angular-common';
14
+ import { focusableSelector, shouldShowValidationUI, getLicenseMessage, setHTMLAttributes } from '@progress/kendo-angular-common';
15
15
  import { DialogCloseResult } from './models/dialog-close-result';
16
16
  import { DIALOG_LOCALIZATION_SERVICE } from './../localization/dialog-localization.service';
17
17
  import { take } from 'rxjs/operators';
@@ -182,6 +182,10 @@ export class DialogComponent {
182
182
  * @hidden
183
183
  */
184
184
  showLicenseWatermark = false;
185
+ /**
186
+ * @hidden
187
+ */
188
+ licenseMessage;
185
189
  /**
186
190
  * Emits when the user clicks an action button in the Dialog. Fires only if you specify action buttons through the `actions` option.
187
191
  *
@@ -215,6 +219,7 @@ export class DialogComponent {
215
219
  this.ngZone = ngZone;
216
220
  this.builder = builder;
217
221
  const isValid = validatePackage(packageMetadata);
222
+ this.licenseMessage = getLicenseMessage(packageMetadata);
218
223
  this.showLicenseWatermark = shouldShowValidationUI(isValid);
219
224
  this.direction = localization.rtl ? 'rtl' : 'ltr';
220
225
  this.subscriptions.push(localization.changes.subscribe(({ rtl }) => (this.direction = rtl ? 'rtl' : 'ltr')));
@@ -505,10 +510,10 @@ export class DialogComponent {
505
510
  <ng-content select="kendo-dialog-actions" *ngIf="!actions"></ng-content>
506
511
  <kendo-dialog-actions *ngIf="actions" [actions]="actions" [layout]="actionsLayout"> </kendo-dialog-actions>
507
512
 
508
- <div kendoWatermarkOverlay *ngIf="showLicenseWatermark"></div>
513
+ <div kendoWatermarkOverlay *ngIf="showLicenseWatermark" [licenseMessage]="licenseMessage"></div>
509
514
  </div>
510
515
  </ng-container>
511
- `, isInline: true, dependencies: [{ kind: "directive", type: LocalizedMessagesDirective, selector: "\n [kendoDialogLocalizedMessages],\n [kendoWindowLocalizedMessages],\n [kendoDialogTitleBarLocalizedMessages]\n " }, { kind: "directive", type: NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: DialogTitleBarComponent, selector: "kendo-dialog-titlebar", inputs: ["id", "closeTitle"], outputs: ["close"] }, { kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "component", type: DialogActionsComponent, selector: "kendo-dialog-actions", inputs: ["actions", "layout"], outputs: ["action"] }, { kind: "component", type: WatermarkOverlayComponent, selector: "div[kendoWatermarkOverlay]" }], animations: [
516
+ `, isInline: true, dependencies: [{ kind: "directive", type: LocalizedMessagesDirective, selector: "\n [kendoDialogLocalizedMessages],\n [kendoWindowLocalizedMessages],\n [kendoDialogTitleBarLocalizedMessages]\n " }, { kind: "directive", type: NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: DialogTitleBarComponent, selector: "kendo-dialog-titlebar", inputs: ["id", "closeTitle"], outputs: ["close"] }, { kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "component", type: DialogActionsComponent, selector: "kendo-dialog-actions", inputs: ["actions", "layout"], outputs: ["action"] }, { kind: "component", type: WatermarkOverlayComponent, selector: "div[kendoWatermarkOverlay]", inputs: ["licenseMessage"] }], animations: [
512
517
  trigger('overlayAppear', [
513
518
  state('in', style({ opacity: 1 })),
514
519
  transition('void => *', [style({ opacity: 0.1 }), animate('.3s cubic-bezier(.2, .6, .4, 1)')])
@@ -557,7 +562,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
557
562
  <ng-content select="kendo-dialog-actions" *ngIf="!actions"></ng-content>
558
563
  <kendo-dialog-actions *ngIf="actions" [actions]="actions" [layout]="actionsLayout"> </kendo-dialog-actions>
559
564
 
560
- <div kendoWatermarkOverlay *ngIf="showLicenseWatermark"></div>
565
+ <div kendoWatermarkOverlay *ngIf="showLicenseWatermark" [licenseMessage]="licenseMessage"></div>
561
566
  </div>
562
567
  </ng-container>
563
568
  `,
@@ -10,7 +10,7 @@ export const packageMetadata = {
10
10
  productName: 'Kendo UI for Angular',
11
11
  productCode: 'KENDOUIANGULAR',
12
12
  productCodes: ['KENDOUIANGULAR'],
13
- publishDate: 1751984819,
14
- version: '19.3.0-develop.3',
13
+ publishDate: 1754576509,
14
+ version: '19.3.0-develop.31',
15
15
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
16
16
  };
@@ -4,7 +4,7 @@
4
4
  *-------------------------------------------------------------------------------------------*/
5
5
  import { Component, Input, Output, HostBinding, EventEmitter, ContentChild, ElementRef, Renderer2, ViewChildren, QueryList, HostListener, NgZone, ViewChild } from '@angular/core';
6
6
  import { L10N_PREFIX, LocalizationService } from '@progress/kendo-angular-l10n';
7
- import { isChanged, isDocumentAvailable, shouldShowValidationUI, setHTMLAttributes } from '@progress/kendo-angular-common';
7
+ import { isChanged, isDocumentAvailable, shouldShowValidationUI, getLicenseMessage, setHTMLAttributes } from '@progress/kendo-angular-common';
8
8
  import { validatePackage } from '@progress/kendo-licensing';
9
9
  import { Subscription } from 'rxjs';
10
10
  import { take } from 'rxjs/operators';
@@ -262,6 +262,10 @@ export class WindowComponent {
262
262
  * @hidden
263
263
  */
264
264
  showLicenseWatermark = false;
265
+ /**
266
+ * @hidden
267
+ */
268
+ licenseMessage;
265
269
  tabIndex = 0;
266
270
  role = 'dialog';
267
271
  hostClass = true;
@@ -293,6 +297,7 @@ export class WindowComponent {
293
297
  this.ngZone = ngZone;
294
298
  this.localization = localization;
295
299
  const isValid = validatePackage(packageMetadata);
300
+ this.licenseMessage = getLicenseMessage(packageMetadata);
296
301
  this.showLicenseWatermark = shouldShowValidationUI(isValid);
297
302
  this.direction = this.localization.rtl ? 'rtl' : 'ltr';
298
303
  this.localizationChangeSubscription = this.localization.changes
@@ -642,8 +647,8 @@ export class WindowComponent {
642
647
  </div>
643
648
  </ng-template>
644
649
 
645
- <div kendoWatermarkOverlay *ngIf="showLicenseWatermark"></div>
646
- `, isInline: true, dependencies: [{ kind: "directive", type: LocalizedMessagesDirective, selector: "\n [kendoDialogLocalizedMessages],\n [kendoWindowLocalizedMessages],\n [kendoDialogTitleBarLocalizedMessages]\n " }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: WindowTitleBarComponent, selector: "kendo-window-titlebar", inputs: ["template", "id"] }, { kind: "component", type: WindowMinimizeActionDirective, selector: "button[kendoWindowMinimizeAction]", inputs: ["window"], exportAs: ["kendoWindowMinimizeAction"] }, { kind: "component", type: WindowMaximizeActionDirective, selector: "button[kendoWindowMaximizeAction]", inputs: ["window"], exportAs: ["kendoWindowMaximizeAction"] }, { kind: "component", type: WindowRestoreActionDirective, selector: "button[kendoWindowRestoreAction]", inputs: ["window"], exportAs: ["kendoWindowRestoreAction"] }, { kind: "component", type: WindowCloseActionDirective, selector: "button[kendoWindowCloseAction]", inputs: ["window"], exportAs: ["kendoWindowCloseAction"] }, { kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "directive", type: NgFor, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: ResizeHandleDirective, selector: "[kendoWindowResizeHandle]", inputs: ["direction"] }, { kind: "directive", type: DraggableDirective, selector: "[kendoDraggable]", inputs: ["enableDrag"], outputs: ["kendoPress", "kendoDrag", "kendoRelease"] }, { kind: "component", type: WatermarkOverlayComponent, selector: "div[kendoWatermarkOverlay]" }] });
650
+ <div kendoWatermarkOverlay *ngIf="showLicenseWatermark" [licenseMessage]="licenseMessage"></div>
651
+ `, isInline: true, dependencies: [{ kind: "directive", type: LocalizedMessagesDirective, selector: "\n [kendoDialogLocalizedMessages],\n [kendoWindowLocalizedMessages],\n [kendoDialogTitleBarLocalizedMessages]\n " }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: WindowTitleBarComponent, selector: "kendo-window-titlebar", inputs: ["template", "id"] }, { kind: "component", type: WindowMinimizeActionDirective, selector: "button[kendoWindowMinimizeAction]", inputs: ["window"], exportAs: ["kendoWindowMinimizeAction"] }, { kind: "component", type: WindowMaximizeActionDirective, selector: "button[kendoWindowMaximizeAction]", inputs: ["window"], exportAs: ["kendoWindowMaximizeAction"] }, { kind: "component", type: WindowRestoreActionDirective, selector: "button[kendoWindowRestoreAction]", inputs: ["window"], exportAs: ["kendoWindowRestoreAction"] }, { kind: "component", type: WindowCloseActionDirective, selector: "button[kendoWindowCloseAction]", inputs: ["window"], exportAs: ["kendoWindowCloseAction"] }, { kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "directive", type: NgFor, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: ResizeHandleDirective, selector: "[kendoWindowResizeHandle]", inputs: ["direction"] }, { kind: "directive", type: DraggableDirective, selector: "[kendoDraggable]", inputs: ["enableDrag"], outputs: ["kendoPress", "kendoDrag", "kendoRelease"] }, { kind: "component", type: WatermarkOverlayComponent, selector: "div[kendoWatermarkOverlay]", inputs: ["licenseMessage"] }] });
647
652
  }
648
653
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: WindowComponent, decorators: [{
649
654
  type: Component,
@@ -702,7 +707,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
702
707
  </div>
703
708
  </ng-template>
704
709
 
705
- <div kendoWatermarkOverlay *ngIf="showLicenseWatermark"></div>
710
+ <div kendoWatermarkOverlay *ngIf="showLicenseWatermark" [licenseMessage]="licenseMessage"></div>
706
711
  `,
707
712
  standalone: true,
708
713
  imports: [LocalizedMessagesDirective, NgIf, WindowTitleBarComponent, WindowMinimizeActionDirective, WindowMaximizeActionDirective, WindowRestoreActionDirective, WindowCloseActionDirective, NgTemplateOutlet, NgFor, ResizeHandleDirective, DraggableDirective, WatermarkOverlayComponent]
@@ -16,7 +16,7 @@ import { xIcon, windowRestoreIcon, windowIcon, windowMinimizeIcon } from '@progr
16
16
  import { validatePackage } from '@progress/kendo-licensing';
17
17
  import { of, Subscription, Subject, merge } from 'rxjs';
18
18
  import * as i1$2 from '@progress/kendo-angular-common';
19
- import { setHTMLAttributes, shouldShowValidationUI, isDocumentAvailable, focusableSelector, WatermarkOverlayComponent, DraggableDirective, isChanged } from '@progress/kendo-angular-common';
19
+ import { setHTMLAttributes, getLicenseMessage, shouldShowValidationUI, isDocumentAvailable, focusableSelector, WatermarkOverlayComponent, DraggableDirective, isChanged } from '@progress/kendo-angular-common';
20
20
  import { offset, scrollPosition, positionWithScroll, getDocumentElement, getWindowViewPort } from '@progress/kendo-popup-common';
21
21
  import { IconWrapperComponent, IconsService } from '@progress/kendo-angular-icons';
22
22
 
@@ -498,8 +498,8 @@ const packageMetadata = {
498
498
  productName: 'Kendo UI for Angular',
499
499
  productCode: 'KENDOUIANGULAR',
500
500
  productCodes: ['KENDOUIANGULAR'],
501
- publishDate: 1751984819,
502
- version: '19.3.0-develop.3',
501
+ publishDate: 1754576509,
502
+ version: '19.3.0-develop.31',
503
503
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
504
504
  };
505
505
 
@@ -944,6 +944,10 @@ class DialogComponent {
944
944
  * @hidden
945
945
  */
946
946
  showLicenseWatermark = false;
947
+ /**
948
+ * @hidden
949
+ */
950
+ licenseMessage;
947
951
  /**
948
952
  * Emits when the user clicks an action button in the Dialog. Fires only if you specify action buttons through the `actions` option.
949
953
  *
@@ -977,6 +981,7 @@ class DialogComponent {
977
981
  this.ngZone = ngZone;
978
982
  this.builder = builder;
979
983
  const isValid = validatePackage(packageMetadata);
984
+ this.licenseMessage = getLicenseMessage(packageMetadata);
980
985
  this.showLicenseWatermark = shouldShowValidationUI(isValid);
981
986
  this.direction = localization.rtl ? 'rtl' : 'ltr';
982
987
  this.subscriptions.push(localization.changes.subscribe(({ rtl }) => (this.direction = rtl ? 'rtl' : 'ltr')));
@@ -1267,10 +1272,10 @@ class DialogComponent {
1267
1272
  <ng-content select="kendo-dialog-actions" *ngIf="!actions"></ng-content>
1268
1273
  <kendo-dialog-actions *ngIf="actions" [actions]="actions" [layout]="actionsLayout"> </kendo-dialog-actions>
1269
1274
 
1270
- <div kendoWatermarkOverlay *ngIf="showLicenseWatermark"></div>
1275
+ <div kendoWatermarkOverlay *ngIf="showLicenseWatermark" [licenseMessage]="licenseMessage"></div>
1271
1276
  </div>
1272
1277
  </ng-container>
1273
- `, isInline: true, dependencies: [{ kind: "directive", type: LocalizedMessagesDirective, selector: "\n [kendoDialogLocalizedMessages],\n [kendoWindowLocalizedMessages],\n [kendoDialogTitleBarLocalizedMessages]\n " }, { kind: "directive", type: NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: DialogTitleBarComponent, selector: "kendo-dialog-titlebar", inputs: ["id", "closeTitle"], outputs: ["close"] }, { kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "component", type: DialogActionsComponent, selector: "kendo-dialog-actions", inputs: ["actions", "layout"], outputs: ["action"] }, { kind: "component", type: WatermarkOverlayComponent, selector: "div[kendoWatermarkOverlay]" }], animations: [
1278
+ `, isInline: true, dependencies: [{ kind: "directive", type: LocalizedMessagesDirective, selector: "\n [kendoDialogLocalizedMessages],\n [kendoWindowLocalizedMessages],\n [kendoDialogTitleBarLocalizedMessages]\n " }, { kind: "directive", type: NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: DialogTitleBarComponent, selector: "kendo-dialog-titlebar", inputs: ["id", "closeTitle"], outputs: ["close"] }, { kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "component", type: DialogActionsComponent, selector: "kendo-dialog-actions", inputs: ["actions", "layout"], outputs: ["action"] }, { kind: "component", type: WatermarkOverlayComponent, selector: "div[kendoWatermarkOverlay]", inputs: ["licenseMessage"] }], animations: [
1274
1279
  trigger('overlayAppear', [
1275
1280
  state('in', style({ opacity: 1 })),
1276
1281
  transition('void => *', [style({ opacity: 0.1 }), animate('.3s cubic-bezier(.2, .6, .4, 1)')])
@@ -1319,7 +1324,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
1319
1324
  <ng-content select="kendo-dialog-actions" *ngIf="!actions"></ng-content>
1320
1325
  <kendo-dialog-actions *ngIf="actions" [actions]="actions" [layout]="actionsLayout"> </kendo-dialog-actions>
1321
1326
 
1322
- <div kendoWatermarkOverlay *ngIf="showLicenseWatermark"></div>
1327
+ <div kendoWatermarkOverlay *ngIf="showLicenseWatermark" [licenseMessage]="licenseMessage"></div>
1323
1328
  </div>
1324
1329
  </ng-container>
1325
1330
  `,
@@ -3138,6 +3143,10 @@ class WindowComponent {
3138
3143
  * @hidden
3139
3144
  */
3140
3145
  showLicenseWatermark = false;
3146
+ /**
3147
+ * @hidden
3148
+ */
3149
+ licenseMessage;
3141
3150
  tabIndex = 0;
3142
3151
  role = 'dialog';
3143
3152
  hostClass = true;
@@ -3169,6 +3178,7 @@ class WindowComponent {
3169
3178
  this.ngZone = ngZone;
3170
3179
  this.localization = localization;
3171
3180
  const isValid = validatePackage(packageMetadata);
3181
+ this.licenseMessage = getLicenseMessage(packageMetadata);
3172
3182
  this.showLicenseWatermark = shouldShowValidationUI(isValid);
3173
3183
  this.direction = this.localization.rtl ? 'rtl' : 'ltr';
3174
3184
  this.localizationChangeSubscription = this.localization.changes
@@ -3518,8 +3528,8 @@ class WindowComponent {
3518
3528
  </div>
3519
3529
  </ng-template>
3520
3530
 
3521
- <div kendoWatermarkOverlay *ngIf="showLicenseWatermark"></div>
3522
- `, isInline: true, dependencies: [{ kind: "directive", type: LocalizedMessagesDirective, selector: "\n [kendoDialogLocalizedMessages],\n [kendoWindowLocalizedMessages],\n [kendoDialogTitleBarLocalizedMessages]\n " }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: WindowTitleBarComponent, selector: "kendo-window-titlebar", inputs: ["template", "id"] }, { kind: "component", type: WindowMinimizeActionDirective, selector: "button[kendoWindowMinimizeAction]", inputs: ["window"], exportAs: ["kendoWindowMinimizeAction"] }, { kind: "component", type: WindowMaximizeActionDirective, selector: "button[kendoWindowMaximizeAction]", inputs: ["window"], exportAs: ["kendoWindowMaximizeAction"] }, { kind: "component", type: WindowRestoreActionDirective, selector: "button[kendoWindowRestoreAction]", inputs: ["window"], exportAs: ["kendoWindowRestoreAction"] }, { kind: "component", type: WindowCloseActionDirective, selector: "button[kendoWindowCloseAction]", inputs: ["window"], exportAs: ["kendoWindowCloseAction"] }, { kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "directive", type: NgFor, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: ResizeHandleDirective, selector: "[kendoWindowResizeHandle]", inputs: ["direction"] }, { kind: "directive", type: DraggableDirective, selector: "[kendoDraggable]", inputs: ["enableDrag"], outputs: ["kendoPress", "kendoDrag", "kendoRelease"] }, { kind: "component", type: WatermarkOverlayComponent, selector: "div[kendoWatermarkOverlay]" }] });
3531
+ <div kendoWatermarkOverlay *ngIf="showLicenseWatermark" [licenseMessage]="licenseMessage"></div>
3532
+ `, isInline: true, dependencies: [{ kind: "directive", type: LocalizedMessagesDirective, selector: "\n [kendoDialogLocalizedMessages],\n [kendoWindowLocalizedMessages],\n [kendoDialogTitleBarLocalizedMessages]\n " }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: WindowTitleBarComponent, selector: "kendo-window-titlebar", inputs: ["template", "id"] }, { kind: "component", type: WindowMinimizeActionDirective, selector: "button[kendoWindowMinimizeAction]", inputs: ["window"], exportAs: ["kendoWindowMinimizeAction"] }, { kind: "component", type: WindowMaximizeActionDirective, selector: "button[kendoWindowMaximizeAction]", inputs: ["window"], exportAs: ["kendoWindowMaximizeAction"] }, { kind: "component", type: WindowRestoreActionDirective, selector: "button[kendoWindowRestoreAction]", inputs: ["window"], exportAs: ["kendoWindowRestoreAction"] }, { kind: "component", type: WindowCloseActionDirective, selector: "button[kendoWindowCloseAction]", inputs: ["window"], exportAs: ["kendoWindowCloseAction"] }, { kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "directive", type: NgFor, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: ResizeHandleDirective, selector: "[kendoWindowResizeHandle]", inputs: ["direction"] }, { kind: "directive", type: DraggableDirective, selector: "[kendoDraggable]", inputs: ["enableDrag"], outputs: ["kendoPress", "kendoDrag", "kendoRelease"] }, { kind: "component", type: WatermarkOverlayComponent, selector: "div[kendoWatermarkOverlay]", inputs: ["licenseMessage"] }] });
3523
3533
  }
3524
3534
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: WindowComponent, decorators: [{
3525
3535
  type: Component,
@@ -3578,7 +3588,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
3578
3588
  </div>
3579
3589
  </ng-template>
3580
3590
 
3581
- <div kendoWatermarkOverlay *ngIf="showLicenseWatermark"></div>
3591
+ <div kendoWatermarkOverlay *ngIf="showLicenseWatermark" [licenseMessage]="licenseMessage"></div>
3582
3592
  `,
3583
3593
  standalone: true,
3584
3594
  imports: [LocalizedMessagesDirective, NgIf, WindowTitleBarComponent, WindowMinimizeActionDirective, WindowMaximizeActionDirective, WindowRestoreActionDirective, WindowCloseActionDirective, NgTemplateOutlet, NgFor, ResizeHandleDirective, DraggableDirective, WatermarkOverlayComponent]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@progress/kendo-angular-dialog",
3
- "version": "19.3.0-develop.3",
3
+ "version": "19.3.0-develop.31",
4
4
  "description": "Dialog Package for Angular",
5
5
  "license": "SEE LICENSE IN LICENSE.md",
6
6
  "author": "Progress",
@@ -23,7 +23,7 @@
23
23
  "package": {
24
24
  "productName": "Kendo UI for Angular",
25
25
  "productCode": "KENDOUIANGULAR",
26
- "publishDate": 1751984819,
26
+ "publishDate": 1754576509,
27
27
  "licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
28
28
  }
29
29
  },
@@ -32,16 +32,16 @@
32
32
  "@angular/common": "16 - 20",
33
33
  "@angular/core": "16 - 20",
34
34
  "@angular/platform-browser": "16 - 20",
35
- "@progress/kendo-licensing": "^1.5.0",
36
- "@progress/kendo-angular-buttons": "19.3.0-develop.3",
37
- "@progress/kendo-angular-common": "19.3.0-develop.3",
38
- "@progress/kendo-angular-icons": "19.3.0-develop.3",
39
- "@progress/kendo-angular-l10n": "19.3.0-develop.3",
35
+ "@progress/kendo-licensing": "^1.7.0",
36
+ "@progress/kendo-angular-buttons": "19.3.0-develop.31",
37
+ "@progress/kendo-angular-common": "19.3.0-develop.31",
38
+ "@progress/kendo-angular-icons": "19.3.0-develop.31",
39
+ "@progress/kendo-angular-l10n": "19.3.0-develop.31",
40
40
  "rxjs": "^6.5.3 || ^7.0.0"
41
41
  },
42
42
  "dependencies": {
43
43
  "tslib": "^2.3.1",
44
- "@progress/kendo-angular-schematics": "19.3.0-develop.3",
44
+ "@progress/kendo-angular-schematics": "19.3.0-develop.31",
45
45
  "@progress/kendo-popup-common": "^1.7.0"
46
46
  },
47
47
  "schematics": "./schematics/collection.json",
@@ -4,7 +4,7 @@ const schematics_1 = require("@angular-devkit/schematics");
4
4
  function default_1(options) {
5
5
  const finalOptions = Object.assign(Object.assign({}, options), { mainNgModule: 'DialogsModule', package: 'dialog', peerDependencies: {
6
6
  // Peer dependency of buttons
7
- '@progress/kendo-angular-popup': '19.3.0-develop.3',
7
+ '@progress/kendo-angular-popup': '19.3.0-develop.31',
8
8
  // Peer dependency of icons
9
9
  '@progress/kendo-svg-icons': '^4.0.0'
10
10
  } });
@@ -172,6 +172,10 @@ export declare class WindowComponent implements OnInit, OnDestroy, OnChanges, Af
172
172
  * @hidden
173
173
  */
174
174
  showLicenseWatermark: boolean;
175
+ /**
176
+ * @hidden
177
+ */
178
+ licenseMessage?: string;
175
179
  tabIndex: number;
176
180
  role: string;
177
181
  hostClass: boolean;