@tempots/dom
BrowserContext class
DOMContext
is an immutable class that represents the context of a DOM element. It provides methods and properties to manipulate and interact with the DOM element.
A reference in a DOMContext is to mark a position within a set of sibblings. It is used to insert new elements before the reference.
Signature:
declare class BrowserContext implements DOMContext
Implements: DOMContext
Constructors
Constructor |
Modifiers |
Description |
---|---|---|
Constructs a new |
Properties
Property |
Modifiers |
Type |
Description |
---|---|---|---|
|
(tokens: string[]) => void |
Adds classes to the element. | |
|
(child: Node) => void |
Appends or inserts a child node to the element, depending on whether a reference node is provided. | |
|
(removeTree: boolean) => void | ||
|
(tagName: string, namespace: string | undefined) => HTMLElement |
Creates a new DOM element (eg: HTML or SVG) with the specified tag name and namespace. | |
|
(text: string) => Text |
Creates a new text node with the specified text content. | |
|
Document |
The | |
|
HTMLElement |
The | |
|
() => string[] |
Gets the classes of the element. | |
|
<T>(mark: ProviderMark<T>) => T |
Retrieves a provider for the given provider mark. | |
|
(name: string) => string |
Gets the style of the element. | |
|
() => string |
Gets the text content of the current element or text node. | |
|
() => this is BrowserContext |
Returns | |
|
() => this is HeadlessContext |
Returns | |
|
(name: string) => { get: () => any; set: (value: unknown) => void; } | ||
|
(tagName: string, namespace: string | undefined) => DOMContext |
Creates a new DOM element (eg: HTML or SVG) with the specified tag name and namespace and appends it to the current element. | |
|
(text: string) => DOMContext |
Creates a new text node with the specified text content and appends it to the current element. | |
|
(selector: string) => DOMContext |
Creates a new | |
|
() => DOMContext |
Creates a new | |
|
<E>(event: string, listener: (event: E) => void, options?: HandlerOptions) => Clear |
Adds an event listener to the element. | |
|
The | ||
|
Node | undefined |
An optional | |
|
(tokens: string[]) => void |
Removes classes from the element. | |
|
(name: string, value: string) => void |
Sets the style of the element. | |
|
(text: string) => void |
Sets the text content of the current element. | |
|
(element: HTMLElement) => BrowserContext |
Creates a new | |
|
(providers: { [K in ProviderMark<unknown>]: unknown; }) => DOMContext |
Returns a new HTMLDOMContext instance with the specified providers merged into the existing providers. | |
|
(reference: Text | undefined) => DOMContext |
Creates a new |
Methods
Method |
Modifiers |
Description |
---|---|---|
|
Creates a new |