@progress/kendo-vue-popup 8.0.3-develop.2 → 8.0.3-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.ts CHANGED
@@ -5,331 +5,12 @@
5
5
  * Licensed under commercial license. See LICENSE.md in the package root for more information
6
6
  *-------------------------------------------------------------------------------------------
7
7
  */
8
- import { ComponentOptionsMixin } from 'vue';
9
- import { ComponentProvideOptions } from 'vue';
10
- import { DefineComponent } from 'vue';
11
- import { ExtractPropTypes } from 'vue';
12
- import { Offset as Offset_2 } from '.';
13
- import { OffsetPosition } from '@progress/kendo-popup-common';
14
- import { PopupAnimation as PopupAnimation_2 } from '.';
15
- import { PopupCloseEvent as PopupCloseEvent_2 } from '.';
16
- import { PopupOpenEvent as PopupOpenEvent_2 } from '.';
17
- import { PropType } from 'vue';
18
- import { PublicProps } from 'vue';
19
-
20
- /**
21
- * Defines the horizontal and vertical aligning point of the Popup.
22
- */
23
- export declare interface Align {
24
- /**
25
- * Defines the possible horizontal point values that are relative to the anchor or the Popup.
26
- *
27
- * The available options are:
28
- * - `left`—Uses the leftmost point of the anchor element.
29
- * - `center`—Uses the center point of the anchor element.
30
- * - `right`—Uses the rightmost point of the anchor element.
31
- */
32
- horizontal: 'left' | 'center' | 'right';
33
- /**
34
- * Defines the possible vertical point values that are relative to the anchor or the Popup.
35
- *
36
- * The available options are:
37
- * - `top`—Uses the top point of the anchor element.
38
- * - `center`—Uses the center point of the anchor element.
39
- * - `bottom`—Uses the bottom point of the anchor element.
40
- */
41
- vertical: 'top' | 'center' | 'bottom';
42
- }
43
-
44
- /**
45
- * Defines the horizontal and vertical collision behavior of the Popup.
46
- */
47
- export declare interface Collision {
48
- /**
49
- * Defines the horizontal collision behavior of the Popup.
50
- */
51
- horizontal: CollisionType;
52
- /**
53
- * Defines the vertical collision behavior of the Popup.
54
- */
55
- vertical: CollisionType;
56
- }
57
-
58
- /**
59
- * Defines the possible collision behavior when the Popup is not fully visible.
60
- *
61
- * The available options are:
62
- * - `fit`—Moves the Popup horizontally until it is fully displayed in the viewport.
63
- * - `flip`—Flips the Popup position based on the origin and the position properties.
64
- */
65
- declare type CollisionType = 'fit' | 'flip';
66
-
67
- /**
68
- * The offset position of the Popup.
69
- */
70
- export declare interface Offset {
71
- /**
72
- * Defines the top position of the Popup.
73
- */
74
- top: number;
75
- /**
76
- * Defines the left position of the Popup.
77
- */
78
- left: number;
79
- }
80
-
81
- /**
82
- * @hidden
83
- */
84
- export declare const Popup: DefineComponent<ExtractPropTypes< {
85
- appendTo: {
86
- type: PropType<string>;
87
- default: string;
88
- };
89
- anchor: {
90
- type: PropType<string>;
91
- default: string;
92
- };
93
- className: PropType<string | string[]>;
94
- id: PropType<string>;
95
- popupClass: PropType<string | string[]>;
96
- collision: {
97
- type: PropType<object>;
98
- default: () => {
99
- horizontal: string;
100
- vertical: string;
101
- };
102
- };
103
- anchorAlign: {
104
- type: PropType<object>;
105
- default: () => {
106
- horizontal: string;
107
- vertical: string;
108
- };
109
- };
110
- popupAlign: {
111
- type: PropType<object>;
112
- default: () => {
113
- horizontal: string;
114
- vertical: string;
115
- };
116
- };
117
- offset: {
118
- type: PropType<Offset_2>;
119
- default: () => {
120
- left: number;
121
- top: number;
122
- };
123
- };
124
- show: {
125
- type: PropType<boolean>;
126
- default: boolean;
127
- };
128
- animate: {
129
- type: PropType<boolean | PopupAnimation_2>;
130
- default: boolean;
131
- };
132
- direction: {
133
- type: PropType<string>;
134
- default: string;
135
- };
136
- onOpen: PropType<(event: PopupOpenEvent_2) => void>;
137
- onClose: PropType<(event: PopupCloseEvent_2) => void>;
138
- }>, {}, {
139
- hasMounted: boolean;
140
- }, {}, {
141
- onOpened(): void;
142
- onClosing(): void;
143
- onClosed(): void;
144
- transitionDuration(): {
145
- transitionEnterDuration: number;
146
- transitionExitDuration: number;
147
- };
148
- getParentRef(anchor: string, isAnchor?: boolean): any;
149
- position(settings: PopupProps, element: HTMLElement, anchor: string): Position;
150
- calculatePosition($props: any, appendToElement?: HTMLElement): Position;
151
- attachRepositionHandlers(element: any): void;
152
- detachRepositionHandlers(): void;
153
- reposition(): void;
154
- getCurrentZIndex(): number;
155
- }, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes< {
156
- appendTo: {
157
- type: PropType<string>;
158
- default: string;
159
- };
160
- anchor: {
161
- type: PropType<string>;
162
- default: string;
163
- };
164
- className: PropType<string | string[]>;
165
- id: PropType<string>;
166
- popupClass: PropType<string | string[]>;
167
- collision: {
168
- type: PropType<object>;
169
- default: () => {
170
- horizontal: string;
171
- vertical: string;
172
- };
173
- };
174
- anchorAlign: {
175
- type: PropType<object>;
176
- default: () => {
177
- horizontal: string;
178
- vertical: string;
179
- };
180
- };
181
- popupAlign: {
182
- type: PropType<object>;
183
- default: () => {
184
- horizontal: string;
185
- vertical: string;
186
- };
187
- };
188
- offset: {
189
- type: PropType<Offset_2>;
190
- default: () => {
191
- left: number;
192
- top: number;
193
- };
194
- };
195
- show: {
196
- type: PropType<boolean>;
197
- default: boolean;
198
- };
199
- animate: {
200
- type: PropType<boolean | PopupAnimation_2>;
201
- default: boolean;
202
- };
203
- direction: {
204
- type: PropType<string>;
205
- default: string;
206
- };
207
- onOpen: PropType<(event: PopupOpenEvent_2) => void>;
208
- onClose: PropType<(event: PopupCloseEvent_2) => void>;
209
- }>> & Readonly<{}>, {
210
- animate: boolean;
211
- anchor: string;
212
- direction: string;
213
- anchorAlign: object;
214
- offset: Offset_2;
215
- appendTo: string;
216
- collision: object;
217
- popupAlign: object;
218
- show: boolean;
219
- }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
220
-
221
- /**
222
- * The animation settings for the Popup component.
223
- */
224
- export declare interface PopupAnimation {
225
- /**
226
- * The duration of the opening animation in milliseconds. Defaults to `300ms`.
227
- */
228
- openDuration?: number;
229
- /**
230
- * The duration of the closing animation in milliseconds. Defaults to `300ms`.
231
- */
232
- closeDuration?: number;
233
- }
234
-
235
- /**
236
- * Represents the object of the `Close` Popup event.
237
- */
238
- export declare interface PopupCloseEvent {
239
- /**
240
- * An event target.
241
- */
242
- target: any;
243
- }
244
-
245
- /**
246
- * Represents the object of the `Open` Popup event.
247
- */
248
- export declare interface PopupOpenEvent {
249
- /**
250
- * An event target.
251
- */
252
- target: any;
253
- }
254
-
255
- /**
256
- * Represents the props of the [KendoVue Popup component]({% slug overview_popup %}).
257
- */
258
- export declare interface PopupProps extends PopupSettings {
259
- /**
260
- * Controls the Popup visibility ([see example]({% slug hidden_popup %})). Defaults to `false`.
261
- */
262
- show?: boolean;
263
- }
264
-
265
- /**
266
- * @hidden
267
- */
268
- export declare interface PopupSettings {
269
- /**
270
- * Controls the Popup animation ([see example]({% slug animations_popup %})). By default, the opening and closing animations are enabled.
271
- */
272
- animate?: boolean | PopupAnimation;
273
- /**
274
- * Specifies the element which will be used as an anchor ([see example]({% slug alignmentpositioning_popup %})). The Popup opens next to that element.
275
- */
276
- anchor: string;
277
- /**
278
- * Specifies the pivot point of the anchor ([see example]({% slug alignmentpositioning_popup %})).
279
- */
280
- anchorAlign?: object;
281
- /**
282
- * Defines the 'id' or 'ref' of the container to which the Popup will be appended. Defaults to [`body`](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/body).
283
- */
284
- appendTo?: string;
285
- /**
286
- * Configures the collision behavior of the Popup ([see example]({% slug viewportboundarydetection_popup %})).
287
- */
288
- collision?: object;
289
- /**
290
- * Specifies the pivot point of the Popup ([see example]({% slug alignmentpositioning_popup %})).
291
- */
292
- popupAlign?: object;
293
- /**
294
- * Specifies a list of CSS classes that will be added to the Popup element.
295
- */
296
- className?: string | Array<string>;
297
- /**
298
- * Specifies the id that will be added to the Popup element.
299
- */
300
- id?: string;
301
- /**
302
- * Specifies the direction of the Expand Animation. Defaults to `down`.
303
- */
304
- direction?: string;
305
- /**
306
- * Specifies a list of CSS classes that will be added to the internal animated element ([see example]({% slug appearance_popup %})).
307
- */
308
- popupClass?: string | Array<string>;
309
- /**
310
- * Represents the styles that are applied to the Popup.
311
- */
312
- style?: any;
313
- /**
314
- * Specifies the absolute position of the element ([see example]({% slug alignmentpositioning_popup %})). The Popup opens next to that point. The pivot point of the Popup is defined by the `popupAlign` configuration option. The boundary detection is applied by using the window viewport.
315
- */
316
- offset?: Offset;
317
- /**
318
- * Fires after the Popup is opened and the opening animation ends.
319
- */
320
- onOpen?: (event: PopupOpenEvent) => void;
321
- /**
322
- * Fires after the Popup is closed.
323
- */
324
- onClose?: (event: PopupCloseEvent) => void;
325
- }
326
-
327
- /**
328
- * @hidden
329
- */
330
- declare interface Position {
331
- flipped?: boolean;
332
- offset?: OffsetPosition;
333
- }
334
-
335
- export { }
8
+ import { Popup } from './Popup';
9
+ import { PopupProps } from './models/PopupProps';
10
+ import { PopupSettings } from './models/PopupSettings';
11
+ import { Align } from './models/Align';
12
+ import { Collision } from './models/Collision';
13
+ import { Offset } from './models/Offset';
14
+ import { PopupAnimation } from './models/PopupAnimation';
15
+ import { OpenEvent as PopupOpenEvent, CloseEvent as PopupCloseEvent } from './models/Events';
16
+ export { Popup, type PopupProps, type PopupSettings, type Align, type Collision, type Offset, type PopupAnimation, type PopupOpenEvent, type PopupCloseEvent };
@@ -0,0 +1,30 @@
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
+ * Defines the horizontal and vertical aligning point of the Popup.
10
+ */
11
+ export interface Align {
12
+ /**
13
+ * Defines the possible horizontal point values that are relative to the anchor or the Popup.
14
+ *
15
+ * The available options are:
16
+ * - `left`&mdash;Uses the leftmost point of the anchor element.
17
+ * - `center`&mdash;Uses the center point of the anchor element.
18
+ * - `right`&mdash;Uses the rightmost point of the anchor element.
19
+ */
20
+ horizontal: 'left' | 'center' | 'right';
21
+ /**
22
+ * Defines the possible vertical point values that are relative to the anchor or the Popup.
23
+ *
24
+ * The available options are:
25
+ * - `top`&mdash;Uses the top point of the anchor element.
26
+ * - `center`&mdash;Uses the center point of the anchor element.
27
+ * - `bottom`&mdash;Uses the bottom point of the anchor element.
28
+ */
29
+ vertical: 'top' | 'center' | 'bottom';
30
+ }
@@ -0,0 +1,18 @@
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 { AlignStrategy, OffsetPosition } from '@progress/kendo-popup-common';
9
+ /**
10
+ * @hidden
11
+ */
12
+ export interface AlignElementSettings {
13
+ anchor?: HTMLElement;
14
+ anchorAlign: AlignStrategy;
15
+ element: HTMLElement;
16
+ elementAlign: AlignStrategy;
17
+ offset?: OffsetPosition;
18
+ }
@@ -0,0 +1,21 @@
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 { CollisionType } from './CollisionType';
9
+ /**
10
+ * Defines the horizontal and vertical collision behavior of the Popup.
11
+ */
12
+ export interface Collision {
13
+ /**
14
+ * Defines the horizontal collision behavior of the Popup.
15
+ */
16
+ horizontal: CollisionType;
17
+ /**
18
+ * Defines the vertical collision behavior of the Popup.
19
+ */
20
+ vertical: CollisionType;
21
+ }
@@ -0,0 +1,15 @@
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
+ * Defines the possible collision behavior when the Popup is not fully visible.
10
+ *
11
+ * The available options are:
12
+ * - `fit`&mdash;Moves the Popup horizontally until it is fully displayed in the viewport.
13
+ * - `flip`&mdash;Flips the Popup position based on the origin and the position properties.
14
+ */
15
+ export type CollisionType = 'fit' | 'flip';
@@ -0,0 +1,25 @@
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
+ * Represents the object of the `Open` Popup event.
10
+ */
11
+ export interface OpenEvent {
12
+ /**
13
+ * An event target.
14
+ */
15
+ target: any;
16
+ }
17
+ /**
18
+ * Represents the object of the `Close` Popup event.
19
+ */
20
+ export interface CloseEvent {
21
+ /**
22
+ * An event target.
23
+ */
24
+ target: any;
25
+ }
@@ -0,0 +1,20 @@
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
+ * The offset position of the Popup.
10
+ */
11
+ export interface Offset {
12
+ /**
13
+ * Defines the top position of the Popup.
14
+ */
15
+ top: number;
16
+ /**
17
+ * Defines the left position of the Popup.
18
+ */
19
+ left: number;
20
+ }
@@ -0,0 +1,20 @@
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
+ * The animation settings for the Popup component.
10
+ */
11
+ export interface PopupAnimation {
12
+ /**
13
+ * The duration of the opening animation in milliseconds. Defaults to `300ms`.
14
+ */
15
+ openDuration?: number;
16
+ /**
17
+ * The duration of the closing animation in milliseconds. Defaults to `300ms`.
18
+ */
19
+ closeDuration?: number;
20
+ }
@@ -0,0 +1,17 @@
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 { PopupSettings } from './PopupSettings';
9
+ /**
10
+ * Represents the props of the [KendoVue Popup component]({% slug overview_popup %}).
11
+ */
12
+ export interface PopupProps extends PopupSettings {
13
+ /**
14
+ * Controls the Popup visibility ([see example]({% slug hidden_popup %})). Defaults to `false`.
15
+ */
16
+ show?: boolean;
17
+ }
@@ -0,0 +1,71 @@
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 { OpenEvent, CloseEvent } from './Events';
9
+ import { Offset } from './Offset';
10
+ import { PopupAnimation } from './PopupAnimation';
11
+ /**
12
+ * @hidden
13
+ */
14
+ export interface PopupSettings {
15
+ /**
16
+ * Controls the Popup animation ([see example]({% slug animations_popup %})). By default, the opening and closing animations are enabled.
17
+ */
18
+ animate?: boolean | PopupAnimation;
19
+ /**
20
+ * Specifies the element which will be used as an anchor ([see example]({% slug alignmentpositioning_popup %})). The Popup opens next to that element.
21
+ */
22
+ anchor: string;
23
+ /**
24
+ * Specifies the pivot point of the anchor ([see example]({% slug alignmentpositioning_popup %})).
25
+ */
26
+ anchorAlign?: object;
27
+ /**
28
+ * Defines the 'id' or 'ref' of the container to which the Popup will be appended. Defaults to [`body`](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/body).
29
+ */
30
+ appendTo?: string;
31
+ /**
32
+ * Configures the collision behavior of the Popup ([see example]({% slug viewportboundarydetection_popup %})).
33
+ */
34
+ collision?: object;
35
+ /**
36
+ * Specifies the pivot point of the Popup ([see example]({% slug alignmentpositioning_popup %})).
37
+ */
38
+ popupAlign?: object;
39
+ /**
40
+ * Specifies a list of CSS classes that will be added to the Popup element.
41
+ */
42
+ className?: string | Array<string>;
43
+ /**
44
+ * Specifies the id that will be added to the Popup element.
45
+ */
46
+ id?: string;
47
+ /**
48
+ * Specifies the direction of the Expand Animation. Defaults to `down`.
49
+ */
50
+ direction?: string;
51
+ /**
52
+ * Specifies a list of CSS classes that will be added to the internal animated element ([see example]({% slug appearance_popup %})).
53
+ */
54
+ popupClass?: string | Array<string>;
55
+ /**
56
+ * Represents the styles that are applied to the Popup.
57
+ */
58
+ style?: any;
59
+ /**
60
+ * Specifies the absolute position of the element ([see example]({% slug alignmentpositioning_popup %})). The Popup opens next to that point. The pivot point of the Popup is defined by the `popupAlign` configuration option. The boundary detection is applied by using the window viewport.
61
+ */
62
+ offset?: Offset;
63
+ /**
64
+ * Fires after the Popup is opened and the opening animation ends.
65
+ */
66
+ onOpen?: (event: OpenEvent) => void;
67
+ /**
68
+ * Fires after the Popup is closed.
69
+ */
70
+ onClose?: (event: CloseEvent) => void;
71
+ }
@@ -0,0 +1,15 @@
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 { OffsetPosition as Offset } from '@progress/kendo-popup-common';
9
+ /**
10
+ * @hidden
11
+ */
12
+ export interface Position {
13
+ flipped?: boolean;
14
+ offset?: Offset;
15
+ }
@@ -0,0 +1,20 @@
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 { AlignStrategy, CollisionStrategy, OffsetPosition, ViewPort } from '@progress/kendo-popup-common';
9
+ /**
10
+ * @hidden
11
+ */
12
+ export interface PositionElementSettings {
13
+ anchor?: HTMLElement;
14
+ anchorAlign: AlignStrategy;
15
+ collisions: CollisionStrategy;
16
+ currentLocation: OffsetPosition;
17
+ element: HTMLElement;
18
+ elementAlign: AlignStrategy;
19
+ viewPort?: ViewPort;
20
+ }
@@ -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;
@@ -5,4 +5,4 @@
5
5
  * Licensed under commercial license. See LICENSE.md in the package root for more information
6
6
  *-------------------------------------------------------------------------------------------
7
7
  */
8
- "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e={name:"@progress/kendo-vue-popup",productName:"Kendo UI for Vue",productCode:"KENDOUIVUE",productCodes:["KENDOUIVUE"],publishDate: 1773129898,version:"8.0.3-develop.2",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"};exports.packageMetadata=e;
8
+ "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e={name:"@progress/kendo-vue-popup",productName:"Kendo UI for Vue",productCode:"KENDOUIVUE",productCodes:["KENDOUIVUE"],publishDate: 1773401319,version:"8.0.3-develop.3",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"};exports.packageMetadata=e;
@@ -10,8 +10,8 @@ const e = {
10
10
  productName: "Kendo UI for Vue",
11
11
  productCode: "KENDOUIVUE",
12
12
  productCodes: ["KENDOUIVUE"],
13
- publishDate: 1773129898,
14
- version: "8.0.3-develop.2",
13
+ publishDate: 1773401319,
14
+ version: "8.0.3-develop.3",
15
15
  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"
16
16
  };
17
17
  export {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@progress/kendo-vue-popup",
3
- "version": "8.0.3-develop.2",
3
+ "version": "8.0.3-develop.3",
4
4
  "description": "Kendo UI for Vue Popup package",
5
5
  "author": "Progress",
6
6
  "license": "SEE LICENSE IN LICENSE.md",
@@ -26,8 +26,8 @@
26
26
  "sideEffects": false,
27
27
  "peerDependencies": {
28
28
  "@progress/kendo-licensing": "^1.7.2",
29
- "@progress/kendo-vue-animation": "8.0.3-develop.2",
30
- "@progress/kendo-vue-common": "8.0.3-develop.2",
29
+ "@progress/kendo-vue-animation": "8.0.3-develop.3",
30
+ "@progress/kendo-vue-common": "8.0.3-develop.3",
31
31
  "vue": "^3.0.2"
32
32
  },
33
33
  "dependencies": {
@@ -45,7 +45,7 @@
45
45
  "package": {
46
46
  "productName": "Kendo UI for Vue",
47
47
  "productCode": "KENDOUIVUE",
48
- "publishDate": 1773129898,
48
+ "publishDate": 1773401319,
49
49
  "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"
50
50
  }
51
51
  },