Class: AutoLinkNode
@lexical/link.AutoLinkNode
Hierarchy
↳
AutoLinkNode
Constructors
constructor
• new AutoLinkNode(url
, attributes?
, key?
)
Parameters
Name | Type |
---|---|
url | string |
attributes | LinkAttributes |
key? | string |
Inherited from
Defined in
lexical-link/src/index.ts:77
Properties
constructor
• constructor: KlassConstructor
<typeof ElementNode
>
Inherited from
LinkNode.constructor
Defined in
lexical/src/nodes/LexicalElementNode.ts:62
Methods
canBeEmpty
▸ canBeEmpty(): false
Returns
false
Inherited from
Defined in
lexical-link/src/index.ts:246
canInsertTextAfter
▸ canInsertTextAfter(): false
Returns
false
Inherited from
Defined in
lexical-link/src/index.ts:242
canInsertTextBefore
▸ canInsertTextBefore(): false
Returns
false
Inherited from
Defined in
lexical-link/src/index.ts:238
exportJSON
▸ exportJSON(): SerializedLinkNode
Controls how the this node is serialized to JSON. This is important for copy and paste between Lexical editors sharing the same namespace. It's also important if you're serializing to JSON for persistent storage somewhere. See Serialization & Deserialization.
Returns
Overrides
Defined in
lexical-link/src/index.ts:347
extractWithChild
▸ extractWithChild(child
, selection
, destination
): boolean
Parameters
Name | Type |
---|---|
child | LexicalNode |
selection | BaseSelection |
destination | "clone" | "html" |
Returns
boolean
Inherited from
Defined in
lexical-link/src/index.ts:254
getRel
▸ getRel(): null
| string
Returns
null
| string
Inherited from
Defined in
lexical-link/src/index.ts:207
getTarget
▸ getTarget(): null
| string
Returns
null
| string
Inherited from
Defined in
lexical-link/src/index.ts:198
getTitle
▸ getTitle(): null
| string
Returns
null
| string
Inherited from
Defined in
lexical-link/src/index.ts:216
getURL
▸ getURL(): string
Returns
string
Inherited from
Defined in
lexical-link/src/index.ts:189
insertNewAfter
▸ insertNewAfter(selection
, restoreSelection?
): null
| ElementNode
Parameters
Name | Type | Default value |
---|---|---|
selection | RangeSelection | undefined |
restoreSelection | boolean | true |
Returns
null
| ElementNode
Overrides
Defined in
lexical-link/src/index.ts:355
isInline
▸ isInline(): true
Returns
true
Inherited from
Defined in
lexical-link/src/index.ts:250
sanitizeUrl
▸ sanitizeUrl(url
): string
Parameters
Name | Type |
---|---|
url | string |
Returns
string
Inherited from
Defined in
lexical-link/src/index.ts:164
setRel
▸ setRel(rel
): void
Parameters
Name | Type |
---|---|
rel | null | string |
Returns
void
Inherited from
Defined in
lexical-link/src/index.ts:211
setTarget
▸ setTarget(target
): void
Parameters
Name | Type |
---|---|
target | null | string |
Returns
void
Inherited from
Defined in
lexical-link/src/index.ts:202
setTitle
▸ setTitle(title
): void
Parameters
Name | Type |
---|---|
title | null | string |
Returns
void
Inherited from
Defined in
lexical-link/src/index.ts:220
setURL
▸ setURL(url
): void
Parameters
Name | Type |
---|---|
url | string |
Returns
void
Inherited from
Defined in
lexical-link/src/index.ts:193
clone
▸ Static
clone(node
): AutoLinkNode
Parameters
Name | Type |
---|---|
node | AutoLinkNode |
Returns
Overrides
Defined in
lexical-link/src/index.ts:322
getType
▸ Static
getType(): string
Returns
string
Overrides
Defined in
lexical-link/src/index.ts:318
importDOM
▸ Static
importDOM(): null
Returns
null
Overrides
Defined in
lexical-link/src/index.ts:342
importJSON
▸ Static
importJSON(serializedNode
): AutoLinkNode
Parameters
Name | Type |
---|---|
serializedNode | SerializedLinkNode |
Returns
Overrides
Defined in
lexical-link/src/index.ts:330