@happeouikit/content-renderer 3.3.1 → 3.3.2

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/dist/utils.d.ts CHANGED
@@ -31,4 +31,5 @@ declare const replacePTagsInCodeBlocks: (html?: string) => string;
31
31
  * @returns The processed HTML with standalone < characters escaped
32
32
  */
33
33
  declare const escapeInvalidTagStarts: (html: string) => string;
34
- export { toHtml, toSafeText, loadCodeFont, decodeHtmlEntities, getNearestRelativeParent, removeSpecialCharacters, addColorSpanAfterColorCodes, replacePTagsInCodeBlocks, escapeInvalidTagStarts, };
34
+ declare const scrollAndHighlight: (element: HTMLDivElement, hash: string, hashAutoscrollTopMargin: number) => void;
35
+ export { toHtml, toSafeText, loadCodeFont, decodeHtmlEntities, getNearestRelativeParent, removeSpecialCharacters, addColorSpanAfterColorCodes, replacePTagsInCodeBlocks, escapeInvalidTagStarts, scrollAndHighlight, };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@happeouikit/content-renderer",
3
- "version": "3.3.1",
3
+ "version": "3.3.2",
4
4
  "description": "Rendering html and markdown content",
5
5
  "type": "module",
6
6
  "jsnext:main": "dist/index.es.js",
@@ -39,5 +39,5 @@
39
39
  "devDependencies": {
40
40
  "@types/loadjs": "^4.0.4"
41
41
  },
42
- "gitHead": "beaa009c53669833f132bfb292726dbd2fd775d4"
42
+ "gitHead": "f1d7ecf2eba424e331d1b76e49c9f3fc9f98abe5"
43
43
  }