@progress/kendo-vue-editor 3.7.4-dev.202211280833 → 3.7.4-dev.202211301436
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-editor.js +1 -1
- package/dist/es/package-metadata.js +1 -1
- package/dist/es/tools/insertTable/popup.js +5 -1
- package/dist/esm/package-metadata.js +1 -1
- package/dist/esm/tools/insertTable/popup.js +5 -1
- package/dist/npm/package-metadata.js +1 -1
- package/dist/npm/tools/insertTable/popup.js +5 -1
- package/package.json +12 -12
|
@@ -5,7 +5,7 @@ export var packageMetadata = {
|
|
|
5
5
|
name: '@progress/kendo-vue-editor',
|
|
6
6
|
productName: 'Kendo UI for Vue',
|
|
7
7
|
productCodes: ['KENDOUIVUE', 'KENDOUICOMPLETE'],
|
|
8
|
-
publishDate:
|
|
8
|
+
publishDate: 1669818392,
|
|
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
|
};
|
|
@@ -10,6 +10,10 @@ import { PopupGrid } from './popupGrid';
|
|
|
10
10
|
*/
|
|
11
11
|
var InsertTablePopupVue2 = {
|
|
12
12
|
name: 'KendoInsertTablePopup',
|
|
13
|
+
// @ts-ignore
|
|
14
|
+
emits: {
|
|
15
|
+
close: null
|
|
16
|
+
},
|
|
13
17
|
props: {
|
|
14
18
|
show: {
|
|
15
19
|
type: Boolean,
|
|
@@ -157,7 +161,7 @@ var InsertTablePopupVue2 = {
|
|
|
157
161
|
return;
|
|
158
162
|
}
|
|
159
163
|
if (this.$props.show && !this.pointerdown) {
|
|
160
|
-
this.$
|
|
164
|
+
this.$emit('close');
|
|
161
165
|
}
|
|
162
166
|
this.pointerdown = false;
|
|
163
167
|
},
|
|
@@ -5,7 +5,7 @@ export var packageMetadata = {
|
|
|
5
5
|
name: '@progress/kendo-vue-editor',
|
|
6
6
|
productName: 'Kendo UI for Vue',
|
|
7
7
|
productCodes: ['KENDOUIVUE', 'KENDOUICOMPLETE'],
|
|
8
|
-
publishDate:
|
|
8
|
+
publishDate: 1669818392,
|
|
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
|
};
|
|
@@ -10,6 +10,10 @@ import { PopupGrid } from './popupGrid.js';
|
|
|
10
10
|
*/
|
|
11
11
|
var InsertTablePopupVue2 = {
|
|
12
12
|
name: 'KendoInsertTablePopup',
|
|
13
|
+
// @ts-ignore
|
|
14
|
+
emits: {
|
|
15
|
+
close: null
|
|
16
|
+
},
|
|
13
17
|
props: {
|
|
14
18
|
show: {
|
|
15
19
|
type: Boolean,
|
|
@@ -157,7 +161,7 @@ var InsertTablePopupVue2 = {
|
|
|
157
161
|
return;
|
|
158
162
|
}
|
|
159
163
|
if (this.$props.show && !this.pointerdown) {
|
|
160
|
-
this.$
|
|
164
|
+
this.$emit('close');
|
|
161
165
|
}
|
|
162
166
|
this.pointerdown = false;
|
|
163
167
|
},
|
|
@@ -8,7 +8,7 @@ exports.packageMetadata = {
|
|
|
8
8
|
name: '@progress/kendo-vue-editor',
|
|
9
9
|
productName: 'Kendo UI for Vue',
|
|
10
10
|
productCodes: ['KENDOUIVUE', 'KENDOUICOMPLETE'],
|
|
11
|
-
publishDate:
|
|
11
|
+
publishDate: 1669818392,
|
|
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
|
};
|
|
@@ -16,6 +16,10 @@ var popupGrid_1 = require("./popupGrid");
|
|
|
16
16
|
*/
|
|
17
17
|
var InsertTablePopupVue2 = {
|
|
18
18
|
name: 'KendoInsertTablePopup',
|
|
19
|
+
// @ts-ignore
|
|
20
|
+
emits: {
|
|
21
|
+
close: null
|
|
22
|
+
},
|
|
19
23
|
props: {
|
|
20
24
|
show: {
|
|
21
25
|
type: Boolean,
|
|
@@ -163,7 +167,7 @@ var InsertTablePopupVue2 = {
|
|
|
163
167
|
return;
|
|
164
168
|
}
|
|
165
169
|
if (this.$props.show && !this.pointerdown) {
|
|
166
|
-
this.$
|
|
170
|
+
this.$emit('close');
|
|
167
171
|
}
|
|
168
172
|
this.pointerdown = false;
|
|
169
173
|
},
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-vue-editor",
|
|
3
3
|
"description": "Kendo UI for Vue Editor package",
|
|
4
|
-
"version": "3.7.4-dev.
|
|
4
|
+
"version": "3.7.4-dev.202211301436",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
7
|
"url": "https://github.com/telerik/kendo-vue.git"
|
|
@@ -49,21 +49,21 @@
|
|
|
49
49
|
},
|
|
50
50
|
"dependencies": {
|
|
51
51
|
"@progress/kendo-editor-common": "1.9.3",
|
|
52
|
-
"@progress/kendo-vue-common": "3.7.4-dev.
|
|
52
|
+
"@progress/kendo-vue-common": "3.7.4-dev.202211301436"
|
|
53
53
|
},
|
|
54
54
|
"devDependencies": {
|
|
55
55
|
"@progress/kendo-drawing": "^1.8.0",
|
|
56
56
|
"@progress/kendo-licensing": "^1.0.1",
|
|
57
|
-
"@progress/kendo-vue-buttons": "3.7.4-dev.
|
|
58
|
-
"@progress/kendo-vue-dialogs": "3.7.4-dev.
|
|
59
|
-
"@progress/kendo-vue-dropdowns": "3.7.4-dev.
|
|
60
|
-
"@progress/kendo-vue-form": "3.7.4-dev.
|
|
61
|
-
"@progress/kendo-vue-inputs": "3.7.4-dev.
|
|
62
|
-
"@progress/kendo-vue-intl": "3.7.4-dev.
|
|
63
|
-
"@progress/kendo-vue-layout": "3.7.4-dev.
|
|
64
|
-
"@progress/kendo-vue-pdf": "3.7.4-dev.
|
|
65
|
-
"@progress/kendo-vue-popup": "3.7.4-dev.
|
|
66
|
-
"@progress/kendo-vue-upload": "3.7.4-dev.
|
|
57
|
+
"@progress/kendo-vue-buttons": "3.7.4-dev.202211301436",
|
|
58
|
+
"@progress/kendo-vue-dialogs": "3.7.4-dev.202211301436",
|
|
59
|
+
"@progress/kendo-vue-dropdowns": "3.7.4-dev.202211301436",
|
|
60
|
+
"@progress/kendo-vue-form": "3.7.4-dev.202211301436",
|
|
61
|
+
"@progress/kendo-vue-inputs": "3.7.4-dev.202211301436",
|
|
62
|
+
"@progress/kendo-vue-intl": "3.7.4-dev.202211301436",
|
|
63
|
+
"@progress/kendo-vue-layout": "3.7.4-dev.202211301436",
|
|
64
|
+
"@progress/kendo-vue-pdf": "3.7.4-dev.202211301436",
|
|
65
|
+
"@progress/kendo-vue-popup": "3.7.4-dev.202211301436",
|
|
66
|
+
"@progress/kendo-vue-upload": "3.7.4-dev.202211301436",
|
|
67
67
|
"prosemirror-markdown": "1.10.1",
|
|
68
68
|
"prosemirror-tables": "^1.2.5"
|
|
69
69
|
},
|