@progress/kendo-vue-editor 6.0.1 → 6.1.0-develop.1
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/Editor.js +1 -1
- package/Editor.mjs +1 -1
- package/README.md +1 -1
- package/config/defaultStyles.js +1 -1
- package/config/defaultStyles.mjs +1 -1
- package/config/schema.js +1 -1
- package/config/schema.mjs +1 -1
- package/config/shortcuts.js +1 -1
- package/config/shortcuts.mjs +1 -1
- package/config/toolsSettings.js +1 -1
- package/config/toolsSettings.mjs +1 -1
- package/dialogs/FindReplace.js +1 -1
- package/dialogs/FindReplace.mjs +1 -1
- package/dialogs/insertImage.js +1 -1
- package/dialogs/insertImage.mjs +1 -1
- package/dialogs/insertLink.js +1 -1
- package/dialogs/insertLink.mjs +1 -1
- package/dialogs/viewHtml.js +1 -1
- package/dialogs/viewHtml.mjs +1 -1
- package/dist/cdn/js/kendo-vue-editor.js +2 -2
- package/index.d.mts +31 -32
- package/index.d.ts +31 -32
- package/index.js +1 -1
- package/index.mjs +1 -1
- package/messages/main.js +1 -1
- package/messages/main.mjs +1 -1
- package/package-metadata.js +1 -1
- package/package-metadata.mjs +2 -2
- package/package.json +11 -11
- package/tools/align.js +1 -1
- package/tools/align.mjs +1 -1
- package/tools/applyColor.js +1 -1
- package/tools/applyColor.mjs +1 -1
- package/tools/cleanFormatting.js +1 -1
- package/tools/cleanFormatting.mjs +1 -1
- package/tools/findReplace.js +1 -1
- package/tools/findReplace.mjs +1 -1
- package/tools/fontStyle.js +2 -2
- package/tools/fontStyle.mjs +24 -29
- package/tools/formatBlock.js +2 -2
- package/tools/formatBlock.mjs +25 -30
- package/tools/indent.js +1 -1
- package/tools/indent.mjs +1 -1
- package/tools/inlineFormat.js +1 -1
- package/tools/inlineFormat.mjs +1 -1
- package/tools/insertImage.js +1 -1
- package/tools/insertImage.mjs +1 -1
- package/tools/insertLink.js +1 -1
- package/tools/insertLink.mjs +1 -1
- package/tools/insertTable/popup.js +1 -1
- package/tools/insertTable/popup.mjs +1 -1
- package/tools/insertTable/popupGrid.js +2 -2
- package/tools/insertTable/popupGrid.mjs +20 -22
- package/tools/insertTable/tool.js +1 -1
- package/tools/insertTable/tool.mjs +1 -1
- package/tools/lists.js +1 -1
- package/tools/lists.mjs +1 -1
- package/tools/outdent.js +1 -1
- package/tools/outdent.mjs +1 -1
- package/tools/pdf.js +1 -1
- package/tools/pdf.mjs +1 -1
- package/tools/print.js +1 -1
- package/tools/print.mjs +1 -1
- package/tools/proseMirrorTool.js +1 -1
- package/tools/proseMirrorTool.mjs +1 -1
- package/tools/selectAll.js +1 -1
- package/tools/selectAll.mjs +1 -1
- package/tools/unlink.js +1 -1
- package/tools/unlink.mjs +1 -1
- package/tools/utils.js +1 -1
- package/tools/utils.mjs +1 -1
- package/tools/viewHtml.js +1 -1
- package/tools/viewHtml.mjs +1 -1
- package/utils/browser-detection.js +1 -1
- package/utils/browser-detection.mjs +1 -1
- package/utils/controlled-value.js +1 -1
- package/utils/controlled-value.mjs +1 -1
- package/utils/main.js +1 -1
- package/utils/main.mjs +1 -1
- package/utils/props-key.js +1 -1
- package/utils/props-key.mjs +1 -1
package/tools/formatBlock.mjs
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @license
|
|
3
3
|
*-------------------------------------------------------------------------------------------
|
|
4
|
-
* Copyright ©
|
|
4
|
+
* Copyright © 2025 Progress Software Corporation. All rights reserved.
|
|
5
5
|
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
6
|
*-------------------------------------------------------------------------------------------
|
|
7
7
|
*/
|
|
@@ -32,20 +32,21 @@ const L = /* @__PURE__ */ k({
|
|
|
32
32
|
},
|
|
33
33
|
render() {
|
|
34
34
|
const {
|
|
35
|
-
view:
|
|
36
|
-
render:
|
|
37
|
-
dataItems:
|
|
38
|
-
settings:
|
|
35
|
+
view: e,
|
|
36
|
+
render: o,
|
|
37
|
+
dataItems: a,
|
|
38
|
+
settings: n,
|
|
39
39
|
defaultItem: s,
|
|
40
40
|
...d
|
|
41
|
-
} = this.$props, l =
|
|
42
|
-
let t = s ||
|
|
41
|
+
} = this.$props, l = a || n.items, r = e && e.state, c = r ? g(r) : [], i = new Set(c).size === 1 ? c[0] : null;
|
|
42
|
+
let t = s || n.defaultItem;
|
|
43
43
|
const p = y(this);
|
|
44
44
|
t && t.localizationKey && (t = {
|
|
45
45
|
...t
|
|
46
46
|
}, t.text = t.localizationKey ? p.toLanguageString(t.localizationKey, I[t.localizationKey]) : t.text);
|
|
47
47
|
const u = {
|
|
48
48
|
...d,
|
|
49
|
+
...n.props,
|
|
49
50
|
value: i && l.find((f) => f.value === i),
|
|
50
51
|
dataItems: l,
|
|
51
52
|
defaultItem: t,
|
|
@@ -57,36 +58,30 @@ const L = /* @__PURE__ */ k({
|
|
|
57
58
|
width: "170px"
|
|
58
59
|
},
|
|
59
60
|
title: t.text,
|
|
60
|
-
|
|
61
|
+
onChange: this.onFormatBlockChange,
|
|
62
|
+
style: v
|
|
61
63
|
};
|
|
62
|
-
return w(m,
|
|
63
|
-
onChange: this.onChange,
|
|
64
|
-
style: v,
|
|
65
|
-
...u
|
|
66
|
-
});
|
|
64
|
+
return w(m, u);
|
|
67
65
|
},
|
|
68
66
|
methods: {
|
|
69
|
-
customItemRender(
|
|
70
|
-
return
|
|
71
|
-
class:
|
|
72
|
-
onClick:
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
}, [o("span", {
|
|
77
|
-
style: e.dataItem.style
|
|
78
|
-
}, [...n.children])]) : n;
|
|
67
|
+
customItemRender(e, o, a) {
|
|
68
|
+
return a.dataItem.style ? e("li", {
|
|
69
|
+
class: a.itemClass,
|
|
70
|
+
onClick: a.onClick
|
|
71
|
+
}, [e("span", {
|
|
72
|
+
style: a.dataItem.style
|
|
73
|
+
}, [...o.children])]) : o;
|
|
79
74
|
},
|
|
80
|
-
|
|
75
|
+
onFormatBlockChange(e) {
|
|
81
76
|
const {
|
|
82
|
-
view:
|
|
83
|
-
settings:
|
|
84
|
-
} = this.$props,
|
|
85
|
-
if (
|
|
77
|
+
view: o,
|
|
78
|
+
settings: a
|
|
79
|
+
} = this.$props, n = e.target.value;
|
|
80
|
+
if (o && h(n.value, a.commandName)(o.state, o.dispatch)) {
|
|
86
81
|
const {
|
|
87
82
|
event: s
|
|
88
|
-
} =
|
|
89
|
-
s && s.type === "click" &&
|
|
83
|
+
} = e;
|
|
84
|
+
s && s.type === "click" && o.focus();
|
|
90
85
|
}
|
|
91
86
|
}
|
|
92
87
|
}
|
package/tools/indent.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @license
|
|
3
3
|
*-------------------------------------------------------------------------------------------
|
|
4
|
-
* Copyright ©
|
|
4
|
+
* Copyright © 2025 Progress Software Corporation. All rights reserved.
|
|
5
5
|
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
6
|
*-------------------------------------------------------------------------------------------
|
|
7
7
|
*/
|
package/tools/indent.mjs
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @license
|
|
3
3
|
*-------------------------------------------------------------------------------------------
|
|
4
|
-
* Copyright ©
|
|
4
|
+
* Copyright © 2025 Progress Software Corporation. All rights reserved.
|
|
5
5
|
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
6
|
*-------------------------------------------------------------------------------------------
|
|
7
7
|
*/
|
package/tools/inlineFormat.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @license
|
|
3
3
|
*-------------------------------------------------------------------------------------------
|
|
4
|
-
* Copyright ©
|
|
4
|
+
* Copyright © 2025 Progress Software Corporation. All rights reserved.
|
|
5
5
|
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
6
|
*-------------------------------------------------------------------------------------------
|
|
7
7
|
*/
|
package/tools/inlineFormat.mjs
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @license
|
|
3
3
|
*-------------------------------------------------------------------------------------------
|
|
4
|
-
* Copyright ©
|
|
4
|
+
* Copyright © 2025 Progress Software Corporation. All rights reserved.
|
|
5
5
|
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
6
|
*-------------------------------------------------------------------------------------------
|
|
7
7
|
*/
|
package/tools/insertImage.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @license
|
|
3
3
|
*-------------------------------------------------------------------------------------------
|
|
4
|
-
* Copyright ©
|
|
4
|
+
* Copyright © 2025 Progress Software Corporation. All rights reserved.
|
|
5
5
|
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
6
|
*-------------------------------------------------------------------------------------------
|
|
7
7
|
*/
|
package/tools/insertImage.mjs
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @license
|
|
3
3
|
*-------------------------------------------------------------------------------------------
|
|
4
|
-
* Copyright ©
|
|
4
|
+
* Copyright © 2025 Progress Software Corporation. All rights reserved.
|
|
5
5
|
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
6
|
*-------------------------------------------------------------------------------------------
|
|
7
7
|
*/
|
package/tools/insertLink.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @license
|
|
3
3
|
*-------------------------------------------------------------------------------------------
|
|
4
|
-
* Copyright ©
|
|
4
|
+
* Copyright © 2025 Progress Software Corporation. All rights reserved.
|
|
5
5
|
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
6
|
*-------------------------------------------------------------------------------------------
|
|
7
7
|
*/
|
package/tools/insertLink.mjs
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @license
|
|
3
3
|
*-------------------------------------------------------------------------------------------
|
|
4
|
-
* Copyright ©
|
|
4
|
+
* Copyright © 2025 Progress Software Corporation. All rights reserved.
|
|
5
5
|
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
6
|
*-------------------------------------------------------------------------------------------
|
|
7
7
|
*/
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @license
|
|
3
3
|
*-------------------------------------------------------------------------------------------
|
|
4
|
-
* Copyright ©
|
|
4
|
+
* Copyright © 2025 Progress Software Corporation. All rights reserved.
|
|
5
5
|
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
6
|
*-------------------------------------------------------------------------------------------
|
|
7
7
|
*/
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @license
|
|
3
3
|
*-------------------------------------------------------------------------------------------
|
|
4
|
-
* Copyright ©
|
|
4
|
+
* Copyright © 2025 Progress Software Corporation. All rights reserved.
|
|
5
5
|
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
6
|
*-------------------------------------------------------------------------------------------
|
|
7
7
|
*/
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @license
|
|
3
3
|
*-------------------------------------------------------------------------------------------
|
|
4
|
-
* Copyright ©
|
|
4
|
+
* Copyright © 2025 Progress Software Corporation. All rights reserved.
|
|
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 t=require("vue"),w=require("../utils.js"),
|
|
8
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const t=require("vue"),w=require("../utils.js"),M="k-ct-cell k-disabled",m="k-selected",k=t.defineComponent({name:"KendoPopupGrid",props:{rows:Number,columns:Number,createTableMessage:String,createTableHintMessage:String,onCellclick:Function,onDown:Function},data(){return{row:-1,col:-1}},render(){const e=[],s=this.$props.columns*this.$props.rows,{row:c,col:n}=this.$data;let i=this.$props.createTableMessage;n>-1&&(i=w.formatString(this.$props.createTableHintMessage,c+1,n+1));const a=function(o,d,h){const l=Math.floor(o/this.$props.columns),r=o%this.$props.columns,p=r<=h&&l<=d;return t.createVNode("span",{class:M+(p?` ${m}`:""),onMouseenter:()=>this.cellMouseEnter({row:l,col:r}),onClick:()=>this.onCellClick(l,r),key:o},null)};for(let o=0;o<s;o++)e.push(a.call(this,o,c,n));const u=[t.createVNode("div",{onMouseleave:()=>this.handleMouseLeave(),key:"cells",style:{borderColor:"inherit"},onPointerdown:this.onMouseDown},[e]),t.createVNode("div",{class:"k-status",key:"status",onPointerdown:this.onMouseDown},[i])];return t.createVNode("span",null,[u])},methods:{cellMouseEnter({row:e,col:s}){this.row=e,this.col=s},handleMouseLeave(){this.row=-1,this.col=-1},onCellClick(e,s){this.$emit("cellclick",e,s)},onMouseDown(e){this.$emit("down",e)}}});exports.PopupGrid=k;
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @license
|
|
3
3
|
*-------------------------------------------------------------------------------------------
|
|
4
|
-
* Copyright ©
|
|
4
|
+
* Copyright © 2025 Progress Software Corporation. All rights reserved.
|
|
5
5
|
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
6
|
*-------------------------------------------------------------------------------------------
|
|
7
7
|
*/
|
|
8
|
-
import { defineComponent as
|
|
9
|
-
import { formatString as
|
|
10
|
-
const M = "k-ct-cell k-disabled", k = "k-selected", b = /* @__PURE__ */
|
|
8
|
+
import { defineComponent as m, createVNode as t } from "vue";
|
|
9
|
+
import { formatString as w } from "../utils.mjs";
|
|
10
|
+
const M = "k-ct-cell k-disabled", k = "k-selected", b = /* @__PURE__ */ m({
|
|
11
11
|
name: "KendoPopupGrid",
|
|
12
12
|
props: {
|
|
13
13
|
rows: Number,
|
|
@@ -24,14 +24,14 @@ const M = "k-ct-cell k-disabled", k = "k-selected", b = /* @__PURE__ */ w({
|
|
|
24
24
|
};
|
|
25
25
|
},
|
|
26
26
|
render() {
|
|
27
|
-
const
|
|
27
|
+
const e = [], s = this.$props.columns * this.$props.rows, {
|
|
28
28
|
row: c,
|
|
29
29
|
col: n
|
|
30
30
|
} = this.$data;
|
|
31
31
|
let i = this.$props.createTableMessage;
|
|
32
|
-
n > -1 && (i =
|
|
33
|
-
const a = function(
|
|
34
|
-
const l = Math.floor(
|
|
32
|
+
n > -1 && (i = w(this.$props.createTableHintMessage, c + 1, n + 1));
|
|
33
|
+
const a = function(o, h, p) {
|
|
34
|
+
const l = Math.floor(o / this.$props.columns), r = o % this.$props.columns, d = r <= p && l <= h;
|
|
35
35
|
return t("span", {
|
|
36
36
|
class: M + (d ? ` ${k}` : ""),
|
|
37
37
|
onMouseenter: () => this.cellMouseEnter({
|
|
@@ -39,42 +39,40 @@ const M = "k-ct-cell k-disabled", k = "k-selected", b = /* @__PURE__ */ w({
|
|
|
39
39
|
col: r
|
|
40
40
|
}),
|
|
41
41
|
onClick: () => this.onCellClick(l, r),
|
|
42
|
-
key:
|
|
42
|
+
key: o
|
|
43
43
|
}, null);
|
|
44
44
|
};
|
|
45
|
-
for (let
|
|
46
|
-
|
|
45
|
+
for (let o = 0; o < s; o++)
|
|
46
|
+
e.push(a.call(this, o, c, n));
|
|
47
47
|
const u = [t("div", {
|
|
48
48
|
onMouseleave: () => this.handleMouseLeave(),
|
|
49
49
|
key: "cells",
|
|
50
50
|
style: {
|
|
51
51
|
borderColor: "inherit"
|
|
52
52
|
},
|
|
53
|
-
onPointerdown: this.
|
|
54
|
-
|
|
55
|
-
}, [o]), t("div", {
|
|
53
|
+
onPointerdown: this.onMouseDown
|
|
54
|
+
}, [e]), t("div", {
|
|
56
55
|
class: "k-status",
|
|
57
56
|
key: "status",
|
|
58
|
-
onPointerdown: this.
|
|
59
|
-
onMousedown: this.onDown
|
|
57
|
+
onPointerdown: this.onMouseDown
|
|
60
58
|
}, [i])];
|
|
61
59
|
return t("span", null, [u]);
|
|
62
60
|
},
|
|
63
61
|
methods: {
|
|
64
62
|
cellMouseEnter({
|
|
65
|
-
row:
|
|
63
|
+
row: e,
|
|
66
64
|
col: s
|
|
67
65
|
}) {
|
|
68
|
-
this.row =
|
|
66
|
+
this.row = e, this.col = s;
|
|
69
67
|
},
|
|
70
68
|
handleMouseLeave() {
|
|
71
69
|
this.row = -1, this.col = -1;
|
|
72
70
|
},
|
|
73
|
-
onCellClick(
|
|
74
|
-
this.$emit("cellclick",
|
|
71
|
+
onCellClick(e, s) {
|
|
72
|
+
this.$emit("cellclick", e, s);
|
|
75
73
|
},
|
|
76
|
-
|
|
77
|
-
this.$emit("down",
|
|
74
|
+
onMouseDown(e) {
|
|
75
|
+
this.$emit("down", e);
|
|
78
76
|
}
|
|
79
77
|
}
|
|
80
78
|
});
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @license
|
|
3
3
|
*-------------------------------------------------------------------------------------------
|
|
4
|
-
* Copyright ©
|
|
4
|
+
* Copyright © 2025 Progress Software Corporation. All rights reserved.
|
|
5
5
|
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
6
|
*-------------------------------------------------------------------------------------------
|
|
7
7
|
*/
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @license
|
|
3
3
|
*-------------------------------------------------------------------------------------------
|
|
4
|
-
* Copyright ©
|
|
4
|
+
* Copyright © 2025 Progress Software Corporation. All rights reserved.
|
|
5
5
|
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
6
|
*-------------------------------------------------------------------------------------------
|
|
7
7
|
*/
|
package/tools/lists.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @license
|
|
3
3
|
*-------------------------------------------------------------------------------------------
|
|
4
|
-
* Copyright ©
|
|
4
|
+
* Copyright © 2025 Progress Software Corporation. All rights reserved.
|
|
5
5
|
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
6
|
*-------------------------------------------------------------------------------------------
|
|
7
7
|
*/
|
package/tools/lists.mjs
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @license
|
|
3
3
|
*-------------------------------------------------------------------------------------------
|
|
4
|
-
* Copyright ©
|
|
4
|
+
* Copyright © 2025 Progress Software Corporation. All rights reserved.
|
|
5
5
|
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
6
|
*-------------------------------------------------------------------------------------------
|
|
7
7
|
*/
|
package/tools/outdent.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @license
|
|
3
3
|
*-------------------------------------------------------------------------------------------
|
|
4
|
-
* Copyright ©
|
|
4
|
+
* Copyright © 2025 Progress Software Corporation. All rights reserved.
|
|
5
5
|
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
6
|
*-------------------------------------------------------------------------------------------
|
|
7
7
|
*/
|
package/tools/outdent.mjs
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @license
|
|
3
3
|
*-------------------------------------------------------------------------------------------
|
|
4
|
-
* Copyright ©
|
|
4
|
+
* Copyright © 2025 Progress Software Corporation. All rights reserved.
|
|
5
5
|
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
6
|
*-------------------------------------------------------------------------------------------
|
|
7
7
|
*/
|
package/tools/pdf.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @license
|
|
3
3
|
*-------------------------------------------------------------------------------------------
|
|
4
|
-
* Copyright ©
|
|
4
|
+
* Copyright © 2025 Progress Software Corporation. All rights reserved.
|
|
5
5
|
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
6
|
*-------------------------------------------------------------------------------------------
|
|
7
7
|
*/
|
package/tools/pdf.mjs
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @license
|
|
3
3
|
*-------------------------------------------------------------------------------------------
|
|
4
|
-
* Copyright ©
|
|
4
|
+
* Copyright © 2025 Progress Software Corporation. All rights reserved.
|
|
5
5
|
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
6
|
*-------------------------------------------------------------------------------------------
|
|
7
7
|
*/
|
package/tools/print.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @license
|
|
3
3
|
*-------------------------------------------------------------------------------------------
|
|
4
|
-
* Copyright ©
|
|
4
|
+
* Copyright © 2025 Progress Software Corporation. All rights reserved.
|
|
5
5
|
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
6
|
*-------------------------------------------------------------------------------------------
|
|
7
7
|
*/
|
package/tools/print.mjs
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @license
|
|
3
3
|
*-------------------------------------------------------------------------------------------
|
|
4
|
-
* Copyright ©
|
|
4
|
+
* Copyright © 2025 Progress Software Corporation. All rights reserved.
|
|
5
5
|
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
6
|
*-------------------------------------------------------------------------------------------
|
|
7
7
|
*/
|
package/tools/proseMirrorTool.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @license
|
|
3
3
|
*-------------------------------------------------------------------------------------------
|
|
4
|
-
* Copyright ©
|
|
4
|
+
* Copyright © 2025 Progress Software Corporation. All rights reserved.
|
|
5
5
|
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
6
|
*-------------------------------------------------------------------------------------------
|
|
7
7
|
*/
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @license
|
|
3
3
|
*-------------------------------------------------------------------------------------------
|
|
4
|
-
* Copyright ©
|
|
4
|
+
* Copyright © 2025 Progress Software Corporation. All rights reserved.
|
|
5
5
|
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
6
|
*-------------------------------------------------------------------------------------------
|
|
7
7
|
*/
|
package/tools/selectAll.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @license
|
|
3
3
|
*-------------------------------------------------------------------------------------------
|
|
4
|
-
* Copyright ©
|
|
4
|
+
* Copyright © 2025 Progress Software Corporation. All rights reserved.
|
|
5
5
|
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
6
|
*-------------------------------------------------------------------------------------------
|
|
7
7
|
*/
|
package/tools/selectAll.mjs
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @license
|
|
3
3
|
*-------------------------------------------------------------------------------------------
|
|
4
|
-
* Copyright ©
|
|
4
|
+
* Copyright © 2025 Progress Software Corporation. All rights reserved.
|
|
5
5
|
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
6
|
*-------------------------------------------------------------------------------------------
|
|
7
7
|
*/
|
package/tools/unlink.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @license
|
|
3
3
|
*-------------------------------------------------------------------------------------------
|
|
4
|
-
* Copyright ©
|
|
4
|
+
* Copyright © 2025 Progress Software Corporation. All rights reserved.
|
|
5
5
|
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
6
|
*-------------------------------------------------------------------------------------------
|
|
7
7
|
*/
|
package/tools/unlink.mjs
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @license
|
|
3
3
|
*-------------------------------------------------------------------------------------------
|
|
4
|
-
* Copyright ©
|
|
4
|
+
* Copyright © 2025 Progress Software Corporation. All rights reserved.
|
|
5
5
|
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
6
|
*-------------------------------------------------------------------------------------------
|
|
7
7
|
*/
|
package/tools/utils.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @license
|
|
3
3
|
*-------------------------------------------------------------------------------------------
|
|
4
|
-
* Copyright ©
|
|
4
|
+
* Copyright © 2025 Progress Software Corporation. All rights reserved.
|
|
5
5
|
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
6
|
*-------------------------------------------------------------------------------------------
|
|
7
7
|
*/
|
package/tools/utils.mjs
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @license
|
|
3
3
|
*-------------------------------------------------------------------------------------------
|
|
4
|
-
* Copyright ©
|
|
4
|
+
* Copyright © 2025 Progress Software Corporation. All rights reserved.
|
|
5
5
|
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
6
|
*-------------------------------------------------------------------------------------------
|
|
7
7
|
*/
|
package/tools/viewHtml.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @license
|
|
3
3
|
*-------------------------------------------------------------------------------------------
|
|
4
|
-
* Copyright ©
|
|
4
|
+
* Copyright © 2025 Progress Software Corporation. All rights reserved.
|
|
5
5
|
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
6
|
*-------------------------------------------------------------------------------------------
|
|
7
7
|
*/
|
package/tools/viewHtml.mjs
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @license
|
|
3
3
|
*-------------------------------------------------------------------------------------------
|
|
4
|
-
* Copyright ©
|
|
4
|
+
* Copyright © 2025 Progress Software Corporation. All rights reserved.
|
|
5
5
|
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
6
|
*-------------------------------------------------------------------------------------------
|
|
7
7
|
*/
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @license
|
|
3
3
|
*-------------------------------------------------------------------------------------------
|
|
4
|
-
* Copyright ©
|
|
4
|
+
* Copyright © 2025 Progress Software Corporation. All rights reserved.
|
|
5
5
|
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
6
|
*-------------------------------------------------------------------------------------------
|
|
7
7
|
*/
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @license
|
|
3
3
|
*-------------------------------------------------------------------------------------------
|
|
4
|
-
* Copyright ©
|
|
4
|
+
* Copyright © 2025 Progress Software Corporation. All rights reserved.
|
|
5
5
|
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
6
|
*-------------------------------------------------------------------------------------------
|
|
7
7
|
*/
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @license
|
|
3
3
|
*-------------------------------------------------------------------------------------------
|
|
4
|
-
* Copyright ©
|
|
4
|
+
* Copyright © 2025 Progress Software Corporation. All rights reserved.
|
|
5
5
|
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
6
|
*-------------------------------------------------------------------------------------------
|
|
7
7
|
*/
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @license
|
|
3
3
|
*-------------------------------------------------------------------------------------------
|
|
4
|
-
* Copyright ©
|
|
4
|
+
* Copyright © 2025 Progress Software Corporation. All rights reserved.
|
|
5
5
|
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
6
|
*-------------------------------------------------------------------------------------------
|
|
7
7
|
*/
|
package/utils/main.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @license
|
|
3
3
|
*-------------------------------------------------------------------------------------------
|
|
4
|
-
* Copyright ©
|
|
4
|
+
* Copyright © 2025 Progress Software Corporation. All rights reserved.
|
|
5
5
|
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
6
|
*-------------------------------------------------------------------------------------------
|
|
7
7
|
*/
|
package/utils/main.mjs
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @license
|
|
3
3
|
*-------------------------------------------------------------------------------------------
|
|
4
|
-
* Copyright ©
|
|
4
|
+
* Copyright © 2025 Progress Software Corporation. All rights reserved.
|
|
5
5
|
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
6
|
*-------------------------------------------------------------------------------------------
|
|
7
7
|
*/
|
package/utils/props-key.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @license
|
|
3
3
|
*-------------------------------------------------------------------------------------------
|
|
4
|
-
* Copyright ©
|
|
4
|
+
* Copyright © 2025 Progress Software Corporation. All rights reserved.
|
|
5
5
|
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
6
|
*-------------------------------------------------------------------------------------------
|
|
7
7
|
*/
|
package/utils/props-key.mjs
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @license
|
|
3
3
|
*-------------------------------------------------------------------------------------------
|
|
4
|
-
* Copyright ©
|
|
4
|
+
* Copyright © 2025 Progress Software Corporation. All rights reserved.
|
|
5
5
|
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
6
|
*-------------------------------------------------------------------------------------------
|
|
7
7
|
*/
|