@vaadin/rich-text-editor 24.5.0-alpha6 → 24.5.0-alpha8

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vaadin/rich-text-editor",
3
- "version": "24.5.0-alpha6",
3
+ "version": "24.5.0-alpha8",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -41,29 +41,30 @@
41
41
  "dependencies": {
42
42
  "@open-wc/dedupe-mixin": "^1.3.0",
43
43
  "@polymer/polymer": "^3.0.0",
44
- "@vaadin/button": "24.5.0-alpha6",
45
- "@vaadin/component-base": "24.5.0-alpha6",
46
- "@vaadin/confirm-dialog": "24.5.0-alpha6",
47
- "@vaadin/text-field": "24.5.0-alpha6",
48
- "@vaadin/tooltip": "24.5.0-alpha6",
49
- "@vaadin/vaadin-lumo-styles": "24.5.0-alpha6",
50
- "@vaadin/vaadin-material-styles": "24.5.0-alpha6",
51
- "@vaadin/vaadin-themable-mixin": "24.5.0-alpha6",
44
+ "@vaadin/button": "24.5.0-alpha8",
45
+ "@vaadin/component-base": "24.5.0-alpha8",
46
+ "@vaadin/confirm-dialog": "24.5.0-alpha8",
47
+ "@vaadin/overlay": "24.5.0-alpha8",
48
+ "@vaadin/text-field": "24.5.0-alpha8",
49
+ "@vaadin/tooltip": "24.5.0-alpha8",
50
+ "@vaadin/vaadin-lumo-styles": "24.5.0-alpha8",
51
+ "@vaadin/vaadin-material-styles": "24.5.0-alpha8",
52
+ "@vaadin/vaadin-themable-mixin": "24.5.0-alpha8",
52
53
  "lit": "^3.0.0"
53
54
  },
54
55
  "devDependencies": {
55
- "@esm-bundle/chai": "^4.3.4",
56
- "@vaadin/a11y-base": "24.5.0-alpha6",
57
- "@vaadin/testing-helpers": "^0.6.0",
56
+ "@vaadin/a11y-base": "24.5.0-alpha8",
57
+ "@vaadin/chai-plugins": "24.5.0-alpha8",
58
+ "@vaadin/testing-helpers": "^1.0.0",
58
59
  "gulp": "^4.0.2",
59
60
  "gulp-cli": "^2.3.0",
60
61
  "gulp-iconfont": "^11.0.0",
61
- "sinon": "^13.0.2"
62
+ "sinon": "^18.0.0"
62
63
  },
63
64
  "cvdlName": "vaadin-rich-text-editor",
64
65
  "web-types": [
65
66
  "web-types.json",
66
67
  "web-types.lit.json"
67
68
  ],
68
- "gitHead": "c5f541dbe961a994730d4c60472ae957bf6b4c12"
69
+ "gitHead": "1e227aaa55df3f5dae3d477b9afb5fce4f5ece33"
69
70
  }
@@ -759,7 +759,7 @@ export const RichTextEditorMixin = (superClass) =>
759
759
  let content = editor.innerHTML;
760
760
 
761
761
  // Remove Quill classes, e.g. ql-syntax, except for align
762
- content = content.replace(/class="([^"]*)"/gu, (match, group1) => {
762
+ content = content.replace(/class="([^"]*)"/gu, (_match, group1) => {
763
763
  const classes = group1.split(' ').filter((className) => {
764
764
  return !className.startsWith('ql-') || className.startsWith('ql-align');
765
765
  });