@progress/kendo-react-dialogs 10.1.0-develop.9 → 10.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/README.md +7 -7
- package/package.json +4 -3
package/README.md
CHANGED
|
@@ -14,7 +14,7 @@ The React Dialogs, part of KendoReact, are UI components for prompting user inte
|
|
|
14
14
|
How to start:
|
|
15
15
|
|
|
16
16
|
```sh
|
|
17
|
-
npm
|
|
17
|
+
npm i @progress/kendo-react-dialogs
|
|
18
18
|
```
|
|
19
19
|
|
|
20
20
|
What's in this package:
|
|
@@ -55,15 +55,15 @@ import { Button } from '@progress/kendo-react-buttons'; // You can import any ot
|
|
|
55
55
|
/**
|
|
56
56
|
* Handle the logic for opening and closing the dialog.
|
|
57
57
|
* Handle the logic for the user actions within the dialog.
|
|
58
|
-
*/
|
|
58
|
+
*/
|
|
59
59
|
<Dialog title={'Title'} onClose={closeDialog}>
|
|
60
60
|
/**
|
|
61
61
|
* Show additional dialog content, such as images and text.
|
|
62
|
-
*/
|
|
62
|
+
*/
|
|
63
63
|
<DialogActionsBar>
|
|
64
64
|
/**
|
|
65
65
|
* Provide user action buttons.
|
|
66
|
-
*/
|
|
66
|
+
*/
|
|
67
67
|
</DialogActionsBar>
|
|
68
68
|
</Dialog>
|
|
69
69
|
```
|
|
@@ -83,15 +83,15 @@ import { Button } from '@progress/kendo-react-buttons'; // You can import any ot
|
|
|
83
83
|
/**
|
|
84
84
|
* Handle the logic for opening and closing the window.
|
|
85
85
|
* Handle the logic for the user actions within the window.
|
|
86
|
-
*/
|
|
86
|
+
*/
|
|
87
87
|
<Window title={'Title'}>
|
|
88
88
|
/**
|
|
89
89
|
* Show additional window content, such as images and text.
|
|
90
|
-
*/
|
|
90
|
+
*/
|
|
91
91
|
<WindowActionsBar>
|
|
92
92
|
/**
|
|
93
93
|
* Provide user action buttons.
|
|
94
|
-
*/
|
|
94
|
+
*/
|
|
95
95
|
</WindowActionsBar>
|
|
96
96
|
</Window>
|
|
97
97
|
```
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-react-dialogs",
|
|
3
|
-
"version": "10.1.0
|
|
3
|
+
"version": "10.1.0",
|
|
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,8 +26,9 @@
|
|
|
26
26
|
"sideEffects": false,
|
|
27
27
|
"peerDependencies": {
|
|
28
28
|
"@progress/kendo-licensing": "^1.5.1",
|
|
29
|
-
"@progress/kendo-react-buttons": "10.1.0
|
|
30
|
-
"@progress/kendo-react-common": "10.1.0
|
|
29
|
+
"@progress/kendo-react-buttons": "10.1.0",
|
|
30
|
+
"@progress/kendo-react-common": "10.1.0",
|
|
31
|
+
"@progress/kendo-react-intl": "10.1.0",
|
|
31
32
|
"@progress/kendo-svg-icons": "^4.0.0",
|
|
32
33
|
"react": "^16.8.2 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc",
|
|
33
34
|
"react-dom": "^16.8.2 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc"
|