@progress/kendo-react-dialogs 13.3.0 → 13.4.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.
@@ -0,0 +1,32 @@
1
+ /**
2
+ * @license
3
+ *-------------------------------------------------------------------------------------------
4
+ * Copyright © 2026 Progress Software Corporation. All rights reserved.
5
+ * Licensed under commercial license. See LICENSE.md in the package root for more information
6
+ *-------------------------------------------------------------------------------------------
7
+ */
8
+ /**
9
+ * @hidden
10
+ */
11
+ export declare const dialogsWindowMaximizeButton = "dialogs.windowMaximizeButton";
12
+ /**
13
+ * @hidden
14
+ */
15
+ export declare const dialogsWindowMinimizeButton = "dialogs.windowMinimizeButton";
16
+ /**
17
+ * @hidden
18
+ */
19
+ export declare const dialogsWindowRestoreButton = "dialogs.windowRestoreButton";
20
+ /**
21
+ * @hidden
22
+ */
23
+ export declare const dialogsWindowCloseButton = "dialogs.windowCloseButton";
24
+ /**
25
+ * @hidden
26
+ */
27
+ export declare const messages: {
28
+ "dialogs.windowMaximizeButton": string;
29
+ "dialogs.windowMinimizeButton": string;
30
+ "dialogs.windowRestoreButton": string;
31
+ "dialogs.windowCloseButton": string;
32
+ };
@@ -0,0 +1,11 @@
1
+ /**
2
+ * @license
3
+ *-------------------------------------------------------------------------------------------
4
+ * Copyright © 2026 Progress Software Corporation. All rights reserved.
5
+ * Licensed under commercial license. See LICENSE.md in the package root for more information
6
+ *-------------------------------------------------------------------------------------------
7
+ */
8
+ /**
9
+ * Lists the possible layout of the dialogs action buttons.
10
+ */
11
+ export type ActionsLayout = 'start' | 'center' | 'end' | 'stretched';
@@ -0,0 +1,12 @@
1
+ /**
2
+ * @license
3
+ *-------------------------------------------------------------------------------------------
4
+ * Copyright © 2026 Progress Software Corporation. All rights reserved.
5
+ * Licensed under commercial license. See LICENSE.md in the package root for more information
6
+ *-------------------------------------------------------------------------------------------
7
+ */
8
+ import { PackageMetadata } from '@progress/kendo-licensing';
9
+ /**
10
+ * @hidden
11
+ */
12
+ export declare const packageMetadata: PackageMetadata;
@@ -0,0 +1,13 @@
1
+ // Generated file. DO NOT EDIT.
2
+ /**
3
+ * @hidden
4
+ */
5
+ export const packageMetadata = Object.freeze({
6
+ name: '@progress/kendo-react-dialogs',
7
+ productName: 'KendoReact',
8
+ productCode: 'KENDOUIREACT',
9
+ productCodes: ['KENDOUIREACT'],
10
+ publishDate: 0,
11
+ version: '13.4.0-develop.2',
12
+ licensingDocsUrl: 'https://www.telerik.com/kendo-react-ui/components/my-license/'
13
+ });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@progress/kendo-react-dialogs",
3
- "version": "13.3.0",
3
+ "version": "13.4.0-develop.2",
4
4
  "description": "React Dialogs provide modal and non-modal windows for showing additional information to the user. KendoReact Dialogs package",
5
5
  "author": "Progress",
6
6
  "license": "SEE LICENSE IN LICENSE.md",
@@ -26,9 +26,9 @@
26
26
  "sideEffects": false,
27
27
  "peerDependencies": {
28
28
  "@progress/kendo-licensing": "^1.7.2",
29
- "@progress/kendo-react-buttons": "13.3.0",
30
- "@progress/kendo-react-common": "13.3.0",
31
- "@progress/kendo-react-intl": "13.3.0",
29
+ "@progress/kendo-react-buttons": "13.4.0-develop.2",
30
+ "@progress/kendo-react-common": "13.4.0-develop.2",
31
+ "@progress/kendo-react-intl": "13.4.0-develop.2",
32
32
  "@progress/kendo-svg-icons": "^4.0.0",
33
33
  "react": "^16.8.2 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc",
34
34
  "react-dom": "^16.8.2 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc"
@@ -68,6 +68,12 @@
68
68
  }
69
69
  ]
70
70
  }
71
+ },
72
+ "package": {
73
+ "productName": "KendoReact",
74
+ "productCode": "KENDOUIREACT",
75
+ "publishDate": 1770287846,
76
+ "licensingDocsUrl": "https://www.telerik.com/kendo-react-ui/components/my-license/"
71
77
  }
72
78
  },
73
79
  "repository": {
package/utils.d.ts ADDED
@@ -0,0 +1,9 @@
1
+ /**
2
+ * @license
3
+ *-------------------------------------------------------------------------------------------
4
+ * Copyright © 2026 Progress Software Corporation. All rights reserved.
5
+ * Licensed under commercial license. See LICENSE.md in the package root for more information
6
+ *-------------------------------------------------------------------------------------------
7
+ */
8
+ /** @hidden */
9
+ export declare const getMaxZIndex: (currentZIndex: number, currentDocument: Document | null, currentWindowId: string) => number;