Comparing version 0.12.1 to 0.12.2
@@ -24,3 +24,3 @@ /** @module lexical */ | ||
export { $parseSerializedNode } from './LexicalUpdates'; | ||
export { $addUpdateTag, $applyNodeReplacement, $copyNode, $getAdjacentNode, $getNearestNodeFromDOMNode, $getNearestRootOrShadowRoot, $getNodeByKey, $getRoot, $hasAncestor, $hasUpdateTag, $isInlineElementOrDecoratorNode, $isLeafNode, $isRootOrShadowRoot, $nodesOfType, $selectAll, $setCompositionKey, $setSelection, $splitNode, getNearestEditorFromDOMNode, isSelectionCapturedInDecoratorInput, isSelectionWithinEditor, } from './LexicalUtils'; | ||
export { $addUpdateTag, $applyNodeReplacement, $copyNode, $getAdjacentNode, $getNearestNodeFromDOMNode, $getNearestRootOrShadowRoot, $getNodeByKey, $getRoot, $hasAncestor, $hasUpdateTag, $isInlineElementOrDecoratorNode, $isLeafNode, $isRootOrShadowRoot, $nodesOfType, $selectAll, $setCompositionKey, $setSelection, $splitNode, getNearestEditorFromDOMNode, isHTMLAnchorElement, isHTMLElement, isSelectionCapturedInDecoratorInput, isSelectionWithinEditor, } from './LexicalUtils'; | ||
export { $isDecoratorNode, DecoratorNode } from './nodes/LexicalDecoratorNode'; | ||
@@ -27,0 +27,0 @@ export { $isElementNode, ElementNode } from './nodes/LexicalElementNode'; |
@@ -117,1 +117,11 @@ /** | ||
export declare function $getChildrenRecursively(node: LexicalNode): Array<LexicalNode>; | ||
/** | ||
* @param x - The element being tested | ||
* @returns Returns true if x is an HTML anchor tag, false otherwise | ||
*/ | ||
export declare function isHTMLAnchorElement(x: Node): x is HTMLAnchorElement; | ||
/** | ||
* @param x - The element being testing | ||
* @returns Returns true if x is an HTML element, false otherwise. | ||
*/ | ||
export declare function isHTMLElement(x: Node | EventTarget): x is HTMLElement; |
@@ -12,3 +12,3 @@ { | ||
"license": "MIT", | ||
"version": "0.12.1", | ||
"version": "0.12.2", | ||
"main": "Lexical.js", | ||
@@ -15,0 +15,0 @@ "repository": { |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Minified code
QualityThis package contains minified code. This may be harmless in some cases where minified code is included in packaged libraries, however packages on npm should not minify code.
Found 1 instance in 1 package
593430
12073
2