@progress/kendo-angular-dialog 24.0.4-develop.1 → 24.1.0
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/NOTICE.txt +410 -1839
- package/dialog/dialog.service.d.ts +1 -10
- package/fesm2022/progress-kendo-angular-dialog.mjs +93 -109
- package/package-metadata.mjs +2 -2
- package/package.json +11 -11
- package/schematics/ngAdd/index.js +1 -1
- package/window/window.service.d.ts +1 -10
package/package-metadata.mjs
CHANGED
|
@@ -7,7 +7,7 @@ export const packageMetadata = {
|
|
|
7
7
|
"productCodes": [
|
|
8
8
|
"KENDOUIANGULAR"
|
|
9
9
|
],
|
|
10
|
-
"publishDate":
|
|
11
|
-
"version": "24.0
|
|
10
|
+
"publishDate": 1780593727,
|
|
11
|
+
"version": "24.1.0",
|
|
12
12
|
"licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
|
|
13
13
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-dialog",
|
|
3
|
-
"version": "24.0
|
|
3
|
+
"version": "24.1.0",
|
|
4
4
|
"description": "Dialog Package for Angular",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
6
|
"author": "Progress",
|
|
@@ -45,25 +45,25 @@
|
|
|
45
45
|
"package": {
|
|
46
46
|
"productName": "Kendo UI for Angular",
|
|
47
47
|
"productCode": "KENDOUIANGULAR",
|
|
48
|
-
"publishDate":
|
|
48
|
+
"publishDate": 1780593727,
|
|
49
49
|
"licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
|
|
50
50
|
}
|
|
51
51
|
},
|
|
52
52
|
"peerDependencies": {
|
|
53
|
-
"@angular/animations": "19 -
|
|
54
|
-
"@angular/common": "19 -
|
|
55
|
-
"@angular/core": "19 -
|
|
56
|
-
"@angular/platform-browser": "19 -
|
|
53
|
+
"@angular/animations": "19 - 22",
|
|
54
|
+
"@angular/common": "19 - 22",
|
|
55
|
+
"@angular/core": "19 - 22",
|
|
56
|
+
"@angular/platform-browser": "19 - 22",
|
|
57
57
|
"@progress/kendo-licensing": "^1.11.0",
|
|
58
|
-
"@progress/kendo-angular-buttons": "24.0
|
|
59
|
-
"@progress/kendo-angular-common": "24.0
|
|
60
|
-
"@progress/kendo-angular-icons": "24.0
|
|
61
|
-
"@progress/kendo-angular-l10n": "24.0
|
|
58
|
+
"@progress/kendo-angular-buttons": "24.1.0",
|
|
59
|
+
"@progress/kendo-angular-common": "24.1.0",
|
|
60
|
+
"@progress/kendo-angular-icons": "24.1.0",
|
|
61
|
+
"@progress/kendo-angular-l10n": "24.1.0",
|
|
62
62
|
"rxjs": "^6.5.3 || ^7.0.0"
|
|
63
63
|
},
|
|
64
64
|
"dependencies": {
|
|
65
65
|
"tslib": "^2.3.1",
|
|
66
|
-
"@progress/kendo-angular-schematics": "24.0
|
|
66
|
+
"@progress/kendo-angular-schematics": "24.1.0",
|
|
67
67
|
"@progress/kendo-popup-common": "1.9.5"
|
|
68
68
|
},
|
|
69
69
|
"schematics": "./schematics/collection.json",
|
|
@@ -9,7 +9,7 @@ const schematics_1 = require("@angular-devkit/schematics");
|
|
|
9
9
|
function default_1(options) {
|
|
10
10
|
const finalOptions = Object.assign(Object.assign({}, options), { mainNgModule: 'DialogsModule', package: 'dialog', peerDependencies: {
|
|
11
11
|
// Peer dependency of buttons
|
|
12
|
-
'@progress/kendo-angular-popup': '24.0
|
|
12
|
+
'@progress/kendo-angular-popup': '24.1.0',
|
|
13
13
|
// Peer dependency of icons
|
|
14
14
|
'@progress/kendo-svg-icons': '^4.0.0'
|
|
15
15
|
} });
|
|
@@ -2,7 +2,6 @@
|
|
|
2
2
|
* Copyright © 2026 Progress Software Corporation. All rights reserved.
|
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
|
-
import { ComponentFactoryResolver } from '@angular/core';
|
|
6
5
|
import { WindowSettings } from './models/window-settings';
|
|
7
6
|
import { WindowContainerService } from '../window/window-container.service';
|
|
8
7
|
import { WindowRef } from './models/window-ref';
|
|
@@ -13,16 +12,8 @@ import * as i0 from "@angular/core";
|
|
|
13
12
|
* Use this service to open a Window component and manage its lifecycle. ([See example.](https://www.telerik.com/kendo-angular-ui/components/dialogs/window/service))
|
|
14
13
|
*/
|
|
15
14
|
export declare class WindowService {
|
|
16
|
-
/**
|
|
17
|
-
* @hidden
|
|
18
|
-
*/
|
|
19
|
-
private resolver;
|
|
20
15
|
private containerService;
|
|
21
|
-
constructor(
|
|
22
|
-
/**
|
|
23
|
-
* @hidden
|
|
24
|
-
*/
|
|
25
|
-
resolver: ComponentFactoryResolver, containerService: WindowContainerService);
|
|
16
|
+
constructor(containerService: WindowContainerService);
|
|
26
17
|
/**
|
|
27
18
|
* Opens a Window component with the specified settings.
|
|
28
19
|
*
|