@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.
- package/Dialog.d.ts +45 -0
- package/Dialog.mjs +3 -3
- package/DialogActionsBar.d.ts +28 -0
- package/DialogProps.d.ts +184 -0
- package/DialogTitleBar.d.ts +33 -0
- package/MiddleLayerOptimization.d.ts +24 -0
- package/StageEnum.d.ts +12 -0
- package/Window.d.ts +189 -0
- package/Window.mjs +6 -6
- package/WindowActionsBar.d.ts +28 -0
- package/WindowProps.d.ts +332 -0
- package/WindowResizeHandlers.d.ts +23 -0
- package/WindowTitlebar.d.ts +70 -0
- package/codemods/utils.js +1 -8
- package/codemods/v11/dialog-handle.js +1 -8
- package/constants.d.ts +15 -0
- package/dist/cdn/js/kendo-react-dialogs.js +1 -1
- package/events.d.ts +55 -0
- package/index.d.mts +9 -825
- package/index.d.ts +9 -825
- package/messages/index.d.ts +32 -0
- package/models/actions-layout.d.ts +11 -0
- package/package-metadata.d.ts +12 -0
- package/package-metadata.mjs +13 -0
- package/package.json +10 -4
- package/utils.d.ts +9 -0
|
@@ -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
|
+
"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.
|
|
30
|
-
"@progress/kendo-react-common": "13.
|
|
31
|
-
"@progress/kendo-react-intl": "13.
|
|
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;
|