@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.
Files changed (81) hide show
  1. package/Editor.js +1 -1
  2. package/Editor.mjs +1 -1
  3. package/README.md +1 -1
  4. package/config/defaultStyles.js +1 -1
  5. package/config/defaultStyles.mjs +1 -1
  6. package/config/schema.js +1 -1
  7. package/config/schema.mjs +1 -1
  8. package/config/shortcuts.js +1 -1
  9. package/config/shortcuts.mjs +1 -1
  10. package/config/toolsSettings.js +1 -1
  11. package/config/toolsSettings.mjs +1 -1
  12. package/dialogs/FindReplace.js +1 -1
  13. package/dialogs/FindReplace.mjs +1 -1
  14. package/dialogs/insertImage.js +1 -1
  15. package/dialogs/insertImage.mjs +1 -1
  16. package/dialogs/insertLink.js +1 -1
  17. package/dialogs/insertLink.mjs +1 -1
  18. package/dialogs/viewHtml.js +1 -1
  19. package/dialogs/viewHtml.mjs +1 -1
  20. package/dist/cdn/js/kendo-vue-editor.js +2 -2
  21. package/index.d.mts +31 -32
  22. package/index.d.ts +31 -32
  23. package/index.js +1 -1
  24. package/index.mjs +1 -1
  25. package/messages/main.js +1 -1
  26. package/messages/main.mjs +1 -1
  27. package/package-metadata.js +1 -1
  28. package/package-metadata.mjs +2 -2
  29. package/package.json +11 -11
  30. package/tools/align.js +1 -1
  31. package/tools/align.mjs +1 -1
  32. package/tools/applyColor.js +1 -1
  33. package/tools/applyColor.mjs +1 -1
  34. package/tools/cleanFormatting.js +1 -1
  35. package/tools/cleanFormatting.mjs +1 -1
  36. package/tools/findReplace.js +1 -1
  37. package/tools/findReplace.mjs +1 -1
  38. package/tools/fontStyle.js +2 -2
  39. package/tools/fontStyle.mjs +24 -29
  40. package/tools/formatBlock.js +2 -2
  41. package/tools/formatBlock.mjs +25 -30
  42. package/tools/indent.js +1 -1
  43. package/tools/indent.mjs +1 -1
  44. package/tools/inlineFormat.js +1 -1
  45. package/tools/inlineFormat.mjs +1 -1
  46. package/tools/insertImage.js +1 -1
  47. package/tools/insertImage.mjs +1 -1
  48. package/tools/insertLink.js +1 -1
  49. package/tools/insertLink.mjs +1 -1
  50. package/tools/insertTable/popup.js +1 -1
  51. package/tools/insertTable/popup.mjs +1 -1
  52. package/tools/insertTable/popupGrid.js +2 -2
  53. package/tools/insertTable/popupGrid.mjs +20 -22
  54. package/tools/insertTable/tool.js +1 -1
  55. package/tools/insertTable/tool.mjs +1 -1
  56. package/tools/lists.js +1 -1
  57. package/tools/lists.mjs +1 -1
  58. package/tools/outdent.js +1 -1
  59. package/tools/outdent.mjs +1 -1
  60. package/tools/pdf.js +1 -1
  61. package/tools/pdf.mjs +1 -1
  62. package/tools/print.js +1 -1
  63. package/tools/print.mjs +1 -1
  64. package/tools/proseMirrorTool.js +1 -1
  65. package/tools/proseMirrorTool.mjs +1 -1
  66. package/tools/selectAll.js +1 -1
  67. package/tools/selectAll.mjs +1 -1
  68. package/tools/unlink.js +1 -1
  69. package/tools/unlink.mjs +1 -1
  70. package/tools/utils.js +1 -1
  71. package/tools/utils.mjs +1 -1
  72. package/tools/viewHtml.js +1 -1
  73. package/tools/viewHtml.mjs +1 -1
  74. package/utils/browser-detection.js +1 -1
  75. package/utils/browser-detection.mjs +1 -1
  76. package/utils/controlled-value.js +1 -1
  77. package/utils/controlled-value.mjs +1 -1
  78. package/utils/main.js +1 -1
  79. package/utils/main.mjs +1 -1
  80. package/utils/props-key.js +1 -1
  81. package/utils/props-key.mjs +1 -1
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * @license
3
3
  *-------------------------------------------------------------------------------------------
4
- * Copyright © 2024 Progress Software Corporation. All rights reserved.
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: o,
36
- render: n,
37
- dataItems: e,
38
- settings: a,
35
+ view: e,
36
+ render: o,
37
+ dataItems: a,
38
+ settings: n,
39
39
  defaultItem: s,
40
40
  ...d
41
- } = this.$props, l = e || a.items, c = o && o.state, r = c ? g(c) : [], i = new Set(r).size === 1 ? r[0] : null;
42
- let t = s || a.defaultItem;
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
- ...a.props
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(o, n, e) {
70
- return e.dataItem.style ? o("li", {
71
- class: e.itemClass,
72
- onClick: e.onClick,
73
- on: {
74
- click: e.onClick
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
- onChange(o) {
75
+ onFormatBlockChange(e) {
81
76
  const {
82
- view: n,
83
- settings: e
84
- } = this.$props, a = o.target.value;
85
- if (n && h(a.value, e.commandName)(n.state, n.dispatch)) {
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
- } = o;
89
- s && s.type === "click" && n.focus();
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 © 2024 Progress Software Corporation. All rights reserved.
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 © 2024 Progress Software Corporation. All rights reserved.
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 © 2024 Progress Software Corporation. All rights reserved.
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 © 2024 Progress Software Corporation. All rights reserved.
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 © 2024 Progress Software Corporation. All rights reserved.
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 © 2024 Progress Software Corporation. All rights reserved.
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 © 2024 Progress Software Corporation. All rights reserved.
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 © 2024 Progress Software Corporation. All rights reserved.
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 © 2024 Progress Software Corporation. All rights reserved.
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 © 2024 Progress Software Corporation. All rights reserved.
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 © 2024 Progress Software Corporation. All rights reserved.
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"),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.onDown,onMousedown:this.onDown},[e]),t.createVNode("div",{class:"k-status",key:"status",onPointerdown:this.onDown,onMousedown:this.onDown},[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)},onDown(e){this.$emit("down",e)}}});exports.PopupGrid=k;
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 © 2024 Progress Software Corporation. All rights reserved.
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 w, createVNode as t } from "vue";
9
- import { formatString as m } from "../utils.mjs";
10
- const M = "k-ct-cell k-disabled", k = "k-selected", b = /* @__PURE__ */ w({
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 o = [], s = this.$props.columns * this.$props.rows, {
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 = m(this.$props.createTableHintMessage, c + 1, n + 1));
33
- const a = function(e, h, p) {
34
- const l = Math.floor(e / this.$props.columns), r = e % this.$props.columns, d = r <= p && l <= h;
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: e
42
+ key: o
43
43
  }, null);
44
44
  };
45
- for (let e = 0; e < s; e++)
46
- o.push(a.call(this, e, c, n));
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.onDown,
54
- onMousedown: this.onDown
55
- }, [o]), t("div", {
53
+ onPointerdown: this.onMouseDown
54
+ }, [e]), t("div", {
56
55
  class: "k-status",
57
56
  key: "status",
58
- onPointerdown: this.onDown,
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: o,
63
+ row: e,
66
64
  col: s
67
65
  }) {
68
- this.row = o, this.col = s;
66
+ this.row = e, this.col = s;
69
67
  },
70
68
  handleMouseLeave() {
71
69
  this.row = -1, this.col = -1;
72
70
  },
73
- onCellClick(o, s) {
74
- this.$emit("cellclick", o, s);
71
+ onCellClick(e, s) {
72
+ this.$emit("cellclick", e, s);
75
73
  },
76
- onDown(o) {
77
- this.$emit("down", o);
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 © 2024 Progress Software Corporation. All rights reserved.
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 © 2024 Progress Software Corporation. All rights reserved.
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 © 2024 Progress Software Corporation. All rights reserved.
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 © 2024 Progress Software Corporation. All rights reserved.
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 © 2024 Progress Software Corporation. All rights reserved.
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 © 2024 Progress Software Corporation. All rights reserved.
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 © 2024 Progress Software Corporation. All rights reserved.
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 © 2024 Progress Software Corporation. All rights reserved.
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 © 2024 Progress Software Corporation. All rights reserved.
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 © 2024 Progress Software Corporation. All rights reserved.
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 © 2024 Progress Software Corporation. All rights reserved.
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 © 2024 Progress Software Corporation. All rights reserved.
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 © 2024 Progress Software Corporation. All rights reserved.
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 © 2024 Progress Software Corporation. All rights reserved.
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 © 2024 Progress Software Corporation. All rights reserved.
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 © 2024 Progress Software Corporation. All rights reserved.
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 © 2024 Progress Software Corporation. All rights reserved.
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 © 2024 Progress Software Corporation. All rights reserved.
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 © 2024 Progress Software Corporation. All rights reserved.
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 © 2024 Progress Software Corporation. All rights reserved.
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 © 2024 Progress Software Corporation. All rights reserved.
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 © 2024 Progress Software Corporation. All rights reserved.
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 © 2024 Progress Software Corporation. All rights reserved.
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 © 2024 Progress Software Corporation. All rights reserved.
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 © 2024 Progress Software Corporation. All rights reserved.
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 © 2024 Progress Software Corporation. All rights reserved.
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 © 2024 Progress Software Corporation. All rights reserved.
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 © 2024 Progress Software Corporation. All rights reserved.
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
  */