@progress/kendo-angular-dialog 20.1.2-develop.1 → 21.0.0-develop.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm2022/dialog/dialog-actions.component.mjs +4 -4
- package/esm2022/dialog/dialog-container.directive.mjs +4 -4
- package/esm2022/dialog/dialog-container.service.mjs +3 -3
- package/esm2022/dialog/dialog-content-base.mjs +4 -4
- package/esm2022/dialog/dialog-titlebar.component.mjs +5 -5
- package/esm2022/dialog/dialog.component.mjs +4 -4
- package/esm2022/dialog/dialog.service.mjs +7 -7
- package/esm2022/dialog.module.mjs +4 -4
- package/esm2022/dialogs.module.mjs +4 -4
- package/esm2022/localization/custom-messages.component.mjs +4 -4
- package/esm2022/localization/localized-messages.directive.mjs +4 -4
- package/esm2022/localization/messages.mjs +3 -3
- package/esm2022/localization/titlebar-localization.service.mjs +5 -5
- package/esm2022/package-metadata.mjs +2 -2
- package/esm2022/window/actions/window-close-action.directive.mjs +5 -5
- package/esm2022/window/actions/window-maximize-action.directive.mjs +5 -5
- package/esm2022/window/actions/window-minimize-action.directive.mjs +5 -5
- package/esm2022/window/actions/window-restore-action.directive.mjs +5 -5
- package/esm2022/window/drag-resize.service.mjs +4 -4
- package/esm2022/window/navigation.service.mjs +4 -4
- package/esm2022/window/window-container.directive.mjs +4 -4
- package/esm2022/window/window-container.service.mjs +3 -3
- package/esm2022/window/window-resize-handle.directive.mjs +5 -5
- package/esm2022/window/window-titlebar.component.mjs +4 -4
- package/esm2022/window/window.component.mjs +4 -4
- package/esm2022/window/window.service.mjs +6 -6
- package/esm2022/window.module.mjs +4 -4
- package/fesm2022/progress-kendo-angular-dialog.mjs +115 -115
- package/package.json +11 -11
- package/schematics/ngAdd/index.js +2 -2
|
@@ -95,8 +95,8 @@ class DialogActionsComponent {
|
|
|
95
95
|
isDivider(action) {
|
|
96
96
|
return action === 'spacer';
|
|
97
97
|
}
|
|
98
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
99
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
98
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: DialogActionsComponent, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Component });
|
|
99
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: DialogActionsComponent, isStandalone: true, selector: "kendo-dialog-actions", inputs: { actions: "actions", layout: "layout" }, outputs: { action: "action" }, host: { properties: { "class.k-actions": "this.hostClasses", "class.k-actions-horizontal": "this.hostClasses", "class.k-window-actions": "this.hostClasses", "class.k-dialog-actions": "this.hostClasses", "class.k-actions-start": "this.startClassName", "class.k-actions-center": "this.centerClassName", "class.k-actions-end": "this.endClassName", "class.k-actions-stretched": "this.stretchedClassName" } }, ngImport: i0, template: `
|
|
100
100
|
<ng-content *ngIf="!actions"></ng-content>
|
|
101
101
|
<ng-container *ngIf="actionsArray; else actionTemplate">
|
|
102
102
|
<ng-container *ngFor="let action of actionsArray">
|
|
@@ -124,7 +124,7 @@ class DialogActionsComponent {
|
|
|
124
124
|
<ng-template #actionTemplate [ngTemplateOutlet]="actionsTemplate"></ng-template>
|
|
125
125
|
`, 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: "directive", type: NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "component", type: i1.ButtonComponent, selector: "button[kendoButton]", inputs: ["arrowIcon", "toggleable", "togglable", "selected", "tabIndex", "imageUrl", "iconClass", "icon", "disabled", "size", "rounded", "fillMode", "themeColor", "svgIcon", "primary", "look"], outputs: ["selectedChange", "click"], exportAs: ["kendoButton"] }] });
|
|
126
126
|
}
|
|
127
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
127
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: DialogActionsComponent, decorators: [{
|
|
128
128
|
type: Component,
|
|
129
129
|
args: [{
|
|
130
130
|
selector: 'kendo-dialog-actions',
|
|
@@ -158,7 +158,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
158
158
|
standalone: true,
|
|
159
159
|
imports: [NgIf, NgFor, NgClass, NgTemplateOutlet, KENDO_BUTTON]
|
|
160
160
|
}]
|
|
161
|
-
}], ctorParameters:
|
|
161
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { actions: [{
|
|
162
162
|
type: Input
|
|
163
163
|
}], layout: [{
|
|
164
164
|
type: Input
|
|
@@ -237,12 +237,12 @@ class TitleBarLocalizationService extends LocalizationService {
|
|
|
237
237
|
}
|
|
238
238
|
return super.get(shortKey);
|
|
239
239
|
}
|
|
240
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
241
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
240
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: TitleBarLocalizationService, deps: [{ token: L10N_PREFIX }, { token: i1$1.MessageService, optional: true }, { token: RTL, optional: true }, { token: DIALOG_LOCALIZATION_SERVICE, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
241
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: TitleBarLocalizationService });
|
|
242
242
|
}
|
|
243
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
243
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: TitleBarLocalizationService, decorators: [{
|
|
244
244
|
type: Injectable
|
|
245
|
-
}], ctorParameters:
|
|
245
|
+
}], ctorParameters: () => [{ type: undefined, decorators: [{
|
|
246
246
|
type: Inject,
|
|
247
247
|
args: [L10N_PREFIX]
|
|
248
248
|
}] }, { type: i1$1.MessageService, decorators: [{
|
|
@@ -257,7 +257,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
257
257
|
}, {
|
|
258
258
|
type: Inject,
|
|
259
259
|
args: [DIALOG_LOCALIZATION_SERVICE]
|
|
260
|
-
}] }]
|
|
260
|
+
}] }] });
|
|
261
261
|
|
|
262
262
|
/**
|
|
263
263
|
* @hidden
|
|
@@ -279,10 +279,10 @@ class Messages extends ComponentMessages {
|
|
|
279
279
|
* Sets the title for the **Minimize** button.
|
|
280
280
|
*/
|
|
281
281
|
minimizeTitle;
|
|
282
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
283
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
282
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: Messages, deps: null, target: i0.ɵɵFactoryTarget.Directive });
|
|
283
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: Messages, selector: "kendo-dialog-messages-base", inputs: { closeTitle: "closeTitle", restoreTitle: "restoreTitle", maximizeTitle: "maximizeTitle", minimizeTitle: "minimizeTitle" }, usesInheritance: true, ngImport: i0 });
|
|
284
284
|
}
|
|
285
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
285
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: Messages, decorators: [{
|
|
286
286
|
type: Directive,
|
|
287
287
|
args: [{
|
|
288
288
|
// eslint-disable-next-line @angular-eslint/directive-selector
|
|
@@ -307,15 +307,15 @@ class LocalizedMessagesDirective extends Messages {
|
|
|
307
307
|
super();
|
|
308
308
|
this.service = service;
|
|
309
309
|
}
|
|
310
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
311
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
310
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: LocalizedMessagesDirective, deps: [{ token: i1$1.LocalizationService }], target: i0.ɵɵFactoryTarget.Directive });
|
|
311
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: LocalizedMessagesDirective, isStandalone: true, selector: "\n [kendoDialogLocalizedMessages],\n [kendoWindowLocalizedMessages],\n [kendoDialogTitleBarLocalizedMessages]\n ", providers: [
|
|
312
312
|
{
|
|
313
313
|
provide: Messages,
|
|
314
314
|
useExisting: forwardRef(() => LocalizedMessagesDirective)
|
|
315
315
|
}
|
|
316
316
|
], usesInheritance: true, ngImport: i0 });
|
|
317
317
|
}
|
|
318
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
318
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: LocalizedMessagesDirective, decorators: [{
|
|
319
319
|
type: Directive,
|
|
320
320
|
args: [{
|
|
321
321
|
providers: [
|
|
@@ -331,7 +331,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
331
331
|
`,
|
|
332
332
|
standalone: true
|
|
333
333
|
}]
|
|
334
|
-
}], ctorParameters:
|
|
334
|
+
}], ctorParameters: () => [{ type: i1$1.LocalizationService }] });
|
|
335
335
|
|
|
336
336
|
/**
|
|
337
337
|
* Represents the [Kendo UI DialogTitleBar component for Angular]({% slug api_dialog_dialogtitlebarcomponent %}).
|
|
@@ -392,8 +392,8 @@ class DialogTitleBarComponent {
|
|
|
392
392
|
const eventArgs = new PreventableEvent();
|
|
393
393
|
this.close.emit(eventArgs);
|
|
394
394
|
}
|
|
395
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
396
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
395
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: DialogTitleBarComponent, deps: [{ token: i0.NgZone }, { token: i0.ElementRef }, { token: i1$1.LocalizationService, optional: true }], target: i0.ɵɵFactoryTarget.Component });
|
|
396
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: DialogTitleBarComponent, isStandalone: true, selector: "kendo-dialog-titlebar", inputs: { id: "id", closeTitle: "closeTitle" }, outputs: { close: "close" }, host: { properties: { "class.k-window-titlebar": "this.className", "class.k-dialog-titlebar": "this.className" } }, providers: [
|
|
397
397
|
TitleBarLocalizationService,
|
|
398
398
|
{
|
|
399
399
|
provide: LocalizationService,
|
|
@@ -430,7 +430,7 @@ class DialogTitleBarComponent {
|
|
|
430
430
|
</ng-container>
|
|
431
431
|
`, isInline: true, dependencies: [{ kind: "directive", type: LocalizedMessagesDirective, selector: "\n [kendoDialogLocalizedMessages],\n [kendoWindowLocalizedMessages],\n [kendoDialogTitleBarLocalizedMessages]\n " }, { kind: "component", type: ButtonComponent, selector: "button[kendoButton]", inputs: ["arrowIcon", "toggleable", "togglable", "selected", "tabIndex", "imageUrl", "iconClass", "icon", "disabled", "size", "rounded", "fillMode", "themeColor", "svgIcon", "primary", "look"], outputs: ["selectedChange", "click"], exportAs: ["kendoButton"] }] });
|
|
432
432
|
}
|
|
433
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
433
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: DialogTitleBarComponent, decorators: [{
|
|
434
434
|
type: Component,
|
|
435
435
|
args: [{
|
|
436
436
|
selector: 'kendo-dialog-titlebar',
|
|
@@ -474,9 +474,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
474
474
|
standalone: true,
|
|
475
475
|
imports: [LocalizedMessagesDirective, ButtonComponent]
|
|
476
476
|
}]
|
|
477
|
-
}], ctorParameters:
|
|
477
|
+
}], ctorParameters: () => [{ type: i0.NgZone }, { type: i0.ElementRef }, { type: i1$1.LocalizationService, decorators: [{
|
|
478
478
|
type: Optional
|
|
479
|
-
}] }]
|
|
479
|
+
}] }], propDecorators: { close: [{
|
|
480
480
|
type: Output
|
|
481
481
|
}], id: [{
|
|
482
482
|
type: Input
|
|
@@ -498,8 +498,8 @@ const packageMetadata = {
|
|
|
498
498
|
productName: 'Kendo UI for Angular',
|
|
499
499
|
productCode: 'KENDOUIANGULAR',
|
|
500
500
|
productCodes: ['KENDOUIANGULAR'],
|
|
501
|
-
publishDate:
|
|
502
|
-
version: '
|
|
501
|
+
publishDate: 1761752710,
|
|
502
|
+
version: '21.0.0-develop.2',
|
|
503
503
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
504
504
|
};
|
|
505
505
|
|
|
@@ -1226,8 +1226,8 @@ class DialogComponent {
|
|
|
1226
1226
|
}
|
|
1227
1227
|
});
|
|
1228
1228
|
}
|
|
1229
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1230
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1229
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: DialogComponent, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i1$1.LocalizationService }, { token: i0.ChangeDetectorRef }, { token: i0.NgZone }, { token: i2.AnimationBuilder }], target: i0.ɵɵFactoryTarget.Component });
|
|
1230
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: DialogComponent, isStandalone: true, selector: "kendo-dialog", inputs: { actions: "actions", actionsLayout: "actionsLayout", autoFocusedElement: "autoFocusedElement", title: "title", width: "width", minWidth: "minWidth", maxWidth: "maxWidth", height: "height", minHeight: "minHeight", maxHeight: "maxHeight", animation: "animation", themeColor: "themeColor" }, outputs: { action: "action", close: "close" }, host: { properties: { "attr.dir": "this.dir", "attr.tabIndex": "this.tabIndex", "class.k-dialog-wrapper": "this.wrapperClass" } }, providers: [
|
|
1231
1231
|
LocalizationService,
|
|
1232
1232
|
{
|
|
1233
1233
|
provide: DIALOG_LOCALIZATION_SERVICE,
|
|
@@ -1267,7 +1267,7 @@ class DialogComponent {
|
|
|
1267
1267
|
])
|
|
1268
1268
|
] });
|
|
1269
1269
|
}
|
|
1270
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1270
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: DialogComponent, decorators: [{
|
|
1271
1271
|
type: Component,
|
|
1272
1272
|
args: [{
|
|
1273
1273
|
animations: [
|
|
@@ -1316,7 +1316,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1316
1316
|
standalone: true,
|
|
1317
1317
|
imports: [LocalizedMessagesDirective, NgStyle, NgIf, DialogTitleBarComponent, NgTemplateOutlet, DialogActionsComponent, WatermarkOverlayComponent]
|
|
1318
1318
|
}]
|
|
1319
|
-
}], ctorParameters:
|
|
1319
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i1$1.LocalizationService }, { type: i0.ChangeDetectorRef }, { type: i0.NgZone }, { type: i2.AnimationBuilder }], propDecorators: { actions: [{
|
|
1320
1320
|
type: Input
|
|
1321
1321
|
}], actionsLayout: [{
|
|
1322
1322
|
type: Input
|
|
@@ -1437,12 +1437,12 @@ class DialogContentBase {
|
|
|
1437
1437
|
}
|
|
1438
1438
|
}
|
|
1439
1439
|
}
|
|
1440
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1441
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
1440
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: DialogContentBase, deps: [{ token: DialogRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
1441
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: DialogContentBase, viewQueries: [{ propertyName: "dialogTitleBar", first: true, predicate: DialogTitleBarComponent, descendants: true }, { propertyName: "dialogActions", first: true, predicate: DialogActionsComponent, descendants: true }], ngImport: i0 });
|
|
1442
1442
|
}
|
|
1443
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1443
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: DialogContentBase, decorators: [{
|
|
1444
1444
|
type: Directive
|
|
1445
|
-
}], ctorParameters:
|
|
1445
|
+
}], ctorParameters: () => [{ type: DialogRef }], propDecorators: { dialogTitleBar: [{
|
|
1446
1446
|
type: ViewChild,
|
|
1447
1447
|
args: [DialogTitleBarComponent, { static: false }]
|
|
1448
1448
|
}], dialogActions: [{
|
|
@@ -1461,10 +1461,10 @@ class DialogContainerService {
|
|
|
1461
1461
|
get container() {
|
|
1462
1462
|
return DialogContainerService.container;
|
|
1463
1463
|
}
|
|
1464
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1465
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
1464
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: DialogContainerService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
1465
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: DialogContainerService, providedIn: 'root' });
|
|
1466
1466
|
}
|
|
1467
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1467
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: DialogContainerService, decorators: [{
|
|
1468
1468
|
type: Injectable,
|
|
1469
1469
|
args: [{
|
|
1470
1470
|
providedIn: 'root'
|
|
@@ -1776,24 +1776,24 @@ See https://www.telerik.com/kendo-angular-ui/components/dialogs/dialog/service/.
|
|
|
1776
1776
|
return {
|
|
1777
1777
|
componentRef,
|
|
1778
1778
|
nodes: [
|
|
1779
|
-
titleNodes,
|
|
1780
|
-
nodes,
|
|
1779
|
+
titleNodes, // <ng-content select="kendo-dialog-titlebar">
|
|
1780
|
+
nodes, // <ng-content>
|
|
1781
1781
|
actionNodes // <ng-content select="kendo-dialog-actions">
|
|
1782
1782
|
]
|
|
1783
1783
|
};
|
|
1784
1784
|
}
|
|
1785
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1786
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
1785
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: DialogService, deps: [{ token: i0.ComponentFactoryResolver }, { token: DialogContainerService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
1786
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: DialogService, providedIn: 'root' });
|
|
1787
1787
|
}
|
|
1788
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1788
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: DialogService, decorators: [{
|
|
1789
1789
|
type: Injectable,
|
|
1790
1790
|
args: [{
|
|
1791
1791
|
providedIn: 'root'
|
|
1792
1792
|
}]
|
|
1793
|
-
}], ctorParameters:
|
|
1793
|
+
}], ctorParameters: () => [{ type: i0.ComponentFactoryResolver }, { type: DialogContainerService, decorators: [{
|
|
1794
1794
|
type: Inject,
|
|
1795
1795
|
args: [DialogContainerService]
|
|
1796
|
-
}] }]
|
|
1796
|
+
}] }] });
|
|
1797
1797
|
|
|
1798
1798
|
/**
|
|
1799
1799
|
* @hidden
|
|
@@ -2114,12 +2114,12 @@ class DragResizeService {
|
|
|
2114
2114
|
get windowViewPort() {
|
|
2115
2115
|
return getWindowViewPort(this.window.nativeElement);
|
|
2116
2116
|
}
|
|
2117
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2118
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
2117
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: DragResizeService, deps: [{ token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
2118
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: DragResizeService });
|
|
2119
2119
|
}
|
|
2120
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2120
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: DragResizeService, decorators: [{
|
|
2121
2121
|
type: Injectable
|
|
2122
|
-
}], ctorParameters:
|
|
2122
|
+
}], ctorParameters: () => [{ type: i0.NgZone }] });
|
|
2123
2123
|
|
|
2124
2124
|
/**
|
|
2125
2125
|
* @hidden
|
|
@@ -2167,18 +2167,18 @@ class ResizeHandleDirective {
|
|
|
2167
2167
|
setDisplay(value = 'block') {
|
|
2168
2168
|
this.renderer.setStyle(this.el.nativeElement, 'display', this.service.options.state === 'default' ? value : 'none');
|
|
2169
2169
|
}
|
|
2170
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2171
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
2170
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: ResizeHandleDirective, deps: [{ token: i1$2.DraggableDirective, host: true }, { token: i0.ElementRef }, { token: i0.Renderer2 }, { token: DragResizeService }], target: i0.ɵɵFactoryTarget.Directive });
|
|
2171
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: ResizeHandleDirective, isStandalone: true, selector: "[kendoWindowResizeHandle]", inputs: { direction: "direction" }, host: { properties: { "class.k-resize-handle": "this.hostClass" } }, ngImport: i0 });
|
|
2172
2172
|
}
|
|
2173
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2173
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: ResizeHandleDirective, decorators: [{
|
|
2174
2174
|
type: Directive,
|
|
2175
2175
|
args: [{
|
|
2176
2176
|
selector: '[kendoWindowResizeHandle]',
|
|
2177
2177
|
standalone: true
|
|
2178
2178
|
}]
|
|
2179
|
-
}], ctorParameters:
|
|
2179
|
+
}], ctorParameters: () => [{ type: i1$2.DraggableDirective, decorators: [{
|
|
2180
2180
|
type: Host
|
|
2181
|
-
}] }, { type: i0.ElementRef }, { type: i0.Renderer2 }, { type: DragResizeService }]
|
|
2181
|
+
}] }, { type: i0.ElementRef }, { type: i0.Renderer2 }, { type: DragResizeService }], propDecorators: { direction: [{
|
|
2182
2182
|
type: Input
|
|
2183
2183
|
}], hostClass: [{
|
|
2184
2184
|
type: HostBinding,
|
|
@@ -2301,8 +2301,8 @@ class WindowTitleBarComponent {
|
|
|
2301
2301
|
const options = this.service.options;
|
|
2302
2302
|
return options.draggable && options.state !== 'maximized';
|
|
2303
2303
|
}
|
|
2304
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2305
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
2304
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: WindowTitleBarComponent, deps: [{ token: i0.ElementRef }, { token: DragResizeService }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2305
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: WindowTitleBarComponent, isStandalone: true, 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: `
|
|
2306
2306
|
<ng-content *ngIf="!template"></ng-content>
|
|
2307
2307
|
<ng-template
|
|
2308
2308
|
[ngTemplateOutlet]="template"
|
|
@@ -2310,7 +2310,7 @@ class WindowTitleBarComponent {
|
|
|
2310
2310
|
</ng-template>
|
|
2311
2311
|
`, isInline: true, dependencies: [{ kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }] });
|
|
2312
2312
|
}
|
|
2313
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2313
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: WindowTitleBarComponent, decorators: [{
|
|
2314
2314
|
type: Component,
|
|
2315
2315
|
args: [{
|
|
2316
2316
|
selector: 'kendo-window-titlebar',
|
|
@@ -2324,7 +2324,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
2324
2324
|
standalone: true,
|
|
2325
2325
|
imports: [NgIf, NgTemplateOutlet]
|
|
2326
2326
|
}]
|
|
2327
|
-
}], ctorParameters:
|
|
2327
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }, { type: DragResizeService }, { type: i0.NgZone }], propDecorators: { template: [{
|
|
2328
2328
|
type: Input
|
|
2329
2329
|
}], id: [{
|
|
2330
2330
|
type: Input
|
|
@@ -2483,12 +2483,12 @@ class NavigationService {
|
|
|
2483
2483
|
}
|
|
2484
2484
|
}
|
|
2485
2485
|
}
|
|
2486
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2487
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
2486
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: NavigationService, deps: [{ token: DragResizeService }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
2487
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: NavigationService });
|
|
2488
2488
|
}
|
|
2489
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2489
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: NavigationService, decorators: [{
|
|
2490
2490
|
type: Injectable
|
|
2491
|
-
}], ctorParameters:
|
|
2491
|
+
}], ctorParameters: () => [{ type: DragResizeService }, { type: i0.NgZone }] });
|
|
2492
2492
|
|
|
2493
2493
|
/**
|
|
2494
2494
|
* Represents the close action directive of the Window component.
|
|
@@ -2522,8 +2522,8 @@ class WindowCloseActionDirective extends Button {
|
|
|
2522
2522
|
this.window.closeAction();
|
|
2523
2523
|
}
|
|
2524
2524
|
}
|
|
2525
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2526
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
2525
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: WindowCloseActionDirective, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: DragResizeService, optional: true }, { token: i1$1.LocalizationService }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2526
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: WindowCloseActionDirective, isStandalone: true, selector: "button[kendoWindowCloseAction]", inputs: { window: "window" }, host: { listeners: { "click": "onClick()" }, properties: { "attr.type": "this.buttonType", "class.k-window-titlebar-action": "this.buttonClass" } }, providers: [
|
|
2527
2527
|
LocalizationService,
|
|
2528
2528
|
{
|
|
2529
2529
|
provide: L10N_PREFIX,
|
|
@@ -2543,7 +2543,7 @@ class WindowCloseActionDirective extends Button {
|
|
|
2543
2543
|
<span class="k-button-text"><ng-content></ng-content></span>
|
|
2544
2544
|
`, isInline: true, dependencies: [{ kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }, { kind: "directive", type: NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }] });
|
|
2545
2545
|
}
|
|
2546
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2546
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: WindowCloseActionDirective, decorators: [{
|
|
2547
2547
|
type: Component,
|
|
2548
2548
|
args: [{
|
|
2549
2549
|
exportAs: 'kendoWindowCloseAction',
|
|
@@ -2571,9 +2571,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
2571
2571
|
standalone: true,
|
|
2572
2572
|
imports: [NgIf, IconWrapperComponent, NgClass]
|
|
2573
2573
|
}]
|
|
2574
|
-
}], ctorParameters:
|
|
2574
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.Renderer2 }, { type: DragResizeService, decorators: [{
|
|
2575
2575
|
type: Optional
|
|
2576
|
-
}] }, { type: i1$1.LocalizationService }, { type: i0.NgZone }]
|
|
2576
|
+
}] }, { type: i1$1.LocalizationService }, { type: i0.NgZone }], propDecorators: { window: [{
|
|
2577
2577
|
type: Input
|
|
2578
2578
|
}], buttonType: [{
|
|
2579
2579
|
type: HostBinding,
|
|
@@ -2621,8 +2621,8 @@ class WindowRestoreActionDirective extends Button {
|
|
|
2621
2621
|
get visible() {
|
|
2622
2622
|
return this.window.options.state === 'default' ? 'none' : 'inline-flex';
|
|
2623
2623
|
}
|
|
2624
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2625
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
2624
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: WindowRestoreActionDirective, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: DragResizeService, optional: true }, { token: i1$1.LocalizationService }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2625
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: WindowRestoreActionDirective, isStandalone: true, selector: "button[kendoWindowRestoreAction]", inputs: { window: "window" }, host: { listeners: { "click": "onClick()" }, properties: { "attr.type": "this.buttonType", "class.k-window-titlebar-action": "this.buttonClass", "style.display": "this.visible" } }, providers: [
|
|
2626
2626
|
LocalizationService,
|
|
2627
2627
|
{
|
|
2628
2628
|
provide: L10N_PREFIX,
|
|
@@ -2642,7 +2642,7 @@ class WindowRestoreActionDirective extends Button {
|
|
|
2642
2642
|
<span class="k-button-text"><ng-content></ng-content></span>
|
|
2643
2643
|
`, isInline: true, dependencies: [{ kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }, { kind: "directive", type: NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }] });
|
|
2644
2644
|
}
|
|
2645
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2645
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: WindowRestoreActionDirective, decorators: [{
|
|
2646
2646
|
type: Component,
|
|
2647
2647
|
args: [{
|
|
2648
2648
|
exportAs: 'kendoWindowRestoreAction',
|
|
@@ -2670,9 +2670,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
2670
2670
|
standalone: true,
|
|
2671
2671
|
imports: [NgIf, IconWrapperComponent, NgClass]
|
|
2672
2672
|
}]
|
|
2673
|
-
}], ctorParameters:
|
|
2673
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.Renderer2 }, { type: DragResizeService, decorators: [{
|
|
2674
2674
|
type: Optional
|
|
2675
|
-
}] }, { type: i1$1.LocalizationService }, { type: i0.NgZone }]
|
|
2675
|
+
}] }, { type: i1$1.LocalizationService }, { type: i0.NgZone }], propDecorators: { window: [{
|
|
2676
2676
|
type: Input
|
|
2677
2677
|
}], buttonType: [{
|
|
2678
2678
|
type: HostBinding,
|
|
@@ -2723,8 +2723,8 @@ class WindowMaximizeActionDirective extends Button {
|
|
|
2723
2723
|
get visible() {
|
|
2724
2724
|
return this.window.options.state === 'default' ? 'inline-flex' : 'none';
|
|
2725
2725
|
}
|
|
2726
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2727
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
2726
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: WindowMaximizeActionDirective, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: DragResizeService, optional: true }, { token: i1$1.LocalizationService }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2727
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: WindowMaximizeActionDirective, isStandalone: true, selector: "button[kendoWindowMaximizeAction]", inputs: { window: "window" }, host: { listeners: { "click": "onClick()" }, properties: { "attr.type": "this.buttonType", "class.k-window-titlebar-action": "this.buttonClass", "style.display": "this.visible" } }, providers: [
|
|
2728
2728
|
LocalizationService,
|
|
2729
2729
|
{
|
|
2730
2730
|
provide: L10N_PREFIX,
|
|
@@ -2744,7 +2744,7 @@ class WindowMaximizeActionDirective extends Button {
|
|
|
2744
2744
|
<span class="k-button-text"><ng-content></ng-content></span>
|
|
2745
2745
|
`, isInline: true, dependencies: [{ kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }, { kind: "directive", type: NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }] });
|
|
2746
2746
|
}
|
|
2747
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2747
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: WindowMaximizeActionDirective, decorators: [{
|
|
2748
2748
|
type: Component,
|
|
2749
2749
|
args: [{
|
|
2750
2750
|
exportAs: 'kendoWindowMaximizeAction',
|
|
@@ -2772,9 +2772,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
2772
2772
|
standalone: true,
|
|
2773
2773
|
imports: [NgIf, IconWrapperComponent, NgClass]
|
|
2774
2774
|
}]
|
|
2775
|
-
}], ctorParameters:
|
|
2775
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.Renderer2 }, { type: DragResizeService, decorators: [{
|
|
2776
2776
|
type: Optional
|
|
2777
|
-
}] }, { type: i1$1.LocalizationService }, { type: i0.NgZone }]
|
|
2777
|
+
}] }, { type: i1$1.LocalizationService }, { type: i0.NgZone }], propDecorators: { window: [{
|
|
2778
2778
|
type: Input
|
|
2779
2779
|
}], buttonType: [{
|
|
2780
2780
|
type: HostBinding,
|
|
@@ -2825,8 +2825,8 @@ class WindowMinimizeActionDirective extends Button {
|
|
|
2825
2825
|
get visible() {
|
|
2826
2826
|
return this.window.options.state === 'default' ? 'inline-flex' : 'none';
|
|
2827
2827
|
}
|
|
2828
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
2829
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
2828
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: WindowMinimizeActionDirective, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: DragResizeService, optional: true }, { token: i1$1.LocalizationService }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2829
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: WindowMinimizeActionDirective, isStandalone: true, selector: "button[kendoWindowMinimizeAction]", inputs: { window: "window" }, host: { listeners: { "click": "onClick()" }, properties: { "attr.type": "this.buttonType", "class.k-window-titlebar-action": "this.buttonClass", "style.display": "this.visible" } }, providers: [
|
|
2830
2830
|
LocalizationService,
|
|
2831
2831
|
{
|
|
2832
2832
|
provide: L10N_PREFIX,
|
|
@@ -2846,7 +2846,7 @@ class WindowMinimizeActionDirective extends Button {
|
|
|
2846
2846
|
<span class="k-button-text"><ng-content></ng-content></span>
|
|
2847
2847
|
`, isInline: true, dependencies: [{ kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass", "size"], exportAs: ["kendoIconWrapper"] }, { kind: "directive", type: NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }] });
|
|
2848
2848
|
}
|
|
2849
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
2849
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: WindowMinimizeActionDirective, decorators: [{
|
|
2850
2850
|
type: Component,
|
|
2851
2851
|
args: [{
|
|
2852
2852
|
exportAs: 'kendoWindowMinimizeAction',
|
|
@@ -2874,9 +2874,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
2874
2874
|
standalone: true,
|
|
2875
2875
|
imports: [NgIf, IconWrapperComponent, NgClass]
|
|
2876
2876
|
}]
|
|
2877
|
-
}], ctorParameters:
|
|
2877
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.Renderer2 }, { type: DragResizeService, decorators: [{
|
|
2878
2878
|
type: Optional
|
|
2879
|
-
}] }, { type: i1$1.LocalizationService }, { type: i0.NgZone }]
|
|
2879
|
+
}] }, { type: i1$1.LocalizationService }, { type: i0.NgZone }], propDecorators: { window: [{
|
|
2880
2880
|
type: Input
|
|
2881
2881
|
}], buttonType: [{
|
|
2882
2882
|
type: HostBinding,
|
|
@@ -3461,8 +3461,8 @@ class WindowComponent {
|
|
|
3461
3461
|
this.renderer.addClass(wrapper, classToAdd);
|
|
3462
3462
|
}
|
|
3463
3463
|
}
|
|
3464
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3465
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
3464
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: WindowComponent, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: DragResizeService }, { token: NavigationService }, { token: i0.NgZone }, { token: i1$1.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
|
|
3465
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: WindowComponent, isStandalone: true, 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: [
|
|
3466
3466
|
DragResizeService,
|
|
3467
3467
|
NavigationService,
|
|
3468
3468
|
LocalizationService,
|
|
@@ -3516,7 +3516,7 @@ class WindowComponent {
|
|
|
3516
3516
|
<div kendoWatermarkOverlay *ngIf="showLicenseWatermark" [licenseMessage]="licenseMessage"></div>
|
|
3517
3517
|
`, 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"] }] });
|
|
3518
3518
|
}
|
|
3519
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3519
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: WindowComponent, decorators: [{
|
|
3520
3520
|
type: Component,
|
|
3521
3521
|
args: [{
|
|
3522
3522
|
exportAs: 'kendoWindow',
|
|
@@ -3578,7 +3578,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
3578
3578
|
standalone: true,
|
|
3579
3579
|
imports: [LocalizedMessagesDirective, NgIf, WindowTitleBarComponent, WindowMinimizeActionDirective, WindowMaximizeActionDirective, WindowRestoreActionDirective, WindowCloseActionDirective, NgTemplateOutlet, NgFor, ResizeHandleDirective, DraggableDirective, WatermarkOverlayComponent]
|
|
3580
3580
|
}]
|
|
3581
|
-
}], ctorParameters:
|
|
3581
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.Renderer2 }, { type: DragResizeService }, { type: NavigationService }, { type: i0.NgZone }, { type: i1$1.LocalizationService }], propDecorators: { autoFocusedElement: [{
|
|
3582
3582
|
type: Input
|
|
3583
3583
|
}], title: [{
|
|
3584
3584
|
type: Input
|
|
@@ -3797,10 +3797,10 @@ class WindowContainerService {
|
|
|
3797
3797
|
get container() {
|
|
3798
3798
|
return WindowContainerService.container;
|
|
3799
3799
|
}
|
|
3800
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3801
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
3800
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: WindowContainerService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
3801
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: WindowContainerService, providedIn: 'root' });
|
|
3802
3802
|
}
|
|
3803
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3803
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: WindowContainerService, decorators: [{
|
|
3804
3804
|
type: Injectable,
|
|
3805
3805
|
args: [{
|
|
3806
3806
|
providedIn: 'root'
|
|
@@ -3982,23 +3982,23 @@ class WindowService {
|
|
|
3982
3982
|
return {
|
|
3983
3983
|
componentRef,
|
|
3984
3984
|
nodes: [
|
|
3985
|
-
[],
|
|
3985
|
+
[], // TitleBar
|
|
3986
3986
|
nodes // Content
|
|
3987
3987
|
]
|
|
3988
3988
|
};
|
|
3989
3989
|
}
|
|
3990
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
3991
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
3990
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: WindowService, deps: [{ token: i0.ComponentFactoryResolver }, { token: WindowContainerService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
3991
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: WindowService, providedIn: 'root' });
|
|
3992
3992
|
}
|
|
3993
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
3993
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: WindowService, decorators: [{
|
|
3994
3994
|
type: Injectable,
|
|
3995
3995
|
args: [{
|
|
3996
3996
|
providedIn: 'root'
|
|
3997
3997
|
}]
|
|
3998
|
-
}], ctorParameters:
|
|
3998
|
+
}], ctorParameters: () => [{ type: i0.ComponentFactoryResolver }, { type: WindowContainerService, decorators: [{
|
|
3999
3999
|
type: Inject,
|
|
4000
4000
|
args: [WindowContainerService]
|
|
4001
|
-
}] }]
|
|
4001
|
+
}] }] });
|
|
4002
4002
|
|
|
4003
4003
|
/**
|
|
4004
4004
|
* Represents an insertion point for Dialogs created through the Dialog service.
|
|
@@ -4013,16 +4013,16 @@ class DialogContainerDirective {
|
|
|
4013
4013
|
constructor(container, service) {
|
|
4014
4014
|
service.container = container;
|
|
4015
4015
|
}
|
|
4016
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
4017
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
4016
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: DialogContainerDirective, deps: [{ token: i0.ViewContainerRef }, { token: DialogContainerService }], target: i0.ɵɵFactoryTarget.Directive });
|
|
4017
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: DialogContainerDirective, isStandalone: true, selector: "[kendoDialogContainer]", ngImport: i0 });
|
|
4018
4018
|
}
|
|
4019
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
4019
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: DialogContainerDirective, decorators: [{
|
|
4020
4020
|
type: Directive,
|
|
4021
4021
|
args: [{
|
|
4022
4022
|
selector: '[kendoDialogContainer]',
|
|
4023
4023
|
standalone: true
|
|
4024
4024
|
}]
|
|
4025
|
-
}], ctorParameters:
|
|
4025
|
+
}], ctorParameters: () => [{ type: i0.ViewContainerRef }, { type: DialogContainerService }] });
|
|
4026
4026
|
|
|
4027
4027
|
/**
|
|
4028
4028
|
* Represents a component for customizing the messages in Dialog and Window components.
|
|
@@ -4058,15 +4058,15 @@ class CustomMessagesComponent extends Messages {
|
|
|
4058
4058
|
get override() {
|
|
4059
4059
|
return true;
|
|
4060
4060
|
}
|
|
4061
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
4062
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
4061
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: CustomMessagesComponent, deps: [{ token: i1$1.LocalizationService }], target: i0.ɵɵFactoryTarget.Directive });
|
|
4062
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: CustomMessagesComponent, isStandalone: true, selector: "kendo-dialog-messages, kendo-window-messages", providers: [
|
|
4063
4063
|
{
|
|
4064
4064
|
provide: Messages,
|
|
4065
4065
|
useExisting: forwardRef(() => CustomMessagesComponent)
|
|
4066
4066
|
}
|
|
4067
4067
|
], usesInheritance: true, ngImport: i0 });
|
|
4068
4068
|
}
|
|
4069
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
4069
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: CustomMessagesComponent, decorators: [{
|
|
4070
4070
|
type: Directive,
|
|
4071
4071
|
args: [{
|
|
4072
4072
|
providers: [
|
|
@@ -4079,7 +4079,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
4079
4079
|
selector: 'kendo-dialog-messages, kendo-window-messages',
|
|
4080
4080
|
standalone: true
|
|
4081
4081
|
}]
|
|
4082
|
-
}], ctorParameters:
|
|
4082
|
+
}], ctorParameters: () => [{ type: i1$1.LocalizationService }] });
|
|
4083
4083
|
|
|
4084
4084
|
/**
|
|
4085
4085
|
* Represents an insertion point for Windows created through the Window service.
|
|
@@ -4094,16 +4094,16 @@ class WindowContainerDirective {
|
|
|
4094
4094
|
constructor(container, service) {
|
|
4095
4095
|
service.container = container;
|
|
4096
4096
|
}
|
|
4097
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
4098
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
4097
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: WindowContainerDirective, deps: [{ token: i0.ViewContainerRef }, { token: WindowContainerService }], target: i0.ɵɵFactoryTarget.Directive });
|
|
4098
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.14", type: WindowContainerDirective, isStandalone: true, selector: "[kendoWindowContainer]", ngImport: i0 });
|
|
4099
4099
|
}
|
|
4100
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
4100
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: WindowContainerDirective, decorators: [{
|
|
4101
4101
|
type: Directive,
|
|
4102
4102
|
args: [{
|
|
4103
4103
|
selector: '[kendoWindowContainer]',
|
|
4104
4104
|
standalone: true
|
|
4105
4105
|
}]
|
|
4106
|
-
}], ctorParameters:
|
|
4106
|
+
}], ctorParameters: () => [{ type: i0.ViewContainerRef }, { type: WindowContainerService }] });
|
|
4107
4107
|
|
|
4108
4108
|
/**
|
|
4109
4109
|
* Represents the utility array that that contains all `Dialog`-related components and directives.
|
|
@@ -4207,11 +4207,11 @@ const KENDO_DIALOGS = [
|
|
|
4207
4207
|
* ```
|
|
4208
4208
|
*/
|
|
4209
4209
|
class DialogModule {
|
|
4210
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
4211
|
-
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "
|
|
4212
|
-
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "
|
|
4210
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: DialogModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
4211
|
+
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.14", ngImport: i0, type: DialogModule, imports: [DialogComponent, DialogTitleBarComponent, DialogContainerDirective, DialogActionsComponent, CustomMessagesComponent], exports: [DialogComponent, DialogTitleBarComponent, DialogContainerDirective, DialogActionsComponent, CustomMessagesComponent] });
|
|
4212
|
+
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: DialogModule, providers: [DialogContainerService, DialogService, IconsService], imports: [DialogComponent, DialogTitleBarComponent, DialogActionsComponent] });
|
|
4213
4213
|
}
|
|
4214
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
4214
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: DialogModule, decorators: [{
|
|
4215
4215
|
type: NgModule,
|
|
4216
4216
|
args: [{
|
|
4217
4217
|
exports: [...KENDO_DIALOG],
|
|
@@ -4242,11 +4242,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
4242
4242
|
* ```
|
|
4243
4243
|
*/
|
|
4244
4244
|
class WindowModule {
|
|
4245
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
4246
|
-
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "
|
|
4247
|
-
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "
|
|
4245
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: WindowModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
4246
|
+
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.14", ngImport: i0, type: WindowModule, imports: [WindowComponent, WindowCloseActionDirective, WindowMinimizeActionDirective, WindowMaximizeActionDirective, WindowRestoreActionDirective, WindowTitleBarComponent, WindowContainerDirective, DialogActionsComponent, CustomMessagesComponent], exports: [WindowComponent, WindowCloseActionDirective, WindowMinimizeActionDirective, WindowMaximizeActionDirective, WindowRestoreActionDirective, WindowTitleBarComponent, WindowContainerDirective, DialogActionsComponent, CustomMessagesComponent] });
|
|
4247
|
+
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: WindowModule, providers: [WindowContainerService, WindowService, IconsService], imports: [WindowComponent, WindowCloseActionDirective, WindowMinimizeActionDirective, WindowMaximizeActionDirective, WindowRestoreActionDirective, DialogActionsComponent] });
|
|
4248
4248
|
}
|
|
4249
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
4249
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: WindowModule, decorators: [{
|
|
4250
4250
|
type: NgModule,
|
|
4251
4251
|
args: [{
|
|
4252
4252
|
imports: [...KENDO_WINDOW],
|
|
@@ -4278,11 +4278,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
4278
4278
|
* ```
|
|
4279
4279
|
*/
|
|
4280
4280
|
class DialogsModule {
|
|
4281
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
4282
|
-
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "
|
|
4283
|
-
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "
|
|
4281
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: DialogsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
4282
|
+
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.14", ngImport: i0, type: DialogsModule, imports: [DialogComponent, DialogTitleBarComponent, DialogContainerDirective, DialogActionsComponent, CustomMessagesComponent, WindowComponent, WindowCloseActionDirective, WindowMinimizeActionDirective, WindowMaximizeActionDirective, WindowRestoreActionDirective, WindowTitleBarComponent, WindowContainerDirective, DialogActionsComponent, CustomMessagesComponent], exports: [DialogComponent, DialogTitleBarComponent, DialogContainerDirective, DialogActionsComponent, CustomMessagesComponent, WindowComponent, WindowCloseActionDirective, WindowMinimizeActionDirective, WindowMaximizeActionDirective, WindowRestoreActionDirective, WindowTitleBarComponent, WindowContainerDirective, DialogActionsComponent, CustomMessagesComponent] });
|
|
4283
|
+
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: DialogsModule, providers: [IconsService, DialogService, DialogContainerService, WindowService, WindowContainerService], imports: [DialogComponent, DialogTitleBarComponent, DialogActionsComponent, WindowComponent, WindowCloseActionDirective, WindowMinimizeActionDirective, WindowMaximizeActionDirective, WindowRestoreActionDirective, DialogActionsComponent] });
|
|
4284
4284
|
}
|
|
4285
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
4285
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: DialogsModule, decorators: [{
|
|
4286
4286
|
type: NgModule,
|
|
4287
4287
|
args: [{
|
|
4288
4288
|
imports: [...KENDO_DIALOGS],
|