@progress/kendo-vue-tooltip 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 +8 -6
- package/index.d.ts +8 -6
- package/package-metadata.js +1 -1
- package/package-metadata.mjs +2 -2
- package/package.json +3 -3
package/index.d.mts
CHANGED
|
@@ -11,6 +11,8 @@ import { DefineComponent } from 'vue';
|
|
|
11
11
|
import { ExtractPropTypes } from 'vue';
|
|
12
12
|
import { PropType } from 'vue';
|
|
13
13
|
import { PublicProps } from 'vue';
|
|
14
|
+
import { TooltipPosition as TooltipPosition_2 } from './utils';
|
|
15
|
+
import { TooltipPositionEvent as TooltipPositionEvent_2 } from './events';
|
|
14
16
|
|
|
15
17
|
/**
|
|
16
18
|
* @hidden
|
|
@@ -40,12 +42,12 @@ type: PropType<boolean>;
|
|
|
40
42
|
default: any;
|
|
41
43
|
};
|
|
42
44
|
position: {
|
|
43
|
-
type: PropType<String |
|
|
45
|
+
type: PropType<String | TooltipPosition_2>;
|
|
44
46
|
default: string;
|
|
45
47
|
validator: (value: string) => any;
|
|
46
48
|
};
|
|
47
49
|
updatePosition: {
|
|
48
|
-
type: PropType<(event:
|
|
50
|
+
type: PropType<(event: TooltipPositionEvent_2) => {
|
|
49
51
|
top: number;
|
|
50
52
|
left: number;
|
|
51
53
|
}>;
|
|
@@ -125,12 +127,12 @@ type: PropType<boolean>;
|
|
|
125
127
|
default: any;
|
|
126
128
|
};
|
|
127
129
|
position: {
|
|
128
|
-
type: PropType<String |
|
|
130
|
+
type: PropType<String | TooltipPosition_2>;
|
|
129
131
|
default: string;
|
|
130
132
|
validator: (value: string) => any;
|
|
131
133
|
};
|
|
132
134
|
updatePosition: {
|
|
133
|
-
type: PropType<(event:
|
|
135
|
+
type: PropType<(event: TooltipPositionEvent_2) => {
|
|
134
136
|
top: number;
|
|
135
137
|
left: number;
|
|
136
138
|
}>;
|
|
@@ -154,8 +156,8 @@ setCalloutOnPositionAuto: any;
|
|
|
154
156
|
anchorElement: string;
|
|
155
157
|
openDelay: number;
|
|
156
158
|
open: boolean;
|
|
157
|
-
position: String |
|
|
158
|
-
updatePosition: (event:
|
|
159
|
+
position: String | TooltipPosition_2;
|
|
160
|
+
updatePosition: (event: TooltipPositionEvent_2) => {
|
|
159
161
|
top: number;
|
|
160
162
|
left: number;
|
|
161
163
|
};
|
package/index.d.ts
CHANGED
|
@@ -11,6 +11,8 @@ import { DefineComponent } from 'vue';
|
|
|
11
11
|
import { ExtractPropTypes } from 'vue';
|
|
12
12
|
import { PropType } from 'vue';
|
|
13
13
|
import { PublicProps } from 'vue';
|
|
14
|
+
import { TooltipPosition as TooltipPosition_2 } from './utils';
|
|
15
|
+
import { TooltipPositionEvent as TooltipPositionEvent_2 } from './events';
|
|
14
16
|
|
|
15
17
|
/**
|
|
16
18
|
* @hidden
|
|
@@ -40,12 +42,12 @@ type: PropType<boolean>;
|
|
|
40
42
|
default: any;
|
|
41
43
|
};
|
|
42
44
|
position: {
|
|
43
|
-
type: PropType<String |
|
|
45
|
+
type: PropType<String | TooltipPosition_2>;
|
|
44
46
|
default: string;
|
|
45
47
|
validator: (value: string) => any;
|
|
46
48
|
};
|
|
47
49
|
updatePosition: {
|
|
48
|
-
type: PropType<(event:
|
|
50
|
+
type: PropType<(event: TooltipPositionEvent_2) => {
|
|
49
51
|
top: number;
|
|
50
52
|
left: number;
|
|
51
53
|
}>;
|
|
@@ -125,12 +127,12 @@ type: PropType<boolean>;
|
|
|
125
127
|
default: any;
|
|
126
128
|
};
|
|
127
129
|
position: {
|
|
128
|
-
type: PropType<String |
|
|
130
|
+
type: PropType<String | TooltipPosition_2>;
|
|
129
131
|
default: string;
|
|
130
132
|
validator: (value: string) => any;
|
|
131
133
|
};
|
|
132
134
|
updatePosition: {
|
|
133
|
-
type: PropType<(event:
|
|
135
|
+
type: PropType<(event: TooltipPositionEvent_2) => {
|
|
134
136
|
top: number;
|
|
135
137
|
left: number;
|
|
136
138
|
}>;
|
|
@@ -154,8 +156,8 @@ setCalloutOnPositionAuto: any;
|
|
|
154
156
|
anchorElement: string;
|
|
155
157
|
openDelay: number;
|
|
156
158
|
open: boolean;
|
|
157
|
-
position: String |
|
|
158
|
-
updatePosition: (event:
|
|
159
|
+
position: String | TooltipPosition_2;
|
|
160
|
+
updatePosition: (event: TooltipPositionEvent_2) => {
|
|
159
161
|
top: number;
|
|
160
162
|
left: number;
|
|
161
163
|
};
|
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-tooltip",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-tooltip",productName:"Kendo UI for Vue",productCode:"KENDOUIVUE",productCodes:["KENDOUIVUE"],publishDate: 1738925000,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: 1738925000,
|
|
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-tooltip",
|
|
3
|
-
"version": "6.1.0-develop.
|
|
3
|
+
"version": "6.1.0-develop.8",
|
|
4
4
|
"description": "TODO",
|
|
5
5
|
"author": "Progress",
|
|
6
6
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
"sideEffects": false,
|
|
20
20
|
"peerDependencies": {
|
|
21
21
|
"@progress/kendo-licensing": "^1.3.4",
|
|
22
|
-
"@progress/kendo-vue-common": "6.1.0-develop.
|
|
22
|
+
"@progress/kendo-vue-common": "6.1.0-develop.8",
|
|
23
23
|
"vue": "^3.0.2"
|
|
24
24
|
},
|
|
25
25
|
"dependencies": {},
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
"package": {
|
|
40
40
|
"productName": "Kendo UI for Vue",
|
|
41
41
|
"productCode": "KENDOUIVUE",
|
|
42
|
-
"publishDate":
|
|
42
|
+
"publishDate": 1738925000,
|
|
43
43
|
"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"
|
|
44
44
|
}
|
|
45
45
|
},
|