@progress/kendo-angular-dialog 16.0.0-develop.2 → 16.0.0-develop.4
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/dialog/dialog-actions.component.d.ts +1 -1
- package/dialog/dialog-container.directive.d.ts +1 -1
- package/dialog/dialog-content-base.d.ts +1 -1
- package/dialog/dialog-titlebar.component.d.ts +1 -1
- package/dialog/dialog.component.d.ts +1 -1
- package/esm2020/dialog/dialog-actions.component.mjs +4 -4
- package/esm2020/dialog/dialog-container.directive.mjs +3 -3
- package/esm2020/dialog/dialog-container.service.mjs +3 -3
- package/esm2020/dialog/dialog-content-base.mjs +3 -3
- package/esm2020/dialog/dialog-titlebar.component.mjs +6 -6
- package/esm2020/dialog/dialog.component.mjs +9 -9
- package/esm2020/dialog/dialog.service.mjs +3 -3
- package/esm2020/dialog.module.mjs +4 -4
- package/esm2020/dialogs.module.mjs +4 -4
- package/esm2020/localization/custom-messages.component.mjs +3 -3
- package/esm2020/localization/localized-messages.directive.mjs +3 -3
- package/esm2020/localization/messages.mjs +3 -3
- package/esm2020/localization/titlebar-localization.service.mjs +3 -3
- package/esm2020/package-metadata.mjs +2 -2
- package/esm2020/shared.module.mjs +4 -4
- package/esm2020/window/actions/window-close-action.directive.mjs +6 -6
- package/esm2020/window/actions/window-maximize-action.directive.mjs +6 -6
- package/esm2020/window/actions/window-minimize-action.directive.mjs +6 -6
- package/esm2020/window/actions/window-restore-action.directive.mjs +6 -6
- package/esm2020/window/drag-resize.service.mjs +3 -3
- package/esm2020/window/navigation.service.mjs +3 -3
- package/esm2020/window/window-container.directive.mjs +3 -3
- package/esm2020/window/window-container.service.mjs +3 -3
- package/esm2020/window/window-resize-handle.directive.mjs +3 -3
- package/esm2020/window/window-titlebar.component.mjs +4 -4
- package/esm2020/window/window.component.mjs +13 -13
- package/esm2020/window/window.service.mjs +3 -3
- package/esm2020/window.module.mjs +4 -4
- package/fesm2015/progress-kendo-angular-dialog.mjs +158 -158
- package/fesm2020/progress-kendo-angular-dialog.mjs +158 -158
- package/localization/custom-messages.component.d.ts +1 -1
- package/localization/localized-messages.directive.d.ts +1 -1
- package/localization/messages.d.ts +1 -1
- package/package.json +12 -12
- package/schematics/ngAdd/index.js +1 -1
- package/window/actions/window-close-action.directive.d.ts +1 -1
- package/window/actions/window-maximize-action.directive.d.ts +1 -1
- package/window/actions/window-minimize-action.directive.d.ts +1 -1
- package/window/actions/window-restore-action.directive.d.ts +1 -1
- package/window/window-container.directive.d.ts +1 -1
- package/window/window-resize-handle.directive.d.ts +1 -1
- package/window/window-titlebar.component.d.ts +1 -1
- package/window/window.component.d.ts +1 -1
- package/progress-kendo-angular-dialog.d.ts +0 -9
|
@@ -14,5 +14,5 @@ export declare class CustomMessagesComponent extends Messages {
|
|
|
14
14
|
constructor(service: LocalizationService);
|
|
15
15
|
protected get override(): boolean;
|
|
16
16
|
static ɵfac: i0.ɵɵFactoryDeclaration<CustomMessagesComponent, never>;
|
|
17
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<CustomMessagesComponent, "kendo-dialog-messages, kendo-window-messages", never, {}, {}, never>;
|
|
17
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<CustomMessagesComponent, "kendo-dialog-messages, kendo-window-messages", never, {}, {}, never, never, false, never>;
|
|
18
18
|
}
|
|
@@ -12,5 +12,5 @@ export declare class LocalizedMessagesDirective extends Messages {
|
|
|
12
12
|
protected service: LocalizationService;
|
|
13
13
|
constructor(service: LocalizationService);
|
|
14
14
|
static ɵfac: i0.ɵɵFactoryDeclaration<LocalizedMessagesDirective, never>;
|
|
15
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<LocalizedMessagesDirective, " [kendoDialogLocalizedMessages], [kendoWindowLocalizedMessages], [kendoDialogTitleBarLocalizedMessages] ", never, {}, {}, never>;
|
|
15
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<LocalizedMessagesDirective, " [kendoDialogLocalizedMessages], [kendoWindowLocalizedMessages], [kendoDialogTitleBarLocalizedMessages] ", never, {}, {}, never, never, false, never>;
|
|
16
16
|
}
|
|
@@ -25,5 +25,5 @@ export declare class Messages extends ComponentMessages {
|
|
|
25
25
|
*/
|
|
26
26
|
minimizeTitle: string;
|
|
27
27
|
static ɵfac: i0.ɵɵFactoryDeclaration<Messages, never>;
|
|
28
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<Messages, "kendo-dialog-messages-base", never, { "closeTitle": "closeTitle"; "restoreTitle": "restoreTitle"; "maximizeTitle": "maximizeTitle"; "minimizeTitle": "minimizeTitle"; }, {}, never>;
|
|
28
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<Messages, "kendo-dialog-messages-base", never, { "closeTitle": "closeTitle"; "restoreTitle": "restoreTitle"; "maximizeTitle": "maximizeTitle"; "minimizeTitle": "minimizeTitle"; }, {}, never, never, false, never>;
|
|
29
29
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-dialog",
|
|
3
|
-
"version": "16.0.0-develop.
|
|
3
|
+
"version": "16.0.0-develop.4",
|
|
4
4
|
"description": "Dialog Package for Angular",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
6
|
"author": "Progress",
|
|
@@ -22,20 +22,20 @@
|
|
|
22
22
|
"friendlyName": "Dialogs"
|
|
23
23
|
},
|
|
24
24
|
"peerDependencies": {
|
|
25
|
-
"@angular/animations": "
|
|
26
|
-
"@angular/common": "
|
|
27
|
-
"@angular/core": "
|
|
28
|
-
"@angular/platform-browser": "
|
|
25
|
+
"@angular/animations": "15 - 17",
|
|
26
|
+
"@angular/common": "15 - 17",
|
|
27
|
+
"@angular/core": "15 - 17",
|
|
28
|
+
"@angular/platform-browser": "15 - 17",
|
|
29
29
|
"@progress/kendo-licensing": "^1.0.2",
|
|
30
|
-
"@progress/kendo-angular-buttons": "16.0.0-develop.
|
|
31
|
-
"@progress/kendo-angular-common": "16.0.0-develop.
|
|
32
|
-
"@progress/kendo-angular-icons": "16.0.0-develop.
|
|
33
|
-
"@progress/kendo-angular-l10n": "16.0.0-develop.
|
|
30
|
+
"@progress/kendo-angular-buttons": "16.0.0-develop.4",
|
|
31
|
+
"@progress/kendo-angular-common": "16.0.0-develop.4",
|
|
32
|
+
"@progress/kendo-angular-icons": "16.0.0-develop.4",
|
|
33
|
+
"@progress/kendo-angular-l10n": "16.0.0-develop.4",
|
|
34
34
|
"rxjs": "^6.5.3 || ^7.0.0"
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
37
|
"tslib": "^2.3.1",
|
|
38
|
-
"@progress/kendo-angular-schematics": "16.0.0-develop.
|
|
38
|
+
"@progress/kendo-angular-schematics": "16.0.0-develop.4",
|
|
39
39
|
"@progress/kendo-popup-common": "^1.7.0"
|
|
40
40
|
},
|
|
41
41
|
"schematics": "./schematics/collection.json",
|
|
@@ -44,13 +44,13 @@
|
|
|
44
44
|
"esm2020": "esm2020/progress-kendo-angular-dialog.mjs",
|
|
45
45
|
"fesm2020": "fesm2020/progress-kendo-angular-dialog.mjs",
|
|
46
46
|
"fesm2015": "fesm2015/progress-kendo-angular-dialog.mjs",
|
|
47
|
-
"typings": "
|
|
47
|
+
"typings": "index.d.ts",
|
|
48
48
|
"exports": {
|
|
49
49
|
"./package.json": {
|
|
50
50
|
"default": "./package.json"
|
|
51
51
|
},
|
|
52
52
|
".": {
|
|
53
|
-
"types": "./
|
|
53
|
+
"types": "./index.d.ts",
|
|
54
54
|
"esm2020": "./esm2020/progress-kendo-angular-dialog.mjs",
|
|
55
55
|
"es2020": "./fesm2020/progress-kendo-angular-dialog.mjs",
|
|
56
56
|
"es2015": "./fesm2015/progress-kendo-angular-dialog.mjs",
|
|
@@ -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': '16.0.0-develop.
|
|
7
|
+
'@progress/kendo-angular-popup': '16.0.0-develop.4',
|
|
8
8
|
// Peer dependency of icons
|
|
9
9
|
'@progress/kendo-svg-icons': '^2.0.0'
|
|
10
10
|
} });
|
|
@@ -25,5 +25,5 @@ export declare class WindowCloseActionDirective extends Button {
|
|
|
25
25
|
*/
|
|
26
26
|
onClick(): void;
|
|
27
27
|
static ɵfac: i0.ɵɵFactoryDeclaration<WindowCloseActionDirective, [null, null, { optional: true; }, null, null]>;
|
|
28
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<WindowCloseActionDirective, "button[kendoWindowCloseAction]", ["kendoWindowCloseAction"], { "window": "window"; }, {}, never, ["*"]>;
|
|
28
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<WindowCloseActionDirective, "button[kendoWindowCloseAction]", ["kendoWindowCloseAction"], { "window": "window"; }, {}, never, ["*"], false, never>;
|
|
29
29
|
}
|
|
@@ -26,5 +26,5 @@ export declare class WindowMaximizeActionDirective extends Button {
|
|
|
26
26
|
onClick(): void;
|
|
27
27
|
get visible(): string;
|
|
28
28
|
static ɵfac: i0.ɵɵFactoryDeclaration<WindowMaximizeActionDirective, [null, null, { optional: true; }, null, null]>;
|
|
29
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<WindowMaximizeActionDirective, "button[kendoWindowMaximizeAction]", ["kendoWindowMaximizeAction"], { "window": "window"; }, {}, never, ["*"]>;
|
|
29
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<WindowMaximizeActionDirective, "button[kendoWindowMaximizeAction]", ["kendoWindowMaximizeAction"], { "window": "window"; }, {}, never, ["*"], false, never>;
|
|
30
30
|
}
|
|
@@ -26,5 +26,5 @@ export declare class WindowMinimizeActionDirective extends Button {
|
|
|
26
26
|
onClick(): void;
|
|
27
27
|
get visible(): string;
|
|
28
28
|
static ɵfac: i0.ɵɵFactoryDeclaration<WindowMinimizeActionDirective, [null, null, { optional: true; }, null, null]>;
|
|
29
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<WindowMinimizeActionDirective, "button[kendoWindowMinimizeAction]", ["kendoWindowMinimizeAction"], { "window": "window"; }, {}, never, ["*"]>;
|
|
29
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<WindowMinimizeActionDirective, "button[kendoWindowMinimizeAction]", ["kendoWindowMinimizeAction"], { "window": "window"; }, {}, never, ["*"], false, never>;
|
|
30
30
|
}
|
|
@@ -26,5 +26,5 @@ export declare class WindowRestoreActionDirective extends Button {
|
|
|
26
26
|
onClick(): void;
|
|
27
27
|
get visible(): string;
|
|
28
28
|
static ɵfac: i0.ɵɵFactoryDeclaration<WindowRestoreActionDirective, [null, null, { optional: true; }, null, null]>;
|
|
29
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<WindowRestoreActionDirective, "button[kendoWindowRestoreAction]", ["kendoWindowRestoreAction"], { "window": "window"; }, {}, never, ["*"]>;
|
|
29
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<WindowRestoreActionDirective, "button[kendoWindowRestoreAction]", ["kendoWindowRestoreAction"], { "window": "window"; }, {}, never, ["*"], false, never>;
|
|
30
30
|
}
|
|
@@ -18,5 +18,5 @@ import * as i0 from "@angular/core";
|
|
|
18
18
|
export declare class WindowContainerDirective {
|
|
19
19
|
constructor(container: ViewContainerRef, service: WindowContainerService);
|
|
20
20
|
static ɵfac: i0.ɵɵFactoryDeclaration<WindowContainerDirective, never>;
|
|
21
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<WindowContainerDirective, "[kendoWindowContainer]", never, {}, {}, never>;
|
|
21
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<WindowContainerDirective, "[kendoWindowContainer]", never, {}, {}, never, never, false, never>;
|
|
22
22
|
}
|
|
@@ -22,5 +22,5 @@ export declare class ResizeHandleDirective implements OnInit, OnDestroy {
|
|
|
22
22
|
ngOnDestroy(): void;
|
|
23
23
|
private setDisplay;
|
|
24
24
|
static ɵfac: i0.ɵɵFactoryDeclaration<ResizeHandleDirective, [{ host: true; }, null, null, null]>;
|
|
25
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<ResizeHandleDirective, "[kendoWindowResizeHandle]", never, { "direction": "direction"; }, {}, never>;
|
|
25
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<ResizeHandleDirective, "[kendoWindowResizeHandle]", never, { "direction": "direction"; }, {}, never, never, false, never>;
|
|
26
26
|
}
|
|
@@ -51,5 +51,5 @@ export declare class WindowTitleBarComponent implements OnInit, AfterViewInit, O
|
|
|
51
51
|
handle(ev: any): void;
|
|
52
52
|
protected get isDraggable(): boolean;
|
|
53
53
|
static ɵfac: i0.ɵɵFactoryDeclaration<WindowTitleBarComponent, never>;
|
|
54
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<WindowTitleBarComponent, "kendo-window-titlebar", never, { "template": "template"; "id": "id"; }, {}, never, ["*"]>;
|
|
54
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<WindowTitleBarComponent, "kendo-window-titlebar", never, { "template": "template"; "id": "id"; }, {}, never, ["*"], false, never>;
|
|
55
55
|
}
|
|
@@ -274,5 +274,5 @@ export declare class WindowComponent implements OnInit, OnDestroy, OnChanges, Af
|
|
|
274
274
|
private generateTitleId;
|
|
275
275
|
private handleThemeColorClass;
|
|
276
276
|
static ɵfac: i0.ɵɵFactoryDeclaration<WindowComponent, never>;
|
|
277
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<WindowComponent, "kendo-window", ["kendoWindow"], { "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"; }, { "dragStart": "dragStart"; "dragEnd": "dragEnd"; "resizeStart": "resizeStart"; "resizeEnd": "resizeEnd"; "close": "close"; "widthChange": "widthChange"; "heightChange": "heightChange"; "topChange": "topChange"; "leftChange": "leftChange"; "stateChange": "stateChange"; }, ["titleBarContent"], ["kendo-window-titlebar", "*"]>;
|
|
277
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<WindowComponent, "kendo-window", ["kendoWindow"], { "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"; }, { "dragStart": "dragStart"; "dragEnd": "dragEnd"; "resizeStart": "resizeStart"; "resizeEnd": "resizeEnd"; "close": "close"; "widthChange": "widthChange"; "heightChange": "heightChange"; "topChange": "topChange"; "leftChange": "leftChange"; "stateChange": "stateChange"; }, ["titleBarContent"], ["kendo-window-titlebar", "*"], false, never>;
|
|
278
278
|
}
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
/**-----------------------------------------------------------------------------------------
|
|
2
|
-
* Copyright © 2024 Progress Software Corporation. All rights reserved.
|
|
3
|
-
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
|
-
*-------------------------------------------------------------------------------------------*/
|
|
5
|
-
/**
|
|
6
|
-
* Generated bundle index. Do not edit.
|
|
7
|
-
*/
|
|
8
|
-
/// <amd-module name="@progress/kendo-angular-dialog" />
|
|
9
|
-
export * from './index';
|