verstak 0.24.114 → 0.24.117

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.
@@ -1,8 +1,8 @@
1
- import { RxNode, BaseDriver, RxElement } from "reactronic";
1
+ import { RxNode, BaseDriver } from "reactronic";
2
2
  export declare class ElDriver<T extends Element, M = unknown, C = unknown> extends BaseDriver<El<T, M, C, void>> {
3
3
  allocate(node: RxNode<El<T, M, C, void>>): El<T, M, C, void>;
4
4
  }
5
- export interface BaseEl<T = any, M = any, C = any, R = void> extends RxElement {
5
+ export interface BaseEl<T = any, M = any, C = any, R = void> {
6
6
  readonly node: RxNode<El<T, M, C, R>>;
7
7
  model: M;
8
8
  controller: C;
@@ -156,6 +156,7 @@ export declare class Apply {
156
156
  export declare const Constants: {
157
157
  element: string;
158
158
  partition: string;
159
+ group: string;
159
160
  layouts: string[];
160
161
  keyAttrName: string;
161
162
  kindAttrName: string;
@@ -1,4 +1,4 @@
1
- import { RxTree, BaseDriver } from "reactronic";
1
+ import { RxNode, BaseDriver } from "reactronic";
2
2
  import { equalElCoords, parseElCoords } from "./ElUtils.js";
3
3
  export class ElDriver extends BaseDriver {
4
4
  allocate(node) {
@@ -355,8 +355,9 @@ export class Apply {
355
355
  else {
356
356
  const hostDriver = bNode.host.driver;
357
357
  if (hostDriver.isPartitionSeparator) {
358
+ const host = bNode.host.seat.instance;
358
359
  Apply.elementAlignment(element, Align.ToBounds);
359
- Apply.heightGrowth(bNode.host.seat.instance.element, value);
360
+ Apply.heightGrowth(host.element, value);
360
361
  }
361
362
  }
362
363
  }
@@ -417,7 +418,7 @@ export class Apply {
417
418
  const e = element.native;
418
419
  if (e instanceof HTMLElement) {
419
420
  const s = e.style;
420
- const host = RxTree.findMatchingHost(element.node, n => n.element.native instanceof HTMLElement || n.element.native instanceof SVGElement);
421
+ const host = RxNode.findMatchingHost(element.node, n => n.element.native instanceof HTMLElement || n.element.native instanceof SVGElement);
421
422
  const nativeHost = host === null || host === void 0 ? void 0 : host.element.native;
422
423
  if (value === true) {
423
424
  const doc = document.body;
@@ -457,6 +458,7 @@ export class Apply {
457
458
  export const Constants = {
458
459
  element: "element",
459
460
  partition: "partition",
461
+ group: "group",
460
462
  layouts: ["section", "table", "note", "group", "", ""],
461
463
  keyAttrName: "key",
462
464
  kindAttrName: "kind",
@@ -1,15 +1,15 @@
1
- import { RxNodeDecl } from "reactronic";
1
+ import { RxNodeDecl, RxNode } from "reactronic";
2
2
  import { El, ElArea } from "./El.js";
3
3
  import { HtmlDriver } from "./HtmlDriver.js";
4
- export declare function Section<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLElement, M, R>>, preset?: RxNodeDecl<El<HTMLElement, M, R>>): El<HTMLElement, M, R>;
5
- export declare function Table<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLElement, M, R>>, preset?: RxNodeDecl<El<HTMLElement, M, R>>): El<HTMLElement, M, R>;
4
+ export declare function Section<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLElement, M, R>>, preset?: RxNodeDecl<El<HTMLElement, M, R>>): RxNode<El<HTMLElement, M, R>>;
5
+ export declare function Table<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLElement, M, R>>, preset?: RxNodeDecl<El<HTMLElement, M, R>>): RxNode<El<HTMLElement, M, R>>;
6
6
  export declare function row<T = void>(builder?: (element: void) => T, shiftCursorDown?: number): void;
7
7
  export declare function startNewRow(shiftCursorDown?: number): void;
8
8
  export declare function cursor(areaParams: ElArea): void;
9
- export declare function Note(content: string, declaration?: RxNodeDecl<El<HTMLElement, void, void>>): El<HTMLElement, void, void>;
10
- export declare function HtmlNote(content: string, declaration?: RxNodeDecl<El<HTMLElement, void, void>>): El<HTMLElement, void, void>;
11
- export declare function Group<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLElement, M, R>>, preset?: RxNodeDecl<El<HTMLElement, M, R>>): El<HTMLElement, M, R>;
12
- export declare function Fragment<M = unknown, R = void>(declaration?: RxNodeDecl<El<void, M, R>>, preset?: RxNodeDecl<El<void, M, R>>): El<void, M, R>;
9
+ export declare function Note(content: string, declaration?: RxNodeDecl<El<HTMLElement, void, void>>): RxNode<El<HTMLElement, void, void>>;
10
+ export declare function HtmlNote(content: string, declaration?: RxNodeDecl<El<HTMLElement, void, void>>): RxNode<El<HTMLElement, void, void>>;
11
+ export declare function Group<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLElement, M, R>>, preset?: RxNodeDecl<El<HTMLElement, M, R>>): RxNode<El<HTMLElement, M, R>>;
12
+ export declare function PseudoElement<M = unknown, R = void>(declaration?: RxNodeDecl<El<void, M, R>>, preset?: RxNodeDecl<El<void, M, R>>): RxNode<El<void, M, R>>;
13
13
  export declare class VerstakHtmlDriver<T extends HTMLElement> extends HtmlDriver<T> {
14
- update(element: El<T>): void | Promise<void>;
14
+ update(node: RxNode<El<T>>): void | Promise<void>;
15
15
  }
@@ -1,58 +1,60 @@
1
- import { RxTree } from "reactronic";
2
- import { Constants, CursorCommandDriver, ElKind } from "./El.js";
1
+ import { RxNode } from "reactronic";
2
+ import { Constants, CursorCommandDriver, ElKind, ElDriver } from "./El.js";
3
3
  import { HtmlDriver } from "./HtmlDriver.js";
4
4
  export function Section(declaration, preset) {
5
- return RxTree.declare(Drivers.section, declaration, preset);
5
+ return RxNode.declare(Drivers.section, declaration, preset);
6
6
  }
7
7
  export function Table(declaration, preset) {
8
- return RxTree.declare(Drivers.table, declaration, preset);
8
+ return RxNode.declare(Drivers.table, declaration, preset);
9
9
  }
10
10
  export function row(builder, shiftCursorDown) {
11
11
  startNewRow(shiftCursorDown);
12
12
  builder === null || builder === void 0 ? void 0 : builder();
13
13
  }
14
14
  export function startNewRow(shiftCursorDown) {
15
- RxTree.declare(Drivers.partition);
15
+ RxNode.declare(Drivers.partition);
16
16
  }
17
17
  export function cursor(areaParams) {
18
- RxTree.declare(Drivers.cursor, {
18
+ RxNode.declare(Drivers.cursor, {
19
19
  update(b) {
20
20
  b.area = areaParams;
21
21
  },
22
22
  });
23
23
  }
24
24
  export function Note(content, declaration) {
25
- return RxTree.declare(Drivers.note, declaration, {
25
+ return RxNode.declare(Drivers.note, declaration, {
26
26
  update(b) {
27
27
  b.native.innerText = content;
28
28
  }
29
29
  });
30
30
  }
31
31
  export function HtmlNote(content, declaration) {
32
- return RxTree.declare(Drivers.note, declaration, {
32
+ return RxNode.declare(Drivers.note, declaration, {
33
33
  update(b) {
34
34
  b.native.innerHTML = content;
35
35
  }
36
36
  });
37
37
  }
38
38
  export function Group(declaration, preset) {
39
- return RxTree.declare(Drivers.group, declaration, preset);
39
+ return RxNode.declare(Drivers.group, declaration, preset);
40
40
  }
41
- export function Fragment(declaration, preset) {
42
- return RxTree.declare(HtmlDriver.group, declaration, preset);
41
+ export function PseudoElement(declaration, preset) {
42
+ return RxNode.declare(Drivers.pseudo, declaration, preset);
43
43
  }
44
44
  export class VerstakHtmlDriver extends HtmlDriver {
45
- update(element) {
45
+ update(node) {
46
+ const element = node.element;
46
47
  if (element.kind === ElKind.Section)
47
48
  startNewRow();
48
- return super.update(element);
49
+ return super.update(node);
49
50
  }
50
51
  }
51
52
  const Drivers = {
52
53
  section: new VerstakHtmlDriver(Constants.element, false, el => el.kind = ElKind.Section),
53
54
  table: new VerstakHtmlDriver(Constants.element, false, el => el.kind = ElKind.Table),
54
55
  note: new VerstakHtmlDriver(Constants.element, false, el => el.kind = ElKind.Note),
55
- group: new VerstakHtmlDriver(Constants.element, false, el => el.kind = ElKind.Group),
56
+ group: new VerstakHtmlDriver(Constants.group, false, el => el.kind = ElKind.Group),
56
57
  partition: new VerstakHtmlDriver(Constants.partition, true, el => el.kind = ElKind.Part),
57
58
  cursor: new CursorCommandDriver(),
59
+ pseudo: new ElDriver("pseudo", false, el => el.kind = ElKind.Group),
58
60
  };
@@ -1,11 +1,11 @@
1
- import { SimpleDelegate, RxNode } from "reactronic";
1
+ import { RxNode, SimpleDelegate } from "reactronic";
2
2
  import { El, ElDriver } from "./El.js";
3
3
  export declare abstract class WebDriver<T extends Element, M = unknown, C = unknown> extends ElDriver<T, M, C> {
4
4
  abstract acquireNativeElement(element: El<T, M, C>): T;
5
- initialize(element: El<T, M, C>): void;
6
- finalize(element: El<T, M, C>, isLeader: boolean): boolean;
7
- mount(element: El<T, M, C>): void;
8
- update(element: El<T, M, C>): void | Promise<void>;
5
+ initialize(node: RxNode<El<T, M, C>>): void;
6
+ finalize(node: RxNode<El<T, M, C>>, isLeader: boolean): boolean;
7
+ mount(node: RxNode<El<T, M, C>>): void;
8
+ update(node: RxNode<El<T, M, C>>): void | Promise<void>;
9
9
  static findBrotherlyHost<T, R>(node: RxNode<El<T>>): RxNode<El<R>> | undefined;
10
10
  static findBrotherlyPrevSibling<T, R>(node: RxNode<El<T>>): RxNode<El<R>> | undefined;
11
11
  static get blinkingEffectMarker(): string | undefined;
@@ -17,7 +17,6 @@ export declare class StaticDriver<T extends HTMLElement> extends WebDriver<T> {
17
17
  acquireNativeElement(): T;
18
18
  }
19
19
  export declare class HtmlDriver<T extends HTMLElement, M = any, C = any> extends WebDriver<T, M, C> {
20
- static readonly group: HtmlDriver<any, any, any>;
21
20
  acquireNativeElement(element: El<T, M, C>): T;
22
21
  }
23
22
  export declare class SvgDriver<T extends SVGElement, M = any, C = any> extends WebDriver<T, M, C> {
@@ -1,34 +1,37 @@
1
- import { RxSystem, RxTree } from "reactronic";
2
- import { Constants, ElDriver, ElImpl, ElKind } from "./El.js";
1
+ import { RxSystem, RxNode } from "reactronic";
2
+ import { Constants, ElDriver, ElImpl } from "./El.js";
3
3
  export class WebDriver extends ElDriver {
4
- initialize(element) {
4
+ initialize(node) {
5
+ const element = node.element;
5
6
  const native = element.native = this.acquireNativeElement(element);
6
7
  if (RxSystem.isLogging && !element.node.driver.isPartitionSeparator)
7
8
  native.setAttribute(Constants.keyAttrName, element.node.key);
8
- super.initialize(element);
9
+ super.initialize(node);
9
10
  }
10
- finalize(element, isLeader) {
11
+ finalize(node, isLeader) {
11
12
  var _a;
13
+ const element = node.element;
12
14
  const native = element.native;
13
15
  if (native) {
14
16
  (_a = native.resizeObserver) === null || _a === void 0 ? void 0 : _a.unobserve(native);
15
17
  if (isLeader)
16
18
  native.remove();
17
19
  }
18
- super.finalize(element, isLeader);
20
+ super.finalize(node, isLeader);
19
21
  element.native = null;
20
22
  return false;
21
23
  }
22
- mount(element) {
24
+ mount(node) {
25
+ const element = node.element;
23
26
  const native = element.native;
24
27
  if (native) {
25
28
  const node = element.node;
26
29
  const sequential = node.owner.children.isStrict;
27
- const automaticHost = RxTree.findMatchingHost(node, n => n.element.native instanceof HTMLElement || n.element.native instanceof SVGElement);
30
+ const automaticHost = RxNode.findMatchingHost(node, n => n.element.native instanceof HTMLElement || n.element.native instanceof SVGElement);
28
31
  const automaticNativeHost = automaticHost === null || automaticHost === void 0 ? void 0 : automaticHost.element.native;
29
32
  if (automaticNativeHost) {
30
33
  if (sequential && !node.driver.isPartitionSeparator) {
31
- const after = RxTree.findMatchingPrevSibling(element.node, n => n.element.native instanceof HTMLElement || n.element.native instanceof SVGElement);
34
+ const after = RxNode.findMatchingPrevSibling(element.node, n => n.element.native instanceof HTMLElement || n.element.native instanceof SVGElement);
32
35
  if (after === undefined || after.driver.isPartitionSeparator) {
33
36
  if (automaticNativeHost !== native.parentNode || !native.previousSibling)
34
37
  automaticNativeHost.prepend(native);
@@ -46,24 +49,25 @@ export class WebDriver extends ElDriver {
46
49
  }
47
50
  }
48
51
  }
49
- update(element) {
52
+ update(node) {
53
+ const element = node.element;
50
54
  if (element instanceof ElImpl)
51
55
  element.prepareForUpdate();
52
- const result = super.update(element);
56
+ const result = super.update(node);
53
57
  if (element.area === undefined) {
54
58
  const oel = element.node.owner.element;
55
59
  if (oel instanceof ElImpl && oel.isTable)
56
60
  element.area = undefined;
57
61
  }
58
62
  if (gBlinkingEffectMarker)
59
- blink(element.native, RxTree.currentUpdatePriority, element.node.stamp);
63
+ blink(element.native, RxNode.currentUpdatePriority, element.node.stamp);
60
64
  return result;
61
65
  }
62
66
  static findBrotherlyHost(node) {
63
- return RxTree.findMatchingHost(node, n => n.element.native instanceof HTMLElement || n.element.native instanceof SVGElement);
67
+ return RxNode.findMatchingHost(node, n => n.element.native instanceof HTMLElement || n.element.native instanceof SVGElement);
64
68
  }
65
69
  static findBrotherlyPrevSibling(node) {
66
- return RxTree.findMatchingPrevSibling(node, n => n.element.native instanceof HTMLElement || n.element.native instanceof SVGElement);
70
+ return RxNode.findMatchingPrevSibling(node, n => n.element.native instanceof HTMLElement || n.element.native instanceof SVGElement);
67
71
  }
68
72
  static get blinkingEffectMarker() {
69
73
  return gBlinkingEffectMarker;
@@ -86,7 +90,6 @@ export class HtmlDriver extends WebDriver {
86
90
  return document.createElement(element.node.driver.name);
87
91
  }
88
92
  }
89
- HtmlDriver.group = new HtmlDriver("group", false, el => el.kind = ElKind.Group);
90
93
  export class SvgDriver extends WebDriver {
91
94
  acquireNativeElement(element) {
92
95
  return document.createElementNS("http://www.w3.org/2000/svg", element.node.driver.name);
@@ -1,176 +1,176 @@
1
- import { RxNodeDecl } from "reactronic";
1
+ import { RxNode, RxNodeDecl } from "reactronic";
2
2
  import { El } from "./El.js";
3
- export declare function HtmlBody(declaration?: RxNodeDecl<El<HTMLElement>>, preset?: RxNodeDecl<El<HTMLElement>>): El<HTMLElement>;
4
- export declare function A<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLAnchorElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLAnchorElement, M, void, R>>): El<HTMLAnchorElement, M, void, R>;
5
- export declare function Abbr<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLElement, M, void, R>>): El<HTMLElement, M, void, R>;
6
- export declare function Address<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLElement, M, void, R>>): El<HTMLElement, M, void, R>;
7
- export declare function Area<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLAreaElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLAreaElement, M, void, R>>): El<HTMLAreaElement, M, void, R>;
8
- export declare function Article<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLElement, M, void, R>>): El<HTMLElement, M, void, R>;
9
- export declare function Aside<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLElement, M, void, R>>): El<HTMLElement, M, void, R>;
10
- export declare function Audio<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLAudioElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLAudioElement, M, void, R>>): El<HTMLAudioElement, M, void, R>;
11
- export declare function B<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLElement, M, void, R>>): El<HTMLElement, M, void, R>;
12
- export declare function Base<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLBaseElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLBaseElement, M, void, R>>): El<HTMLBaseElement, M, void, R>;
13
- export declare function Bdi<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLElement, M, void, R>>): El<HTMLElement, M, void, R>;
14
- export declare function Bdo<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLElement, M, void, R>>): El<HTMLElement, M, void, R>;
15
- export declare function Big<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLElement, M, void, R>>): El<HTMLElement, M, void, R>;
16
- export declare function BlockQuote<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLElement, M, void, R>>): El<HTMLElement, M, void, R>;
17
- export declare function Body<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLBodyElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLBodyElement, M, void, R>>): El<HTMLBodyElement, M, void, R>;
18
- export declare function BR<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLBRElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLBRElement, M, void, R>>): El<HTMLBRElement, M, void, R>;
19
- export declare function Button<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLButtonElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLButtonElement, M, void, R>>): El<HTMLButtonElement, M, void, R>;
20
- export declare function Canvas<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLCanvasElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLCanvasElement, M, void, R>>): El<HTMLCanvasElement, M, void, R>;
21
- export declare function Caption<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLTableCaptionElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLTableCaptionElement, M, void, R>>): El<HTMLTableCaptionElement, M, void, R>;
22
- export declare function Cite<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLElement, M, void, R>>): El<HTMLElement, M, void, R>;
23
- export declare function Code<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLElement, M, void, R>>): El<HTMLElement, M, void, R>;
24
- export declare function Col<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLTableColElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLTableColElement, M, void, R>>): El<HTMLTableColElement, M, void, R>;
25
- export declare function ColGroup<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLTableColElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLTableColElement, M, void, R>>): El<HTMLTableColElement, M, void, R>;
26
- export declare function Data<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLDataElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLDataElement, M, void, R>>): El<HTMLDataElement, M, void, R>;
27
- export declare function DataList<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLDataListElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLDataListElement, M, void, R>>): El<HTMLDataListElement, M, void, R>;
28
- export declare function DD<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLElement, M, void, R>>): El<HTMLElement, M, void, R>;
29
- export declare function Del<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLElement, M, void, R>>): El<HTMLElement, M, void, R>;
30
- export declare function Details<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLElement, M, void, R>>): El<HTMLElement, M, void, R>;
31
- export declare function Dfn<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLElement, M, void, R>>): El<HTMLElement, M, void, R>;
32
- export declare function Div<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLDivElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLDivElement, M, void, R>>): El<HTMLDivElement, M, void, R>;
33
- export declare function DL<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLDListElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLDListElement, M, void, R>>): El<HTMLDListElement, M, void, R>;
34
- export declare function DT<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLElement, M, void, R>>): El<HTMLElement, M, void, R>;
35
- export declare function EM<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLElement, M, void, R>>): El<HTMLElement, M, void, R>;
36
- export declare function Embed<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLEmbedElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLEmbedElement, M, void, R>>): El<HTMLEmbedElement, M, void, R>;
37
- export declare function FieldSet<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLFieldSetElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLFieldSetElement, M, void, R>>): El<HTMLFieldSetElement, M, void, R>;
38
- export declare function FigCaption<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLElement, M, void, R>>): El<HTMLElement, M, void, R>;
39
- export declare function Figure<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLElement, M, void, R>>): El<HTMLElement, M, void, R>;
40
- export declare function Footer<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLElement, M, void, R>>): El<HTMLElement, M, void, R>;
41
- export declare function Form<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLFormElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLFormElement, M, void, R>>): El<HTMLFormElement, M, void, R>;
42
- export declare function H1<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLHeadingElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLHeadingElement, M, void, R>>): El<HTMLHeadingElement, M, void, R>;
43
- export declare function H2<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLHeadingElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLHeadingElement, M, void, R>>): El<HTMLHeadingElement, M, void, R>;
44
- export declare function H3<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLHeadingElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLHeadingElement, M, void, R>>): El<HTMLHeadingElement, M, void, R>;
45
- export declare function H4<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLHeadingElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLHeadingElement, M, void, R>>): El<HTMLHeadingElement, M, void, R>;
46
- export declare function H5<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLHeadingElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLHeadingElement, M, void, R>>): El<HTMLHeadingElement, M, void, R>;
47
- export declare function H6<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLHeadingElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLHeadingElement, M, void, R>>): El<HTMLHeadingElement, M, void, R>;
48
- export declare function Head<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLHeadElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLHeadElement, M, void, R>>): El<HTMLHeadElement, M, void, R>;
49
- export declare function Header<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLElement, M, void, R>>): El<HTMLElement, M, void, R>;
50
- export declare function HGroup<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLElement, M, void, R>>): El<HTMLElement, M, void, R>;
51
- export declare function HR<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLHRElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLHRElement, M, void, R>>): El<HTMLHRElement, M, void, R>;
52
- export declare function Html<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLHtmlElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLHtmlElement, M, void, R>>): El<HTMLHtmlElement, M, void, R>;
53
- export declare function I<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLElement, M, void, R>>): El<HTMLElement, M, void, R>;
54
- export declare function IFrame<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLIFrameElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLIFrameElement, M, void, R>>): El<HTMLIFrameElement, M, void, R>;
55
- export declare function Img<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLImageElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLImageElement, M, void, R>>): El<HTMLImageElement, M, void, R>;
56
- export declare function Input<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLInputElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLInputElement, M, void, R>>): El<HTMLInputElement, M, void, R>;
57
- export declare function Ins<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLModElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLModElement, M, void, R>>): El<HTMLModElement, M, void, R>;
58
- export declare function Kbd<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLElement, M, void, R>>): El<HTMLElement, M, void, R>;
59
- export declare function KeyGen<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLElement, M, void, R>>): El<HTMLElement, M, void, R>;
60
- export declare function Label<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLLabelElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLLabelElement, M, void, R>>): El<HTMLLabelElement, M, void, R>;
61
- export declare function Legend<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLLegendElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLLegendElement, M, void, R>>): El<HTMLLegendElement, M, void, R>;
62
- export declare function LI<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLLIElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLLIElement, M, void, R>>): El<HTMLLIElement, M, void, R>;
63
- export declare function Link<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLLinkElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLLinkElement, M, void, R>>): El<HTMLLinkElement, M, void, R>;
64
- export declare function Main<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLElement, M, void, R>>): El<HTMLElement, M, void, R>;
65
- export declare function Map<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLMapElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLMapElement, M, void, R>>): El<HTMLMapElement, M, void, R>;
66
- export declare function Mark<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLElement, M, void, R>>): El<HTMLElement, M, void, R>;
67
- export declare function Menu<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLElement, M, void, R>>): El<HTMLElement, M, void, R>;
68
- export declare function MenuItem<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLElement, M, void, R>>): El<HTMLElement, M, void, R>;
69
- export declare function Meta<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLMetaElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLMetaElement, M, void, R>>): El<HTMLMetaElement, M, void, R>;
70
- export declare function Meter<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLElement, M, void, R>>): El<HTMLElement, M, void, R>;
71
- export declare function Nav<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLElement, M, void, R>>): El<HTMLElement, M, void, R>;
72
- export declare function NoIndex<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLElement, M, void, R>>): El<HTMLElement, M, void, R>;
73
- export declare function NoScript<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLElement, M, void, R>>): El<HTMLElement, M, void, R>;
74
- export declare function Obj<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLObjectElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLObjectElement, M, void, R>>): El<HTMLObjectElement, M, void, R>;
75
- export declare function OL<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLOListElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLOListElement, M, void, R>>): El<HTMLOListElement, M, void, R>;
76
- export declare function OptGroup<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLOptGroupElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLOptGroupElement, M, void, R>>): El<HTMLOptGroupElement, M, void, R>;
77
- export declare function Option<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLOptionElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLOptionElement, M, void, R>>): El<HTMLOptionElement, M, void, R>;
78
- export declare function Output<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLElement, M, void, R>>): El<HTMLElement, M, void, R>;
79
- export declare function P<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLParagraphElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLParagraphElement, M, void, R>>): El<HTMLParagraphElement, M, void, R>;
80
- export declare function Param<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLElement, M, void, R>>): El<HTMLElement, M, void, R>;
81
- export declare function Picture<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLElement, M, void, R>>): El<HTMLElement, M, void, R>;
82
- export declare function Pre<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLPreElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLPreElement, M, void, R>>): El<HTMLPreElement, M, void, R>;
83
- export declare function Progress<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLProgressElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLProgressElement, M, void, R>>): El<HTMLProgressElement, M, void, R>;
84
- export declare function Q<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLQuoteElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLQuoteElement, M, void, R>>): El<HTMLQuoteElement, M, void, R>;
85
- export declare function RP<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLElement, M, void, R>>): El<HTMLElement, M, void, R>;
86
- export declare function RT<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLElement, M, void, R>>): El<HTMLElement, M, void, R>;
87
- export declare function Ruby<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLElement, M, void, R>>): El<HTMLElement, M, void, R>;
88
- export declare function S<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLElement, M, void, R>>): El<HTMLElement, M, void, R>;
89
- export declare function Samp<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLElement, M, void, R>>): El<HTMLElement, M, void, R>;
90
- export declare function Script<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLScriptElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLScriptElement, M, void, R>>): El<HTMLScriptElement, M, void, R>;
91
- export declare function Sctn<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLElement, M, void, R>>): El<HTMLElement, M, void, R>;
92
- export declare function Select<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLSelectElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLSelectElement, M, void, R>>): El<HTMLSelectElement, M, void, R>;
93
- export declare function Small<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLElement, M, void, R>>): El<HTMLElement, M, void, R>;
94
- export declare function Source<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLSourceElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLSourceElement, M, void, R>>): El<HTMLSourceElement, M, void, R>;
95
- export declare function Span<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLSpanElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLSpanElement, M, void, R>>): El<HTMLSpanElement, M, void, R>;
96
- export declare function Strong<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLElement, M, void, R>>): El<HTMLElement, M, void, R>;
97
- export declare function Style<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLStyleElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLStyleElement, M, void, R>>): El<HTMLStyleElement, M, void, R>;
98
- export declare function Sub<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLElement, M, void, R>>): El<HTMLElement, M, void, R>;
99
- export declare function Summary<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLElement, M, void, R>>): El<HTMLElement, M, void, R>;
100
- export declare function Sup<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLElement, M, void, R>>): El<HTMLElement, M, void, R>;
101
- export declare function Tbl<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLTableElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLTableElement, M, void, R>>): El<HTMLTableElement, M, void, R>;
102
- export declare function Template<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLTemplateElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLTemplateElement, M, void, R>>): El<HTMLTemplateElement, M, void, R>;
103
- export declare function TBody<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLTableSectionElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLTableSectionElement, M, void, R>>): El<HTMLTableSectionElement, M, void, R>;
104
- export declare function TD<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLTableCellElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLTableCellElement, M, void, R>>): El<HTMLTableCellElement, M, void, R>;
105
- export declare function TextArea<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLTextAreaElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLTextAreaElement, M, void, R>>): El<HTMLTextAreaElement, M, void, R>;
106
- export declare function TFoot<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLTableSectionElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLTableSectionElement, M, void, R>>): El<HTMLTableSectionElement, M, void, R>;
107
- export declare function TH<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLTableCellElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLTableCellElement, M, void, R>>): El<HTMLTableCellElement, M, void, R>;
108
- export declare function THead<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLTableSectionElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLTableSectionElement, M, void, R>>): El<HTMLTableSectionElement, M, void, R>;
109
- export declare function Time<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLElement, M, void, R>>): El<HTMLElement, M, void, R>;
110
- export declare function Title<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLTitleElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLTitleElement, M, void, R>>): El<HTMLTitleElement, M, void, R>;
111
- export declare function TR<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLTableRowElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLTableRowElement, M, void, R>>): El<HTMLTableRowElement, M, void, R>;
112
- export declare function Track<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLTrackElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLTrackElement, M, void, R>>): El<HTMLTrackElement, M, void, R>;
113
- export declare function U<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLElement, M, void, R>>): El<HTMLElement, M, void, R>;
114
- export declare function UL<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLUListElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLUListElement, M, void, R>>): El<HTMLUListElement, M, void, R>;
115
- export declare function Var<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLElement, M, void, R>>): El<HTMLElement, M, void, R>;
116
- export declare function Video<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLVideoElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLVideoElement, M, void, R>>): El<HTMLVideoElement, M, void, R>;
117
- export declare function Wbr<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLElement, M, void, R>>): El<HTMLElement, M, void, R>;
118
- export declare function Svg<M = unknown, R = void>(declaration?: RxNodeDecl<El<SVGSVGElement, M, void, R>>, preset?: RxNodeDecl<El<SVGSVGElement, M, void, R>>): El<SVGSVGElement, M, void, R>;
119
- export declare function SvgA<M = unknown, R = void>(declaration?: RxNodeDecl<El<SVGAElement, M, void, R>>, preset?: RxNodeDecl<El<SVGAElement, M, void, R>>): El<SVGAElement, M, void, R>;
120
- export declare function Animate<M = unknown, R = void>(declaration?: RxNodeDecl<El<SVGAnimateElement, M, void, R>>, preset?: RxNodeDecl<El<SVGAnimateElement, M, void, R>>): El<SVGAnimateElement, M, void, R>;
121
- export declare function AnimateMotion<M = unknown, R = void>(declaration?: RxNodeDecl<El<SVGAnimateMotionElement, M, void, R>>, preset?: RxNodeDecl<El<SVGAnimateMotionElement, M, void, R>>): El<SVGAnimateMotionElement, M, void, R>;
122
- export declare function AnimateTransform<M = unknown, R = void>(declaration?: RxNodeDecl<El<SVGAnimateTransformElement, M, void, R>>, preset?: RxNodeDecl<El<SVGAnimateTransformElement, M, void, R>>): El<SVGAnimateTransformElement, M, void, R>;
123
- export declare function Circle<M = unknown, R = void>(declaration?: RxNodeDecl<El<SVGCircleElement, M, void, R>>, preset?: RxNodeDecl<El<SVGCircleElement, M, void, R>>): El<SVGCircleElement, M, void, R>;
124
- export declare function ClipPath<M = unknown, R = void>(declaration?: RxNodeDecl<El<SVGClipPathElement, M, void, R>>, preset?: RxNodeDecl<El<SVGClipPathElement, M, void, R>>): El<SVGClipPathElement, M, void, R>;
125
- export declare function Defs<M = unknown, R = void>(declaration?: RxNodeDecl<El<SVGDefsElement, M, void, R>>, preset?: RxNodeDecl<El<SVGDefsElement, M, void, R>>): El<SVGDefsElement, M, void, R>;
126
- export declare function Desc<M = unknown, R = void>(declaration?: RxNodeDecl<El<SVGDescElement, M, void, R>>, preset?: RxNodeDecl<El<SVGDescElement, M, void, R>>): El<SVGDescElement, M, void, R>;
127
- export declare function Ellipse<M = unknown, R = void>(declaration?: RxNodeDecl<El<SVGEllipseElement, M, void, R>>, preset?: RxNodeDecl<El<SVGEllipseElement, M, void, R>>): El<SVGEllipseElement, M, void, R>;
128
- export declare function FeBlend<M = unknown, R = void>(declaration?: RxNodeDecl<El<SVGFEBlendElement, M, void, R>>, preset?: RxNodeDecl<El<SVGFEBlendElement, M, void, R>>): El<SVGFEBlendElement, M, void, R>;
129
- export declare function FeColorMatrix<M = unknown, R = void>(declaration?: RxNodeDecl<El<SVGFEColorMatrixElement, M, void, R>>, preset?: RxNodeDecl<El<SVGFEColorMatrixElement, M, void, R>>): El<SVGFEColorMatrixElement, M, void, R>;
130
- export declare function FeComponentTransfer<M = unknown, R = void>(declaration?: RxNodeDecl<El<SVGFEComponentTransferElement, M, void, R>>, preset?: RxNodeDecl<El<SVGFEComponentTransferElement, M, void, R>>): El<SVGFEComponentTransferElement, M, void, R>;
131
- export declare function FeComposite<M = unknown, R = void>(declaration?: RxNodeDecl<El<SVGFECompositeElement, M, void, R>>, preset?: RxNodeDecl<El<SVGFECompositeElement, M, void, R>>): El<SVGFECompositeElement, M, void, R>;
132
- export declare function FeConvolveMatrix<M = unknown, R = void>(declaration?: RxNodeDecl<El<SVGFEConvolveMatrixElement, M, void, R>>, preset?: RxNodeDecl<El<SVGFEConvolveMatrixElement, M, void, R>>): El<SVGFEConvolveMatrixElement, M, void, R>;
133
- export declare function FeDiffuseLighting<M = unknown, R = void>(declaration?: RxNodeDecl<El<SVGFEDiffuseLightingElement, M, void, R>>, preset?: RxNodeDecl<El<SVGFEDiffuseLightingElement, M, void, R>>): El<SVGFEDiffuseLightingElement, M, void, R>;
134
- export declare function FeDisplacementMap<M = unknown, R = void>(declaration?: RxNodeDecl<El<SVGFEDisplacementMapElement, M, void, R>>, preset?: RxNodeDecl<El<SVGFEDisplacementMapElement, M, void, R>>): El<SVGFEDisplacementMapElement, M, void, R>;
135
- export declare function FeDistantLight<M = unknown, R = void>(declaration?: RxNodeDecl<El<SVGFEDistantLightElement, M, void, R>>, preset?: RxNodeDecl<El<SVGFEDistantLightElement, M, void, R>>): El<SVGFEDistantLightElement, M, void, R>;
136
- export declare function FeDropShadow<M = unknown, R = void>(declaration?: RxNodeDecl<El<SVGFEDropShadowElement, M, void, R>>, preset?: RxNodeDecl<El<SVGFEDropShadowElement, M, void, R>>): El<SVGFEDropShadowElement, M, void, R>;
137
- export declare function FeFlood<M = unknown, R = void>(declaration?: RxNodeDecl<El<SVGFEFloodElement, M, void, R>>, preset?: RxNodeDecl<El<SVGFEFloodElement, M, void, R>>): El<SVGFEFloodElement, M, void, R>;
138
- export declare function FeFuncA<M = unknown, R = void>(declaration?: RxNodeDecl<El<SVGFEFuncAElement, M, void, R>>, preset?: RxNodeDecl<El<SVGFEFuncAElement, M, void, R>>): El<SVGFEFuncAElement, M, void, R>;
139
- export declare function FeFuncB<M = unknown, R = void>(declaration?: RxNodeDecl<El<SVGFEFuncBElement, M, void, R>>, preset?: RxNodeDecl<El<SVGFEFuncBElement, M, void, R>>): El<SVGFEFuncBElement, M, void, R>;
140
- export declare function FeFuncG<M = unknown, R = void>(declaration?: RxNodeDecl<El<SVGFEFuncGElement, M, void, R>>, preset?: RxNodeDecl<El<SVGFEFuncGElement, M, void, R>>): El<SVGFEFuncGElement, M, void, R>;
141
- export declare function FeFuncR<M = unknown, R = void>(declaration?: RxNodeDecl<El<SVGFEFuncRElement, M, void, R>>, preset?: RxNodeDecl<El<SVGFEFuncRElement, M, void, R>>): El<SVGFEFuncRElement, M, void, R>;
142
- export declare function FeGaussianBlur<M = unknown, R = void>(declaration?: RxNodeDecl<El<SVGFEGaussianBlurElement, M, void, R>>, preset?: RxNodeDecl<El<SVGFEGaussianBlurElement, M, void, R>>): El<SVGFEGaussianBlurElement, M, void, R>;
143
- export declare function FeImage<M = unknown, R = void>(declaration?: RxNodeDecl<El<SVGFEImageElement, M, void, R>>, preset?: RxNodeDecl<El<SVGFEImageElement, M, void, R>>): El<SVGFEImageElement, M, void, R>;
144
- export declare function FeMerge<M = unknown, R = void>(declaration?: RxNodeDecl<El<SVGFEMergeElement, M, void, R>>, preset?: RxNodeDecl<El<SVGFEMergeElement, M, void, R>>): El<SVGFEMergeElement, M, void, R>;
145
- export declare function FeMergeNode<M = unknown, R = void>(declaration?: RxNodeDecl<El<SVGFEMergeNodeElement, M, void, R>>, preset?: RxNodeDecl<El<SVGFEMergeNodeElement, M, void, R>>): El<SVGFEMergeNodeElement, M, void, R>;
146
- export declare function FeMorphology<M = unknown, R = void>(declaration?: RxNodeDecl<El<SVGFEMorphologyElement, M, void, R>>, preset?: RxNodeDecl<El<SVGFEMorphologyElement, M, void, R>>): El<SVGFEMorphologyElement, M, void, R>;
147
- export declare function FeOffset<M = unknown, R = void>(declaration?: RxNodeDecl<El<SVGFEOffsetElement, M, void, R>>, preset?: RxNodeDecl<El<SVGFEOffsetElement, M, void, R>>): El<SVGFEOffsetElement, M, void, R>;
148
- export declare function FePointLight<M = unknown, R = void>(declaration?: RxNodeDecl<El<SVGFEPointLightElement, M, void, R>>, preset?: RxNodeDecl<El<SVGFEPointLightElement, M, void, R>>): El<SVGFEPointLightElement, M, void, R>;
149
- export declare function FeSpecularLighting<M = unknown, R = void>(declaration?: RxNodeDecl<El<SVGFESpecularLightingElement, M, void, R>>, preset?: RxNodeDecl<El<SVGFESpecularLightingElement, M, void, R>>): El<SVGFESpecularLightingElement, M, void, R>;
150
- export declare function FeSpotLight<M = unknown, R = void>(declaration?: RxNodeDecl<El<SVGFESpotLightElement, M, void, R>>, preset?: RxNodeDecl<El<SVGFESpotLightElement, M, void, R>>): El<SVGFESpotLightElement, M, void, R>;
151
- export declare function FeTile<M = unknown, R = void>(declaration?: RxNodeDecl<El<SVGFETileElement, M, void, R>>, preset?: RxNodeDecl<El<SVGFETileElement, M, void, R>>): El<SVGFETileElement, M, void, R>;
152
- export declare function FeTurbulence<M = unknown, R = void>(declaration?: RxNodeDecl<El<SVGFETurbulenceElement, M, void, R>>, preset?: RxNodeDecl<El<SVGFETurbulenceElement, M, void, R>>): El<SVGFETurbulenceElement, M, void, R>;
153
- export declare function Filter<M = unknown, R = void>(declaration?: RxNodeDecl<El<SVGFilterElement, M, void, R>>, preset?: RxNodeDecl<El<SVGFilterElement, M, void, R>>): El<SVGFilterElement, M, void, R>;
154
- export declare function ForeignObject<M = unknown, R = void>(declaration?: RxNodeDecl<El<SVGForeignObjectElement, M, void, R>>, preset?: RxNodeDecl<El<SVGForeignObjectElement, M, void, R>>): El<SVGForeignObjectElement, M, void, R>;
155
- export declare function G<M = unknown, R = void>(declaration?: RxNodeDecl<El<SVGGElement, M, void, R>>, preset?: RxNodeDecl<El<SVGGElement, M, void, R>>): El<SVGGElement, M, void, R>;
156
- export declare function SvgImage<M = unknown, R = void>(declaration?: RxNodeDecl<El<SVGImageElement, M, void, R>>, preset?: RxNodeDecl<El<SVGImageElement, M, void, R>>): El<SVGImageElement, M, void, R>;
157
- export declare function SvgLine<M = unknown, R = void>(declaration?: RxNodeDecl<El<SVGLineElement, M, void, R>>, preset?: RxNodeDecl<El<SVGLineElement, M, void, R>>): El<SVGLineElement, M, void, R>;
158
- export declare function LinearGradient<M = unknown, R = void>(declaration?: RxNodeDecl<El<SVGLinearGradientElement, M, void, R>>, preset?: RxNodeDecl<El<SVGLinearGradientElement, M, void, R>>): El<SVGLinearGradientElement, M, void, R>;
159
- export declare function Marker<M = unknown, R = void>(declaration?: RxNodeDecl<El<SVGMarkerElement, M, void, R>>, preset?: RxNodeDecl<El<SVGMarkerElement, M, void, R>>): El<SVGMarkerElement, M, void, R>;
160
- export declare function Mask<M = unknown, R = void>(declaration?: RxNodeDecl<El<SVGMaskElement, M, void, R>>, preset?: RxNodeDecl<El<SVGMaskElement, M, void, R>>): El<SVGMaskElement, M, void, R>;
161
- export declare function MetaData<M = unknown, R = void>(declaration?: RxNodeDecl<El<SVGMetadataElement, M, void, R>>, preset?: RxNodeDecl<El<SVGMetadataElement, M, void, R>>): El<SVGMetadataElement, M, void, R>;
162
- export declare function MPath<M = unknown, R = void>(declaration?: RxNodeDecl<El<SVGElement, M, void, R>>, preset?: RxNodeDecl<El<SVGElement, M, void, R>>): El<SVGElement, M, void, R>;
163
- export declare function Path<M = unknown, R = void>(declaration?: RxNodeDecl<El<SVGPathElement, M, void, R>>, preset?: RxNodeDecl<El<SVGPathElement, M, void, R>>): El<SVGPathElement, M, void, R>;
164
- export declare function Pattern<M = unknown, R = void>(declaration?: RxNodeDecl<El<SVGPatternElement, M, void, R>>, preset?: RxNodeDecl<El<SVGPatternElement, M, void, R>>): El<SVGPatternElement, M, void, R>;
165
- export declare function Polygon<M = unknown, R = void>(declaration?: RxNodeDecl<El<SVGPolygonElement, M, void, R>>, preset?: RxNodeDecl<El<SVGPolygonElement, M, void, R>>): El<SVGPolygonElement, M, void, R>;
166
- export declare function PolyLine<M = unknown, R = void>(declaration?: RxNodeDecl<El<SVGPolylineElement, M, void, R>>, preset?: RxNodeDecl<El<SVGPolylineElement, M, void, R>>): El<SVGPolylineElement, M, void, R>;
167
- export declare function RadialGradient<M = unknown, R = void>(declaration?: RxNodeDecl<El<SVGRadialGradientElement, M, void, R>>, preset?: RxNodeDecl<El<SVGRadialGradientElement, M, void, R>>): El<SVGRadialGradientElement, M, void, R>;
168
- export declare function Rect<M = unknown, R = void>(declaration?: RxNodeDecl<El<SVGRectElement, M, void, R>>, preset?: RxNodeDecl<El<SVGRectElement, M, void, R>>): El<SVGRectElement, M, void, R>;
169
- export declare function Stop<M = unknown, R = void>(declaration?: RxNodeDecl<El<SVGStopElement, M, void, R>>, preset?: RxNodeDecl<El<SVGStopElement, M, void, R>>): El<SVGStopElement, M, void, R>;
170
- export declare function SvgSwitch<M = unknown, R = void>(declaration?: RxNodeDecl<El<SVGSwitchElement, M, void, R>>, preset?: RxNodeDecl<El<SVGSwitchElement, M, void, R>>): El<SVGSwitchElement, M, void, R>;
171
- export declare function Symbol<M = unknown, R = void>(declaration?: RxNodeDecl<El<SVGSymbolElement, M, void, R>>, preset?: RxNodeDecl<El<SVGSymbolElement, M, void, R>>): El<SVGSymbolElement, M, void, R>;
172
- export declare function Text<M = unknown, R = void>(declaration?: RxNodeDecl<El<SVGTextElement, M, void, R>>, preset?: RxNodeDecl<El<SVGTextElement, M, void, R>>): El<SVGTextElement, M, void, R>;
173
- export declare function TextPath<M = unknown, R = void>(declaration?: RxNodeDecl<El<SVGTextPathElement, M, void, R>>, preset?: RxNodeDecl<El<SVGTextPathElement, M, void, R>>): El<SVGTextPathElement, M, void, R>;
174
- export declare function TSpan<M = unknown, R = void>(declaration?: RxNodeDecl<El<SVGTSpanElement, M, void, R>>, preset?: RxNodeDecl<El<SVGTSpanElement, M, void, R>>): El<SVGTSpanElement, M, void, R>;
175
- export declare function Use<M = unknown, R = void>(declaration?: RxNodeDecl<El<SVGUseElement, M, void, R>>, preset?: RxNodeDecl<El<SVGUseElement, M, void, R>>): El<SVGUseElement, M, void, R>;
176
- export declare function View<M = unknown, R = void>(declaration?: RxNodeDecl<El<SVGViewElement, M, void, R>>, preset?: RxNodeDecl<El<SVGViewElement, M, void, R>>): El<SVGViewElement, M, void, R>;
3
+ export declare function HtmlBody(declaration?: RxNodeDecl<El<HTMLElement>>, preset?: RxNodeDecl<El<HTMLElement>>): RxNode<El<HTMLElement>>;
4
+ export declare function A<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLAnchorElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLAnchorElement, M, void, R>>): RxNode<El<HTMLAnchorElement, M, void, R>>;
5
+ export declare function Abbr<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLElement, M, void, R>>): RxNode<El<HTMLElement, M, void, R>>;
6
+ export declare function Address<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLElement, M, void, R>>): RxNode<El<HTMLElement, M, void, R>>;
7
+ export declare function Area<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLAreaElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLAreaElement, M, void, R>>): RxNode<El<HTMLAreaElement, M, void, R>>;
8
+ export declare function Article<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLElement, M, void, R>>): RxNode<El<HTMLElement, M, void, R>>;
9
+ export declare function Aside<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLElement, M, void, R>>): RxNode<El<HTMLElement, M, void, R>>;
10
+ export declare function Audio<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLAudioElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLAudioElement, M, void, R>>): RxNode<El<HTMLAudioElement, M, void, R>>;
11
+ export declare function B<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLElement, M, void, R>>): RxNode<El<HTMLElement, M, void, R>>;
12
+ export declare function Base<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLBaseElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLBaseElement, M, void, R>>): RxNode<El<HTMLBaseElement, M, void, R>>;
13
+ export declare function Bdi<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLElement, M, void, R>>): RxNode<El<HTMLElement, M, void, R>>;
14
+ export declare function Bdo<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLElement, M, void, R>>): RxNode<El<HTMLElement, M, void, R>>;
15
+ export declare function Big<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLElement, M, void, R>>): RxNode<El<HTMLElement, M, void, R>>;
16
+ export declare function BlockQuote<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLElement, M, void, R>>): RxNode<El<HTMLElement, M, void, R>>;
17
+ export declare function Body<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLBodyElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLBodyElement, M, void, R>>): RxNode<El<HTMLBodyElement, M, void, R>>;
18
+ export declare function BR<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLBRElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLBRElement, M, void, R>>): RxNode<El<HTMLBRElement, M, void, R>>;
19
+ export declare function Button<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLButtonElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLButtonElement, M, void, R>>): RxNode<El<HTMLButtonElement, M, void, R>>;
20
+ export declare function Canvas<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLCanvasElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLCanvasElement, M, void, R>>): RxNode<El<HTMLCanvasElement, M, void, R>>;
21
+ export declare function Caption<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLTableCaptionElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLTableCaptionElement, M, void, R>>): RxNode<El<HTMLTableCaptionElement, M, void, R>>;
22
+ export declare function Cite<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLElement, M, void, R>>): RxNode<El<HTMLElement, M, void, R>>;
23
+ export declare function Code<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLElement, M, void, R>>): RxNode<El<HTMLElement, M, void, R>>;
24
+ export declare function Col<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLTableColElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLTableColElement, M, void, R>>): RxNode<El<HTMLTableColElement, M, void, R>>;
25
+ export declare function ColGroup<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLTableColElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLTableColElement, M, void, R>>): RxNode<El<HTMLTableColElement, M, void, R>>;
26
+ export declare function Data<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLDataElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLDataElement, M, void, R>>): RxNode<El<HTMLDataElement, M, void, R>>;
27
+ export declare function DataList<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLDataListElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLDataListElement, M, void, R>>): RxNode<El<HTMLDataListElement, M, void, R>>;
28
+ export declare function DD<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLElement, M, void, R>>): RxNode<El<HTMLElement, M, void, R>>;
29
+ export declare function Del<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLElement, M, void, R>>): RxNode<El<HTMLElement, M, void, R>>;
30
+ export declare function Details<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLElement, M, void, R>>): RxNode<El<HTMLElement, M, void, R>>;
31
+ export declare function Dfn<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLElement, M, void, R>>): RxNode<El<HTMLElement, M, void, R>>;
32
+ export declare function Div<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLDivElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLDivElement, M, void, R>>): RxNode<El<HTMLDivElement, M, void, R>>;
33
+ export declare function DL<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLDListElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLDListElement, M, void, R>>): RxNode<El<HTMLDListElement, M, void, R>>;
34
+ export declare function DT<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLElement, M, void, R>>): RxNode<El<HTMLElement, M, void, R>>;
35
+ export declare function EM<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLElement, M, void, R>>): RxNode<El<HTMLElement, M, void, R>>;
36
+ export declare function Embed<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLEmbedElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLEmbedElement, M, void, R>>): RxNode<El<HTMLEmbedElement, M, void, R>>;
37
+ export declare function FieldSet<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLFieldSetElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLFieldSetElement, M, void, R>>): RxNode<El<HTMLFieldSetElement, M, void, R>>;
38
+ export declare function FigCaption<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLElement, M, void, R>>): RxNode<El<HTMLElement, M, void, R>>;
39
+ export declare function Figure<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLElement, M, void, R>>): RxNode<El<HTMLElement, M, void, R>>;
40
+ export declare function Footer<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLElement, M, void, R>>): RxNode<El<HTMLElement, M, void, R>>;
41
+ export declare function Form<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLFormElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLFormElement, M, void, R>>): RxNode<El<HTMLFormElement, M, void, R>>;
42
+ export declare function H1<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLHeadingElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLHeadingElement, M, void, R>>): RxNode<El<HTMLHeadingElement, M, void, R>>;
43
+ export declare function H2<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLHeadingElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLHeadingElement, M, void, R>>): RxNode<El<HTMLHeadingElement, M, void, R>>;
44
+ export declare function H3<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLHeadingElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLHeadingElement, M, void, R>>): RxNode<El<HTMLHeadingElement, M, void, R>>;
45
+ export declare function H4<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLHeadingElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLHeadingElement, M, void, R>>): RxNode<El<HTMLHeadingElement, M, void, R>>;
46
+ export declare function H5<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLHeadingElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLHeadingElement, M, void, R>>): RxNode<El<HTMLHeadingElement, M, void, R>>;
47
+ export declare function H6<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLHeadingElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLHeadingElement, M, void, R>>): RxNode<El<HTMLHeadingElement, M, void, R>>;
48
+ export declare function Head<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLHeadElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLHeadElement, M, void, R>>): RxNode<El<HTMLHeadElement, M, void, R>>;
49
+ export declare function Header<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLElement, M, void, R>>): RxNode<El<HTMLElement, M, void, R>>;
50
+ export declare function HGroup<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLElement, M, void, R>>): RxNode<El<HTMLElement, M, void, R>>;
51
+ export declare function HR<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLHRElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLHRElement, M, void, R>>): RxNode<El<HTMLHRElement, M, void, R>>;
52
+ export declare function Html<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLHtmlElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLHtmlElement, M, void, R>>): RxNode<El<HTMLHtmlElement, M, void, R>>;
53
+ export declare function I<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLElement, M, void, R>>): RxNode<El<HTMLElement, M, void, R>>;
54
+ export declare function IFrame<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLIFrameElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLIFrameElement, M, void, R>>): RxNode<El<HTMLIFrameElement, M, void, R>>;
55
+ export declare function Img<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLImageElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLImageElement, M, void, R>>): RxNode<El<HTMLImageElement, M, void, R>>;
56
+ export declare function Input<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLInputElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLInputElement, M, void, R>>): RxNode<El<HTMLInputElement, M, void, R>>;
57
+ export declare function Ins<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLModElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLModElement, M, void, R>>): RxNode<El<HTMLModElement, M, void, R>>;
58
+ export declare function Kbd<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLElement, M, void, R>>): RxNode<El<HTMLElement, M, void, R>>;
59
+ export declare function KeyGen<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLElement, M, void, R>>): RxNode<El<HTMLElement, M, void, R>>;
60
+ export declare function Label<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLLabelElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLLabelElement, M, void, R>>): RxNode<El<HTMLLabelElement, M, void, R>>;
61
+ export declare function Legend<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLLegendElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLLegendElement, M, void, R>>): RxNode<El<HTMLLegendElement, M, void, R>>;
62
+ export declare function LI<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLLIElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLLIElement, M, void, R>>): RxNode<El<HTMLLIElement, M, void, R>>;
63
+ export declare function Link<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLLinkElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLLinkElement, M, void, R>>): RxNode<El<HTMLLinkElement, M, void, R>>;
64
+ export declare function Main<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLElement, M, void, R>>): RxNode<El<HTMLElement, M, void, R>>;
65
+ export declare function Map<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLMapElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLMapElement, M, void, R>>): RxNode<El<HTMLMapElement, M, void, R>>;
66
+ export declare function Mark<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLElement, M, void, R>>): RxNode<El<HTMLElement, M, void, R>>;
67
+ export declare function Menu<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLElement, M, void, R>>): RxNode<El<HTMLElement, M, void, R>>;
68
+ export declare function MenuItem<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLElement, M, void, R>>): RxNode<El<HTMLElement, M, void, R>>;
69
+ export declare function Meta<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLMetaElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLMetaElement, M, void, R>>): RxNode<El<HTMLMetaElement, M, void, R>>;
70
+ export declare function Meter<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLElement, M, void, R>>): RxNode<El<HTMLElement, M, void, R>>;
71
+ export declare function Nav<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLElement, M, void, R>>): RxNode<El<HTMLElement, M, void, R>>;
72
+ export declare function NoIndex<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLElement, M, void, R>>): RxNode<El<HTMLElement, M, void, R>>;
73
+ export declare function NoScript<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLElement, M, void, R>>): RxNode<El<HTMLElement, M, void, R>>;
74
+ export declare function Obj<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLObjectElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLObjectElement, M, void, R>>): RxNode<El<HTMLObjectElement, M, void, R>>;
75
+ export declare function OL<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLOListElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLOListElement, M, void, R>>): RxNode<El<HTMLOListElement, M, void, R>>;
76
+ export declare function OptGroup<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLOptGroupElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLOptGroupElement, M, void, R>>): RxNode<El<HTMLOptGroupElement, M, void, R>>;
77
+ export declare function Option<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLOptionElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLOptionElement, M, void, R>>): RxNode<El<HTMLOptionElement, M, void, R>>;
78
+ export declare function Output<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLElement, M, void, R>>): RxNode<El<HTMLElement, M, void, R>>;
79
+ export declare function P<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLParagraphElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLParagraphElement, M, void, R>>): RxNode<El<HTMLParagraphElement, M, void, R>>;
80
+ export declare function Param<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLElement, M, void, R>>): RxNode<El<HTMLElement, M, void, R>>;
81
+ export declare function Picture<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLElement, M, void, R>>): RxNode<El<HTMLElement, M, void, R>>;
82
+ export declare function Pre<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLPreElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLPreElement, M, void, R>>): RxNode<El<HTMLPreElement, M, void, R>>;
83
+ export declare function Progress<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLProgressElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLProgressElement, M, void, R>>): RxNode<El<HTMLProgressElement, M, void, R>>;
84
+ export declare function Q<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLQuoteElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLQuoteElement, M, void, R>>): RxNode<El<HTMLQuoteElement, M, void, R>>;
85
+ export declare function RP<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLElement, M, void, R>>): RxNode<El<HTMLElement, M, void, R>>;
86
+ export declare function RT<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLElement, M, void, R>>): RxNode<El<HTMLElement, M, void, R>>;
87
+ export declare function Ruby<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLElement, M, void, R>>): RxNode<El<HTMLElement, M, void, R>>;
88
+ export declare function S<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLElement, M, void, R>>): RxNode<El<HTMLElement, M, void, R>>;
89
+ export declare function Samp<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLElement, M, void, R>>): RxNode<El<HTMLElement, M, void, R>>;
90
+ export declare function Script<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLScriptElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLScriptElement, M, void, R>>): RxNode<El<HTMLScriptElement, M, void, R>>;
91
+ export declare function Sctn<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLElement, M, void, R>>): RxNode<El<HTMLElement, M, void, R>>;
92
+ export declare function Select<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLSelectElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLSelectElement, M, void, R>>): RxNode<El<HTMLSelectElement, M, void, R>>;
93
+ export declare function Small<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLElement, M, void, R>>): RxNode<El<HTMLElement, M, void, R>>;
94
+ export declare function Source<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLSourceElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLSourceElement, M, void, R>>): RxNode<El<HTMLSourceElement, M, void, R>>;
95
+ export declare function Span<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLSpanElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLSpanElement, M, void, R>>): RxNode<El<HTMLSpanElement, M, void, R>>;
96
+ export declare function Strong<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLElement, M, void, R>>): RxNode<El<HTMLElement, M, void, R>>;
97
+ export declare function Style<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLStyleElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLStyleElement, M, void, R>>): RxNode<El<HTMLStyleElement, M, void, R>>;
98
+ export declare function Sub<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLElement, M, void, R>>): RxNode<El<HTMLElement, M, void, R>>;
99
+ export declare function Summary<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLElement, M, void, R>>): RxNode<El<HTMLElement, M, void, R>>;
100
+ export declare function Sup<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLElement, M, void, R>>): RxNode<El<HTMLElement, M, void, R>>;
101
+ export declare function Tbl<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLTableElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLTableElement, M, void, R>>): RxNode<El<HTMLTableElement, M, void, R>>;
102
+ export declare function Template<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLTemplateElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLTemplateElement, M, void, R>>): RxNode<El<HTMLTemplateElement, M, void, R>>;
103
+ export declare function TBody<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLTableSectionElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLTableSectionElement, M, void, R>>): RxNode<El<HTMLTableSectionElement, M, void, R>>;
104
+ export declare function TD<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLTableCellElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLTableCellElement, M, void, R>>): RxNode<El<HTMLTableCellElement, M, void, R>>;
105
+ export declare function TextArea<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLTextAreaElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLTextAreaElement, M, void, R>>): RxNode<El<HTMLTextAreaElement, M, void, R>>;
106
+ export declare function TFoot<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLTableSectionElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLTableSectionElement, M, void, R>>): RxNode<El<HTMLTableSectionElement, M, void, R>>;
107
+ export declare function TH<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLTableCellElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLTableCellElement, M, void, R>>): RxNode<El<HTMLTableCellElement, M, void, R>>;
108
+ export declare function THead<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLTableSectionElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLTableSectionElement, M, void, R>>): RxNode<El<HTMLTableSectionElement, M, void, R>>;
109
+ export declare function Time<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLElement, M, void, R>>): RxNode<El<HTMLElement, M, void, R>>;
110
+ export declare function Title<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLTitleElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLTitleElement, M, void, R>>): RxNode<El<HTMLTitleElement, M, void, R>>;
111
+ export declare function TR<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLTableRowElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLTableRowElement, M, void, R>>): RxNode<El<HTMLTableRowElement, M, void, R>>;
112
+ export declare function Track<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLTrackElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLTrackElement, M, void, R>>): RxNode<El<HTMLTrackElement, M, void, R>>;
113
+ export declare function U<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLElement, M, void, R>>): RxNode<El<HTMLElement, M, void, R>>;
114
+ export declare function UL<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLUListElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLUListElement, M, void, R>>): RxNode<El<HTMLUListElement, M, void, R>>;
115
+ export declare function Var<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLElement, M, void, R>>): RxNode<El<HTMLElement, M, void, R>>;
116
+ export declare function Video<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLVideoElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLVideoElement, M, void, R>>): RxNode<El<HTMLVideoElement, M, void, R>>;
117
+ export declare function Wbr<M = unknown, R = void>(declaration?: RxNodeDecl<El<HTMLElement, M, void, R>>, preset?: RxNodeDecl<El<HTMLElement, M, void, R>>): RxNode<El<HTMLElement, M, void, R>>;
118
+ export declare function Svg<M = unknown, R = void>(declaration?: RxNodeDecl<El<SVGSVGElement, M, void, R>>, preset?: RxNodeDecl<El<SVGSVGElement, M, void, R>>): RxNode<El<SVGSVGElement, M, void, R>>;
119
+ export declare function SvgA<M = unknown, R = void>(declaration?: RxNodeDecl<El<SVGAElement, M, void, R>>, preset?: RxNodeDecl<El<SVGAElement, M, void, R>>): RxNode<El<SVGAElement, M, void, R>>;
120
+ export declare function Animate<M = unknown, R = void>(declaration?: RxNodeDecl<El<SVGAnimateElement, M, void, R>>, preset?: RxNodeDecl<El<SVGAnimateElement, M, void, R>>): RxNode<El<SVGAnimateElement, M, void, R>>;
121
+ export declare function AnimateMotion<M = unknown, R = void>(declaration?: RxNodeDecl<El<SVGAnimateMotionElement, M, void, R>>, preset?: RxNodeDecl<El<SVGAnimateMotionElement, M, void, R>>): RxNode<El<SVGAnimateMotionElement, M, void, R>>;
122
+ export declare function AnimateTransform<M = unknown, R = void>(declaration?: RxNodeDecl<El<SVGAnimateTransformElement, M, void, R>>, preset?: RxNodeDecl<El<SVGAnimateTransformElement, M, void, R>>): RxNode<El<SVGAnimateTransformElement, M, void, R>>;
123
+ export declare function Circle<M = unknown, R = void>(declaration?: RxNodeDecl<El<SVGCircleElement, M, void, R>>, preset?: RxNodeDecl<El<SVGCircleElement, M, void, R>>): RxNode<El<SVGCircleElement, M, void, R>>;
124
+ export declare function ClipPath<M = unknown, R = void>(declaration?: RxNodeDecl<El<SVGClipPathElement, M, void, R>>, preset?: RxNodeDecl<El<SVGClipPathElement, M, void, R>>): RxNode<El<SVGClipPathElement, M, void, R>>;
125
+ export declare function Defs<M = unknown, R = void>(declaration?: RxNodeDecl<El<SVGDefsElement, M, void, R>>, preset?: RxNodeDecl<El<SVGDefsElement, M, void, R>>): RxNode<El<SVGDefsElement, M, void, R>>;
126
+ export declare function Desc<M = unknown, R = void>(declaration?: RxNodeDecl<El<SVGDescElement, M, void, R>>, preset?: RxNodeDecl<El<SVGDescElement, M, void, R>>): RxNode<El<SVGDescElement, M, void, R>>;
127
+ export declare function Ellipse<M = unknown, R = void>(declaration?: RxNodeDecl<El<SVGEllipseElement, M, void, R>>, preset?: RxNodeDecl<El<SVGEllipseElement, M, void, R>>): RxNode<El<SVGEllipseElement, M, void, R>>;
128
+ export declare function FeBlend<M = unknown, R = void>(declaration?: RxNodeDecl<El<SVGFEBlendElement, M, void, R>>, preset?: RxNodeDecl<El<SVGFEBlendElement, M, void, R>>): RxNode<El<SVGFEBlendElement, M, void, R>>;
129
+ export declare function FeColorMatrix<M = unknown, R = void>(declaration?: RxNodeDecl<El<SVGFEColorMatrixElement, M, void, R>>, preset?: RxNodeDecl<El<SVGFEColorMatrixElement, M, void, R>>): RxNode<El<SVGFEColorMatrixElement, M, void, R>>;
130
+ export declare function FeComponentTransfer<M = unknown, R = void>(declaration?: RxNodeDecl<El<SVGFEComponentTransferElement, M, void, R>>, preset?: RxNodeDecl<El<SVGFEComponentTransferElement, M, void, R>>): RxNode<El<SVGFEComponentTransferElement, M, void, R>>;
131
+ export declare function FeComposite<M = unknown, R = void>(declaration?: RxNodeDecl<El<SVGFECompositeElement, M, void, R>>, preset?: RxNodeDecl<El<SVGFECompositeElement, M, void, R>>): RxNode<El<SVGFECompositeElement, M, void, R>>;
132
+ export declare function FeConvolveMatrix<M = unknown, R = void>(declaration?: RxNodeDecl<El<SVGFEConvolveMatrixElement, M, void, R>>, preset?: RxNodeDecl<El<SVGFEConvolveMatrixElement, M, void, R>>): RxNode<El<SVGFEConvolveMatrixElement, M, void, R>>;
133
+ export declare function FeDiffuseLighting<M = unknown, R = void>(declaration?: RxNodeDecl<El<SVGFEDiffuseLightingElement, M, void, R>>, preset?: RxNodeDecl<El<SVGFEDiffuseLightingElement, M, void, R>>): RxNode<El<SVGFEDiffuseLightingElement, M, void, R>>;
134
+ export declare function FeDisplacementMap<M = unknown, R = void>(declaration?: RxNodeDecl<El<SVGFEDisplacementMapElement, M, void, R>>, preset?: RxNodeDecl<El<SVGFEDisplacementMapElement, M, void, R>>): RxNode<El<SVGFEDisplacementMapElement, M, void, R>>;
135
+ export declare function FeDistantLight<M = unknown, R = void>(declaration?: RxNodeDecl<El<SVGFEDistantLightElement, M, void, R>>, preset?: RxNodeDecl<El<SVGFEDistantLightElement, M, void, R>>): RxNode<El<SVGFEDistantLightElement, M, void, R>>;
136
+ export declare function FeDropShadow<M = unknown, R = void>(declaration?: RxNodeDecl<El<SVGFEDropShadowElement, M, void, R>>, preset?: RxNodeDecl<El<SVGFEDropShadowElement, M, void, R>>): RxNode<El<SVGFEDropShadowElement, M, void, R>>;
137
+ export declare function FeFlood<M = unknown, R = void>(declaration?: RxNodeDecl<El<SVGFEFloodElement, M, void, R>>, preset?: RxNodeDecl<El<SVGFEFloodElement, M, void, R>>): RxNode<El<SVGFEFloodElement, M, void, R>>;
138
+ export declare function FeFuncA<M = unknown, R = void>(declaration?: RxNodeDecl<El<SVGFEFuncAElement, M, void, R>>, preset?: RxNodeDecl<El<SVGFEFuncAElement, M, void, R>>): RxNode<El<SVGFEFuncAElement, M, void, R>>;
139
+ export declare function FeFuncB<M = unknown, R = void>(declaration?: RxNodeDecl<El<SVGFEFuncBElement, M, void, R>>, preset?: RxNodeDecl<El<SVGFEFuncBElement, M, void, R>>): RxNode<El<SVGFEFuncBElement, M, void, R>>;
140
+ export declare function FeFuncG<M = unknown, R = void>(declaration?: RxNodeDecl<El<SVGFEFuncGElement, M, void, R>>, preset?: RxNodeDecl<El<SVGFEFuncGElement, M, void, R>>): RxNode<El<SVGFEFuncGElement, M, void, R>>;
141
+ export declare function FeFuncR<M = unknown, R = void>(declaration?: RxNodeDecl<El<SVGFEFuncRElement, M, void, R>>, preset?: RxNodeDecl<El<SVGFEFuncRElement, M, void, R>>): RxNode<El<SVGFEFuncRElement, M, void, R>>;
142
+ export declare function FeGaussianBlur<M = unknown, R = void>(declaration?: RxNodeDecl<El<SVGFEGaussianBlurElement, M, void, R>>, preset?: RxNodeDecl<El<SVGFEGaussianBlurElement, M, void, R>>): RxNode<El<SVGFEGaussianBlurElement, M, void, R>>;
143
+ export declare function FeImage<M = unknown, R = void>(declaration?: RxNodeDecl<El<SVGFEImageElement, M, void, R>>, preset?: RxNodeDecl<El<SVGFEImageElement, M, void, R>>): RxNode<El<SVGFEImageElement, M, void, R>>;
144
+ export declare function FeMerge<M = unknown, R = void>(declaration?: RxNodeDecl<El<SVGFEMergeElement, M, void, R>>, preset?: RxNodeDecl<El<SVGFEMergeElement, M, void, R>>): RxNode<El<SVGFEMergeElement, M, void, R>>;
145
+ export declare function FeMergeNode<M = unknown, R = void>(declaration?: RxNodeDecl<El<SVGFEMergeNodeElement, M, void, R>>, preset?: RxNodeDecl<El<SVGFEMergeNodeElement, M, void, R>>): RxNode<El<SVGFEMergeNodeElement, M, void, R>>;
146
+ export declare function FeMorphology<M = unknown, R = void>(declaration?: RxNodeDecl<El<SVGFEMorphologyElement, M, void, R>>, preset?: RxNodeDecl<El<SVGFEMorphologyElement, M, void, R>>): RxNode<El<SVGFEMorphologyElement, M, void, R>>;
147
+ export declare function FeOffset<M = unknown, R = void>(declaration?: RxNodeDecl<El<SVGFEOffsetElement, M, void, R>>, preset?: RxNodeDecl<El<SVGFEOffsetElement, M, void, R>>): RxNode<El<SVGFEOffsetElement, M, void, R>>;
148
+ export declare function FePointLight<M = unknown, R = void>(declaration?: RxNodeDecl<El<SVGFEPointLightElement, M, void, R>>, preset?: RxNodeDecl<El<SVGFEPointLightElement, M, void, R>>): RxNode<El<SVGFEPointLightElement, M, void, R>>;
149
+ export declare function FeSpecularLighting<M = unknown, R = void>(declaration?: RxNodeDecl<El<SVGFESpecularLightingElement, M, void, R>>, preset?: RxNodeDecl<El<SVGFESpecularLightingElement, M, void, R>>): RxNode<El<SVGFESpecularLightingElement, M, void, R>>;
150
+ export declare function FeSpotLight<M = unknown, R = void>(declaration?: RxNodeDecl<El<SVGFESpotLightElement, M, void, R>>, preset?: RxNodeDecl<El<SVGFESpotLightElement, M, void, R>>): RxNode<El<SVGFESpotLightElement, M, void, R>>;
151
+ export declare function FeTile<M = unknown, R = void>(declaration?: RxNodeDecl<El<SVGFETileElement, M, void, R>>, preset?: RxNodeDecl<El<SVGFETileElement, M, void, R>>): RxNode<El<SVGFETileElement, M, void, R>>;
152
+ export declare function FeTurbulence<M = unknown, R = void>(declaration?: RxNodeDecl<El<SVGFETurbulenceElement, M, void, R>>, preset?: RxNodeDecl<El<SVGFETurbulenceElement, M, void, R>>): RxNode<El<SVGFETurbulenceElement, M, void, R>>;
153
+ export declare function Filter<M = unknown, R = void>(declaration?: RxNodeDecl<El<SVGFilterElement, M, void, R>>, preset?: RxNodeDecl<El<SVGFilterElement, M, void, R>>): RxNode<El<SVGFilterElement, M, void, R>>;
154
+ export declare function ForeignObject<M = unknown, R = void>(declaration?: RxNodeDecl<El<SVGForeignObjectElement, M, void, R>>, preset?: RxNodeDecl<El<SVGForeignObjectElement, M, void, R>>): RxNode<El<SVGForeignObjectElement, M, void, R>>;
155
+ export declare function G<M = unknown, R = void>(declaration?: RxNodeDecl<El<SVGGElement, M, void, R>>, preset?: RxNodeDecl<El<SVGGElement, M, void, R>>): RxNode<El<SVGGElement, M, void, R>>;
156
+ export declare function SvgImage<M = unknown, R = void>(declaration?: RxNodeDecl<El<SVGImageElement, M, void, R>>, preset?: RxNodeDecl<El<SVGImageElement, M, void, R>>): RxNode<El<SVGImageElement, M, void, R>>;
157
+ export declare function SvgLine<M = unknown, R = void>(declaration?: RxNodeDecl<El<SVGLineElement, M, void, R>>, preset?: RxNodeDecl<El<SVGLineElement, M, void, R>>): RxNode<El<SVGLineElement, M, void, R>>;
158
+ export declare function LinearGradient<M = unknown, R = void>(declaration?: RxNodeDecl<El<SVGLinearGradientElement, M, void, R>>, preset?: RxNodeDecl<El<SVGLinearGradientElement, M, void, R>>): RxNode<El<SVGLinearGradientElement, M, void, R>>;
159
+ export declare function Marker<M = unknown, R = void>(declaration?: RxNodeDecl<El<SVGMarkerElement, M, void, R>>, preset?: RxNodeDecl<El<SVGMarkerElement, M, void, R>>): RxNode<El<SVGMarkerElement, M, void, R>>;
160
+ export declare function Mask<M = unknown, R = void>(declaration?: RxNodeDecl<El<SVGMaskElement, M, void, R>>, preset?: RxNodeDecl<El<SVGMaskElement, M, void, R>>): RxNode<El<SVGMaskElement, M, void, R>>;
161
+ export declare function MetaData<M = unknown, R = void>(declaration?: RxNodeDecl<El<SVGMetadataElement, M, void, R>>, preset?: RxNodeDecl<El<SVGMetadataElement, M, void, R>>): RxNode<El<SVGMetadataElement, M, void, R>>;
162
+ export declare function MPath<M = unknown, R = void>(declaration?: RxNodeDecl<El<SVGElement, M, void, R>>, preset?: RxNodeDecl<El<SVGElement, M, void, R>>): RxNode<El<SVGElement, M, void, R>>;
163
+ export declare function Path<M = unknown, R = void>(declaration?: RxNodeDecl<El<SVGPathElement, M, void, R>>, preset?: RxNodeDecl<El<SVGPathElement, M, void, R>>): RxNode<El<SVGPathElement, M, void, R>>;
164
+ export declare function Pattern<M = unknown, R = void>(declaration?: RxNodeDecl<El<SVGPatternElement, M, void, R>>, preset?: RxNodeDecl<El<SVGPatternElement, M, void, R>>): RxNode<El<SVGPatternElement, M, void, R>>;
165
+ export declare function Polygon<M = unknown, R = void>(declaration?: RxNodeDecl<El<SVGPolygonElement, M, void, R>>, preset?: RxNodeDecl<El<SVGPolygonElement, M, void, R>>): RxNode<El<SVGPolygonElement, M, void, R>>;
166
+ export declare function PolyLine<M = unknown, R = void>(declaration?: RxNodeDecl<El<SVGPolylineElement, M, void, R>>, preset?: RxNodeDecl<El<SVGPolylineElement, M, void, R>>): RxNode<El<SVGPolylineElement, M, void, R>>;
167
+ export declare function RadialGradient<M = unknown, R = void>(declaration?: RxNodeDecl<El<SVGRadialGradientElement, M, void, R>>, preset?: RxNodeDecl<El<SVGRadialGradientElement, M, void, R>>): RxNode<El<SVGRadialGradientElement, M, void, R>>;
168
+ export declare function Rect<M = unknown, R = void>(declaration?: RxNodeDecl<El<SVGRectElement, M, void, R>>, preset?: RxNodeDecl<El<SVGRectElement, M, void, R>>): RxNode<El<SVGRectElement, M, void, R>>;
169
+ export declare function Stop<M = unknown, R = void>(declaration?: RxNodeDecl<El<SVGStopElement, M, void, R>>, preset?: RxNodeDecl<El<SVGStopElement, M, void, R>>): RxNode<El<SVGStopElement, M, void, R>>;
170
+ export declare function SvgSwitch<M = unknown, R = void>(declaration?: RxNodeDecl<El<SVGSwitchElement, M, void, R>>, preset?: RxNodeDecl<El<SVGSwitchElement, M, void, R>>): RxNode<El<SVGSwitchElement, M, void, R>>;
171
+ export declare function Symbol<M = unknown, R = void>(declaration?: RxNodeDecl<El<SVGSymbolElement, M, void, R>>, preset?: RxNodeDecl<El<SVGSymbolElement, M, void, R>>): RxNode<El<SVGSymbolElement, M, void, R>>;
172
+ export declare function Text<M = unknown, R = void>(declaration?: RxNodeDecl<El<SVGTextElement, M, void, R>>, preset?: RxNodeDecl<El<SVGTextElement, M, void, R>>): RxNode<El<SVGTextElement, M, void, R>>;
173
+ export declare function TextPath<M = unknown, R = void>(declaration?: RxNodeDecl<El<SVGTextPathElement, M, void, R>>, preset?: RxNodeDecl<El<SVGTextPathElement, M, void, R>>): RxNode<El<SVGTextPathElement, M, void, R>>;
174
+ export declare function TSpan<M = unknown, R = void>(declaration?: RxNodeDecl<El<SVGTSpanElement, M, void, R>>, preset?: RxNodeDecl<El<SVGTSpanElement, M, void, R>>): RxNode<El<SVGTSpanElement, M, void, R>>;
175
+ export declare function Use<M = unknown, R = void>(declaration?: RxNodeDecl<El<SVGUseElement, M, void, R>>, preset?: RxNodeDecl<El<SVGUseElement, M, void, R>>): RxNode<El<SVGUseElement, M, void, R>>;
176
+ export declare function View<M = unknown, R = void>(declaration?: RxNodeDecl<El<SVGViewElement, M, void, R>>, preset?: RxNodeDecl<El<SVGViewElement, M, void, R>>): RxNode<El<SVGViewElement, M, void, R>>;
@@ -1,183 +1,183 @@
1
- import { RxTree } from "reactronic";
1
+ import { RxNode } from "reactronic";
2
2
  import { ElKind } from "./El.js";
3
3
  import { HtmlDriver, StaticDriver, SvgDriver } from "./HtmlDriver.js";
4
4
  export function HtmlBody(declaration, preset) {
5
5
  const driver = new StaticDriver(global.document.body, "HtmlBody", false, el => el.kind = ElKind.Section);
6
- return RxTree.declare(driver, declaration, preset);
6
+ return RxNode.declare(driver, declaration, preset);
7
7
  }
8
- export function A(declaration, preset) { return RxTree.declare(HtmlTags.a, declaration, preset); }
9
- export function Abbr(declaration, preset) { return RxTree.declare(HtmlTags.abbr, declaration, preset); }
10
- export function Address(declaration, preset) { return RxTree.declare(HtmlTags.address, declaration, preset); }
11
- export function Area(declaration, preset) { return RxTree.declare(HtmlTags.area, declaration, preset); }
12
- export function Article(declaration, preset) { return RxTree.declare(HtmlTags.article, declaration, preset); }
13
- export function Aside(declaration, preset) { return RxTree.declare(HtmlTags.aside, declaration, preset); }
14
- export function Audio(declaration, preset) { return RxTree.declare(HtmlTags.audio, declaration, preset); }
15
- export function B(declaration, preset) { return RxTree.declare(HtmlTags.b, declaration, preset); }
16
- export function Base(declaration, preset) { return RxTree.declare(HtmlTags.base, declaration, preset); }
17
- export function Bdi(declaration, preset) { return RxTree.declare(HtmlTags.bdi, declaration, preset); }
18
- export function Bdo(declaration, preset) { return RxTree.declare(HtmlTags.bdo, declaration, preset); }
19
- export function Big(declaration, preset) { return RxTree.declare(HtmlTags.big, declaration, preset); }
20
- export function BlockQuote(declaration, preset) { return RxTree.declare(HtmlTags.blockquote, declaration, preset); }
21
- export function Body(declaration, preset) { return RxTree.declare(HtmlTags.body, declaration, preset); }
22
- export function BR(declaration, preset) { return RxTree.declare(HtmlTags.br, declaration, preset); }
23
- export function Button(declaration, preset) { return RxTree.declare(HtmlTags.button, declaration, preset); }
24
- export function Canvas(declaration, preset) { return RxTree.declare(HtmlTags.canvas, declaration, preset); }
25
- export function Caption(declaration, preset) { return RxTree.declare(HtmlTags.caption, declaration, preset); }
26
- export function Cite(declaration, preset) { return RxTree.declare(HtmlTags.cite, declaration, preset); }
27
- export function Code(declaration, preset) { return RxTree.declare(HtmlTags.code, declaration, preset); }
28
- export function Col(declaration, preset) { return RxTree.declare(HtmlTags.col, declaration, preset); }
29
- export function ColGroup(declaration, preset) { return RxTree.declare(HtmlTags.colgroup, declaration, preset); }
30
- export function Data(declaration, preset) { return RxTree.declare(HtmlTags.data, declaration, preset); }
31
- export function DataList(declaration, preset) { return RxTree.declare(HtmlTags.datalist, declaration, preset); }
32
- export function DD(declaration, preset) { return RxTree.declare(HtmlTags.dd, declaration, preset); }
33
- export function Del(declaration, preset) { return RxTree.declare(HtmlTags.del, declaration, preset); }
34
- export function Details(declaration, preset) { return RxTree.declare(HtmlTags.details, declaration, preset); }
35
- export function Dfn(declaration, preset) { return RxTree.declare(HtmlTags.dfn, declaration, preset); }
36
- export function Div(declaration, preset) { return RxTree.declare(HtmlTags.div, declaration, preset); }
37
- export function DL(declaration, preset) { return RxTree.declare(HtmlTags.dl, declaration, preset); }
38
- export function DT(declaration, preset) { return RxTree.declare(HtmlTags.dt, declaration, preset); }
39
- export function EM(declaration, preset) { return RxTree.declare(HtmlTags.em, declaration, preset); }
40
- export function Embed(declaration, preset) { return RxTree.declare(HtmlTags.embed, declaration, preset); }
41
- export function FieldSet(declaration, preset) { return RxTree.declare(HtmlTags.fieldset, declaration, preset); }
42
- export function FigCaption(declaration, preset) { return RxTree.declare(HtmlTags.figcaption, declaration, preset); }
43
- export function Figure(declaration, preset) { return RxTree.declare(HtmlTags.figure, declaration, preset); }
44
- export function Footer(declaration, preset) { return RxTree.declare(HtmlTags.footer, declaration, preset); }
45
- export function Form(declaration, preset) { return RxTree.declare(HtmlTags.form, declaration, preset); }
46
- export function H1(declaration, preset) { return RxTree.declare(HtmlTags.h1, declaration, preset); }
47
- export function H2(declaration, preset) { return RxTree.declare(HtmlTags.h2, declaration, preset); }
48
- export function H3(declaration, preset) { return RxTree.declare(HtmlTags.h3, declaration, preset); }
49
- export function H4(declaration, preset) { return RxTree.declare(HtmlTags.h4, declaration, preset); }
50
- export function H5(declaration, preset) { return RxTree.declare(HtmlTags.h5, declaration, preset); }
51
- export function H6(declaration, preset) { return RxTree.declare(HtmlTags.h6, declaration, preset); }
52
- export function Head(declaration, preset) { return RxTree.declare(HtmlTags.head, declaration, preset); }
53
- export function Header(declaration, preset) { return RxTree.declare(HtmlTags.header, declaration, preset); }
54
- export function HGroup(declaration, preset) { return RxTree.declare(HtmlTags.hgroup, declaration, preset); }
55
- export function HR(declaration, preset) { return RxTree.declare(HtmlTags.hr, declaration, preset); }
56
- export function Html(declaration, preset) { return RxTree.declare(HtmlTags.html, declaration, preset); }
57
- export function I(declaration, preset) { return RxTree.declare(HtmlTags.i, declaration, preset); }
58
- export function IFrame(declaration, preset) { return RxTree.declare(HtmlTags.iframe, declaration, preset); }
59
- export function Img(declaration, preset) { return RxTree.declare(HtmlTags.img, declaration, preset); }
60
- export function Input(declaration, preset) { return RxTree.declare(HtmlTags.input, declaration, preset); }
61
- export function Ins(declaration, preset) { return RxTree.declare(HtmlTags.ins, declaration, preset); }
62
- export function Kbd(declaration, preset) { return RxTree.declare(HtmlTags.kbd, declaration, preset); }
63
- export function KeyGen(declaration, preset) { return RxTree.declare(HtmlTags.keygen, declaration, preset); }
64
- export function Label(declaration, preset) { return RxTree.declare(HtmlTags.label, declaration, preset); }
65
- export function Legend(declaration, preset) { return RxTree.declare(HtmlTags.legend, declaration, preset); }
66
- export function LI(declaration, preset) { return RxTree.declare(HtmlTags.li, declaration, preset); }
67
- export function Link(declaration, preset) { return RxTree.declare(HtmlTags.link, declaration, preset); }
68
- export function Main(declaration, preset) { return RxTree.declare(HtmlTags.main, declaration, preset); }
69
- export function Map(declaration, preset) { return RxTree.declare(HtmlTags.map, declaration, preset); }
70
- export function Mark(declaration, preset) { return RxTree.declare(HtmlTags.mark, declaration, preset); }
71
- export function Menu(declaration, preset) { return RxTree.declare(HtmlTags.menu, declaration, preset); }
72
- export function MenuItem(declaration, preset) { return RxTree.declare(HtmlTags.menuitem, declaration, preset); }
73
- export function Meta(declaration, preset) { return RxTree.declare(HtmlTags.meta, declaration, preset); }
74
- export function Meter(declaration, preset) { return RxTree.declare(HtmlTags.meter, declaration, preset); }
75
- export function Nav(declaration, preset) { return RxTree.declare(HtmlTags.nav, declaration, preset); }
76
- export function NoIndex(declaration, preset) { return RxTree.declare(HtmlTags.noindex, declaration, preset); }
77
- export function NoScript(declaration, preset) { return RxTree.declare(HtmlTags.noscript, declaration, preset); }
78
- export function Obj(declaration, preset) { return RxTree.declare(HtmlTags.object, declaration, preset); }
79
- export function OL(declaration, preset) { return RxTree.declare(HtmlTags.ol, declaration, preset); }
80
- export function OptGroup(declaration, preset) { return RxTree.declare(HtmlTags.optgroup, declaration, preset); }
81
- export function Option(declaration, preset) { return RxTree.declare(HtmlTags.option, declaration, preset); }
82
- export function Output(declaration, preset) { return RxTree.declare(HtmlTags.output, declaration, preset); }
83
- export function P(declaration, preset) { return RxTree.declare(HtmlTags.p, declaration, preset); }
84
- export function Param(declaration, preset) { return RxTree.declare(HtmlTags.param, declaration, preset); }
85
- export function Picture(declaration, preset) { return RxTree.declare(HtmlTags.picture, declaration, preset); }
86
- export function Pre(declaration, preset) { return RxTree.declare(HtmlTags.pre, declaration, preset); }
87
- export function Progress(declaration, preset) { return RxTree.declare(HtmlTags.progress, declaration, preset); }
88
- export function Q(declaration, preset) { return RxTree.declare(HtmlTags.q, declaration, preset); }
89
- export function RP(declaration, preset) { return RxTree.declare(HtmlTags.rp, declaration, preset); }
90
- export function RT(declaration, preset) { return RxTree.declare(HtmlTags.rt, declaration, preset); }
91
- export function Ruby(declaration, preset) { return RxTree.declare(HtmlTags.ruby, declaration, preset); }
92
- export function S(declaration, preset) { return RxTree.declare(HtmlTags.s, declaration, preset); }
93
- export function Samp(declaration, preset) { return RxTree.declare(HtmlTags.samp, declaration, preset); }
94
- export function Script(declaration, preset) { return RxTree.declare(HtmlTags.script, declaration, preset); }
95
- export function Sctn(declaration, preset) { return RxTree.declare(HtmlTags.section, declaration, preset); }
96
- export function Select(declaration, preset) { return RxTree.declare(HtmlTags.select, declaration, preset); }
97
- export function Small(declaration, preset) { return RxTree.declare(HtmlTags.small, declaration, preset); }
98
- export function Source(declaration, preset) { return RxTree.declare(HtmlTags.source, declaration, preset); }
99
- export function Span(declaration, preset) { return RxTree.declare(HtmlTags.span, declaration, preset); }
100
- export function Strong(declaration, preset) { return RxTree.declare(HtmlTags.strong, declaration, preset); }
101
- export function Style(declaration, preset) { return RxTree.declare(HtmlTags.style, declaration, preset); }
102
- export function Sub(declaration, preset) { return RxTree.declare(HtmlTags.sub, declaration, preset); }
103
- export function Summary(declaration, preset) { return RxTree.declare(HtmlTags.summary, declaration, preset); }
104
- export function Sup(declaration, preset) { return RxTree.declare(HtmlTags.sup, declaration, preset); }
105
- export function Tbl(declaration, preset) { return RxTree.declare(HtmlTags.table, declaration, preset); }
106
- export function Template(declaration, preset) { return RxTree.declare(HtmlTags.template, declaration, preset); }
107
- export function TBody(declaration, preset) { return RxTree.declare(HtmlTags.tbody, declaration, preset); }
108
- export function TD(declaration, preset) { return RxTree.declare(HtmlTags.td, declaration, preset); }
109
- export function TextArea(declaration, preset) { return RxTree.declare(HtmlTags.textarea, declaration, preset); }
110
- export function TFoot(declaration, preset) { return RxTree.declare(HtmlTags.tfoot, declaration, preset); }
111
- export function TH(declaration, preset) { return RxTree.declare(HtmlTags.th, declaration, preset); }
112
- export function THead(declaration, preset) { return RxTree.declare(HtmlTags.thead, declaration, preset); }
113
- export function Time(declaration, preset) { return RxTree.declare(HtmlTags.time, declaration, preset); }
114
- export function Title(declaration, preset) { return RxTree.declare(HtmlTags.title, declaration, preset); }
115
- export function TR(declaration, preset) { return RxTree.declare(HtmlTags.tr, declaration, preset); }
116
- export function Track(declaration, preset) { return RxTree.declare(HtmlTags.track, declaration, preset); }
117
- export function U(declaration, preset) { return RxTree.declare(HtmlTags.u, declaration, preset); }
118
- export function UL(declaration, preset) { return RxTree.declare(HtmlTags.ul, declaration, preset); }
119
- export function Var(declaration, preset) { return RxTree.declare(HtmlTags.var, declaration, preset); }
120
- export function Video(declaration, preset) { return RxTree.declare(HtmlTags.video, declaration, preset); }
121
- export function Wbr(declaration, preset) { return RxTree.declare(HtmlTags.wbr, declaration, preset); }
122
- export function Svg(declaration, preset) { return RxTree.declare(SvgTags.svg, declaration, preset); }
123
- export function SvgA(declaration, preset) { return RxTree.declare(SvgTags.a, declaration, preset); }
124
- export function Animate(declaration, preset) { return RxTree.declare(SvgTags.animate, declaration, preset); }
125
- export function AnimateMotion(declaration, preset) { return RxTree.declare(SvgTags.animateMotion, declaration, preset); }
126
- export function AnimateTransform(declaration, preset) { return RxTree.declare(SvgTags.animateTransform, declaration, preset); }
127
- export function Circle(declaration, preset) { return RxTree.declare(SvgTags.circle, declaration, preset); }
128
- export function ClipPath(declaration, preset) { return RxTree.declare(SvgTags.clipPath, declaration, preset); }
129
- export function Defs(declaration, preset) { return RxTree.declare(SvgTags.defs, declaration, preset); }
130
- export function Desc(declaration, preset) { return RxTree.declare(SvgTags.desc, declaration, preset); }
131
- export function Ellipse(declaration, preset) { return RxTree.declare(SvgTags.ellipse, declaration, preset); }
132
- export function FeBlend(declaration, preset) { return RxTree.declare(SvgTags.feBlend, declaration, preset); }
133
- export function FeColorMatrix(declaration, preset) { return RxTree.declare(SvgTags.feColorMatrix, declaration, preset); }
134
- export function FeComponentTransfer(declaration, preset) { return RxTree.declare(SvgTags.feComponentTransfer, declaration, preset); }
135
- export function FeComposite(declaration, preset) { return RxTree.declare(SvgTags.feComposite, declaration, preset); }
136
- export function FeConvolveMatrix(declaration, preset) { return RxTree.declare(SvgTags.feConvolveMatrix, declaration, preset); }
137
- export function FeDiffuseLighting(declaration, preset) { return RxTree.declare(SvgTags.feDiffuseLighting, declaration, preset); }
138
- export function FeDisplacementMap(declaration, preset) { return RxTree.declare(SvgTags.feDisplacementMap, declaration, preset); }
139
- export function FeDistantLight(declaration, preset) { return RxTree.declare(SvgTags.feDistantLight, declaration, preset); }
140
- export function FeDropShadow(declaration, preset) { return RxTree.declare(SvgTags.feDropShadow, declaration, preset); }
141
- export function FeFlood(declaration, preset) { return RxTree.declare(SvgTags.feFlood, declaration, preset); }
142
- export function FeFuncA(declaration, preset) { return RxTree.declare(SvgTags.feFuncA, declaration, preset); }
143
- export function FeFuncB(declaration, preset) { return RxTree.declare(SvgTags.feFuncB, declaration, preset); }
144
- export function FeFuncG(declaration, preset) { return RxTree.declare(SvgTags.feFuncG, declaration, preset); }
145
- export function FeFuncR(declaration, preset) { return RxTree.declare(SvgTags.feFuncR, declaration, preset); }
146
- export function FeGaussianBlur(declaration, preset) { return RxTree.declare(SvgTags.feGaussianBlur, declaration, preset); }
147
- export function FeImage(declaration, preset) { return RxTree.declare(SvgTags.feImage, declaration, preset); }
148
- export function FeMerge(declaration, preset) { return RxTree.declare(SvgTags.feMerge, declaration, preset); }
149
- export function FeMergeNode(declaration, preset) { return RxTree.declare(SvgTags.feMergeNode, declaration, preset); }
150
- export function FeMorphology(declaration, preset) { return RxTree.declare(SvgTags.feMorphology, declaration, preset); }
151
- export function FeOffset(declaration, preset) { return RxTree.declare(SvgTags.feOffset, declaration, preset); }
152
- export function FePointLight(declaration, preset) { return RxTree.declare(SvgTags.fePointLight, declaration, preset); }
153
- export function FeSpecularLighting(declaration, preset) { return RxTree.declare(SvgTags.feSpecularLighting, declaration, preset); }
154
- export function FeSpotLight(declaration, preset) { return RxTree.declare(SvgTags.feSpotLight, declaration, preset); }
155
- export function FeTile(declaration, preset) { return RxTree.declare(SvgTags.feTile, declaration, preset); }
156
- export function FeTurbulence(declaration, preset) { return RxTree.declare(SvgTags.feTurbulence, declaration, preset); }
157
- export function Filter(declaration, preset) { return RxTree.declare(SvgTags.filter, declaration, preset); }
158
- export function ForeignObject(declaration, preset) { return RxTree.declare(SvgTags.foreignObject, declaration, preset); }
159
- export function G(declaration, preset) { return RxTree.declare(SvgTags.g, declaration, preset); }
160
- export function SvgImage(declaration, preset) { return RxTree.declare(SvgTags.image, declaration, preset); }
161
- export function SvgLine(declaration, preset) { return RxTree.declare(SvgTags.line, declaration, preset); }
162
- export function LinearGradient(declaration, preset) { return RxTree.declare(SvgTags.linearGradient, declaration, preset); }
163
- export function Marker(declaration, preset) { return RxTree.declare(SvgTags.marker, declaration, preset); }
164
- export function Mask(declaration, preset) { return RxTree.declare(SvgTags.mask, declaration, preset); }
165
- export function MetaData(declaration, preset) { return RxTree.declare(SvgTags.metadata, declaration, preset); }
166
- export function MPath(declaration, preset) { return RxTree.declare(SvgTags.mpath, declaration, preset); }
167
- export function Path(declaration, preset) { return RxTree.declare(SvgTags.path, declaration, preset); }
168
- export function Pattern(declaration, preset) { return RxTree.declare(SvgTags.pattern, declaration, preset); }
169
- export function Polygon(declaration, preset) { return RxTree.declare(SvgTags.polygon, declaration, preset); }
170
- export function PolyLine(declaration, preset) { return RxTree.declare(SvgTags.polyline, declaration, preset); }
171
- export function RadialGradient(declaration, preset) { return RxTree.declare(SvgTags.radialGradient, declaration, preset); }
172
- export function Rect(declaration, preset) { return RxTree.declare(SvgTags.rect, declaration, preset); }
173
- export function Stop(declaration, preset) { return RxTree.declare(SvgTags.stop, declaration, preset); }
174
- export function SvgSwitch(declaration, preset) { return RxTree.declare(SvgTags.switch, declaration, preset); }
175
- export function Symbol(declaration, preset) { return RxTree.declare(SvgTags.symbol, declaration, preset); }
176
- export function Text(declaration, preset) { return RxTree.declare(SvgTags.text, declaration, preset); }
177
- export function TextPath(declaration, preset) { return RxTree.declare(SvgTags.textPath, declaration, preset); }
178
- export function TSpan(declaration, preset) { return RxTree.declare(SvgTags.tspan, declaration, preset); }
179
- export function Use(declaration, preset) { return RxTree.declare(SvgTags.use, declaration, preset); }
180
- export function View(declaration, preset) { return RxTree.declare(SvgTags.view, declaration, preset); }
8
+ export function A(declaration, preset) { return RxNode.declare(HtmlTags.a, declaration, preset); }
9
+ export function Abbr(declaration, preset) { return RxNode.declare(HtmlTags.abbr, declaration, preset); }
10
+ export function Address(declaration, preset) { return RxNode.declare(HtmlTags.address, declaration, preset); }
11
+ export function Area(declaration, preset) { return RxNode.declare(HtmlTags.area, declaration, preset); }
12
+ export function Article(declaration, preset) { return RxNode.declare(HtmlTags.article, declaration, preset); }
13
+ export function Aside(declaration, preset) { return RxNode.declare(HtmlTags.aside, declaration, preset); }
14
+ export function Audio(declaration, preset) { return RxNode.declare(HtmlTags.audio, declaration, preset); }
15
+ export function B(declaration, preset) { return RxNode.declare(HtmlTags.b, declaration, preset); }
16
+ export function Base(declaration, preset) { return RxNode.declare(HtmlTags.base, declaration, preset); }
17
+ export function Bdi(declaration, preset) { return RxNode.declare(HtmlTags.bdi, declaration, preset); }
18
+ export function Bdo(declaration, preset) { return RxNode.declare(HtmlTags.bdo, declaration, preset); }
19
+ export function Big(declaration, preset) { return RxNode.declare(HtmlTags.big, declaration, preset); }
20
+ export function BlockQuote(declaration, preset) { return RxNode.declare(HtmlTags.blockquote, declaration, preset); }
21
+ export function Body(declaration, preset) { return RxNode.declare(HtmlTags.body, declaration, preset); }
22
+ export function BR(declaration, preset) { return RxNode.declare(HtmlTags.br, declaration, preset); }
23
+ export function Button(declaration, preset) { return RxNode.declare(HtmlTags.button, declaration, preset); }
24
+ export function Canvas(declaration, preset) { return RxNode.declare(HtmlTags.canvas, declaration, preset); }
25
+ export function Caption(declaration, preset) { return RxNode.declare(HtmlTags.caption, declaration, preset); }
26
+ export function Cite(declaration, preset) { return RxNode.declare(HtmlTags.cite, declaration, preset); }
27
+ export function Code(declaration, preset) { return RxNode.declare(HtmlTags.code, declaration, preset); }
28
+ export function Col(declaration, preset) { return RxNode.declare(HtmlTags.col, declaration, preset); }
29
+ export function ColGroup(declaration, preset) { return RxNode.declare(HtmlTags.colgroup, declaration, preset); }
30
+ export function Data(declaration, preset) { return RxNode.declare(HtmlTags.data, declaration, preset); }
31
+ export function DataList(declaration, preset) { return RxNode.declare(HtmlTags.datalist, declaration, preset); }
32
+ export function DD(declaration, preset) { return RxNode.declare(HtmlTags.dd, declaration, preset); }
33
+ export function Del(declaration, preset) { return RxNode.declare(HtmlTags.del, declaration, preset); }
34
+ export function Details(declaration, preset) { return RxNode.declare(HtmlTags.details, declaration, preset); }
35
+ export function Dfn(declaration, preset) { return RxNode.declare(HtmlTags.dfn, declaration, preset); }
36
+ export function Div(declaration, preset) { return RxNode.declare(HtmlTags.div, declaration, preset); }
37
+ export function DL(declaration, preset) { return RxNode.declare(HtmlTags.dl, declaration, preset); }
38
+ export function DT(declaration, preset) { return RxNode.declare(HtmlTags.dt, declaration, preset); }
39
+ export function EM(declaration, preset) { return RxNode.declare(HtmlTags.em, declaration, preset); }
40
+ export function Embed(declaration, preset) { return RxNode.declare(HtmlTags.embed, declaration, preset); }
41
+ export function FieldSet(declaration, preset) { return RxNode.declare(HtmlTags.fieldset, declaration, preset); }
42
+ export function FigCaption(declaration, preset) { return RxNode.declare(HtmlTags.figcaption, declaration, preset); }
43
+ export function Figure(declaration, preset) { return RxNode.declare(HtmlTags.figure, declaration, preset); }
44
+ export function Footer(declaration, preset) { return RxNode.declare(HtmlTags.footer, declaration, preset); }
45
+ export function Form(declaration, preset) { return RxNode.declare(HtmlTags.form, declaration, preset); }
46
+ export function H1(declaration, preset) { return RxNode.declare(HtmlTags.h1, declaration, preset); }
47
+ export function H2(declaration, preset) { return RxNode.declare(HtmlTags.h2, declaration, preset); }
48
+ export function H3(declaration, preset) { return RxNode.declare(HtmlTags.h3, declaration, preset); }
49
+ export function H4(declaration, preset) { return RxNode.declare(HtmlTags.h4, declaration, preset); }
50
+ export function H5(declaration, preset) { return RxNode.declare(HtmlTags.h5, declaration, preset); }
51
+ export function H6(declaration, preset) { return RxNode.declare(HtmlTags.h6, declaration, preset); }
52
+ export function Head(declaration, preset) { return RxNode.declare(HtmlTags.head, declaration, preset); }
53
+ export function Header(declaration, preset) { return RxNode.declare(HtmlTags.header, declaration, preset); }
54
+ export function HGroup(declaration, preset) { return RxNode.declare(HtmlTags.hgroup, declaration, preset); }
55
+ export function HR(declaration, preset) { return RxNode.declare(HtmlTags.hr, declaration, preset); }
56
+ export function Html(declaration, preset) { return RxNode.declare(HtmlTags.html, declaration, preset); }
57
+ export function I(declaration, preset) { return RxNode.declare(HtmlTags.i, declaration, preset); }
58
+ export function IFrame(declaration, preset) { return RxNode.declare(HtmlTags.iframe, declaration, preset); }
59
+ export function Img(declaration, preset) { return RxNode.declare(HtmlTags.img, declaration, preset); }
60
+ export function Input(declaration, preset) { return RxNode.declare(HtmlTags.input, declaration, preset); }
61
+ export function Ins(declaration, preset) { return RxNode.declare(HtmlTags.ins, declaration, preset); }
62
+ export function Kbd(declaration, preset) { return RxNode.declare(HtmlTags.kbd, declaration, preset); }
63
+ export function KeyGen(declaration, preset) { return RxNode.declare(HtmlTags.keygen, declaration, preset); }
64
+ export function Label(declaration, preset) { return RxNode.declare(HtmlTags.label, declaration, preset); }
65
+ export function Legend(declaration, preset) { return RxNode.declare(HtmlTags.legend, declaration, preset); }
66
+ export function LI(declaration, preset) { return RxNode.declare(HtmlTags.li, declaration, preset); }
67
+ export function Link(declaration, preset) { return RxNode.declare(HtmlTags.link, declaration, preset); }
68
+ export function Main(declaration, preset) { return RxNode.declare(HtmlTags.main, declaration, preset); }
69
+ export function Map(declaration, preset) { return RxNode.declare(HtmlTags.map, declaration, preset); }
70
+ export function Mark(declaration, preset) { return RxNode.declare(HtmlTags.mark, declaration, preset); }
71
+ export function Menu(declaration, preset) { return RxNode.declare(HtmlTags.menu, declaration, preset); }
72
+ export function MenuItem(declaration, preset) { return RxNode.declare(HtmlTags.menuitem, declaration, preset); }
73
+ export function Meta(declaration, preset) { return RxNode.declare(HtmlTags.meta, declaration, preset); }
74
+ export function Meter(declaration, preset) { return RxNode.declare(HtmlTags.meter, declaration, preset); }
75
+ export function Nav(declaration, preset) { return RxNode.declare(HtmlTags.nav, declaration, preset); }
76
+ export function NoIndex(declaration, preset) { return RxNode.declare(HtmlTags.noindex, declaration, preset); }
77
+ export function NoScript(declaration, preset) { return RxNode.declare(HtmlTags.noscript, declaration, preset); }
78
+ export function Obj(declaration, preset) { return RxNode.declare(HtmlTags.object, declaration, preset); }
79
+ export function OL(declaration, preset) { return RxNode.declare(HtmlTags.ol, declaration, preset); }
80
+ export function OptGroup(declaration, preset) { return RxNode.declare(HtmlTags.optgroup, declaration, preset); }
81
+ export function Option(declaration, preset) { return RxNode.declare(HtmlTags.option, declaration, preset); }
82
+ export function Output(declaration, preset) { return RxNode.declare(HtmlTags.output, declaration, preset); }
83
+ export function P(declaration, preset) { return RxNode.declare(HtmlTags.p, declaration, preset); }
84
+ export function Param(declaration, preset) { return RxNode.declare(HtmlTags.param, declaration, preset); }
85
+ export function Picture(declaration, preset) { return RxNode.declare(HtmlTags.picture, declaration, preset); }
86
+ export function Pre(declaration, preset) { return RxNode.declare(HtmlTags.pre, declaration, preset); }
87
+ export function Progress(declaration, preset) { return RxNode.declare(HtmlTags.progress, declaration, preset); }
88
+ export function Q(declaration, preset) { return RxNode.declare(HtmlTags.q, declaration, preset); }
89
+ export function RP(declaration, preset) { return RxNode.declare(HtmlTags.rp, declaration, preset); }
90
+ export function RT(declaration, preset) { return RxNode.declare(HtmlTags.rt, declaration, preset); }
91
+ export function Ruby(declaration, preset) { return RxNode.declare(HtmlTags.ruby, declaration, preset); }
92
+ export function S(declaration, preset) { return RxNode.declare(HtmlTags.s, declaration, preset); }
93
+ export function Samp(declaration, preset) { return RxNode.declare(HtmlTags.samp, declaration, preset); }
94
+ export function Script(declaration, preset) { return RxNode.declare(HtmlTags.script, declaration, preset); }
95
+ export function Sctn(declaration, preset) { return RxNode.declare(HtmlTags.section, declaration, preset); }
96
+ export function Select(declaration, preset) { return RxNode.declare(HtmlTags.select, declaration, preset); }
97
+ export function Small(declaration, preset) { return RxNode.declare(HtmlTags.small, declaration, preset); }
98
+ export function Source(declaration, preset) { return RxNode.declare(HtmlTags.source, declaration, preset); }
99
+ export function Span(declaration, preset) { return RxNode.declare(HtmlTags.span, declaration, preset); }
100
+ export function Strong(declaration, preset) { return RxNode.declare(HtmlTags.strong, declaration, preset); }
101
+ export function Style(declaration, preset) { return RxNode.declare(HtmlTags.style, declaration, preset); }
102
+ export function Sub(declaration, preset) { return RxNode.declare(HtmlTags.sub, declaration, preset); }
103
+ export function Summary(declaration, preset) { return RxNode.declare(HtmlTags.summary, declaration, preset); }
104
+ export function Sup(declaration, preset) { return RxNode.declare(HtmlTags.sup, declaration, preset); }
105
+ export function Tbl(declaration, preset) { return RxNode.declare(HtmlTags.table, declaration, preset); }
106
+ export function Template(declaration, preset) { return RxNode.declare(HtmlTags.template, declaration, preset); }
107
+ export function TBody(declaration, preset) { return RxNode.declare(HtmlTags.tbody, declaration, preset); }
108
+ export function TD(declaration, preset) { return RxNode.declare(HtmlTags.td, declaration, preset); }
109
+ export function TextArea(declaration, preset) { return RxNode.declare(HtmlTags.textarea, declaration, preset); }
110
+ export function TFoot(declaration, preset) { return RxNode.declare(HtmlTags.tfoot, declaration, preset); }
111
+ export function TH(declaration, preset) { return RxNode.declare(HtmlTags.th, declaration, preset); }
112
+ export function THead(declaration, preset) { return RxNode.declare(HtmlTags.thead, declaration, preset); }
113
+ export function Time(declaration, preset) { return RxNode.declare(HtmlTags.time, declaration, preset); }
114
+ export function Title(declaration, preset) { return RxNode.declare(HtmlTags.title, declaration, preset); }
115
+ export function TR(declaration, preset) { return RxNode.declare(HtmlTags.tr, declaration, preset); }
116
+ export function Track(declaration, preset) { return RxNode.declare(HtmlTags.track, declaration, preset); }
117
+ export function U(declaration, preset) { return RxNode.declare(HtmlTags.u, declaration, preset); }
118
+ export function UL(declaration, preset) { return RxNode.declare(HtmlTags.ul, declaration, preset); }
119
+ export function Var(declaration, preset) { return RxNode.declare(HtmlTags.var, declaration, preset); }
120
+ export function Video(declaration, preset) { return RxNode.declare(HtmlTags.video, declaration, preset); }
121
+ export function Wbr(declaration, preset) { return RxNode.declare(HtmlTags.wbr, declaration, preset); }
122
+ export function Svg(declaration, preset) { return RxNode.declare(SvgTags.svg, declaration, preset); }
123
+ export function SvgA(declaration, preset) { return RxNode.declare(SvgTags.a, declaration, preset); }
124
+ export function Animate(declaration, preset) { return RxNode.declare(SvgTags.animate, declaration, preset); }
125
+ export function AnimateMotion(declaration, preset) { return RxNode.declare(SvgTags.animateMotion, declaration, preset); }
126
+ export function AnimateTransform(declaration, preset) { return RxNode.declare(SvgTags.animateTransform, declaration, preset); }
127
+ export function Circle(declaration, preset) { return RxNode.declare(SvgTags.circle, declaration, preset); }
128
+ export function ClipPath(declaration, preset) { return RxNode.declare(SvgTags.clipPath, declaration, preset); }
129
+ export function Defs(declaration, preset) { return RxNode.declare(SvgTags.defs, declaration, preset); }
130
+ export function Desc(declaration, preset) { return RxNode.declare(SvgTags.desc, declaration, preset); }
131
+ export function Ellipse(declaration, preset) { return RxNode.declare(SvgTags.ellipse, declaration, preset); }
132
+ export function FeBlend(declaration, preset) { return RxNode.declare(SvgTags.feBlend, declaration, preset); }
133
+ export function FeColorMatrix(declaration, preset) { return RxNode.declare(SvgTags.feColorMatrix, declaration, preset); }
134
+ export function FeComponentTransfer(declaration, preset) { return RxNode.declare(SvgTags.feComponentTransfer, declaration, preset); }
135
+ export function FeComposite(declaration, preset) { return RxNode.declare(SvgTags.feComposite, declaration, preset); }
136
+ export function FeConvolveMatrix(declaration, preset) { return RxNode.declare(SvgTags.feConvolveMatrix, declaration, preset); }
137
+ export function FeDiffuseLighting(declaration, preset) { return RxNode.declare(SvgTags.feDiffuseLighting, declaration, preset); }
138
+ export function FeDisplacementMap(declaration, preset) { return RxNode.declare(SvgTags.feDisplacementMap, declaration, preset); }
139
+ export function FeDistantLight(declaration, preset) { return RxNode.declare(SvgTags.feDistantLight, declaration, preset); }
140
+ export function FeDropShadow(declaration, preset) { return RxNode.declare(SvgTags.feDropShadow, declaration, preset); }
141
+ export function FeFlood(declaration, preset) { return RxNode.declare(SvgTags.feFlood, declaration, preset); }
142
+ export function FeFuncA(declaration, preset) { return RxNode.declare(SvgTags.feFuncA, declaration, preset); }
143
+ export function FeFuncB(declaration, preset) { return RxNode.declare(SvgTags.feFuncB, declaration, preset); }
144
+ export function FeFuncG(declaration, preset) { return RxNode.declare(SvgTags.feFuncG, declaration, preset); }
145
+ export function FeFuncR(declaration, preset) { return RxNode.declare(SvgTags.feFuncR, declaration, preset); }
146
+ export function FeGaussianBlur(declaration, preset) { return RxNode.declare(SvgTags.feGaussianBlur, declaration, preset); }
147
+ export function FeImage(declaration, preset) { return RxNode.declare(SvgTags.feImage, declaration, preset); }
148
+ export function FeMerge(declaration, preset) { return RxNode.declare(SvgTags.feMerge, declaration, preset); }
149
+ export function FeMergeNode(declaration, preset) { return RxNode.declare(SvgTags.feMergeNode, declaration, preset); }
150
+ export function FeMorphology(declaration, preset) { return RxNode.declare(SvgTags.feMorphology, declaration, preset); }
151
+ export function FeOffset(declaration, preset) { return RxNode.declare(SvgTags.feOffset, declaration, preset); }
152
+ export function FePointLight(declaration, preset) { return RxNode.declare(SvgTags.fePointLight, declaration, preset); }
153
+ export function FeSpecularLighting(declaration, preset) { return RxNode.declare(SvgTags.feSpecularLighting, declaration, preset); }
154
+ export function FeSpotLight(declaration, preset) { return RxNode.declare(SvgTags.feSpotLight, declaration, preset); }
155
+ export function FeTile(declaration, preset) { return RxNode.declare(SvgTags.feTile, declaration, preset); }
156
+ export function FeTurbulence(declaration, preset) { return RxNode.declare(SvgTags.feTurbulence, declaration, preset); }
157
+ export function Filter(declaration, preset) { return RxNode.declare(SvgTags.filter, declaration, preset); }
158
+ export function ForeignObject(declaration, preset) { return RxNode.declare(SvgTags.foreignObject, declaration, preset); }
159
+ export function G(declaration, preset) { return RxNode.declare(SvgTags.g, declaration, preset); }
160
+ export function SvgImage(declaration, preset) { return RxNode.declare(SvgTags.image, declaration, preset); }
161
+ export function SvgLine(declaration, preset) { return RxNode.declare(SvgTags.line, declaration, preset); }
162
+ export function LinearGradient(declaration, preset) { return RxNode.declare(SvgTags.linearGradient, declaration, preset); }
163
+ export function Marker(declaration, preset) { return RxNode.declare(SvgTags.marker, declaration, preset); }
164
+ export function Mask(declaration, preset) { return RxNode.declare(SvgTags.mask, declaration, preset); }
165
+ export function MetaData(declaration, preset) { return RxNode.declare(SvgTags.metadata, declaration, preset); }
166
+ export function MPath(declaration, preset) { return RxNode.declare(SvgTags.mpath, declaration, preset); }
167
+ export function Path(declaration, preset) { return RxNode.declare(SvgTags.path, declaration, preset); }
168
+ export function Pattern(declaration, preset) { return RxNode.declare(SvgTags.pattern, declaration, preset); }
169
+ export function Polygon(declaration, preset) { return RxNode.declare(SvgTags.polygon, declaration, preset); }
170
+ export function PolyLine(declaration, preset) { return RxNode.declare(SvgTags.polyline, declaration, preset); }
171
+ export function RadialGradient(declaration, preset) { return RxNode.declare(SvgTags.radialGradient, declaration, preset); }
172
+ export function Rect(declaration, preset) { return RxNode.declare(SvgTags.rect, declaration, preset); }
173
+ export function Stop(declaration, preset) { return RxNode.declare(SvgTags.stop, declaration, preset); }
174
+ export function SvgSwitch(declaration, preset) { return RxNode.declare(SvgTags.switch, declaration, preset); }
175
+ export function Symbol(declaration, preset) { return RxNode.declare(SvgTags.symbol, declaration, preset); }
176
+ export function Text(declaration, preset) { return RxNode.declare(SvgTags.text, declaration, preset); }
177
+ export function TextPath(declaration, preset) { return RxNode.declare(SvgTags.textPath, declaration, preset); }
178
+ export function TSpan(declaration, preset) { return RxNode.declare(SvgTags.tspan, declaration, preset); }
179
+ export function Use(declaration, preset) { return RxNode.declare(SvgTags.use, declaration, preset); }
180
+ export function View(declaration, preset) { return RxNode.declare(SvgTags.view, declaration, preset); }
181
181
  const HtmlTags = {
182
182
  a: new HtmlDriver("a", false, el => el.kind = ElKind.Native),
183
183
  abbr: new HtmlDriver("abbr", false, el => el.kind = ElKind.Native),
@@ -1,7 +1,7 @@
1
1
  import { Mode } from "reactronic";
2
- import { Fragment } from "./Elements.js";
2
+ import { PseudoElement } from "./Elements.js";
3
3
  export function FocuserReaction(key, target, model, switchEditMode = undefined) {
4
- Fragment({
4
+ PseudoElement({
5
5
  key,
6
6
  mode: Mode.IndependentUpdate,
7
7
  triggers: { target, model },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "verstak",
3
- "version": "0.24.114",
3
+ "version": "0.24.117",
4
4
  "description": "Verstak - Front-End Library",
5
5
  "publisher": "Nezaboodka Software",
6
6
  "license": "Apache-2.0",
@@ -31,7 +31,7 @@
31
31
  },
32
32
  "homepage": "https://github.com/nezaboodka/verstak/blob/master/README.md#readme",
33
33
  "dependencies": {
34
- "reactronic": "^0.24.114"
34
+ "reactronic": "^0.24.117"
35
35
  },
36
36
  "devDependencies": {
37
37
  "@types/node": "20.10.4",