@progress/kendo-react-dialogs 13.3.0-develop.1 → 13.3.0-develop.3
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/index.d.mts +27 -27
- package/index.d.ts +27 -27
- package/package.json +4 -4
package/index.d.mts
CHANGED
|
@@ -19,10 +19,10 @@ import { ZIndexContextType } from '@progress/kendo-react-common';
|
|
|
19
19
|
export declare type ActionsLayout = 'start' | 'center' | 'end' | 'stretched';
|
|
20
20
|
|
|
21
21
|
/**
|
|
22
|
-
* Represents the [KendoReact Dialog component](
|
|
22
|
+
* Represents the [KendoReact Dialog component](https://www.telerik.com/kendo-react-ui/components/dialogs/dialog).
|
|
23
23
|
*
|
|
24
|
-
* Accepts properties of type [DialogProps](
|
|
25
|
-
* Obtaining the `ref` returns an object of type [DialogHandle](
|
|
24
|
+
* Accepts properties of type [DialogProps](https://www.telerik.com/kendo-react-ui/components/dialogs/api/dialogprops).
|
|
25
|
+
* Obtaining the `ref` returns an object of type [DialogHandle](https://www.telerik.com/kendo-react-ui/components/dialogs/api/dialoghandle).
|
|
26
26
|
*
|
|
27
27
|
* @remarks
|
|
28
28
|
* Supported children components are: {@link DialogActionsBar}.
|
|
@@ -37,11 +37,11 @@ export declare const Dialog: React_2.ForwardRefExoticComponent<DialogProps & Rea
|
|
|
37
37
|
export declare const DialogActionsBar: React_2.FunctionComponent<DialogActionsBarProps>;
|
|
38
38
|
|
|
39
39
|
/**
|
|
40
|
-
* Represents the props of the [KendoReact DialogActionsBar component](
|
|
40
|
+
* Represents the props of the [KendoReact DialogActionsBar component](https://www.telerik.com/kendo-react-ui/components/dialogs/dialog).
|
|
41
41
|
*/
|
|
42
42
|
declare interface DialogActionsBarProps {
|
|
43
43
|
/**
|
|
44
|
-
* Specifies the possible layouts of the action buttons ([see example](
|
|
44
|
+
* Specifies the possible layouts of the action buttons ([see example](https://www.telerik.com/kendo-react-ui/components/dialogs/dialog/action-buttons)). Defaults to `stretched`.
|
|
45
45
|
*/
|
|
46
46
|
layout?: ActionsLayout;
|
|
47
47
|
/**
|
|
@@ -71,7 +71,7 @@ export declare interface DialogHandle {
|
|
|
71
71
|
}
|
|
72
72
|
|
|
73
73
|
/**
|
|
74
|
-
* Represents the props of the [KendoReact Dialog component](
|
|
74
|
+
* Represents the props of the [KendoReact Dialog component](https://www.telerik.com/kendo-react-ui/components/dialogs/dialog).
|
|
75
75
|
*/
|
|
76
76
|
export declare interface DialogProps {
|
|
77
77
|
/**
|
|
@@ -86,7 +86,7 @@ export declare interface DialogProps {
|
|
|
86
86
|
*/
|
|
87
87
|
autoFocus?: boolean;
|
|
88
88
|
/**
|
|
89
|
-
* Specifies the query selector used to set the initial focus ([see examples](
|
|
89
|
+
* Specifies the query selector used to set the initial focus ([see examples](https://www.telerik.com/kendo-react-ui/components/dialogs/dialog/initial-focus)).
|
|
90
90
|
*
|
|
91
91
|
* @example
|
|
92
92
|
* ```jsx
|
|
@@ -95,7 +95,7 @@ export declare interface DialogProps {
|
|
|
95
95
|
*/
|
|
96
96
|
autoFocusedElement?: string;
|
|
97
97
|
/**
|
|
98
|
-
* Sets the title of the Dialog ([see example](
|
|
98
|
+
* Sets the title of the Dialog ([see example](https://www.telerik.com/kendo-react-ui/components/dialogs/dialog/title)). If you do not specify the `title`, the Dialog does not render a **Close** button.
|
|
99
99
|
*
|
|
100
100
|
* @example
|
|
101
101
|
* ```jsx
|
|
@@ -144,7 +144,7 @@ export declare interface DialogProps {
|
|
|
144
144
|
*/
|
|
145
145
|
overlayStyle?: React.CSSProperties;
|
|
146
146
|
/**
|
|
147
|
-
* Specifies the width of the Dialog ([see example](
|
|
147
|
+
* Specifies the width of the Dialog ([see example](https://www.telerik.com/kendo-react-ui/components/dialogs/dialog/dimensions)).
|
|
148
148
|
*
|
|
149
149
|
* @example
|
|
150
150
|
* ```jsx
|
|
@@ -153,7 +153,7 @@ export declare interface DialogProps {
|
|
|
153
153
|
*/
|
|
154
154
|
width?: number | string;
|
|
155
155
|
/**
|
|
156
|
-
* Specifies the height of the Dialog ([see example](
|
|
156
|
+
* Specifies the height of the Dialog ([see example](https://www.telerik.com/kendo-react-ui/components/dialogs/dialog/dimensions)).
|
|
157
157
|
*
|
|
158
158
|
* @example
|
|
159
159
|
* ```jsx
|
|
@@ -257,10 +257,10 @@ export declare const DialogPropsContext: React_2.Context<(p: DialogProps) => Dia
|
|
|
257
257
|
declare type Window_2 = WindowHandle;
|
|
258
258
|
|
|
259
259
|
/**
|
|
260
|
-
* Represents the [KendoReact Window component](
|
|
260
|
+
* Represents the [KendoReact Window component](https://www.telerik.com/kendo-react-ui/components/dialogs/window).
|
|
261
261
|
*
|
|
262
|
-
* Accepts properties of type [WindowProps](
|
|
263
|
-
* Obtaining the `ref` returns an object of type [WindowHandle](
|
|
262
|
+
* Accepts properties of type [WindowProps](https://www.telerik.com/kendo-react-ui/components/dialogs/api/windowprops).
|
|
263
|
+
* Obtaining the `ref` returns an object of type [WindowHandle](https://www.telerik.com/kendo-react-ui/components/dialogs/api/windowhandle).
|
|
264
264
|
*
|
|
265
265
|
* @remarks
|
|
266
266
|
* Supported children components are: {@link WindowActionsBar}.
|
|
@@ -276,11 +276,11 @@ export { Window_2 as Window }
|
|
|
276
276
|
export declare const WindowActionsBar: React_2.FunctionComponent<WindowActionsBarProps>;
|
|
277
277
|
|
|
278
278
|
/**
|
|
279
|
-
* Represents the props of the [KendoReact WindowActionsBar component](
|
|
279
|
+
* Represents the props of the [KendoReact WindowActionsBar component](https://www.telerik.com/kendo-react-ui/components/dialogs/dialog).
|
|
280
280
|
*/
|
|
281
281
|
declare interface WindowActionsBarProps {
|
|
282
282
|
/**
|
|
283
|
-
* Specifies the possible layouts of the action buttons ([see example](
|
|
283
|
+
* Specifies the possible layouts of the action buttons ([see example](https://www.telerik.com/kendo-react-ui/components/dialogs/window/action-buttons)). Defaults to `end`.
|
|
284
284
|
*/
|
|
285
285
|
layout?: ActionsLayout;
|
|
286
286
|
/**
|
|
@@ -346,7 +346,7 @@ export declare interface WindowMoveEvent {
|
|
|
346
346
|
}
|
|
347
347
|
|
|
348
348
|
/**
|
|
349
|
-
* Represents the props of the [KendoReact Window component](
|
|
349
|
+
* Represents the props of the [KendoReact Window component](https://www.telerik.com/kendo-react-ui/components/dialogs/window).
|
|
350
350
|
*/
|
|
351
351
|
export declare interface WindowProps {
|
|
352
352
|
/**
|
|
@@ -396,7 +396,7 @@ export declare interface WindowProps {
|
|
|
396
396
|
*/
|
|
397
397
|
doubleClickStageChange?: boolean;
|
|
398
398
|
/**
|
|
399
|
-
* Specifies if the Window will be draggable ([see example](
|
|
399
|
+
* Specifies if the Window will be draggable ([see example](https://www.telerik.com/kendo-react-ui/components/dialogs/window/positioning-dragging#toc-dragging)).
|
|
400
400
|
*
|
|
401
401
|
* @default true
|
|
402
402
|
*
|
|
@@ -407,7 +407,7 @@ export declare interface WindowProps {
|
|
|
407
407
|
*/
|
|
408
408
|
draggable?: boolean;
|
|
409
409
|
/**
|
|
410
|
-
* Specifies the height of the Window ([see example](
|
|
410
|
+
* Specifies the height of the Window ([see example](https://www.telerik.com/kendo-react-ui/components/dialogs/window/dimensions-resizing#toc-dimensions)). When set to `null`, the window is automatically sized to fit its content.
|
|
411
411
|
*
|
|
412
412
|
* @example
|
|
413
413
|
* ```jsx
|
|
@@ -416,7 +416,7 @@ export declare interface WindowProps {
|
|
|
416
416
|
*/
|
|
417
417
|
height?: number | null;
|
|
418
418
|
/**
|
|
419
|
-
* Specifies the initial `left` value ([see example](
|
|
419
|
+
* Specifies the initial `left` value ([see example](https://www.telerik.com/kendo-react-ui/components/dialogs/window/positioning-dragging#toc-positioning)). The Window will be in an uncontrolled mode.
|
|
420
420
|
*
|
|
421
421
|
* @example
|
|
422
422
|
* ```jsx
|
|
@@ -425,7 +425,7 @@ export declare interface WindowProps {
|
|
|
425
425
|
*/
|
|
426
426
|
initialLeft?: number;
|
|
427
427
|
/**
|
|
428
|
-
* Specifies the initial `top` value ([see example](
|
|
428
|
+
* Specifies the initial `top` value ([see example](https://www.telerik.com/kendo-react-ui/components/dialogs/window/positioning-dragging#toc-positioning)). The component will be in an uncontrolled mode.
|
|
429
429
|
*
|
|
430
430
|
* @example
|
|
431
431
|
* ```jsx
|
|
@@ -434,7 +434,7 @@ export declare interface WindowProps {
|
|
|
434
434
|
*/
|
|
435
435
|
initialTop?: number;
|
|
436
436
|
/**
|
|
437
|
-
* Specifies the initial width of the Window ([see example](
|
|
437
|
+
* Specifies the initial width of the Window ([see example](https://www.telerik.com/kendo-react-ui/components/dialogs/window/dimensions-resizing#toc-dimensions)). The component will be in an uncontrolled mode.
|
|
438
438
|
*
|
|
439
439
|
* @example
|
|
440
440
|
* ```jsx
|
|
@@ -443,7 +443,7 @@ export declare interface WindowProps {
|
|
|
443
443
|
*/
|
|
444
444
|
initialWidth?: number;
|
|
445
445
|
/**
|
|
446
|
-
* Specifies the initial height of the Window ([see example](
|
|
446
|
+
* Specifies the initial height of the Window ([see example](https://www.telerik.com/kendo-react-ui/components/dialogs/window/dimensions-resizing#toc-dimensions)). The component will be in an uncontrolled mode.
|
|
447
447
|
*
|
|
448
448
|
* @example
|
|
449
449
|
* ```jsx
|
|
@@ -470,7 +470,7 @@ export declare interface WindowProps {
|
|
|
470
470
|
*/
|
|
471
471
|
maximizeButton?: React.ComponentType<any>;
|
|
472
472
|
/**
|
|
473
|
-
* Specifies the minimum height of the Window ([see example](
|
|
473
|
+
* Specifies the minimum height of the Window ([see example](https://www.telerik.com/kendo-react-ui/components/dialogs/window/dimensions-resizing#toc-resizing)).
|
|
474
474
|
*
|
|
475
475
|
* @default 100
|
|
476
476
|
*
|
|
@@ -481,7 +481,7 @@ export declare interface WindowProps {
|
|
|
481
481
|
*/
|
|
482
482
|
minHeight?: number;
|
|
483
483
|
/**
|
|
484
|
-
* Specifies the minimum width of the Window ([see example](
|
|
484
|
+
* Specifies the minimum width of the Window ([see example](https://www.telerik.com/kendo-react-ui/components/dialogs/window/dimensions-resizing#toc-resizing)).
|
|
485
485
|
*
|
|
486
486
|
* @default 120
|
|
487
487
|
*
|
|
@@ -512,7 +512,7 @@ export declare interface WindowProps {
|
|
|
512
512
|
*/
|
|
513
513
|
modal?: boolean;
|
|
514
514
|
/**
|
|
515
|
-
* Specifies if the Window will be resizable ([see example](
|
|
515
|
+
* Specifies if the Window will be resizable ([see example](https://www.telerik.com/kendo-react-ui/components/dialogs/window/dimensions-resizing#toc-resizing)).
|
|
516
516
|
*
|
|
517
517
|
* @default true
|
|
518
518
|
*
|
|
@@ -541,7 +541,7 @@ export declare interface WindowProps {
|
|
|
541
541
|
*/
|
|
542
542
|
shouldUpdateOnDrag?: boolean;
|
|
543
543
|
/**
|
|
544
|
-
* Specifies the title of the Window ([see example](
|
|
544
|
+
* Specifies the title of the Window ([see example](https://www.telerik.com/kendo-react-ui/components/dialogs/window/title)).
|
|
545
545
|
*
|
|
546
546
|
* @example
|
|
547
547
|
* ```jsx
|
|
@@ -568,7 +568,7 @@ export declare interface WindowProps {
|
|
|
568
568
|
*/
|
|
569
569
|
width?: number;
|
|
570
570
|
/**
|
|
571
|
-
* Controls the state of the Window ([see example](
|
|
571
|
+
* Controls the state of the Window ([see example](https://www.telerik.com/kendo-react-ui/components/dialogs/window/minimizing-fullscreen)).
|
|
572
572
|
*
|
|
573
573
|
* The supported values are:
|
|
574
574
|
* * `DEFAULT`
|
package/index.d.ts
CHANGED
|
@@ -19,10 +19,10 @@ import { ZIndexContextType } from '@progress/kendo-react-common';
|
|
|
19
19
|
export declare type ActionsLayout = 'start' | 'center' | 'end' | 'stretched';
|
|
20
20
|
|
|
21
21
|
/**
|
|
22
|
-
* Represents the [KendoReact Dialog component](
|
|
22
|
+
* Represents the [KendoReact Dialog component](https://www.telerik.com/kendo-react-ui/components/dialogs/dialog).
|
|
23
23
|
*
|
|
24
|
-
* Accepts properties of type [DialogProps](
|
|
25
|
-
* Obtaining the `ref` returns an object of type [DialogHandle](
|
|
24
|
+
* Accepts properties of type [DialogProps](https://www.telerik.com/kendo-react-ui/components/dialogs/api/dialogprops).
|
|
25
|
+
* Obtaining the `ref` returns an object of type [DialogHandle](https://www.telerik.com/kendo-react-ui/components/dialogs/api/dialoghandle).
|
|
26
26
|
*
|
|
27
27
|
* @remarks
|
|
28
28
|
* Supported children components are: {@link DialogActionsBar}.
|
|
@@ -37,11 +37,11 @@ export declare const Dialog: React_2.ForwardRefExoticComponent<DialogProps & Rea
|
|
|
37
37
|
export declare const DialogActionsBar: React_2.FunctionComponent<DialogActionsBarProps>;
|
|
38
38
|
|
|
39
39
|
/**
|
|
40
|
-
* Represents the props of the [KendoReact DialogActionsBar component](
|
|
40
|
+
* Represents the props of the [KendoReact DialogActionsBar component](https://www.telerik.com/kendo-react-ui/components/dialogs/dialog).
|
|
41
41
|
*/
|
|
42
42
|
declare interface DialogActionsBarProps {
|
|
43
43
|
/**
|
|
44
|
-
* Specifies the possible layouts of the action buttons ([see example](
|
|
44
|
+
* Specifies the possible layouts of the action buttons ([see example](https://www.telerik.com/kendo-react-ui/components/dialogs/dialog/action-buttons)). Defaults to `stretched`.
|
|
45
45
|
*/
|
|
46
46
|
layout?: ActionsLayout;
|
|
47
47
|
/**
|
|
@@ -71,7 +71,7 @@ export declare interface DialogHandle {
|
|
|
71
71
|
}
|
|
72
72
|
|
|
73
73
|
/**
|
|
74
|
-
* Represents the props of the [KendoReact Dialog component](
|
|
74
|
+
* Represents the props of the [KendoReact Dialog component](https://www.telerik.com/kendo-react-ui/components/dialogs/dialog).
|
|
75
75
|
*/
|
|
76
76
|
export declare interface DialogProps {
|
|
77
77
|
/**
|
|
@@ -86,7 +86,7 @@ export declare interface DialogProps {
|
|
|
86
86
|
*/
|
|
87
87
|
autoFocus?: boolean;
|
|
88
88
|
/**
|
|
89
|
-
* Specifies the query selector used to set the initial focus ([see examples](
|
|
89
|
+
* Specifies the query selector used to set the initial focus ([see examples](https://www.telerik.com/kendo-react-ui/components/dialogs/dialog/initial-focus)).
|
|
90
90
|
*
|
|
91
91
|
* @example
|
|
92
92
|
* ```jsx
|
|
@@ -95,7 +95,7 @@ export declare interface DialogProps {
|
|
|
95
95
|
*/
|
|
96
96
|
autoFocusedElement?: string;
|
|
97
97
|
/**
|
|
98
|
-
* Sets the title of the Dialog ([see example](
|
|
98
|
+
* Sets the title of the Dialog ([see example](https://www.telerik.com/kendo-react-ui/components/dialogs/dialog/title)). If you do not specify the `title`, the Dialog does not render a **Close** button.
|
|
99
99
|
*
|
|
100
100
|
* @example
|
|
101
101
|
* ```jsx
|
|
@@ -144,7 +144,7 @@ export declare interface DialogProps {
|
|
|
144
144
|
*/
|
|
145
145
|
overlayStyle?: React.CSSProperties;
|
|
146
146
|
/**
|
|
147
|
-
* Specifies the width of the Dialog ([see example](
|
|
147
|
+
* Specifies the width of the Dialog ([see example](https://www.telerik.com/kendo-react-ui/components/dialogs/dialog/dimensions)).
|
|
148
148
|
*
|
|
149
149
|
* @example
|
|
150
150
|
* ```jsx
|
|
@@ -153,7 +153,7 @@ export declare interface DialogProps {
|
|
|
153
153
|
*/
|
|
154
154
|
width?: number | string;
|
|
155
155
|
/**
|
|
156
|
-
* Specifies the height of the Dialog ([see example](
|
|
156
|
+
* Specifies the height of the Dialog ([see example](https://www.telerik.com/kendo-react-ui/components/dialogs/dialog/dimensions)).
|
|
157
157
|
*
|
|
158
158
|
* @example
|
|
159
159
|
* ```jsx
|
|
@@ -257,10 +257,10 @@ export declare const DialogPropsContext: React_2.Context<(p: DialogProps) => Dia
|
|
|
257
257
|
declare type Window_2 = WindowHandle;
|
|
258
258
|
|
|
259
259
|
/**
|
|
260
|
-
* Represents the [KendoReact Window component](
|
|
260
|
+
* Represents the [KendoReact Window component](https://www.telerik.com/kendo-react-ui/components/dialogs/window).
|
|
261
261
|
*
|
|
262
|
-
* Accepts properties of type [WindowProps](
|
|
263
|
-
* Obtaining the `ref` returns an object of type [WindowHandle](
|
|
262
|
+
* Accepts properties of type [WindowProps](https://www.telerik.com/kendo-react-ui/components/dialogs/api/windowprops).
|
|
263
|
+
* Obtaining the `ref` returns an object of type [WindowHandle](https://www.telerik.com/kendo-react-ui/components/dialogs/api/windowhandle).
|
|
264
264
|
*
|
|
265
265
|
* @remarks
|
|
266
266
|
* Supported children components are: {@link WindowActionsBar}.
|
|
@@ -276,11 +276,11 @@ export { Window_2 as Window }
|
|
|
276
276
|
export declare const WindowActionsBar: React_2.FunctionComponent<WindowActionsBarProps>;
|
|
277
277
|
|
|
278
278
|
/**
|
|
279
|
-
* Represents the props of the [KendoReact WindowActionsBar component](
|
|
279
|
+
* Represents the props of the [KendoReact WindowActionsBar component](https://www.telerik.com/kendo-react-ui/components/dialogs/dialog).
|
|
280
280
|
*/
|
|
281
281
|
declare interface WindowActionsBarProps {
|
|
282
282
|
/**
|
|
283
|
-
* Specifies the possible layouts of the action buttons ([see example](
|
|
283
|
+
* Specifies the possible layouts of the action buttons ([see example](https://www.telerik.com/kendo-react-ui/components/dialogs/window/action-buttons)). Defaults to `end`.
|
|
284
284
|
*/
|
|
285
285
|
layout?: ActionsLayout;
|
|
286
286
|
/**
|
|
@@ -346,7 +346,7 @@ export declare interface WindowMoveEvent {
|
|
|
346
346
|
}
|
|
347
347
|
|
|
348
348
|
/**
|
|
349
|
-
* Represents the props of the [KendoReact Window component](
|
|
349
|
+
* Represents the props of the [KendoReact Window component](https://www.telerik.com/kendo-react-ui/components/dialogs/window).
|
|
350
350
|
*/
|
|
351
351
|
export declare interface WindowProps {
|
|
352
352
|
/**
|
|
@@ -396,7 +396,7 @@ export declare interface WindowProps {
|
|
|
396
396
|
*/
|
|
397
397
|
doubleClickStageChange?: boolean;
|
|
398
398
|
/**
|
|
399
|
-
* Specifies if the Window will be draggable ([see example](
|
|
399
|
+
* Specifies if the Window will be draggable ([see example](https://www.telerik.com/kendo-react-ui/components/dialogs/window/positioning-dragging#toc-dragging)).
|
|
400
400
|
*
|
|
401
401
|
* @default true
|
|
402
402
|
*
|
|
@@ -407,7 +407,7 @@ export declare interface WindowProps {
|
|
|
407
407
|
*/
|
|
408
408
|
draggable?: boolean;
|
|
409
409
|
/**
|
|
410
|
-
* Specifies the height of the Window ([see example](
|
|
410
|
+
* Specifies the height of the Window ([see example](https://www.telerik.com/kendo-react-ui/components/dialogs/window/dimensions-resizing#toc-dimensions)). When set to `null`, the window is automatically sized to fit its content.
|
|
411
411
|
*
|
|
412
412
|
* @example
|
|
413
413
|
* ```jsx
|
|
@@ -416,7 +416,7 @@ export declare interface WindowProps {
|
|
|
416
416
|
*/
|
|
417
417
|
height?: number | null;
|
|
418
418
|
/**
|
|
419
|
-
* Specifies the initial `left` value ([see example](
|
|
419
|
+
* Specifies the initial `left` value ([see example](https://www.telerik.com/kendo-react-ui/components/dialogs/window/positioning-dragging#toc-positioning)). The Window will be in an uncontrolled mode.
|
|
420
420
|
*
|
|
421
421
|
* @example
|
|
422
422
|
* ```jsx
|
|
@@ -425,7 +425,7 @@ export declare interface WindowProps {
|
|
|
425
425
|
*/
|
|
426
426
|
initialLeft?: number;
|
|
427
427
|
/**
|
|
428
|
-
* Specifies the initial `top` value ([see example](
|
|
428
|
+
* Specifies the initial `top` value ([see example](https://www.telerik.com/kendo-react-ui/components/dialogs/window/positioning-dragging#toc-positioning)). The component will be in an uncontrolled mode.
|
|
429
429
|
*
|
|
430
430
|
* @example
|
|
431
431
|
* ```jsx
|
|
@@ -434,7 +434,7 @@ export declare interface WindowProps {
|
|
|
434
434
|
*/
|
|
435
435
|
initialTop?: number;
|
|
436
436
|
/**
|
|
437
|
-
* Specifies the initial width of the Window ([see example](
|
|
437
|
+
* Specifies the initial width of the Window ([see example](https://www.telerik.com/kendo-react-ui/components/dialogs/window/dimensions-resizing#toc-dimensions)). The component will be in an uncontrolled mode.
|
|
438
438
|
*
|
|
439
439
|
* @example
|
|
440
440
|
* ```jsx
|
|
@@ -443,7 +443,7 @@ export declare interface WindowProps {
|
|
|
443
443
|
*/
|
|
444
444
|
initialWidth?: number;
|
|
445
445
|
/**
|
|
446
|
-
* Specifies the initial height of the Window ([see example](
|
|
446
|
+
* Specifies the initial height of the Window ([see example](https://www.telerik.com/kendo-react-ui/components/dialogs/window/dimensions-resizing#toc-dimensions)). The component will be in an uncontrolled mode.
|
|
447
447
|
*
|
|
448
448
|
* @example
|
|
449
449
|
* ```jsx
|
|
@@ -470,7 +470,7 @@ export declare interface WindowProps {
|
|
|
470
470
|
*/
|
|
471
471
|
maximizeButton?: React.ComponentType<any>;
|
|
472
472
|
/**
|
|
473
|
-
* Specifies the minimum height of the Window ([see example](
|
|
473
|
+
* Specifies the minimum height of the Window ([see example](https://www.telerik.com/kendo-react-ui/components/dialogs/window/dimensions-resizing#toc-resizing)).
|
|
474
474
|
*
|
|
475
475
|
* @default 100
|
|
476
476
|
*
|
|
@@ -481,7 +481,7 @@ export declare interface WindowProps {
|
|
|
481
481
|
*/
|
|
482
482
|
minHeight?: number;
|
|
483
483
|
/**
|
|
484
|
-
* Specifies the minimum width of the Window ([see example](
|
|
484
|
+
* Specifies the minimum width of the Window ([see example](https://www.telerik.com/kendo-react-ui/components/dialogs/window/dimensions-resizing#toc-resizing)).
|
|
485
485
|
*
|
|
486
486
|
* @default 120
|
|
487
487
|
*
|
|
@@ -512,7 +512,7 @@ export declare interface WindowProps {
|
|
|
512
512
|
*/
|
|
513
513
|
modal?: boolean;
|
|
514
514
|
/**
|
|
515
|
-
* Specifies if the Window will be resizable ([see example](
|
|
515
|
+
* Specifies if the Window will be resizable ([see example](https://www.telerik.com/kendo-react-ui/components/dialogs/window/dimensions-resizing#toc-resizing)).
|
|
516
516
|
*
|
|
517
517
|
* @default true
|
|
518
518
|
*
|
|
@@ -541,7 +541,7 @@ export declare interface WindowProps {
|
|
|
541
541
|
*/
|
|
542
542
|
shouldUpdateOnDrag?: boolean;
|
|
543
543
|
/**
|
|
544
|
-
* Specifies the title of the Window ([see example](
|
|
544
|
+
* Specifies the title of the Window ([see example](https://www.telerik.com/kendo-react-ui/components/dialogs/window/title)).
|
|
545
545
|
*
|
|
546
546
|
* @example
|
|
547
547
|
* ```jsx
|
|
@@ -568,7 +568,7 @@ export declare interface WindowProps {
|
|
|
568
568
|
*/
|
|
569
569
|
width?: number;
|
|
570
570
|
/**
|
|
571
|
-
* Controls the state of the Window ([see example](
|
|
571
|
+
* Controls the state of the Window ([see example](https://www.telerik.com/kendo-react-ui/components/dialogs/window/minimizing-fullscreen)).
|
|
572
572
|
*
|
|
573
573
|
* The supported values are:
|
|
574
574
|
* * `DEFAULT`
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-react-dialogs",
|
|
3
|
-
"version": "13.3.0-develop.
|
|
3
|
+
"version": "13.3.0-develop.3",
|
|
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-develop.
|
|
30
|
-
"@progress/kendo-react-common": "13.3.0-develop.
|
|
31
|
-
"@progress/kendo-react-intl": "13.3.0-develop.
|
|
29
|
+
"@progress/kendo-react-buttons": "13.3.0-develop.3",
|
|
30
|
+
"@progress/kendo-react-common": "13.3.0-develop.3",
|
|
31
|
+
"@progress/kendo-react-intl": "13.3.0-develop.3",
|
|
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"
|