@bigbinary/neeto-editor 1.28.21 → 1.28.23

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": "@bigbinary/neeto-editor",
3
- "version": "1.28.21",
3
+ "version": "1.28.23",
4
4
  "main": "./index.cjs.js",
5
5
  "module": "./index.js",
6
6
  "types": "./types.d.ts",
@@ -32,6 +32,7 @@
32
32
  "@babel/runtime": "^7.19.0",
33
33
  "@bigbinary/babel-preset-neeto": "^1.0.4",
34
34
  "@bigbinary/eslint-plugin-neeto": "^1.0.54",
35
+ "@bigbinary/neeto-audit-frontend": "2.0.1",
35
36
  "@bigbinary/neeto-commons-frontend": "^2.0.128",
36
37
  "@bigbinary/neeto-icons": "1.11.0",
37
38
  "@bigbinary/neeto-molecules": "^1.0.94",
package/types.d.ts CHANGED
@@ -163,6 +163,8 @@ export function isEditorEmpty(htmlContent: string | null | undefined): boolean;
163
163
 
164
164
  export function isEditorOverlaysActive(): boolean;
165
165
 
166
+ export function transformEditorContent(content: string): string;
167
+
166
168
  export function substituteVariables(
167
169
  highlightedContent: string,
168
170
  variables: (VariableCategory | Variable)[]