@team-monolith/cds 0.29.25 → 0.29.26

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.
@@ -34,5 +34,8 @@ export declare class Quote implements BlockTool {
34
34
  icon: string;
35
35
  title: string;
36
36
  };
37
+ static get sanitize(): {
38
+ blockquote: {};
39
+ };
37
40
  }
38
41
  export {};
@@ -158,4 +158,9 @@ export class Quote {
158
158
  title: "Quote",
159
159
  };
160
160
  }
161
+ static get sanitize() {
162
+ return {
163
+ blockquote: {},
164
+ };
165
+ }
161
166
  }
@@ -12,7 +12,7 @@ export declare class Italic implements InlineTool {
12
12
  static title: string;
13
13
  /**
14
14
  * Sanitizer Rule
15
- * Leave <i> tags
15
+ * Leave <i>, <em> tags
16
16
  *
17
17
  * @returns {object}
18
18
  */
@@ -25,13 +25,14 @@ export class Italic {
25
25
  }
26
26
  /**
27
27
  * Sanitizer Rule
28
- * Leave <i> tags
28
+ * Leave <i>, <em> tags
29
29
  *
30
30
  * @returns {object}
31
31
  */
32
32
  static get sanitize() {
33
33
  return {
34
34
  i: {},
35
+ em: {},
35
36
  };
36
37
  }
37
38
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@team-monolith/cds",
3
- "version": "0.29.25",
3
+ "version": "0.29.26",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "sideEffects": false,