@progress/kendo-vue-dialogs 3.3.4 → 3.3.6-dev.202206170937
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/dist/cdn/js/kendo-vue-dialogs.js +1 -1
- package/dist/es/Dialog.d.ts +8 -5
- package/dist/es/Dialog.js +5 -1
- package/dist/es/DialogActionsBar.d.ts +4 -1
- package/dist/es/DialogActionsBar.js +5 -1
- package/dist/es/DialogTitleBar.d.ts +4 -1
- package/dist/es/DialogTitleBar.js +5 -1
- package/dist/es/Window.d.ts +4 -1
- package/dist/es/Window.js +5 -1
- package/dist/es/WindowProps.d.ts +14 -10
- package/dist/es/WindowResizeHandlers.d.ts +4 -1
- package/dist/es/WindowResizeHandlers.js +5 -1
- package/dist/es/WindowTitlebar.d.ts +4 -1
- package/dist/es/WindowTitlebar.js +5 -1
- package/dist/es/additionalTypes.ts +11 -0
- package/dist/es/package-metadata.js +1 -1
- package/dist/npm/Dialog.d.ts +8 -5
- package/dist/npm/Dialog.js +5 -1
- package/dist/npm/DialogActionsBar.d.ts +4 -1
- package/dist/npm/DialogActionsBar.js +5 -1
- package/dist/npm/DialogTitleBar.d.ts +4 -1
- package/dist/npm/DialogTitleBar.js +5 -1
- package/dist/npm/Window.d.ts +4 -1
- package/dist/npm/Window.js +5 -1
- package/dist/npm/WindowProps.d.ts +14 -10
- package/dist/npm/WindowResizeHandlers.d.ts +4 -1
- package/dist/npm/WindowResizeHandlers.js +5 -1
- package/dist/npm/WindowTitlebar.d.ts +4 -1
- package/dist/npm/WindowTitlebar.js +5 -1
- package/dist/npm/additionalTypes.ts +11 -0
- package/dist/npm/package-metadata.js +1 -1
- package/package.json +3 -3
package/dist/es/Dialog.d.ts
CHANGED
|
@@ -5,7 +5,7 @@ declare type DefaultMethods<V> = {
|
|
|
5
5
|
};
|
|
6
6
|
import { DialogCloseEvent } from './events';
|
|
7
7
|
/**
|
|
8
|
-
* Represents the props of the [KendoVue Dialog component]({% slug
|
|
8
|
+
* Represents the props of the [KendoVue Dialog component]({% slug overview_dialog %}).
|
|
9
9
|
*/
|
|
10
10
|
export interface DialogProps {
|
|
11
11
|
/**
|
|
@@ -13,7 +13,7 @@ export interface DialogProps {
|
|
|
13
13
|
*/
|
|
14
14
|
appendTo?: String;
|
|
15
15
|
/**
|
|
16
|
-
* Sets the title of the Dialog ([see example]({% slug
|
|
16
|
+
* Sets the title of the Dialog ([see example]({% slug title_dialog %})). If `title` is not specified, the Dialog does not render a **Close** button.
|
|
17
17
|
*/
|
|
18
18
|
title?: string | any;
|
|
19
19
|
/**
|
|
@@ -29,11 +29,11 @@ export interface DialogProps {
|
|
|
29
29
|
*/
|
|
30
30
|
closeIcon?: boolean;
|
|
31
31
|
/**
|
|
32
|
-
* Specifies the width of the Dialog ([see example]({% slug
|
|
32
|
+
* Specifies the width of the Dialog ([see example]({% slug dimensions_dialog %})).
|
|
33
33
|
*/
|
|
34
34
|
width?: number | string;
|
|
35
35
|
/**
|
|
36
|
-
* Specifies the height of the Dialog ([see example]({% slug
|
|
36
|
+
* Specifies the height of the Dialog ([see example]({% slug dimensions_dialog %})).
|
|
37
37
|
*/
|
|
38
38
|
height?: number | string;
|
|
39
39
|
/**
|
|
@@ -89,8 +89,11 @@ export interface DialogState {
|
|
|
89
89
|
export interface DialogAll extends DialogMethods, DialogState, DialogProps {
|
|
90
90
|
}
|
|
91
91
|
/**
|
|
92
|
-
*
|
|
92
|
+
* @hidden
|
|
93
93
|
*/
|
|
94
94
|
declare let DialogVue2: ComponentOptions<Vue2type, DefaultData<{}>, DefaultMethods<DialogAll>, {}, RecordPropsDefinition<DialogProps>>;
|
|
95
|
+
/**
|
|
96
|
+
* @hidden
|
|
97
|
+
*/
|
|
95
98
|
declare const Dialog: DefineComponent<DialogProps, any, {}, {}, DialogMethods, {}, {}, {}, string, DialogProps, DialogProps, {}>;
|
|
96
99
|
export { Dialog, DialogVue2 };
|
package/dist/es/Dialog.js
CHANGED
|
@@ -7,7 +7,7 @@ import { guid, Keys, templateRendering, hasListener, templateDefinition, getList
|
|
|
7
7
|
import { packageMetadata } from './package-metadata';
|
|
8
8
|
import { DEFAULT_DIALOGS_ZINDEX } from './constants';
|
|
9
9
|
/**
|
|
10
|
-
*
|
|
10
|
+
* @hidden
|
|
11
11
|
*/
|
|
12
12
|
|
|
13
13
|
var DialogVue2 = {
|
|
@@ -167,5 +167,9 @@ var DialogVue2 = {
|
|
|
167
167
|
return this.$props.appendTo ? h("div", [dialog]) : dialog;
|
|
168
168
|
}
|
|
169
169
|
};
|
|
170
|
+
/**
|
|
171
|
+
* @hidden
|
|
172
|
+
*/
|
|
173
|
+
|
|
170
174
|
var Dialog = DialogVue2;
|
|
171
175
|
export { Dialog, DialogVue2 };
|
|
@@ -23,8 +23,11 @@ export interface DialogActionsBarComputed {
|
|
|
23
23
|
export interface DialogActionsBarAll extends DialogActionsBarComputed, DialogActionsBarProps, Vue2type {
|
|
24
24
|
}
|
|
25
25
|
/**
|
|
26
|
-
*
|
|
26
|
+
* @hidden
|
|
27
27
|
*/
|
|
28
28
|
declare let DialogActionsBarVue2: ComponentOptions<Vue2type, DefaultData<{}>, DefaultMethods<DialogActionsBarAll>, {}, RecordPropsDefinition<DialogActionsBarProps>>;
|
|
29
|
+
/**
|
|
30
|
+
* @hidden
|
|
31
|
+
*/
|
|
29
32
|
declare const DialogActionsBar: DefineComponent<{}, any, {}, {}, {}, {}, {}, {}, string, {}, {}, {}>;
|
|
30
33
|
export { DialogActionsBar, DialogActionsBarVue2 };
|
|
@@ -4,7 +4,7 @@ var allVue = Vue;
|
|
|
4
4
|
var gh = allVue.h;
|
|
5
5
|
import { getDefaultSlots } from '@progress/kendo-vue-common';
|
|
6
6
|
/**
|
|
7
|
-
*
|
|
7
|
+
* @hidden
|
|
8
8
|
*/
|
|
9
9
|
|
|
10
10
|
var DialogActionsBarVue2 = {
|
|
@@ -49,5 +49,9 @@ var DialogActionsBarVue2 = {
|
|
|
49
49
|
}, [defaultSlot]);
|
|
50
50
|
}
|
|
51
51
|
};
|
|
52
|
+
/**
|
|
53
|
+
* @hidden
|
|
54
|
+
*/
|
|
55
|
+
|
|
52
56
|
var DialogActionsBar = DialogActionsBarVue2;
|
|
53
57
|
export { DialogActionsBar, DialogActionsBarVue2 };
|
|
@@ -36,8 +36,11 @@ export interface DialogTitleBarMethods extends Vue2type {
|
|
|
36
36
|
onCloseButtonClick: (event: any) => void;
|
|
37
37
|
}
|
|
38
38
|
/**
|
|
39
|
-
*
|
|
39
|
+
* @hidden
|
|
40
40
|
*/
|
|
41
41
|
declare let DialogTitleBarVue2: ComponentOptions<Vue2type, DefaultData<{}>, DefaultMethods<DialogTitleBarMethods>, {}, RecordPropsDefinition<DialogTitleBarProps>>;
|
|
42
|
+
/**
|
|
43
|
+
* @hidden
|
|
44
|
+
*/
|
|
42
45
|
declare const DialogTitleBar: DefineComponent<DialogTitleBarProps, any, {}, {}, DialogTitleBarMethods, {}, {}, {}, string, DialogTitleBarProps, DialogTitleBarProps, {}>;
|
|
43
46
|
export { DialogTitleBar, DialogTitleBarVue2 };
|
|
@@ -5,7 +5,7 @@ var gh = allVue.h;
|
|
|
5
5
|
import { getTemplate } from '@progress/kendo-vue-common';
|
|
6
6
|
import { Button } from '@progress/kendo-vue-buttons';
|
|
7
7
|
/**
|
|
8
|
-
*
|
|
8
|
+
* @hidden
|
|
9
9
|
*/
|
|
10
10
|
|
|
11
11
|
var DialogTitleBarVue2 = {
|
|
@@ -73,5 +73,9 @@ var DialogTitleBarVue2 = {
|
|
|
73
73
|
})])]);
|
|
74
74
|
}
|
|
75
75
|
};
|
|
76
|
+
/**
|
|
77
|
+
* @hidden
|
|
78
|
+
*/
|
|
79
|
+
|
|
76
80
|
var DialogTitleBar = DialogTitleBarVue2;
|
|
77
81
|
export { DialogTitleBar, DialogTitleBarVue2 };
|
package/dist/es/Window.d.ts
CHANGED
|
@@ -65,8 +65,11 @@ export interface WindowMethods extends Vue2type {
|
|
|
65
65
|
export interface WindowAll extends WindowMethods, WindowData, WindowState, WindowComputed {
|
|
66
66
|
}
|
|
67
67
|
/**
|
|
68
|
-
*
|
|
68
|
+
* @hidden
|
|
69
69
|
*/
|
|
70
70
|
declare let WindowVue2: ComponentOptions<Vue2type, DefaultData<WindowData>, DefaultMethods<WindowAll>, WindowComputed, RecordPropsDefinition<WindowProps>>;
|
|
71
|
+
/**
|
|
72
|
+
* @hidden
|
|
73
|
+
*/
|
|
71
74
|
declare const Window: DefineComponent<WindowProps, any, WindowData, WindowComputed, WindowMethods, {}, {}, {}, string, WindowProps, WindowProps, {}>;
|
|
72
75
|
export { Window, WindowVue2 };
|
package/dist/es/Window.js
CHANGED
|
@@ -30,7 +30,7 @@ var DEFAULT_MIN_WIDTH = 120;
|
|
|
30
30
|
var DEFAULT_MIN_HEIGHT = 100;
|
|
31
31
|
var DEFAULT_STEP = 5;
|
|
32
32
|
/**
|
|
33
|
-
*
|
|
33
|
+
* @hidden
|
|
34
34
|
*/
|
|
35
35
|
|
|
36
36
|
var WindowVue2 = {
|
|
@@ -655,5 +655,9 @@ var WindowVue2 = {
|
|
|
655
655
|
return this.$props.appendTo ? h("div", [windowElement]) : windowElement;
|
|
656
656
|
}
|
|
657
657
|
};
|
|
658
|
+
/**
|
|
659
|
+
* @hidden
|
|
660
|
+
*/
|
|
661
|
+
|
|
658
662
|
var Window = WindowVue2;
|
|
659
663
|
export { Window, WindowVue2 };
|
package/dist/es/WindowProps.d.ts
CHANGED
|
@@ -13,9 +13,10 @@ export interface WindowProps {
|
|
|
13
13
|
*/
|
|
14
14
|
appendTo?: String;
|
|
15
15
|
/**
|
|
16
|
-
*
|
|
16
|
+
* Acccepts a named slot `string`, functional or class component for the close button. If set to `false` the button is not rendered.
|
|
17
|
+
* @default true
|
|
17
18
|
*/
|
|
18
|
-
closeButton?:
|
|
19
|
+
closeButton?: string | Function | object | boolean;
|
|
19
20
|
/**
|
|
20
21
|
* Specifies if the Window stage will change on title double click. The this is on by default.
|
|
21
22
|
*/
|
|
@@ -51,9 +52,10 @@ export interface WindowProps {
|
|
|
51
52
|
windowStyle?: object;
|
|
52
53
|
windowClass?: string;
|
|
53
54
|
/**
|
|
54
|
-
*
|
|
55
|
+
* Acccepts a named slot `string`, functional or class component for the maximize button. If set to `false` the button is not rendered.
|
|
56
|
+
* @default true
|
|
55
57
|
*/
|
|
56
|
-
maximizeButton?:
|
|
58
|
+
maximizeButton?: string | Function | object | boolean;
|
|
57
59
|
/**
|
|
58
60
|
* Specifies the minimum height of the Window ([see example]({% slug dimensionsresizing_window %}#toc-resizing)).
|
|
59
61
|
*/
|
|
@@ -63,9 +65,10 @@ export interface WindowProps {
|
|
|
63
65
|
*/
|
|
64
66
|
minWidth?: number;
|
|
65
67
|
/**
|
|
66
|
-
*
|
|
68
|
+
* Acccepts a named slot `string`, functional or class component for the minimize button. If set to `false` the button is not rendered.
|
|
69
|
+
* @default true
|
|
67
70
|
*/
|
|
68
|
-
minimizeButton?:
|
|
71
|
+
minimizeButton?: string | Function | object | boolean;
|
|
69
72
|
/**
|
|
70
73
|
* Specifies if the Window will be modal by rendering an overlay under the component.
|
|
71
74
|
*/
|
|
@@ -75,9 +78,10 @@ export interface WindowProps {
|
|
|
75
78
|
*/
|
|
76
79
|
resizable?: boolean;
|
|
77
80
|
/**
|
|
78
|
-
*
|
|
81
|
+
* Acccepts a named slot `string`, functional or class component for the restore button. If set to `false` the button is not rendered.
|
|
82
|
+
* @default true
|
|
79
83
|
*/
|
|
80
|
-
restoreButton?:
|
|
84
|
+
restoreButton?: string | Function | object | boolean;
|
|
81
85
|
/**
|
|
82
86
|
* Specifies if the Window content will update during resizing.
|
|
83
87
|
*/
|
|
@@ -87,9 +91,9 @@ export interface WindowProps {
|
|
|
87
91
|
*/
|
|
88
92
|
title?: string | any;
|
|
89
93
|
/**
|
|
90
|
-
*
|
|
94
|
+
* Acccepts a named slot `string`, functional or class component for the title render.
|
|
91
95
|
*/
|
|
92
|
-
titleRender?:
|
|
96
|
+
titleRender?: string | Function | object;
|
|
93
97
|
/**
|
|
94
98
|
* Specifies the top coordinates of the Window.
|
|
95
99
|
*/
|
|
@@ -20,8 +20,11 @@ export interface ResizeHandlersMethods extends Vue2type {
|
|
|
20
20
|
onRelease: (data: any, key: string) => void;
|
|
21
21
|
}
|
|
22
22
|
/**
|
|
23
|
-
*
|
|
23
|
+
* @hidden
|
|
24
24
|
*/
|
|
25
25
|
declare let ResizeHandlersVue2: ComponentOptions<Vue2type, DefaultData<{}>, DefaultMethods<ResizeHandlersMethods>, {}, RecordPropsDefinition<ResizeHandlersProps>>;
|
|
26
|
+
/**
|
|
27
|
+
* @hidden
|
|
28
|
+
*/
|
|
26
29
|
declare const ResizeHandlers: DefineComponent<ResizeHandlersProps, any, {}, {}, ResizeHandlersMethods, {}, {}, {}, string, ResizeHandlersProps, ResizeHandlersProps, {}>;
|
|
27
30
|
export { ResizeHandlers, ResizeHandlersVue2 };
|
|
@@ -9,7 +9,7 @@ import { Draggable } from '@progress/kendo-vue-common';
|
|
|
9
9
|
|
|
10
10
|
var keys = ['n', 'e', 's', 'w', 'se', 'sw', 'ne', 'nw'];
|
|
11
11
|
/**
|
|
12
|
-
*
|
|
12
|
+
* @hidden
|
|
13
13
|
*/
|
|
14
14
|
|
|
15
15
|
var ResizeHandlersVue2 = {
|
|
@@ -83,5 +83,9 @@ var ResizeHandlersVue2 = {
|
|
|
83
83
|
}, this)]);
|
|
84
84
|
}
|
|
85
85
|
};
|
|
86
|
+
/**
|
|
87
|
+
* @hidden
|
|
88
|
+
*/
|
|
89
|
+
|
|
86
90
|
var ResizeHandlers = ResizeHandlersVue2;
|
|
87
91
|
export { ResizeHandlers, ResizeHandlersVue2 };
|
|
@@ -72,8 +72,11 @@ export interface WindowTitleBarMethods extends Vue2type {
|
|
|
72
72
|
onCloseClick: (e: any) => void;
|
|
73
73
|
}
|
|
74
74
|
/**
|
|
75
|
-
*
|
|
75
|
+
* @hidden
|
|
76
76
|
*/
|
|
77
77
|
declare let WindowTitleBarVue2: ComponentOptions<Vue2type, DefaultData<{}>, DefaultMethods<WindowTitleBarMethods>, {}, RecordPropsDefinition<WindowTitleBarProps>>;
|
|
78
|
+
/**
|
|
79
|
+
* @hidden
|
|
80
|
+
*/
|
|
78
81
|
declare const WindowTitleBar: DefineComponent<WindowTitleBarProps, any, {}, {}, WindowTitleBarMethods, {}, {}, {}, string, WindowTitleBarProps, WindowTitleBarProps, {}>;
|
|
79
82
|
export { WindowTitleBar, WindowTitleBarVue2 };
|
|
@@ -6,7 +6,7 @@ var gh = allVue.h;
|
|
|
6
6
|
import { Button } from '@progress/kendo-vue-buttons';
|
|
7
7
|
import { windowStage } from './StageEnum';
|
|
8
8
|
/**
|
|
9
|
-
*
|
|
9
|
+
* @hidden
|
|
10
10
|
*/
|
|
11
11
|
|
|
12
12
|
var WindowTitleBarVue2 = {
|
|
@@ -156,5 +156,9 @@ var WindowTitleBarVue2 = {
|
|
|
156
156
|
}, [stage === windowStage.DEFAULT && minimizeButtonRender, stage === windowStage.DEFAULT && maximizeButtonRender, stage !== windowStage.DEFAULT && restoreButtonRender]), closeButtonRender]);
|
|
157
157
|
}
|
|
158
158
|
};
|
|
159
|
+
/**
|
|
160
|
+
* @hidden
|
|
161
|
+
*/
|
|
162
|
+
|
|
159
163
|
var WindowTitleBar = WindowTitleBarVue2;
|
|
160
164
|
export { WindowTitleBar, WindowTitleBarVue2 };
|
|
@@ -2,9 +2,20 @@
|
|
|
2
2
|
import { DefineComponent } from 'vue';
|
|
3
3
|
// @ts-ignore
|
|
4
4
|
import * as Vue from 'vue';
|
|
5
|
+
|
|
6
|
+
/**
|
|
7
|
+
* @hidden
|
|
8
|
+
*/
|
|
5
9
|
// @ts-ignore
|
|
6
10
|
type Vue2type = Vue.default;
|
|
11
|
+
|
|
12
|
+
/**
|
|
13
|
+
* @hidden
|
|
14
|
+
*/
|
|
7
15
|
// @ts-ignore
|
|
8
16
|
import { RecordPropsDefinition, ComponentOptions } from 'vue/types/options';
|
|
17
|
+
/**
|
|
18
|
+
* @hidden
|
|
19
|
+
*/
|
|
9
20
|
// @ts-ignore
|
|
10
21
|
export { DefineComponent, RecordPropsDefinition, ComponentOptions, Vue2type };
|
|
@@ -5,7 +5,7 @@ export var packageMetadata = {
|
|
|
5
5
|
name: '@progress/kendo-vue-dialogs',
|
|
6
6
|
productName: 'Kendo UI for Vue',
|
|
7
7
|
productCodes: ['KENDOUIVUE', 'KENDOUICOMPLETE'],
|
|
8
|
-
publishDate:
|
|
8
|
+
publishDate: 1655457986,
|
|
9
9
|
version: '',
|
|
10
10
|
licensingDocsUrl: 'https://www.telerik.com/kendo-vue-ui/my-license/?utm_medium=product&utm_source=kendovue&utm_campaign=kendo-ui-vue-purchase-license-keys-warning'
|
|
11
11
|
};
|
package/dist/npm/Dialog.d.ts
CHANGED
|
@@ -5,7 +5,7 @@ declare type DefaultMethods<V> = {
|
|
|
5
5
|
};
|
|
6
6
|
import { DialogCloseEvent } from './events';
|
|
7
7
|
/**
|
|
8
|
-
* Represents the props of the [KendoVue Dialog component]({% slug
|
|
8
|
+
* Represents the props of the [KendoVue Dialog component]({% slug overview_dialog %}).
|
|
9
9
|
*/
|
|
10
10
|
export interface DialogProps {
|
|
11
11
|
/**
|
|
@@ -13,7 +13,7 @@ export interface DialogProps {
|
|
|
13
13
|
*/
|
|
14
14
|
appendTo?: String;
|
|
15
15
|
/**
|
|
16
|
-
* Sets the title of the Dialog ([see example]({% slug
|
|
16
|
+
* Sets the title of the Dialog ([see example]({% slug title_dialog %})). If `title` is not specified, the Dialog does not render a **Close** button.
|
|
17
17
|
*/
|
|
18
18
|
title?: string | any;
|
|
19
19
|
/**
|
|
@@ -29,11 +29,11 @@ export interface DialogProps {
|
|
|
29
29
|
*/
|
|
30
30
|
closeIcon?: boolean;
|
|
31
31
|
/**
|
|
32
|
-
* Specifies the width of the Dialog ([see example]({% slug
|
|
32
|
+
* Specifies the width of the Dialog ([see example]({% slug dimensions_dialog %})).
|
|
33
33
|
*/
|
|
34
34
|
width?: number | string;
|
|
35
35
|
/**
|
|
36
|
-
* Specifies the height of the Dialog ([see example]({% slug
|
|
36
|
+
* Specifies the height of the Dialog ([see example]({% slug dimensions_dialog %})).
|
|
37
37
|
*/
|
|
38
38
|
height?: number | string;
|
|
39
39
|
/**
|
|
@@ -89,8 +89,11 @@ export interface DialogState {
|
|
|
89
89
|
export interface DialogAll extends DialogMethods, DialogState, DialogProps {
|
|
90
90
|
}
|
|
91
91
|
/**
|
|
92
|
-
*
|
|
92
|
+
* @hidden
|
|
93
93
|
*/
|
|
94
94
|
declare let DialogVue2: ComponentOptions<Vue2type, DefaultData<{}>, DefaultMethods<DialogAll>, {}, RecordPropsDefinition<DialogProps>>;
|
|
95
|
+
/**
|
|
96
|
+
* @hidden
|
|
97
|
+
*/
|
|
95
98
|
declare const Dialog: DefineComponent<DialogProps, any, {}, {}, DialogMethods, {}, {}, {}, string, DialogProps, DialogProps, {}>;
|
|
96
99
|
export { Dialog, DialogVue2 };
|
package/dist/npm/Dialog.js
CHANGED
|
@@ -18,7 +18,7 @@ var package_metadata_1 = require("./package-metadata");
|
|
|
18
18
|
|
|
19
19
|
var constants_1 = require("./constants");
|
|
20
20
|
/**
|
|
21
|
-
*
|
|
21
|
+
* @hidden
|
|
22
22
|
*/
|
|
23
23
|
|
|
24
24
|
|
|
@@ -180,5 +180,9 @@ var DialogVue2 = {
|
|
|
180
180
|
}
|
|
181
181
|
};
|
|
182
182
|
exports.DialogVue2 = DialogVue2;
|
|
183
|
+
/**
|
|
184
|
+
* @hidden
|
|
185
|
+
*/
|
|
186
|
+
|
|
183
187
|
var Dialog = DialogVue2;
|
|
184
188
|
exports.Dialog = Dialog;
|
|
@@ -23,8 +23,11 @@ export interface DialogActionsBarComputed {
|
|
|
23
23
|
export interface DialogActionsBarAll extends DialogActionsBarComputed, DialogActionsBarProps, Vue2type {
|
|
24
24
|
}
|
|
25
25
|
/**
|
|
26
|
-
*
|
|
26
|
+
* @hidden
|
|
27
27
|
*/
|
|
28
28
|
declare let DialogActionsBarVue2: ComponentOptions<Vue2type, DefaultData<{}>, DefaultMethods<DialogActionsBarAll>, {}, RecordPropsDefinition<DialogActionsBarProps>>;
|
|
29
|
+
/**
|
|
30
|
+
* @hidden
|
|
31
|
+
*/
|
|
29
32
|
declare const DialogActionsBar: DefineComponent<{}, any, {}, {}, {}, {}, {}, {}, string, {}, {}, {}>;
|
|
30
33
|
export { DialogActionsBar, DialogActionsBarVue2 };
|
|
@@ -12,7 +12,7 @@ var gh = allVue.h;
|
|
|
12
12
|
|
|
13
13
|
var kendo_vue_common_1 = require("@progress/kendo-vue-common");
|
|
14
14
|
/**
|
|
15
|
-
*
|
|
15
|
+
* @hidden
|
|
16
16
|
*/
|
|
17
17
|
|
|
18
18
|
|
|
@@ -59,5 +59,9 @@ var DialogActionsBarVue2 = {
|
|
|
59
59
|
}
|
|
60
60
|
};
|
|
61
61
|
exports.DialogActionsBarVue2 = DialogActionsBarVue2;
|
|
62
|
+
/**
|
|
63
|
+
* @hidden
|
|
64
|
+
*/
|
|
65
|
+
|
|
62
66
|
var DialogActionsBar = DialogActionsBarVue2;
|
|
63
67
|
exports.DialogActionsBar = DialogActionsBar;
|
|
@@ -36,8 +36,11 @@ export interface DialogTitleBarMethods extends Vue2type {
|
|
|
36
36
|
onCloseButtonClick: (event: any) => void;
|
|
37
37
|
}
|
|
38
38
|
/**
|
|
39
|
-
*
|
|
39
|
+
* @hidden
|
|
40
40
|
*/
|
|
41
41
|
declare let DialogTitleBarVue2: ComponentOptions<Vue2type, DefaultData<{}>, DefaultMethods<DialogTitleBarMethods>, {}, RecordPropsDefinition<DialogTitleBarProps>>;
|
|
42
|
+
/**
|
|
43
|
+
* @hidden
|
|
44
|
+
*/
|
|
42
45
|
declare const DialogTitleBar: DefineComponent<DialogTitleBarProps, any, {}, {}, DialogTitleBarMethods, {}, {}, {}, string, DialogTitleBarProps, DialogTitleBarProps, {}>;
|
|
43
46
|
export { DialogTitleBar, DialogTitleBarVue2 };
|
|
@@ -14,7 +14,7 @@ var kendo_vue_common_1 = require("@progress/kendo-vue-common");
|
|
|
14
14
|
|
|
15
15
|
var kendo_vue_buttons_1 = require("@progress/kendo-vue-buttons");
|
|
16
16
|
/**
|
|
17
|
-
*
|
|
17
|
+
* @hidden
|
|
18
18
|
*/
|
|
19
19
|
|
|
20
20
|
|
|
@@ -84,5 +84,9 @@ var DialogTitleBarVue2 = {
|
|
|
84
84
|
}
|
|
85
85
|
};
|
|
86
86
|
exports.DialogTitleBarVue2 = DialogTitleBarVue2;
|
|
87
|
+
/**
|
|
88
|
+
* @hidden
|
|
89
|
+
*/
|
|
90
|
+
|
|
87
91
|
var DialogTitleBar = DialogTitleBarVue2;
|
|
88
92
|
exports.DialogTitleBar = DialogTitleBar;
|
package/dist/npm/Window.d.ts
CHANGED
|
@@ -65,8 +65,11 @@ export interface WindowMethods extends Vue2type {
|
|
|
65
65
|
export interface WindowAll extends WindowMethods, WindowData, WindowState, WindowComputed {
|
|
66
66
|
}
|
|
67
67
|
/**
|
|
68
|
-
*
|
|
68
|
+
* @hidden
|
|
69
69
|
*/
|
|
70
70
|
declare let WindowVue2: ComponentOptions<Vue2type, DefaultData<WindowData>, DefaultMethods<WindowAll>, WindowComputed, RecordPropsDefinition<WindowProps>>;
|
|
71
|
+
/**
|
|
72
|
+
* @hidden
|
|
73
|
+
*/
|
|
71
74
|
declare const Window: DefineComponent<WindowProps, any, WindowData, WindowComputed, WindowMethods, {}, {}, {}, string, WindowProps, WindowProps, {}>;
|
|
72
75
|
export { Window, WindowVue2 };
|
package/dist/npm/Window.js
CHANGED
|
@@ -44,7 +44,7 @@ var DEFAULT_MIN_WIDTH = 120;
|
|
|
44
44
|
var DEFAULT_MIN_HEIGHT = 100;
|
|
45
45
|
var DEFAULT_STEP = 5;
|
|
46
46
|
/**
|
|
47
|
-
*
|
|
47
|
+
* @hidden
|
|
48
48
|
*/
|
|
49
49
|
|
|
50
50
|
var WindowVue2 = {
|
|
@@ -670,5 +670,9 @@ var WindowVue2 = {
|
|
|
670
670
|
}
|
|
671
671
|
};
|
|
672
672
|
exports.WindowVue2 = WindowVue2;
|
|
673
|
+
/**
|
|
674
|
+
* @hidden
|
|
675
|
+
*/
|
|
676
|
+
|
|
673
677
|
var Window = WindowVue2;
|
|
674
678
|
exports.Window = Window;
|
|
@@ -13,9 +13,10 @@ export interface WindowProps {
|
|
|
13
13
|
*/
|
|
14
14
|
appendTo?: String;
|
|
15
15
|
/**
|
|
16
|
-
*
|
|
16
|
+
* Acccepts a named slot `string`, functional or class component for the close button. If set to `false` the button is not rendered.
|
|
17
|
+
* @default true
|
|
17
18
|
*/
|
|
18
|
-
closeButton?:
|
|
19
|
+
closeButton?: string | Function | object | boolean;
|
|
19
20
|
/**
|
|
20
21
|
* Specifies if the Window stage will change on title double click. The this is on by default.
|
|
21
22
|
*/
|
|
@@ -51,9 +52,10 @@ export interface WindowProps {
|
|
|
51
52
|
windowStyle?: object;
|
|
52
53
|
windowClass?: string;
|
|
53
54
|
/**
|
|
54
|
-
*
|
|
55
|
+
* Acccepts a named slot `string`, functional or class component for the maximize button. If set to `false` the button is not rendered.
|
|
56
|
+
* @default true
|
|
55
57
|
*/
|
|
56
|
-
maximizeButton?:
|
|
58
|
+
maximizeButton?: string | Function | object | boolean;
|
|
57
59
|
/**
|
|
58
60
|
* Specifies the minimum height of the Window ([see example]({% slug dimensionsresizing_window %}#toc-resizing)).
|
|
59
61
|
*/
|
|
@@ -63,9 +65,10 @@ export interface WindowProps {
|
|
|
63
65
|
*/
|
|
64
66
|
minWidth?: number;
|
|
65
67
|
/**
|
|
66
|
-
*
|
|
68
|
+
* Acccepts a named slot `string`, functional or class component for the minimize button. If set to `false` the button is not rendered.
|
|
69
|
+
* @default true
|
|
67
70
|
*/
|
|
68
|
-
minimizeButton?:
|
|
71
|
+
minimizeButton?: string | Function | object | boolean;
|
|
69
72
|
/**
|
|
70
73
|
* Specifies if the Window will be modal by rendering an overlay under the component.
|
|
71
74
|
*/
|
|
@@ -75,9 +78,10 @@ export interface WindowProps {
|
|
|
75
78
|
*/
|
|
76
79
|
resizable?: boolean;
|
|
77
80
|
/**
|
|
78
|
-
*
|
|
81
|
+
* Acccepts a named slot `string`, functional or class component for the restore button. If set to `false` the button is not rendered.
|
|
82
|
+
* @default true
|
|
79
83
|
*/
|
|
80
|
-
restoreButton?:
|
|
84
|
+
restoreButton?: string | Function | object | boolean;
|
|
81
85
|
/**
|
|
82
86
|
* Specifies if the Window content will update during resizing.
|
|
83
87
|
*/
|
|
@@ -87,9 +91,9 @@ export interface WindowProps {
|
|
|
87
91
|
*/
|
|
88
92
|
title?: string | any;
|
|
89
93
|
/**
|
|
90
|
-
*
|
|
94
|
+
* Acccepts a named slot `string`, functional or class component for the title render.
|
|
91
95
|
*/
|
|
92
|
-
titleRender?:
|
|
96
|
+
titleRender?: string | Function | object;
|
|
93
97
|
/**
|
|
94
98
|
* Specifies the top coordinates of the Window.
|
|
95
99
|
*/
|
|
@@ -20,8 +20,11 @@ export interface ResizeHandlersMethods extends Vue2type {
|
|
|
20
20
|
onRelease: (data: any, key: string) => void;
|
|
21
21
|
}
|
|
22
22
|
/**
|
|
23
|
-
*
|
|
23
|
+
* @hidden
|
|
24
24
|
*/
|
|
25
25
|
declare let ResizeHandlersVue2: ComponentOptions<Vue2type, DefaultData<{}>, DefaultMethods<ResizeHandlersMethods>, {}, RecordPropsDefinition<ResizeHandlersProps>>;
|
|
26
|
+
/**
|
|
27
|
+
* @hidden
|
|
28
|
+
*/
|
|
26
29
|
declare const ResizeHandlers: DefineComponent<ResizeHandlersProps, any, {}, {}, ResizeHandlersMethods, {}, {}, {}, string, ResizeHandlersProps, ResizeHandlersProps, {}>;
|
|
27
30
|
export { ResizeHandlers, ResizeHandlersVue2 };
|
|
@@ -18,7 +18,7 @@ var kendo_vue_common_1 = require("@progress/kendo-vue-common");
|
|
|
18
18
|
|
|
19
19
|
var keys = ['n', 'e', 's', 'w', 'se', 'sw', 'ne', 'nw'];
|
|
20
20
|
/**
|
|
21
|
-
*
|
|
21
|
+
* @hidden
|
|
22
22
|
*/
|
|
23
23
|
|
|
24
24
|
var ResizeHandlersVue2 = {
|
|
@@ -93,5 +93,9 @@ var ResizeHandlersVue2 = {
|
|
|
93
93
|
}
|
|
94
94
|
};
|
|
95
95
|
exports.ResizeHandlersVue2 = ResizeHandlersVue2;
|
|
96
|
+
/**
|
|
97
|
+
* @hidden
|
|
98
|
+
*/
|
|
99
|
+
|
|
96
100
|
var ResizeHandlers = ResizeHandlersVue2;
|
|
97
101
|
exports.ResizeHandlers = ResizeHandlers;
|
|
@@ -72,8 +72,11 @@ export interface WindowTitleBarMethods extends Vue2type {
|
|
|
72
72
|
onCloseClick: (e: any) => void;
|
|
73
73
|
}
|
|
74
74
|
/**
|
|
75
|
-
*
|
|
75
|
+
* @hidden
|
|
76
76
|
*/
|
|
77
77
|
declare let WindowTitleBarVue2: ComponentOptions<Vue2type, DefaultData<{}>, DefaultMethods<WindowTitleBarMethods>, {}, RecordPropsDefinition<WindowTitleBarProps>>;
|
|
78
|
+
/**
|
|
79
|
+
* @hidden
|
|
80
|
+
*/
|
|
78
81
|
declare const WindowTitleBar: DefineComponent<WindowTitleBarProps, any, {}, {}, WindowTitleBarMethods, {}, {}, {}, string, WindowTitleBarProps, WindowTitleBarProps, {}>;
|
|
79
82
|
export { WindowTitleBar, WindowTitleBarVue2 };
|
|
@@ -16,7 +16,7 @@ var kendo_vue_buttons_1 = require("@progress/kendo-vue-buttons");
|
|
|
16
16
|
|
|
17
17
|
var StageEnum_1 = require("./StageEnum");
|
|
18
18
|
/**
|
|
19
|
-
*
|
|
19
|
+
* @hidden
|
|
20
20
|
*/
|
|
21
21
|
|
|
22
22
|
|
|
@@ -168,5 +168,9 @@ var WindowTitleBarVue2 = {
|
|
|
168
168
|
}
|
|
169
169
|
};
|
|
170
170
|
exports.WindowTitleBarVue2 = WindowTitleBarVue2;
|
|
171
|
+
/**
|
|
172
|
+
* @hidden
|
|
173
|
+
*/
|
|
174
|
+
|
|
171
175
|
var WindowTitleBar = WindowTitleBarVue2;
|
|
172
176
|
exports.WindowTitleBar = WindowTitleBar;
|
|
@@ -2,9 +2,20 @@
|
|
|
2
2
|
import { DefineComponent } from 'vue';
|
|
3
3
|
// @ts-ignore
|
|
4
4
|
import * as Vue from 'vue';
|
|
5
|
+
|
|
6
|
+
/**
|
|
7
|
+
* @hidden
|
|
8
|
+
*/
|
|
5
9
|
// @ts-ignore
|
|
6
10
|
type Vue2type = Vue.default;
|
|
11
|
+
|
|
12
|
+
/**
|
|
13
|
+
* @hidden
|
|
14
|
+
*/
|
|
7
15
|
// @ts-ignore
|
|
8
16
|
import { RecordPropsDefinition, ComponentOptions } from 'vue/types/options';
|
|
17
|
+
/**
|
|
18
|
+
* @hidden
|
|
19
|
+
*/
|
|
9
20
|
// @ts-ignore
|
|
10
21
|
export { DefineComponent, RecordPropsDefinition, ComponentOptions, Vue2type };
|
|
@@ -8,7 +8,7 @@ exports.packageMetadata = {
|
|
|
8
8
|
name: '@progress/kendo-vue-dialogs',
|
|
9
9
|
productName: 'Kendo UI for Vue',
|
|
10
10
|
productCodes: ['KENDOUIVUE', 'KENDOUICOMPLETE'],
|
|
11
|
-
publishDate:
|
|
11
|
+
publishDate: 1655457986,
|
|
12
12
|
version: '',
|
|
13
13
|
licensingDocsUrl: 'https://www.telerik.com/kendo-vue-ui/my-license/?utm_medium=product&utm_source=kendovue&utm_campaign=kendo-ui-vue-purchase-license-keys-warning'
|
|
14
14
|
};
|