@lexical/html 0.12.4 → 0.12.6

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.
@@ -101,7 +101,7 @@ function getConversionFunction(domNode, editor) {
101
101
  if (cachedConversions !== undefined) {
102
102
  for (const cachedConversion of cachedConversions) {
103
103
  const domConversion = cachedConversion(domNode);
104
- if (domConversion !== null && (currentConversion === null || currentConversion.priority < domConversion.priority)) {
104
+ if (domConversion !== null && (currentConversion === null || (currentConversion.priority || 0) < (domConversion.priority || 0))) {
105
105
  currentConversion = domConversion;
106
106
  }
107
107
  }
@@ -8,13 +8,11 @@
8
8
  */
9
9
 
10
10
  import type {
11
+ BaseSelection,
11
12
  LexicalEditor,
12
13
  LexicalNode,
13
14
  EditorState,
14
15
  EditorThemeClasses,
15
- RangeSelection,
16
- NodeSelection,
17
- GridSelection,
18
16
  } from 'lexical';
19
17
 
20
18
  export type FindCachedParentDOMNode = (
@@ -25,7 +23,7 @@ export type FindCachedParentDOMNodeSearchFn = (node: Node) => boolean;
25
23
 
26
24
  declare export function $generateHtmlFromNodes(
27
25
  editor: LexicalEditor,
28
- selection?: RangeSelection | NodeSelection | GridSelection | null,
26
+ selection?: BaseSelection | null,
29
27
  ): string;
30
28
 
31
29
  declare export function $generateNodesFromDOM(
@@ -7,7 +7,7 @@
7
7
  'use strict';var m=require("@lexical/selection"),p=require("@lexical/utils"),q=require("lexical");
8
8
  function u(c,e,h,a=null){let f=null!=a?e.isSelected(a):!0,k=q.$isElementNode(e)&&e.excludeFromCopy("html");var d=e;null!==a&&(d=m.$cloneWithProperties(e),d=q.$isTextNode(d)&&null!=a?m.$sliceSelectedTextNodeContent(a,d):d);let g=q.$isElementNode(d)?d.getChildren():[];var b=c._nodes.get(d.getType());b=b&&void 0!==b.exportDOM?b.exportDOM(c,d):d.exportDOM(c);let {element:l,after:r}=b;if(!l)return!1;b=document.createDocumentFragment();for(let n=0;n<g.length;n++){let t=g[n],x=u(c,t,b,a);!f&&q.$isElementNode(e)&&
9
9
  x&&e.extractWithChild(t,a,"html")&&(f=!0)}f&&!k?(p.isHTMLElement(l)&&l.append(b),h.append(l),r&&(c=r.call(d,l))&&l.replaceWith(c)):h.append(b);return f}let v=new Set(["STYLE","SCRIPT"]);
10
- function w(c,e,h=new Map,a){let f=[];if(v.has(c.nodeName))return f;let k=null;var d,{nodeName:g}=c,b=e._htmlConversions.get(g.toLowerCase());g=null;if(void 0!==b)for(d of b)b=d(c),null!==b&&(null===g||g.priority<b.priority)&&(g=b);g=(d=null!==g?g.conversion:null)?d(c):null;d=null;if(null!==g){d=g.after;b=g.node;k=Array.isArray(b)?b[b.length-1]:b;if(null!==k){for(var [,l]of h)if(k=l(k,a),!k)break;k&&f.push(...(Array.isArray(b)?b:[k]))}null!=g.forChild&&h.set(c.nodeName,g.forChild)}c=c.childNodes;a=
11
- [];for(l=0;l<c.length;l++)a.push(...w(c[l],e,new Map(h),k));null!=d&&(a=d(a));null==k?f=f.concat(a):q.$isElementNode(k)&&k.append(...a);return f}
10
+ function w(c,e,h=new Map,a){let f=[];if(v.has(c.nodeName))return f;let k=null;var d,{nodeName:g}=c,b=e._htmlConversions.get(g.toLowerCase());g=null;if(void 0!==b)for(d of b)b=d(c),null!==b&&(null===g||(g.priority||0)<(b.priority||0))&&(g=b);g=(d=null!==g?g.conversion:null)?d(c):null;d=null;if(null!==g){d=g.after;b=g.node;k=Array.isArray(b)?b[b.length-1]:b;if(null!==k){for(var [,l]of h)if(k=l(k,a),!k)break;k&&f.push(...(Array.isArray(b)?b:[k]))}null!=g.forChild&&h.set(c.nodeName,g.forChild)}c=c.childNodes;
11
+ a=[];for(l=0;l<c.length;l++)a.push(...w(c[l],e,new Map(h),k));null!=d&&(a=d(a));null==k?f=f.concat(a):q.$isElementNode(k)&&k.append(...a);return f}
12
12
  exports.$generateHtmlFromNodes=function(c,e){if("undefined"===typeof document||"undefined"===typeof window)throw Error("To use $generateHtmlFromNodes in headless mode please initialize a headless browser implementation such as JSDom before calling this function.");let h=document.createElement("div"),a=q.$getRoot().getChildren();for(let f=0;f<a.length;f++)u(c,a[f],h,e);return h.innerHTML};
13
13
  exports.$generateNodesFromDOM=function(c,e){e=e.body?e.body.childNodes:[];let h=[];for(let f=0;f<e.length;f++){var a=e[f];v.has(a.nodeName)||(a=w(a,c),null!==a&&(h=h.concat(a)))}return h}
package/index.d.ts CHANGED
@@ -6,11 +6,11 @@
6
6
  * LICENSE file in the root directory of this source tree.
7
7
  *
8
8
  */
9
- import type { GridSelection, LexicalEditor, LexicalNode, NodeSelection, RangeSelection } from 'lexical';
9
+ import type { BaseSelection, LexicalEditor, LexicalNode } from 'lexical';
10
10
  /**
11
11
  * How you parse your html string to get a document is left up to you. In the browser you can use the native
12
12
  * DOMParser API to generate a document (see clipboard.ts), but to use in a headless environment you can use JSDom
13
13
  * or an equivilant library and pass in the document here.
14
14
  */
15
15
  export declare function $generateNodesFromDOM(editor: LexicalEditor, dom: Document): Array<LexicalNode>;
16
- export declare function $generateHtmlFromNodes(editor: LexicalEditor, selection?: RangeSelection | NodeSelection | GridSelection | null): string;
16
+ export declare function $generateHtmlFromNodes(editor: LexicalEditor, selection?: BaseSelection | null): string;
package/package.json CHANGED
@@ -8,10 +8,10 @@
8
8
  "html"
9
9
  ],
10
10
  "license": "MIT",
11
- "version": "0.12.4",
11
+ "version": "0.12.6",
12
12
  "main": "LexicalHtml.js",
13
13
  "peerDependencies": {
14
- "lexical": "0.12.4"
14
+ "lexical": "0.12.6"
15
15
  },
16
16
  "repository": {
17
17
  "type": "git",
@@ -19,7 +19,7 @@
19
19
  "directory": "packages/lexical-html"
20
20
  },
21
21
  "dependencies": {
22
- "@lexical/selection": "0.12.4",
23
- "@lexical/utils": "0.12.4"
22
+ "@lexical/selection": "0.12.6",
23
+ "@lexical/utils": "0.12.6"
24
24
  }
25
25
  }