@progress/kendo-angular-dialog 16.0.0-develop.2 → 16.0.0-develop.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (49) hide show
  1. package/dialog/dialog-actions.component.d.ts +1 -1
  2. package/dialog/dialog-container.directive.d.ts +1 -1
  3. package/dialog/dialog-content-base.d.ts +1 -1
  4. package/dialog/dialog-titlebar.component.d.ts +1 -1
  5. package/dialog/dialog.component.d.ts +1 -1
  6. package/esm2020/dialog/dialog-actions.component.mjs +4 -4
  7. package/esm2020/dialog/dialog-container.directive.mjs +3 -3
  8. package/esm2020/dialog/dialog-container.service.mjs +3 -3
  9. package/esm2020/dialog/dialog-content-base.mjs +3 -3
  10. package/esm2020/dialog/dialog-titlebar.component.mjs +6 -6
  11. package/esm2020/dialog/dialog.component.mjs +9 -9
  12. package/esm2020/dialog/dialog.service.mjs +3 -3
  13. package/esm2020/dialog.module.mjs +4 -4
  14. package/esm2020/dialogs.module.mjs +4 -4
  15. package/esm2020/localization/custom-messages.component.mjs +3 -3
  16. package/esm2020/localization/localized-messages.directive.mjs +3 -3
  17. package/esm2020/localization/messages.mjs +3 -3
  18. package/esm2020/localization/titlebar-localization.service.mjs +3 -3
  19. package/esm2020/package-metadata.mjs +2 -2
  20. package/esm2020/shared.module.mjs +4 -4
  21. package/esm2020/window/actions/window-close-action.directive.mjs +6 -6
  22. package/esm2020/window/actions/window-maximize-action.directive.mjs +6 -6
  23. package/esm2020/window/actions/window-minimize-action.directive.mjs +6 -6
  24. package/esm2020/window/actions/window-restore-action.directive.mjs +6 -6
  25. package/esm2020/window/drag-resize.service.mjs +3 -3
  26. package/esm2020/window/navigation.service.mjs +3 -3
  27. package/esm2020/window/window-container.directive.mjs +3 -3
  28. package/esm2020/window/window-container.service.mjs +3 -3
  29. package/esm2020/window/window-resize-handle.directive.mjs +3 -3
  30. package/esm2020/window/window-titlebar.component.mjs +4 -4
  31. package/esm2020/window/window.component.mjs +13 -13
  32. package/esm2020/window/window.service.mjs +3 -3
  33. package/esm2020/window.module.mjs +4 -4
  34. package/fesm2015/progress-kendo-angular-dialog.mjs +158 -158
  35. package/fesm2020/progress-kendo-angular-dialog.mjs +158 -158
  36. package/localization/custom-messages.component.d.ts +1 -1
  37. package/localization/localized-messages.directive.d.ts +1 -1
  38. package/localization/messages.d.ts +1 -1
  39. package/package.json +12 -12
  40. package/schematics/ngAdd/index.js +1 -1
  41. package/window/actions/window-close-action.directive.d.ts +1 -1
  42. package/window/actions/window-maximize-action.directive.d.ts +1 -1
  43. package/window/actions/window-minimize-action.directive.d.ts +1 -1
  44. package/window/actions/window-restore-action.directive.d.ts +1 -1
  45. package/window/window-container.directive.d.ts +1 -1
  46. package/window/window-resize-handle.directive.d.ts +1 -1
  47. package/window/window-titlebar.component.d.ts +1 -1
  48. package/window/window.component.d.ts +1 -1
  49. package/progress-kendo-angular-dialog.d.ts +0 -9
@@ -51,9 +51,9 @@ export class ResizeHandleDirective {
51
51
  this.renderer.setStyle(this.el.nativeElement, 'display', this.service.options.state === 'default' ? value : 'none');
52
52
  }
53
53
  }
54
- ResizeHandleDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: ResizeHandleDirective, deps: [{ token: i1.DraggableDirective, host: true }, { token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i2.DragResizeService }], target: i0.ɵɵFactoryTarget.Directive });
55
- ResizeHandleDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.12", type: ResizeHandleDirective, selector: "[kendoWindowResizeHandle]", inputs: { direction: "direction" }, host: { properties: { "class.k-resize-handle": "this.hostClass" } }, ngImport: i0 });
56
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: ResizeHandleDirective, decorators: [{
54
+ ResizeHandleDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: ResizeHandleDirective, deps: [{ token: i1.DraggableDirective, host: true }, { token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i2.DragResizeService }], target: i0.ɵɵFactoryTarget.Directive });
55
+ ResizeHandleDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.0.4", type: ResizeHandleDirective, selector: "[kendoWindowResizeHandle]", inputs: { direction: "direction" }, host: { properties: { "class.k-resize-handle": "this.hostClass" } }, ngImport: i0 });
56
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: ResizeHandleDirective, decorators: [{
57
57
  type: Directive,
58
58
  args: [{
59
59
  selector: '[kendoWindowResizeHandle]'
@@ -106,15 +106,15 @@ export class WindowTitleBarComponent {
106
106
  return options.draggable && options.state !== 'maximized';
107
107
  }
108
108
  }
109
- WindowTitleBarComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: WindowTitleBarComponent, deps: [{ token: i0.ElementRef }, { token: i1.DragResizeService }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
110
- WindowTitleBarComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: WindowTitleBarComponent, selector: "kendo-window-titlebar", inputs: { template: "template", id: "id" }, host: { listeners: { "dblclick": "handle($event)" }, properties: { "class.k-window-titlebar": "this.className", "style.touch-action": "this.touchAction" } }, ngImport: i0, template: `
109
+ WindowTitleBarComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: WindowTitleBarComponent, deps: [{ token: i0.ElementRef }, { token: i1.DragResizeService }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
110
+ WindowTitleBarComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.4", type: WindowTitleBarComponent, selector: "kendo-window-titlebar", inputs: { template: "template", id: "id" }, host: { listeners: { "dblclick": "handle($event)" }, properties: { "class.k-window-titlebar": "this.className", "style.touch-action": "this.touchAction" } }, ngImport: i0, template: `
111
111
  <ng-content *ngIf="!template"></ng-content>
112
112
  <ng-template
113
113
  [ngTemplateOutlet]="template"
114
114
  [ngTemplateOutletContext]="{'$implicit': service}" *ngIf="template">
115
115
  </ng-template>
116
- `, isInline: true, directives: [{ type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i2.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet"] }] });
117
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: WindowTitleBarComponent, decorators: [{
116
+ `, isInline: true, dependencies: [{ kind: "directive", type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i2.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }] });
117
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: WindowTitleBarComponent, decorators: [{
118
118
  type: Component,
119
119
  args: [{
120
120
  selector: 'kendo-window-titlebar',
@@ -18,15 +18,15 @@ import * as i0 from "@angular/core";
18
18
  import * as i1 from "./drag-resize.service";
19
19
  import * as i2 from "./navigation.service";
20
20
  import * as i3 from "@progress/kendo-angular-l10n";
21
- import * as i4 from "./window-titlebar.component";
22
- import * as i5 from "./actions/window-minimize-action.directive";
23
- import * as i6 from "./actions/window-maximize-action.directive";
24
- import * as i7 from "./actions/window-restore-action.directive";
25
- import * as i8 from "./actions/window-close-action.directive";
26
- import * as i9 from "@progress/kendo-angular-common";
27
- import * as i10 from "../localization/localized-messages.directive";
28
- import * as i11 from "@angular/common";
29
- import * as i12 from "./window-resize-handle.directive";
21
+ import * as i4 from "../localization/localized-messages.directive";
22
+ import * as i5 from "@angular/common";
23
+ import * as i6 from "@progress/kendo-angular-common";
24
+ import * as i7 from "./window-resize-handle.directive";
25
+ import * as i8 from "./window-titlebar.component";
26
+ import * as i9 from "./actions/window-close-action.directive";
27
+ import * as i10 from "./actions/window-minimize-action.directive";
28
+ import * as i11 from "./actions/window-maximize-action.directive";
29
+ import * as i12 from "./actions/window-restore-action.directive";
30
30
  /**
31
31
  * Represents the [Kendo UI Window component for Angular]({% slug overview_window_dialogs %}).
32
32
  */
@@ -576,8 +576,8 @@ export class WindowComponent {
576
576
  }
577
577
  }
578
578
  }
579
- WindowComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: WindowComponent, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i1.DragResizeService }, { token: i2.NavigationService }, { token: i0.NgZone }, { token: i3.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
580
- WindowComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: WindowComponent, selector: "kendo-window", inputs: { autoFocusedElement: "autoFocusedElement", title: "title", draggable: "draggable", resizable: "resizable", themeColor: "themeColor", keepContent: "keepContent", state: "state", minWidth: "minWidth", minHeight: "minHeight", width: "width", height: "height", top: "top", left: "left" }, outputs: { dragStart: "dragStart", dragEnd: "dragEnd", resizeStart: "resizeStart", resizeEnd: "resizeEnd", close: "close", widthChange: "widthChange", heightChange: "heightChange", topChange: "topChange", leftChange: "leftChange", stateChange: "stateChange" }, host: { listeners: { "focus": "onComponentFocus()", "blur": "onComponentBlur()" }, properties: { "attr.tabIndex": "this.tabIndex", "attr.role": "this.role", "class.k-window": "this.hostClass", "attr.dir": "this.dir", "style.minWidth": "this.styleMinWidth", "style.minHeight": "this.styleMinHeight", "style.position": "this.stylePosition", "class.k-window-maximized": "this.wrapperMaximizedClass", "class.k-window-minimized": "this.wrapperMinimizedClass" } }, providers: [
579
+ WindowComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: WindowComponent, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i1.DragResizeService }, { token: i2.NavigationService }, { token: i0.NgZone }, { token: i3.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
580
+ WindowComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.0.4", type: WindowComponent, selector: "kendo-window", inputs: { autoFocusedElement: "autoFocusedElement", title: "title", draggable: "draggable", resizable: "resizable", themeColor: "themeColor", keepContent: "keepContent", state: "state", minWidth: "minWidth", minHeight: "minHeight", width: "width", height: "height", top: "top", left: "left" }, outputs: { dragStart: "dragStart", dragEnd: "dragEnd", resizeStart: "resizeStart", resizeEnd: "resizeEnd", close: "close", widthChange: "widthChange", heightChange: "heightChange", topChange: "topChange", leftChange: "leftChange", stateChange: "stateChange" }, host: { listeners: { "focus": "onComponentFocus()", "blur": "onComponentBlur()" }, properties: { "attr.tabIndex": "this.tabIndex", "attr.role": "this.role", "class.k-window": "this.hostClass", "attr.dir": "this.dir", "style.minWidth": "this.styleMinWidth", "style.minHeight": "this.styleMinHeight", "style.position": "this.stylePosition", "class.k-window-maximized": "this.wrapperMaximizedClass", "class.k-window-minimized": "this.wrapperMinimizedClass" } }, providers: [
581
581
  DragResizeService,
582
582
  NavigationService,
583
583
  LocalizationService,
@@ -629,8 +629,8 @@ WindowComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", versio
629
629
  </ng-template>
630
630
 
631
631
  <div kendoWatermarkOverlay *ngIf="showLicenseWatermark"></div>
632
- `, isInline: true, components: [{ type: i4.WindowTitleBarComponent, selector: "kendo-window-titlebar", inputs: ["template", "id"] }, { type: i5.WindowMinimizeActionDirective, selector: "button[kendoWindowMinimizeAction]", inputs: ["window"], exportAs: ["kendoWindowMinimizeAction"] }, { type: i6.WindowMaximizeActionDirective, selector: "button[kendoWindowMaximizeAction]", inputs: ["window"], exportAs: ["kendoWindowMaximizeAction"] }, { type: i7.WindowRestoreActionDirective, selector: "button[kendoWindowRestoreAction]", inputs: ["window"], exportAs: ["kendoWindowRestoreAction"] }, { type: i8.WindowCloseActionDirective, selector: "button[kendoWindowCloseAction]", inputs: ["window"], exportAs: ["kendoWindowCloseAction"] }, { type: i9.WatermarkOverlayComponent, selector: "div[kendoWatermarkOverlay]" }], directives: [{ type: i10.LocalizedMessagesDirective, selector: "\n [kendoDialogLocalizedMessages],\n [kendoWindowLocalizedMessages],\n [kendoDialogTitleBarLocalizedMessages]\n " }, { type: i11.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i11.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet"] }, { type: i11.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { type: i12.ResizeHandleDirective, selector: "[kendoWindowResizeHandle]", inputs: ["direction"] }, { type: i9.DraggableDirective, selector: "[kendoDraggable]", inputs: ["enableDrag"], outputs: ["kendoPress", "kendoDrag", "kendoRelease"] }] });
633
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: WindowComponent, decorators: [{
632
+ `, isInline: true, dependencies: [{ kind: "directive", type: i4.LocalizedMessagesDirective, selector: "\n [kendoDialogLocalizedMessages],\n [kendoWindowLocalizedMessages],\n [kendoDialogTitleBarLocalizedMessages]\n " }, { kind: "directive", type: i5.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i5.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i5.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "directive", type: i6.DraggableDirective, selector: "[kendoDraggable]", inputs: ["enableDrag"], outputs: ["kendoPress", "kendoDrag", "kendoRelease"] }, { kind: "component", type: i6.WatermarkOverlayComponent, selector: "div[kendoWatermarkOverlay]" }, { kind: "directive", type: i7.ResizeHandleDirective, selector: "[kendoWindowResizeHandle]", inputs: ["direction"] }, { kind: "component", type: i8.WindowTitleBarComponent, selector: "kendo-window-titlebar", inputs: ["template", "id"] }, { kind: "component", type: i9.WindowCloseActionDirective, selector: "button[kendoWindowCloseAction]", inputs: ["window"], exportAs: ["kendoWindowCloseAction"] }, { kind: "component", type: i10.WindowMinimizeActionDirective, selector: "button[kendoWindowMinimizeAction]", inputs: ["window"], exportAs: ["kendoWindowMinimizeAction"] }, { kind: "component", type: i11.WindowMaximizeActionDirective, selector: "button[kendoWindowMaximizeAction]", inputs: ["window"], exportAs: ["kendoWindowMaximizeAction"] }, { kind: "component", type: i12.WindowRestoreActionDirective, selector: "button[kendoWindowRestoreAction]", inputs: ["window"], exportAs: ["kendoWindowRestoreAction"] }] });
633
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: WindowComponent, decorators: [{
634
634
  type: Component,
635
635
  args: [{
636
636
  exportAs: 'kendoWindow',
@@ -206,9 +206,9 @@ export class WindowService {
206
206
  };
207
207
  }
208
208
  }
209
- WindowService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: WindowService, deps: [{ token: i0.ComponentFactoryResolver }, { token: WindowContainerService }], target: i0.ɵɵFactoryTarget.Injectable });
210
- WindowService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: WindowService });
211
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: WindowService, decorators: [{
209
+ WindowService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: WindowService, deps: [{ token: i0.ComponentFactoryResolver }, { token: WindowContainerService }], target: i0.ɵɵFactoryTarget.Injectable });
210
+ WindowService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: WindowService });
211
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: WindowService, decorators: [{
212
212
  type: Injectable
213
213
  }], ctorParameters: function () { return [{ type: i0.ComponentFactoryResolver }, { type: i1.WindowContainerService, decorators: [{
214
214
  type: Inject,
@@ -64,8 +64,8 @@ const exportedModules = [
64
64
  */
65
65
  export class WindowModule {
66
66
  }
67
- WindowModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: WindowModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
68
- WindowModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: WindowModule, declarations: [ResizeHandleDirective,
67
+ WindowModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: WindowModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
68
+ WindowModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.0.4", ngImport: i0, type: WindowModule, declarations: [ResizeHandleDirective,
69
69
  WindowComponent,
70
70
  WindowTitleBarComponent,
71
71
  WindowCloseActionDirective,
@@ -77,8 +77,8 @@ WindowModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "
77
77
  WindowMaximizeActionDirective,
78
78
  WindowRestoreActionDirective,
79
79
  WindowTitleBarComponent, i1.DialogActionsComponent, i2.CustomMessagesComponent, i3.LocalizedMessagesDirective, WindowContainerDirective] });
80
- WindowModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: WindowModule, providers: [WindowContainerService, WindowService], imports: [[SharedModule, DraggableModule, WatermarkModule]] });
81
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: WindowModule, decorators: [{
80
+ WindowModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: WindowModule, providers: [WindowContainerService, WindowService], imports: [SharedModule, DraggableModule, WatermarkModule] });
81
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.0.4", ngImport: i0, type: WindowModule, decorators: [{
82
82
  type: NgModule,
83
83
  args: [{
84
84
  declarations: [WINDOW_DIRECTIVES, WindowContainerDirective],