@progress/kendo-vue-popup 6.1.0-develop.6 → 6.1.0-develop.8
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 +13 -9
- package/index.d.ts +13 -9
- package/package-metadata.js +1 -1
- package/package-metadata.mjs +2 -2
- package/package.json +4 -4
package/index.d.mts
CHANGED
|
@@ -9,7 +9,11 @@ import { ComponentOptionsMixin } from 'vue';
|
|
|
9
9
|
import { ComponentProvideOptions } from 'vue';
|
|
10
10
|
import { DefineComponent } from 'vue';
|
|
11
11
|
import { ExtractPropTypes } from 'vue';
|
|
12
|
+
import { Offset as Offset_2 } from '.';
|
|
12
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 '.';
|
|
13
17
|
import { PropType } from 'vue';
|
|
14
18
|
import { PublicProps } from 'vue';
|
|
15
19
|
|
|
@@ -111,7 +115,7 @@ vertical: string;
|
|
|
111
115
|
};
|
|
112
116
|
};
|
|
113
117
|
offset: {
|
|
114
|
-
type: PropType<
|
|
118
|
+
type: PropType<Offset_2>;
|
|
115
119
|
default: () => {
|
|
116
120
|
left: number;
|
|
117
121
|
top: number;
|
|
@@ -122,15 +126,15 @@ type: PropType<boolean>;
|
|
|
122
126
|
default: boolean;
|
|
123
127
|
};
|
|
124
128
|
animate: {
|
|
125
|
-
type: PropType<boolean |
|
|
129
|
+
type: PropType<boolean | PopupAnimation_2>;
|
|
126
130
|
default: boolean;
|
|
127
131
|
};
|
|
128
132
|
direction: {
|
|
129
133
|
type: PropType<string>;
|
|
130
134
|
default: string;
|
|
131
135
|
};
|
|
132
|
-
onOpen: PropType<(event:
|
|
133
|
-
onClose: PropType<(event:
|
|
136
|
+
onOpen: PropType<(event: PopupOpenEvent_2) => void>;
|
|
137
|
+
onClose: PropType<(event: PopupCloseEvent_2) => void>;
|
|
134
138
|
}>, {}, {
|
|
135
139
|
hasMounted: boolean;
|
|
136
140
|
}, {}, {
|
|
@@ -182,7 +186,7 @@ vertical: string;
|
|
|
182
186
|
};
|
|
183
187
|
};
|
|
184
188
|
offset: {
|
|
185
|
-
type: PropType<
|
|
189
|
+
type: PropType<Offset_2>;
|
|
186
190
|
default: () => {
|
|
187
191
|
left: number;
|
|
188
192
|
top: number;
|
|
@@ -193,21 +197,21 @@ type: PropType<boolean>;
|
|
|
193
197
|
default: boolean;
|
|
194
198
|
};
|
|
195
199
|
animate: {
|
|
196
|
-
type: PropType<boolean |
|
|
200
|
+
type: PropType<boolean | PopupAnimation_2>;
|
|
197
201
|
default: boolean;
|
|
198
202
|
};
|
|
199
203
|
direction: {
|
|
200
204
|
type: PropType<string>;
|
|
201
205
|
default: string;
|
|
202
206
|
};
|
|
203
|
-
onOpen: PropType<(event:
|
|
204
|
-
onClose: PropType<(event:
|
|
207
|
+
onOpen: PropType<(event: PopupOpenEvent_2) => void>;
|
|
208
|
+
onClose: PropType<(event: PopupCloseEvent_2) => void>;
|
|
205
209
|
}>> & Readonly<{}>, {
|
|
206
210
|
animate: boolean;
|
|
207
211
|
anchor: string;
|
|
208
212
|
direction: string;
|
|
209
213
|
anchorAlign: object;
|
|
210
|
-
offset:
|
|
214
|
+
offset: Offset_2;
|
|
211
215
|
appendTo: string;
|
|
212
216
|
collision: object;
|
|
213
217
|
popupAlign: object;
|
package/index.d.ts
CHANGED
|
@@ -9,7 +9,11 @@ import { ComponentOptionsMixin } from 'vue';
|
|
|
9
9
|
import { ComponentProvideOptions } from 'vue';
|
|
10
10
|
import { DefineComponent } from 'vue';
|
|
11
11
|
import { ExtractPropTypes } from 'vue';
|
|
12
|
+
import { Offset as Offset_2 } from '.';
|
|
12
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 '.';
|
|
13
17
|
import { PropType } from 'vue';
|
|
14
18
|
import { PublicProps } from 'vue';
|
|
15
19
|
|
|
@@ -111,7 +115,7 @@ vertical: string;
|
|
|
111
115
|
};
|
|
112
116
|
};
|
|
113
117
|
offset: {
|
|
114
|
-
type: PropType<
|
|
118
|
+
type: PropType<Offset_2>;
|
|
115
119
|
default: () => {
|
|
116
120
|
left: number;
|
|
117
121
|
top: number;
|
|
@@ -122,15 +126,15 @@ type: PropType<boolean>;
|
|
|
122
126
|
default: boolean;
|
|
123
127
|
};
|
|
124
128
|
animate: {
|
|
125
|
-
type: PropType<boolean |
|
|
129
|
+
type: PropType<boolean | PopupAnimation_2>;
|
|
126
130
|
default: boolean;
|
|
127
131
|
};
|
|
128
132
|
direction: {
|
|
129
133
|
type: PropType<string>;
|
|
130
134
|
default: string;
|
|
131
135
|
};
|
|
132
|
-
onOpen: PropType<(event:
|
|
133
|
-
onClose: PropType<(event:
|
|
136
|
+
onOpen: PropType<(event: PopupOpenEvent_2) => void>;
|
|
137
|
+
onClose: PropType<(event: PopupCloseEvent_2) => void>;
|
|
134
138
|
}>, {}, {
|
|
135
139
|
hasMounted: boolean;
|
|
136
140
|
}, {}, {
|
|
@@ -182,7 +186,7 @@ vertical: string;
|
|
|
182
186
|
};
|
|
183
187
|
};
|
|
184
188
|
offset: {
|
|
185
|
-
type: PropType<
|
|
189
|
+
type: PropType<Offset_2>;
|
|
186
190
|
default: () => {
|
|
187
191
|
left: number;
|
|
188
192
|
top: number;
|
|
@@ -193,21 +197,21 @@ type: PropType<boolean>;
|
|
|
193
197
|
default: boolean;
|
|
194
198
|
};
|
|
195
199
|
animate: {
|
|
196
|
-
type: PropType<boolean |
|
|
200
|
+
type: PropType<boolean | PopupAnimation_2>;
|
|
197
201
|
default: boolean;
|
|
198
202
|
};
|
|
199
203
|
direction: {
|
|
200
204
|
type: PropType<string>;
|
|
201
205
|
default: string;
|
|
202
206
|
};
|
|
203
|
-
onOpen: PropType<(event:
|
|
204
|
-
onClose: PropType<(event:
|
|
207
|
+
onOpen: PropType<(event: PopupOpenEvent_2) => void>;
|
|
208
|
+
onClose: PropType<(event: PopupCloseEvent_2) => void>;
|
|
205
209
|
}>> & Readonly<{}>, {
|
|
206
210
|
animate: boolean;
|
|
207
211
|
anchor: string;
|
|
208
212
|
direction: string;
|
|
209
213
|
anchorAlign: object;
|
|
210
|
-
offset:
|
|
214
|
+
offset: Offset_2;
|
|
211
215
|
appendTo: string;
|
|
212
216
|
collision: object;
|
|
213
217
|
popupAlign: object;
|
package/package-metadata.js
CHANGED
|
@@ -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:
|
|
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: 1738924542,version:"6.1.0-develop.8",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;
|
package/package-metadata.mjs
CHANGED
|
@@ -10,8 +10,8 @@ const e = {
|
|
|
10
10
|
productName: "Kendo UI for Vue",
|
|
11
11
|
productCode: "KENDOUIVUE",
|
|
12
12
|
productCodes: ["KENDOUIVUE"],
|
|
13
|
-
publishDate:
|
|
14
|
-
version: "6.1.0-develop.
|
|
13
|
+
publishDate: 1738924542,
|
|
14
|
+
version: "6.1.0-develop.8",
|
|
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": "6.1.0-develop.
|
|
3
|
+
"version": "6.1.0-develop.8",
|
|
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.3.0",
|
|
29
|
-
"@progress/kendo-vue-animation": "6.1.0-develop.
|
|
30
|
-
"@progress/kendo-vue-common": "6.1.0-develop.
|
|
29
|
+
"@progress/kendo-vue-animation": "6.1.0-develop.8",
|
|
30
|
+
"@progress/kendo-vue-common": "6.1.0-develop.8",
|
|
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":
|
|
48
|
+
"publishDate": 1738924542,
|
|
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
|
},
|