@progress/kendo-vue-dialogs 3.5.0-dev.202208020811 → 3.5.1-dev.202208110751

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,130 @@
1
+ import { WindowActionsEvent, WindowMoveEvent } from './events';
2
+ import { windowStage } from './StageEnum';
3
+ /**
4
+ * Represents the props of the [Window component]({% slug overview_window %}).
5
+ */
6
+ export interface WindowProps {
7
+ /**
8
+ * The id of the window.
9
+ */
10
+ id?: string;
11
+ /**
12
+ * Defines the string selector to the element to which the Window will be appended. Defaults to its parent element.
13
+ */
14
+ appendTo?: String;
15
+ /**
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
18
+ */
19
+ closeButton?: string | Function | object | boolean;
20
+ /**
21
+ * Specifies if the Window stage will change on title double click. The this is on by default.
22
+ */
23
+ doubleClickStageChange?: boolean;
24
+ /**
25
+ * Specifies if the Window will be draggable ([see example]({% slug positioningdragging_window %}#toc-dragging)).
26
+ */
27
+ draggable?: boolean;
28
+ /**
29
+ * Specifies the height of the Window ([see example]({% slug dimensionsresizing_window %}#toc-dimensions)).
30
+ */
31
+ height?: number;
32
+ /**
33
+ * Specifies the initial `left` value ([see example]({% slug positioningdragging_window %}#toc-positioning)). The Window will be in an uncontrolled mode.
34
+ */
35
+ initialLeft?: number;
36
+ /**
37
+ * Specifies the initial `top` value ([see example]({% slug positioningdragging_window %}#toc-positioning)). The component will be in an uncontrolled mode.
38
+ */
39
+ initialTop?: number;
40
+ /**
41
+ * Specifies the initial width of the Window ([see example]({% slug dimensionsresizing_window %}#toc-dimensions)). The component will be in an uncontrolled mode.
42
+ */
43
+ initialWidth?: number;
44
+ /**
45
+ * Specifies the initial height of the Window ([see example]({% slug dimensionsresizing_window %}#toc-dimensions)). The component will be in an uncontrolled mode.
46
+ */
47
+ initialHeight?: number;
48
+ /**
49
+ * Specifies the left coordinates of the Window.
50
+ */
51
+ left?: number;
52
+ windowStyle?: object;
53
+ windowClass?: string;
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
57
+ */
58
+ maximizeButton?: string | Function | object | boolean;
59
+ /**
60
+ * Specifies the minimum height of the Window ([see example]({% slug dimensionsresizing_window %}#toc-resizing)).
61
+ */
62
+ minHeight?: number;
63
+ /**
64
+ * Specifies the minimum width of the Window ([see example]({% slug dimensionsresizing_window %}#toc-resizing)).
65
+ */
66
+ minWidth?: number;
67
+ /**
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
70
+ */
71
+ minimizeButton?: string | Function | object | boolean;
72
+ /**
73
+ * Specifies if the Window will be modal by rendering an overlay under the component.
74
+ */
75
+ modal?: boolean;
76
+ /**
77
+ * Specifies if the Window will be resizable ([see example]({% slug dimensionsresizing_window %}#toc-resizing)).
78
+ */
79
+ resizable?: boolean;
80
+ /**
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
83
+ */
84
+ restoreButton?: string | Function | object | boolean;
85
+ /**
86
+ * Specifies if the Window content will update during resizing.
87
+ */
88
+ shouldUpdateOnDrag?: boolean;
89
+ /**
90
+ * Specifies the title of the Window ([see example]({% slug title_window %})).
91
+ */
92
+ title?: string | any;
93
+ /**
94
+ * Acccepts a named slot `string`, functional or class component for the title render.
95
+ */
96
+ titleRender?: string | Function | object;
97
+ /**
98
+ * Specifies the top coordinates of the Window.
99
+ */
100
+ top?: number;
101
+ /**
102
+ * Specifies the width of the Window.
103
+ */
104
+ width?: number;
105
+ /**
106
+ * Controls the state of the Window ([see example]({% slug windowstage_window %})).
107
+ *
108
+ * The supported values are:
109
+ * * `DEFAULT`
110
+ * * `MINIMIZED`
111
+ * * `FULLSCREEN`
112
+ */
113
+ stage?: windowStage | string;
114
+ /**
115
+ * Fires when the **Close** button in the title is clicked or when the `Esc` button is pressed.
116
+ */
117
+ onClose?: (event: WindowActionsEvent) => void;
118
+ /**
119
+ * Fires when the Window is dragged.
120
+ */
121
+ onMove?: (event: WindowMoveEvent) => void;
122
+ /**
123
+ * Fires when the `DEFAULT`, `FULLSCREEN`, or `MINIMIZED` state of the Window is changed.
124
+ */
125
+ onStagechange?: (event: WindowActionsEvent) => void;
126
+ /**
127
+ * Fires when the Window resizes.
128
+ */
129
+ onResize?: (event: WindowMoveEvent) => void;
130
+ }
@@ -0,0 +1 @@
1
+ export {}; // tslint:enable:max-line-length
@@ -0,0 +1,30 @@
1
+ import { DefineComponent, RecordPropsDefinition, ComponentOptions, Vue2type } from './additionalTypes';
2
+ declare type DefaultData<V> = object | ((this: V) => {});
3
+ declare type DefaultMethods<V> = {
4
+ [key: string]: (this: V, ...args: any[]) => any;
5
+ };
6
+ /**
7
+ * @hidden
8
+ */
9
+ export interface ResizeHandlersProps {
10
+ onResize: (e: any, args: {
11
+ end: boolean;
12
+ direction: any;
13
+ }) => void;
14
+ }
15
+ /**
16
+ * @hidden
17
+ */
18
+ export interface ResizeHandlersMethods extends Vue2type {
19
+ onDrag: (data: any, key: string) => void;
20
+ onRelease: (data: any, key: string) => void;
21
+ }
22
+ /**
23
+ * @hidden
24
+ */
25
+ declare let ResizeHandlersVue2: ComponentOptions<Vue2type, DefaultData<{}>, DefaultMethods<ResizeHandlersMethods>, {}, RecordPropsDefinition<ResizeHandlersProps>>;
26
+ /**
27
+ * @hidden
28
+ */
29
+ declare const ResizeHandlers: DefineComponent<ResizeHandlersProps, any, {}, {}, ResizeHandlersMethods, {}, {}, {}, string, ResizeHandlersProps, ResizeHandlersProps, {}>;
30
+ export { ResizeHandlers, ResizeHandlersVue2 };
@@ -0,0 +1,92 @@
1
+ // @ts-ignore
2
+ import * as Vue from 'vue';
3
+ var allVue = Vue;
4
+ var gh = allVue.h;
5
+ var isV3 = allVue.version && allVue.version[0] === '3';
6
+ import { Draggable } from '@progress/kendo-vue-common';
7
+ /**
8
+ * @hidden
9
+ */
10
+
11
+ var keys = ['n', 'e', 's', 'w', 'se', 'sw', 'ne', 'nw'];
12
+ /**
13
+ * @hidden
14
+ */
15
+
16
+ var ResizeHandlersVue2 = {
17
+ name: 'ResizeHandlers',
18
+ // @ts-ignore
19
+ emits: {
20
+ 'resize': null
21
+ },
22
+ // @ts-ignore
23
+ setup: !isV3 ? undefined : function () {
24
+ var v3 = !!isV3;
25
+ return {
26
+ v3: v3
27
+ };
28
+ },
29
+ methods: {
30
+ onDrag: function onDrag(event, key) {
31
+ event.originalEvent.preventDefault();
32
+ this.$emit('resize', event, {
33
+ end: false,
34
+ direction: key
35
+ });
36
+ },
37
+ onRelease: function onRelease(event, key) {
38
+ event.originalEvent.preventDefault();
39
+ this.$emit('resize', event, {
40
+ end: true,
41
+ direction: key
42
+ });
43
+ }
44
+ },
45
+ // @ts-ignore
46
+ render: function render(createElement) {
47
+ var h = gh || createElement;
48
+ return h("div", [keys.map(function (key, index) {
49
+ var _this = this;
50
+
51
+ return (// @ts-ignore function children
52
+ h(Draggable, {
53
+ key: index,
54
+ onDrag: function onDrag(e) {
55
+ return _this.onDrag(e, key);
56
+ },
57
+ on: this.v3 ? undefined : {
58
+ "drag": function onDrag(e) {
59
+ return _this.onDrag(e, key);
60
+ },
61
+ "release": function release(e) {
62
+ return _this.onRelease(e, key);
63
+ }
64
+ },
65
+ onRelease: function release(e) {
66
+ return _this.onRelease(e, key);
67
+ }
68
+ }, this.v3 ? function () {
69
+ return [h("div", {
70
+ "class": 'k-resize-handle k-resize-' + key,
71
+ style: {
72
+ display: 'block',
73
+ touchAction: 'none'
74
+ }
75
+ })];
76
+ } : [h("div", {
77
+ "class": 'k-resize-handle k-resize-' + key,
78
+ style: {
79
+ display: 'block',
80
+ touchAction: 'none'
81
+ }
82
+ })])
83
+ );
84
+ }, this)]);
85
+ }
86
+ };
87
+ /**
88
+ * @hidden
89
+ */
90
+
91
+ var ResizeHandlers = ResizeHandlersVue2;
92
+ export { ResizeHandlers, ResizeHandlersVue2 };
@@ -0,0 +1,82 @@
1
+ import { DefineComponent, RecordPropsDefinition, ComponentOptions, Vue2type } from './additionalTypes';
2
+ declare type DefaultData<V> = object | ((this: V) => {});
3
+ declare type DefaultMethods<V> = {
4
+ [key: string]: (this: V, ...args: any[]) => any;
5
+ };
6
+ import { windowStage } from './StageEnum';
7
+ /**
8
+ * @hidden
9
+ */
10
+ export interface WindowTitleBarProps {
11
+ /**
12
+ * @hidden
13
+ */
14
+ onClosebuttonclick?: (event: any) => void;
15
+ /**
16
+ * @hidden
17
+ */
18
+ onDblclick?: (event: any) => void;
19
+ /**
20
+ * @hidden
21
+ */
22
+ onMinimizeclick?: (event: any) => void;
23
+ /**
24
+ * @hidden
25
+ */
26
+ onFullscreenclick?: (event: any) => void;
27
+ /**
28
+ * @hidden
29
+ */
30
+ onRestoreclick?: (event: any) => void;
31
+ /**
32
+ * @hidden
33
+ */
34
+ id?: string;
35
+ /**
36
+ * @hidden
37
+ */
38
+ title?: string;
39
+ /**
40
+ * @hidden
41
+ */
42
+ titleRender?: any;
43
+ /**
44
+ * @hidden
45
+ */
46
+ stage?: windowStage | string;
47
+ /**
48
+ * @hidden
49
+ */
50
+ closeButton?: any;
51
+ /**
52
+ * @hidden
53
+ */
54
+ minimizeButton?: any;
55
+ /**
56
+ * @hidden
57
+ */
58
+ maximizeButton?: any;
59
+ /**
60
+ * @hidden
61
+ */
62
+ restoreButton?: any;
63
+ }
64
+ /**
65
+ * @hidden
66
+ */
67
+ export interface WindowTitleBarMethods extends Vue2type {
68
+ onDoubleClick: (e: any) => void;
69
+ onMinimizeClick: (e: any) => void;
70
+ onFullScreenClick: (e: any) => void;
71
+ onRestoreClick: (e: any) => void;
72
+ onCloseClick: (e: any) => void;
73
+ }
74
+ /**
75
+ * @hidden
76
+ */
77
+ declare let WindowTitleBarVue2: ComponentOptions<Vue2type, DefaultData<{}>, DefaultMethods<WindowTitleBarMethods>, {}, RecordPropsDefinition<WindowTitleBarProps>>;
78
+ /**
79
+ * @hidden
80
+ */
81
+ declare const WindowTitleBar: DefineComponent<WindowTitleBarProps, any, {}, {}, WindowTitleBarMethods, {}, {}, {}, string, WindowTitleBarProps, WindowTitleBarProps, {}>;
82
+ export { WindowTitleBar, WindowTitleBarVue2 };
@@ -0,0 +1,165 @@
1
+ // @ts-ignore
2
+ import { getTemplate } from '@progress/kendo-vue-common';
3
+ import * as Vue from 'vue';
4
+ var allVue = Vue;
5
+ var gh = allVue.h;
6
+ var isV3 = allVue.version && allVue.version[0] === '3';
7
+ import { Button } from '@progress/kendo-vue-buttons';
8
+ import { windowStage } from './StageEnum.js';
9
+ /**
10
+ * @hidden
11
+ */
12
+
13
+ var WindowTitleBarVue2 = {
14
+ props: {
15
+ id: String,
16
+ stage: String,
17
+ closeButton: [String, Function, Object, Boolean],
18
+ minimizeButton: [String, Function, Object, Boolean],
19
+ maximizeButton: [String, Function, Object, Boolean],
20
+ restoreButton: [String, Function, Object, Boolean],
21
+ title: String,
22
+ titleRender: [String, Function, Object, Boolean]
23
+ },
24
+ // @ts-ignore
25
+ setup: !isV3 ? undefined : function () {
26
+ var v3 = !!isV3;
27
+ return {
28
+ v3: v3
29
+ };
30
+ },
31
+ methods: {
32
+ onDoubleClick: function onDoubleClick(e) {
33
+ this.$emit('doubleclick', e);
34
+ },
35
+ onMinimizeClick: function onMinimizeClick(e) {
36
+ this.$emit('minimizeclick', e);
37
+ },
38
+ onFullScreenClick: function onFullScreenClick(e) {
39
+ this.$emit('fullscreenclick', e);
40
+ },
41
+ onRestoreClick: function onRestoreClick(e) {
42
+ this.$emit('restoreclick', e);
43
+ },
44
+ onCloseClick: function onCloseClick(e) {
45
+ this.$emit('closeclick', e);
46
+ }
47
+ },
48
+ // @ts-ignore
49
+ render: function render(createElement) {
50
+ var h = gh || createElement;
51
+ var props = this.$props;
52
+ var stage = props.stage,
53
+ title = props.title,
54
+ titleRender = props.titleRender,
55
+ minimizeButton = props.minimizeButton,
56
+ maximizeButton = props.maximizeButton,
57
+ restoreButton = props.restoreButton,
58
+ closeButton = props.closeButton;
59
+ var titleElement = getTemplate.call(this, {
60
+ h: h,
61
+ template: titleRender,
62
+ defaultRendering: title
63
+ });
64
+ var minimizeButtonDefault = // @ts-ignore
65
+ h(Button, {
66
+ type: "button",
67
+ attrs: this.v3 ? undefined : {
68
+ type: "button",
69
+ icon: 'window-minimize',
70
+ fillMode: 'flat'
71
+ },
72
+ icon: 'window-minimize',
73
+ fillMode: 'flat',
74
+ onClick: this.onMinimizeClick,
75
+ on: this.v3 ? undefined : {
76
+ "click": this.onMinimizeClick
77
+ }
78
+ });
79
+ var minimizeButtonRender = getTemplate.call(this, {
80
+ h: h,
81
+ template: minimizeButton,
82
+ defaultRendering: minimizeButtonDefault
83
+ });
84
+ var maximizeButtonDefault = // @ts-ignore
85
+ h(Button, {
86
+ type: "button",
87
+ attrs: this.v3 ? undefined : {
88
+ type: "button",
89
+ icon: 'window-maximize',
90
+ fillMode: 'flat'
91
+ },
92
+ icon: 'window-maximize',
93
+ fillMode: 'flat',
94
+ onClick: this.onFullScreenClick,
95
+ on: this.v3 ? undefined : {
96
+ "click": this.onFullScreenClick
97
+ }
98
+ });
99
+ var maximizeButtonRender = getTemplate.call(this, {
100
+ h: h,
101
+ template: maximizeButton,
102
+ defaultRendering: maximizeButtonDefault
103
+ });
104
+ var restoreButtonDefault = // @ts-ignore
105
+ h(Button, {
106
+ type: "button",
107
+ attrs: this.v3 ? undefined : {
108
+ type: "button",
109
+ icon: 'window-restore',
110
+ fillMode: 'flat'
111
+ },
112
+ icon: 'window-restore',
113
+ fillMode: 'flat',
114
+ onClick: this.onRestoreClick,
115
+ on: this.v3 ? undefined : {
116
+ "click": this.onRestoreClick
117
+ }
118
+ });
119
+ var restoreButtonRender = getTemplate.call(this, {
120
+ h: h,
121
+ template: restoreButton,
122
+ defaultRendering: restoreButtonDefault
123
+ });
124
+ var closeButtonDefault = // @ts-ignore
125
+ h(Button, {
126
+ type: "button",
127
+ attrs: this.v3 ? undefined : {
128
+ type: "button",
129
+ icon: 'x',
130
+ fillMode: 'flat'
131
+ },
132
+ icon: 'x',
133
+ fillMode: 'flat',
134
+ onClick: this.onCloseClick,
135
+ on: this.v3 ? undefined : {
136
+ "click": this.onCloseClick
137
+ }
138
+ });
139
+ var closeButtonRender = getTemplate.call(this, {
140
+ h: h,
141
+ template: closeButton,
142
+ defaultRendering: closeButtonDefault
143
+ });
144
+ return h("div", {
145
+ "class": "k-window-titlebar k-dialog-titlebar",
146
+ style: {
147
+ touchAction: 'none'
148
+ },
149
+ onDblclick: this.onDoubleClick,
150
+ on: this.v3 ? undefined : {
151
+ "dblclick": this.onDoubleClick
152
+ }
153
+ }, [h("div", {
154
+ "class": "k-window-title"
155
+ }, [titleElement]), h("div", {
156
+ "class": "k-window-actions"
157
+ }, [stage === windowStage.DEFAULT && minimizeButtonRender, stage === windowStage.DEFAULT && maximizeButtonRender, stage !== windowStage.DEFAULT && restoreButtonRender]), closeButtonRender]);
158
+ }
159
+ };
160
+ /**
161
+ * @hidden
162
+ */
163
+
164
+ var WindowTitleBar = WindowTitleBarVue2;
165
+ export { WindowTitleBar, WindowTitleBarVue2 };
@@ -0,0 +1,21 @@
1
+ // @ts-ignore
2
+ import { DefineComponent } from 'vue';
3
+ // @ts-ignore
4
+ import * as Vue from 'vue';
5
+
6
+ /**
7
+ * @hidden
8
+ */
9
+ // @ts-ignore
10
+ type Vue2type = Vue.default;
11
+
12
+ /**
13
+ * @hidden
14
+ */
15
+ // @ts-ignore
16
+ import { RecordPropsDefinition, ComponentOptions } from 'vue/types/options';
17
+ /**
18
+ * @hidden
19
+ */
20
+ // @ts-ignore
21
+ export { DefineComponent, RecordPropsDefinition, ComponentOptions, Vue2type };
@@ -0,0 +1,2 @@
1
+ /** @hidden */
2
+ export declare const DEFAULT_DIALOGS_ZINDEX = 10002;
@@ -0,0 +1,2 @@
1
+ /** @hidden */
2
+ export var DEFAULT_DIALOGS_ZINDEX = 10002;
@@ -0,0 +1,34 @@
1
+ /**
2
+ * @hidden
3
+ */
4
+ export interface DialogCloseEvent {
5
+ /**
6
+ * An event target.
7
+ */
8
+ target: any;
9
+ /**
10
+ * A native DOM event.
11
+ */
12
+ event: any;
13
+ }
14
+ export interface WindowActionsEvent {
15
+ state?: 'DEFAULT' | 'FULLSCREEN' | 'MINIMIZED';
16
+ }
17
+ export interface WindowMoveEvent {
18
+ /**
19
+ * An event target.
20
+ */
21
+ target: Window;
22
+ /**
23
+ * A native DOM event.
24
+ */
25
+ event: any;
26
+ /**
27
+ * Indicates that dragging is completed and that the user dropped the resize handler.
28
+ */
29
+ end: boolean;
30
+ /**
31
+ * Indicates that the move operation was initialized through dragging. If the Window is moved through the keyboard, the value will be `false`.
32
+ */
33
+ drag: boolean;
34
+ }
@@ -0,0 +1,2 @@
1
+ export {};
2
+ // tslint:enable:max-line-length
@@ -0,0 +1,6 @@
1
+ import { Dialog, DialogVue2, DialogProps } from './Dialog';
2
+ import { DialogActionsBar, DialogActionsBarVue2 } from './DialogActionsBar';
3
+ import { Window, WindowVue2 } from './Window';
4
+ import { WindowProps } from './WindowProps';
5
+ import { DialogCloseEvent, WindowActionsEvent, WindowMoveEvent } from './events';
6
+ export { Dialog, DialogVue2, DialogProps, DialogActionsBar, DialogActionsBarVue2, DialogCloseEvent, Window, WindowVue2, WindowProps, WindowActionsEvent, WindowMoveEvent };
@@ -0,0 +1,4 @@
1
+ import { Dialog, DialogVue2 } from './Dialog.js';
2
+ import { DialogActionsBar, DialogActionsBarVue2 } from './DialogActionsBar.js';
3
+ import { Window, WindowVue2 } from './Window.js';
4
+ export { Dialog, DialogVue2, DialogActionsBar, DialogActionsBarVue2, Window, WindowVue2 };
@@ -0,0 +1,5 @@
1
+ import { PackageMetadata } from '@progress/kendo-licensing';
2
+ /**
3
+ * @hidden
4
+ */
5
+ export declare const packageMetadata: PackageMetadata;
@@ -0,0 +1,11 @@
1
+ /**
2
+ * @hidden
3
+ */
4
+ export var packageMetadata = {
5
+ name: '@progress/kendo-vue-dialogs',
6
+ productName: 'Kendo UI for Vue',
7
+ productCodes: ['KENDOUIVUE', 'KENDOUICOMPLETE'],
8
+ publishDate: 1660203378,
9
+ version: '',
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
+ };
@@ -0,0 +1,3 @@
1
+ {
2
+ "type": "module"
3
+ }
@@ -46,7 +46,7 @@ var DialogVue2 = {
46
46
  };
47
47
  },
48
48
  created: function created() {
49
- kendo_vue_common_1.validatePackage(package_metadata_1.packageMetadata);
49
+ (0, kendo_vue_common_1.validatePackage)(package_metadata_1.packageMetadata);
50
50
  this.titleId = this.generateTitleId();
51
51
  },
52
52
  // @ts-ignore
@@ -98,7 +98,7 @@ var DialogVue2 = {
98
98
  return actionBarIndex;
99
99
  },
100
100
  generateTitleId: function generateTitleId() {
101
- return 'dialog-title' + kendo_vue_common_1.guid();
101
+ return 'dialog-title' + (0, kendo_vue_common_1.guid)();
102
102
  }
103
103
  },
104
104
  // @ts-ignore
@@ -114,7 +114,7 @@ var DialogVue2 = {
114
114
  contentStyle = _a.contentStyle,
115
115
  wrapperId = _a.wrapperId;
116
116
  var titleRender = this.$props.titleRender ? kendo_vue_common_1.templateRendering.call(this, this.$props.titleRender, kendo_vue_common_1.getListeners.call(this)) : null;
117
- var defaultSlot = kendo_vue_common_1.getDefaultSlots(this);
117
+ var defaultSlot = (0, kendo_vue_common_1.getDefaultSlots)(this);
118
118
  var content = defaultSlot || [];
119
119
  width = this.transformDimesion(width);
120
120
  height = this.transformDimesion(height);
@@ -53,7 +53,7 @@ var DialogActionsBarVue2 = {
53
53
  // @ts-ignore
54
54
  render: function render(createElement) {
55
55
  var h = gh || createElement;
56
- var defaultSlot = kendo_vue_common_1.getDefaultSlots(this);
56
+ var defaultSlot = (0, kendo_vue_common_1.getDefaultSlots)(this);
57
57
  return h("div", {
58
58
  "class": this.wrapperClasses
59
59
  }, [defaultSlot]);
@@ -133,7 +133,7 @@ var WindowVue2 = {
133
133
  };
134
134
  },
135
135
  created: function created() {
136
- kendo_vue_common_1.validatePackage(package_metadata_1.packageMetadata);
136
+ (0, kendo_vue_common_1.validatePackage)(package_metadata_1.packageMetadata);
137
137
  this.windowCoordinatesState = {
138
138
  leftBeforeAction: this.getInitialLeft(),
139
139
  topBeforeAction: this.getInitialTop(),
@@ -544,7 +544,7 @@ var WindowVue2 = {
544
544
  var _this = this;
545
545
 
546
546
  var h = gh || createElement;
547
- var classNamesWindow = kendo_vue_common_1.classNames('k-widget', 'k-window', this.$props.windowClass, {
547
+ var classNamesWindow = (0, kendo_vue_common_1.classNames)('k-widget', 'k-window', this.$props.windowClass, {
548
548
  'k-window-minimized': this.currentStage === 'MINIMIZED'
549
549
  });
550
550
  var titleRender = kendo_vue_common_1.templateRendering.call(this, this.$props.titleRender, kendo_vue_common_1.getListeners.call(this));
@@ -552,7 +552,7 @@ var WindowVue2 = {
552
552
  var minimizeButton = kendo_vue_common_1.templateRendering.call(this, this.$props.minimizeButton, kendo_vue_common_1.getListeners.call(this));
553
553
  var maximizeButton = kendo_vue_common_1.templateRendering.call(this, this.$props.maximizeButton, kendo_vue_common_1.getListeners.call(this));
554
554
  var restoreButton = kendo_vue_common_1.templateRendering.call(this, this.$props.restoreButton, kendo_vue_common_1.getListeners.call(this));
555
- var defaultSlot = kendo_vue_common_1.getDefaultSlots(this);
555
+ var defaultSlot = (0, kendo_vue_common_1.getDefaultSlots)(this);
556
556
  var windowElement = h("div", {
557
557
  ref: 'wrapper'
558
558
  }, [this.$props.modal && h("div", {
@@ -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: 1659427322,
11
+ publishDate: 1660203378,
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
  };