verstak 0.24.305 → 0.24.308
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.
- package/build/dist/source/html/DraggableArea.view.js +3 -3
- package/build/dist/source/html/Elements.d.ts +11 -6
- package/build/dist/source/html/Elements.js +15 -14
- package/build/dist/source/html/Handlers.d.ts +1 -0
- package/build/dist/source/html/Handlers.js +29 -0
- package/build/dist/source/html/HtmlElements.d.ts +174 -174
- package/build/dist/source/html/HtmlElements.js +175 -175
- package/package.json +2 -2
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { Mode } from "reactronic";
|
|
1
|
+
import { Mode, RxNode } from "reactronic";
|
|
2
2
|
import { Div } from "./HtmlElements.js";
|
|
3
3
|
import { Handling } from "./Elements.js";
|
|
4
4
|
export function DraggableArea(draggingId, builder) {
|
|
5
|
-
return (Div(builder, {
|
|
5
|
+
return (Div(RxNode.rebased(builder, {
|
|
6
6
|
mode: Mode.independentUpdate,
|
|
7
7
|
script: b => {
|
|
8
8
|
const e = b.native;
|
|
@@ -33,5 +33,5 @@ export function DraggableArea(draggingId, builder) {
|
|
|
33
33
|
}
|
|
34
34
|
});
|
|
35
35
|
},
|
|
36
|
-
}));
|
|
36
|
+
})));
|
|
37
37
|
}
|
|
@@ -1,17 +1,22 @@
|
|
|
1
|
-
import { RxNodeDecl, RxNodeDriver, RxNode, Script, MergedItem } from "reactronic";
|
|
1
|
+
import { RxNodeDecl, RxNodeDriver, RxNode, Script, Mode, MergedItem, ScriptAsync } from "reactronic";
|
|
2
2
|
import { CursorCommandDriver, El, ElPlace } from "./El.js";
|
|
3
3
|
import { HtmlDriver } from "./HtmlDriver.js";
|
|
4
|
-
export declare function Panel<M = unknown>(
|
|
5
|
-
export declare function
|
|
4
|
+
export declare function Panel<M = unknown>(script?: Script<El<HTMLElement, M>>, scriptAsync?: ScriptAsync<El<HTMLElement, M>>, key?: string, mode?: Mode, creation?: Script<El<HTMLElement, M>>, creationAsync?: ScriptAsync<El<HTMLElement, M>>, destruction?: Script<El<HTMLElement, M>>, triggers?: unknown, basis?: RxNodeDecl<El<HTMLElement, M>>): RxNode<El<HTMLElement, M>>;
|
|
5
|
+
export declare function Panel<M = unknown>(declaration?: RxNodeDecl<El<HTMLElement, M>>): RxNode<El<HTMLElement, M>>;
|
|
6
|
+
export declare function Table<M = unknown>(script?: Script<El<HTMLElement, M>>, scriptAsync?: ScriptAsync<El<HTMLElement, M>>, key?: string, mode?: Mode, creation?: Script<El<HTMLElement, M>>, creationAsync?: ScriptAsync<El<HTMLElement, M>>, destruction?: Script<El<HTMLElement, M>>, triggers?: unknown, basis?: RxNodeDecl<El<HTMLElement, M>>): RxNode<El<HTMLElement, M>>;
|
|
7
|
+
export declare function Table<M = unknown>(declaration?: RxNodeDecl<El<HTMLElement, M>>): RxNode<El<HTMLElement, M>>;
|
|
6
8
|
export declare function row<T = void>(builder?: (element: void) => T, shiftCursorDown?: number): void;
|
|
7
|
-
export declare function Splitter<M = unknown,
|
|
9
|
+
export declare function Splitter<M = unknown>(script?: Script<El<HTMLElement, M>>, scriptAsync?: ScriptAsync<El<HTMLElement, M>>, key?: string, mode?: Mode, creation?: Script<El<HTMLElement, M>>, creationAsync?: ScriptAsync<El<HTMLElement, M>>, destruction?: Script<El<HTMLElement, M>>, triggers?: unknown, basis?: RxNodeDecl<El<HTMLElement, M>>): RxNode<El<HTMLElement, M>>;
|
|
10
|
+
export declare function Splitter<M = unknown>(declaration?: RxNodeDecl<El<HTMLElement, M>>): RxNode<El<HTMLElement, M>>;
|
|
8
11
|
export declare function rowBreak(shiftCursorDown?: number): void;
|
|
9
12
|
export declare function declareSplitter<T>(index: number, splitViewNode: RxNode<El<T>>): RxNode<El<HTMLElement>>;
|
|
10
13
|
export declare function cursor(areaParams: ElPlace): void;
|
|
11
14
|
export declare function Note(content: string, formatted?: boolean, declaration?: RxNodeDecl<El<HTMLElement, void>>): RxNode<El<HTMLElement, void>>;
|
|
12
|
-
export declare function Group<M = unknown,
|
|
15
|
+
export declare function Group<M = unknown>(script?: Script<El<HTMLElement, M>>, scriptAsync?: ScriptAsync<El<HTMLElement, M>>, key?: string, mode?: Mode, creation?: Script<El<HTMLElement, M>>, creationAsync?: ScriptAsync<El<HTMLElement, M>>, destruction?: Script<El<HTMLElement, M>>, triggers?: unknown, basis?: RxNodeDecl<El<HTMLElement, M>>): RxNode<El<HTMLElement, M>>;
|
|
16
|
+
export declare function Group<M = unknown>(declaration?: RxNodeDecl<El<HTMLElement, M>>): RxNode<El<HTMLElement, M>>;
|
|
13
17
|
export declare function Handling<M = unknown>(script: Script<El<void, M>>): RxNode<El<void, M>>;
|
|
14
|
-
export declare function SyntheticElement<M = unknown>(
|
|
18
|
+
export declare function SyntheticElement<M = unknown>(script?: Script<El<void, M>>, scriptAsync?: ScriptAsync<El<void, M>>, key?: string, mode?: Mode, creation?: Script<El<void, M>>, creationAsync?: ScriptAsync<El<void, M>>, destruction?: Script<El<void, M>>, triggers?: unknown, basis?: RxNodeDecl<El<void, M>>): RxNode<El<void, M>>;
|
|
19
|
+
export declare function SyntheticElement<M = unknown>(declaration?: RxNodeDecl<El<void, M>>): RxNode<El<void, M>>;
|
|
15
20
|
export declare class PanelDriver<T extends HTMLElement> extends HtmlDriver<T> {
|
|
16
21
|
update(node: RxNode<El<T>>): void | Promise<void>;
|
|
17
22
|
child(ownerNode: RxNode<El<T, any>>, childDriver: RxNodeDriver<any>, childDeclaration?: RxNodeDecl<any> | undefined, childBasis?: RxNodeDecl<any> | undefined): MergedItem<RxNode> | undefined;
|
|
@@ -4,18 +4,18 @@ import { getPrioritiesForEmptySpaceDistribution, getPrioritiesForSizeChanging, r
|
|
|
4
4
|
import { Axis, BodyFontSize, Dimension, toPx } from "./Sizes.js";
|
|
5
5
|
import { HtmlDriver } from "./HtmlDriver.js";
|
|
6
6
|
import { clamp } from "./ElUtils.js";
|
|
7
|
-
export function Panel(
|
|
8
|
-
return RxNode.declare(Drivers.panel,
|
|
7
|
+
export function Panel(scriptOrDeclaration, scriptAsync, key, mode, creation, creationAsync, destruction, triggers, basis) {
|
|
8
|
+
return RxNode.declare(Drivers.panel, scriptOrDeclaration, scriptAsync, key, mode, creation, creationAsync, destruction, triggers, basis);
|
|
9
9
|
}
|
|
10
|
-
export function Table(
|
|
11
|
-
return RxNode.declare(Drivers.table,
|
|
10
|
+
export function Table(scriptOrDeclaration, scriptAsync, key, mode, creation, creationAsync, destruction, triggers, basis) {
|
|
11
|
+
return RxNode.declare(Drivers.table, scriptOrDeclaration, scriptAsync, key, mode, creation, creationAsync, destruction, triggers, basis);
|
|
12
12
|
}
|
|
13
13
|
export function row(builder, shiftCursorDown) {
|
|
14
14
|
rowBreak(shiftCursorDown);
|
|
15
15
|
builder === null || builder === void 0 ? void 0 : builder();
|
|
16
16
|
}
|
|
17
|
-
export function Splitter(
|
|
18
|
-
return RxNode.declare(Drivers.splitter,
|
|
17
|
+
export function Splitter(scriptOrDeclaration, scriptAsync, key, mode, creation, creationAsync, destruction, triggers, basis) {
|
|
18
|
+
return RxNode.declare(Drivers.splitter, scriptOrDeclaration, scriptAsync, key, mode, creation, creationAsync, destruction, triggers, basis);
|
|
19
19
|
}
|
|
20
20
|
export function rowBreak(shiftCursorDown) {
|
|
21
21
|
RxNode.declare(Drivers.partition);
|
|
@@ -81,23 +81,23 @@ export function cursor(areaParams) {
|
|
|
81
81
|
});
|
|
82
82
|
}
|
|
83
83
|
export function Note(content, formatted, declaration) {
|
|
84
|
-
return RxNode.declare(Drivers.note, declaration, {
|
|
84
|
+
return RxNode.declare(Drivers.note, RxNode.rebased(declaration, {
|
|
85
85
|
script: el => {
|
|
86
86
|
if (formatted)
|
|
87
87
|
el.native.innerHTML = content;
|
|
88
88
|
else
|
|
89
89
|
el.native.innerText = content;
|
|
90
90
|
},
|
|
91
|
-
});
|
|
91
|
+
}));
|
|
92
92
|
}
|
|
93
|
-
export function Group(
|
|
94
|
-
return RxNode.declare(Drivers.group,
|
|
93
|
+
export function Group(scriptOrDeclaration, scriptAsync, key, mode, creation, creationAsync, destruction, triggers, basis) {
|
|
94
|
+
return RxNode.declare(Drivers.group, scriptOrDeclaration, scriptAsync, key, mode, creation, creationAsync, destruction, triggers, basis);
|
|
95
95
|
}
|
|
96
96
|
export function Handling(script) {
|
|
97
97
|
return SyntheticElement({ mode: Mode.independentUpdate, script });
|
|
98
98
|
}
|
|
99
|
-
export function SyntheticElement(
|
|
100
|
-
return RxNode.declare(Drivers.synthetic,
|
|
99
|
+
export function SyntheticElement(scriptOrDeclaration, scriptAsync, key, mode, creation, creationAsync, destruction, triggers, basis) {
|
|
100
|
+
return RxNode.declare(Drivers.synthetic, scriptOrDeclaration, scriptAsync, key, mode, creation, creationAsync, destruction, triggers, basis);
|
|
101
101
|
}
|
|
102
102
|
export class PanelDriver extends HtmlDriver {
|
|
103
103
|
update(node) {
|
|
@@ -121,7 +121,7 @@ export class PanelDriver extends HtmlDriver {
|
|
|
121
121
|
layoutInfo.contentSizeYpx = contentBoxPx.blockSize;
|
|
122
122
|
}
|
|
123
123
|
});
|
|
124
|
-
SyntheticElement({
|
|
124
|
+
const relayoutEl = SyntheticElement({
|
|
125
125
|
mode: Mode.independentUpdate,
|
|
126
126
|
script: () => {
|
|
127
127
|
const native = el.native;
|
|
@@ -155,7 +155,7 @@ export class PanelDriver extends HtmlDriver {
|
|
|
155
155
|
size.preferred = undefined;
|
|
156
156
|
preferred.push(i);
|
|
157
157
|
}
|
|
158
|
-
const sizePx =
|
|
158
|
+
const sizePx = partEl.layoutInfo.effectiveSizePx = clamp(partEl.layoutInfo.effectiveSizePx, minPx, maxPx);
|
|
159
159
|
sizesPx.push({ node: child.instance, sizePx });
|
|
160
160
|
i++;
|
|
161
161
|
}
|
|
@@ -169,6 +169,7 @@ export class PanelDriver extends HtmlDriver {
|
|
|
169
169
|
});
|
|
170
170
|
RxNode.updateNestedNodesThenDo(() => {
|
|
171
171
|
layoutInfo.isUpdateFinished = true;
|
|
172
|
+
RxNode.triggerUpdate(relayoutEl, { stamp: node.stamp });
|
|
172
173
|
});
|
|
173
174
|
}
|
|
174
175
|
return result;
|
|
@@ -3,5 +3,6 @@ import { FocusModel } from "./sensors/FocusSensor.js";
|
|
|
3
3
|
import { ResizedElement } from "./sensors/ResizeSensor.js";
|
|
4
4
|
import { PointerSensor } from "./sensors/PointerSensor.js";
|
|
5
5
|
export declare function OnClick(target: HTMLElement, action: ((pointer: PointerSensor) => void) | ToggleRef | undefined, key?: string): void;
|
|
6
|
+
export declare function OnClickAsync(target: HTMLElement, action: ((pointer: PointerSensor) => Promise<void>) | ToggleRef | undefined, key?: string): void;
|
|
6
7
|
export declare function OnResize(target: HTMLElement, action: ((element: ResizedElement) => void) | undefined, key?: string): void;
|
|
7
8
|
export declare function OnFocus(target: HTMLElement, model: FocusModel, switchEditMode?: ((model: FocusModel) => void) | undefined, key?: string): void;
|
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
2
|
+
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
3
|
+
return new (P || (P = Promise))(function (resolve, reject) {
|
|
4
|
+
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
5
|
+
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
6
|
+
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
7
|
+
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
8
|
+
});
|
|
9
|
+
};
|
|
1
10
|
import { Mode, ToggleRef, unobs } from "reactronic";
|
|
2
11
|
import { SyntheticElement } from "./Elements.js";
|
|
3
12
|
export function OnClick(target, action, key) {
|
|
@@ -20,6 +29,26 @@ export function OnClick(target, action, key) {
|
|
|
20
29
|
});
|
|
21
30
|
}
|
|
22
31
|
}
|
|
32
|
+
export function OnClickAsync(target, action, key) {
|
|
33
|
+
if (action !== undefined) {
|
|
34
|
+
SyntheticElement({
|
|
35
|
+
key,
|
|
36
|
+
mode: Mode.independentUpdate,
|
|
37
|
+
triggers: { target },
|
|
38
|
+
scriptAsync: (el) => __awaiter(this, void 0, void 0, function* () {
|
|
39
|
+
const pointer = target.sensors.pointer;
|
|
40
|
+
if (target.dataForSensor.click !== undefined && pointer.clicked === target.dataForSensor.click || target.dataForSensor.click === undefined && pointer.clicked) {
|
|
41
|
+
if (action instanceof Function) {
|
|
42
|
+
yield unobs(() => action(pointer));
|
|
43
|
+
}
|
|
44
|
+
else if (action instanceof ToggleRef) {
|
|
45
|
+
unobs(() => action.toggle());
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
}),
|
|
49
|
+
});
|
|
50
|
+
}
|
|
51
|
+
}
|
|
23
52
|
export function OnResize(target, action, key) {
|
|
24
53
|
if (action) {
|
|
25
54
|
SyntheticElement({
|
|
@@ -1,176 +1,176 @@
|
|
|
1
1
|
import { RxNode, RxNodeDecl } from "reactronic";
|
|
2
2
|
import { El } from "./El.js";
|
|
3
|
-
export declare function Page(declaration?: RxNodeDecl<El<HTMLBodyElement
|
|
4
|
-
export declare function A<M = unknown>(declaration?: RxNodeDecl<El<HTMLAnchorElement, M
|
|
5
|
-
export declare function Abbr<M = unknown>(declaration?: RxNodeDecl<El<HTMLElement, M
|
|
6
|
-
export declare function Address<M = unknown>(declaration?: RxNodeDecl<El<HTMLElement, M
|
|
7
|
-
export declare function Area<M = unknown>(declaration?: RxNodeDecl<El<HTMLAreaElement, M
|
|
8
|
-
export declare function Article<M = unknown>(declaration?: RxNodeDecl<El<HTMLElement, M
|
|
9
|
-
export declare function Aside<M = unknown>(declaration?: RxNodeDecl<El<HTMLElement, M
|
|
10
|
-
export declare function Audio<M = unknown>(declaration?: RxNodeDecl<El<HTMLAudioElement, M
|
|
11
|
-
export declare function B<M = unknown>(declaration?: RxNodeDecl<El<HTMLElement, M
|
|
12
|
-
export declare function Base<M = unknown>(declaration?: RxNodeDecl<El<HTMLBaseElement, M
|
|
13
|
-
export declare function Bdi<M = unknown>(declaration?: RxNodeDecl<El<HTMLElement, M
|
|
14
|
-
export declare function Bdo<M = unknown>(declaration?: RxNodeDecl<El<HTMLElement, M
|
|
15
|
-
export declare function Big<M = unknown>(declaration?: RxNodeDecl<El<HTMLElement, M
|
|
16
|
-
export declare function BlockQuote<M = unknown>(declaration?: RxNodeDecl<El<HTMLElement, M
|
|
17
|
-
export declare function Body<M = unknown>(declaration?: RxNodeDecl<El<HTMLBodyElement, M
|
|
18
|
-
export declare function BR<M = unknown>(declaration?: RxNodeDecl<El<HTMLBRElement, M
|
|
19
|
-
export declare function Button<M = unknown>(declaration?: RxNodeDecl<El<HTMLButtonElement, M
|
|
20
|
-
export declare function Canvas<M = unknown>(declaration?: RxNodeDecl<El<HTMLCanvasElement, M
|
|
21
|
-
export declare function Caption<M = unknown>(declaration?: RxNodeDecl<El<HTMLTableCaptionElement, M
|
|
22
|
-
export declare function Cite<M = unknown>(declaration?: RxNodeDecl<El<HTMLElement, M
|
|
23
|
-
export declare function Code<M = unknown>(declaration?: RxNodeDecl<El<HTMLElement, M
|
|
24
|
-
export declare function Col<M = unknown>(declaration?: RxNodeDecl<El<HTMLTableColElement, M
|
|
25
|
-
export declare function ColGroup<M = unknown>(declaration?: RxNodeDecl<El<HTMLTableColElement, M
|
|
26
|
-
export declare function Data<M = unknown>(declaration?: RxNodeDecl<El<HTMLDataElement, M
|
|
27
|
-
export declare function DataList<M = unknown>(declaration?: RxNodeDecl<El<HTMLDataListElement, M
|
|
28
|
-
export declare function DD<M = unknown>(declaration?: RxNodeDecl<El<HTMLElement, M
|
|
29
|
-
export declare function Del<M = unknown>(declaration?: RxNodeDecl<El<HTMLElement, M
|
|
30
|
-
export declare function Details<M = unknown>(declaration?: RxNodeDecl<El<HTMLElement, M
|
|
31
|
-
export declare function Dfn<M = unknown>(declaration?: RxNodeDecl<El<HTMLElement, M
|
|
32
|
-
export declare function Div<M = unknown>(declaration?: RxNodeDecl<El<HTMLDivElement, M
|
|
33
|
-
export declare function DL<M = unknown>(declaration?: RxNodeDecl<El<HTMLDListElement, M
|
|
34
|
-
export declare function DT<M = unknown>(declaration?: RxNodeDecl<El<HTMLElement, M
|
|
35
|
-
export declare function EM<M = unknown>(declaration?: RxNodeDecl<El<HTMLElement, M
|
|
36
|
-
export declare function Embed<M = unknown>(declaration?: RxNodeDecl<El<HTMLEmbedElement, M
|
|
37
|
-
export declare function FieldSet<M = unknown>(declaration?: RxNodeDecl<El<HTMLFieldSetElement, M
|
|
38
|
-
export declare function FigCaption<M = unknown>(declaration?: RxNodeDecl<El<HTMLElement, M
|
|
39
|
-
export declare function Figure<M = unknown>(declaration?: RxNodeDecl<El<HTMLElement, M
|
|
40
|
-
export declare function Footer<M = unknown>(declaration?: RxNodeDecl<El<HTMLElement, M
|
|
41
|
-
export declare function Form<M = unknown>(declaration?: RxNodeDecl<El<HTMLFormElement, M
|
|
42
|
-
export declare function H1<M = unknown>(declaration?: RxNodeDecl<El<HTMLHeadingElement, M
|
|
43
|
-
export declare function H2<M = unknown>(declaration?: RxNodeDecl<El<HTMLHeadingElement, M
|
|
44
|
-
export declare function H3<M = unknown>(declaration?: RxNodeDecl<El<HTMLHeadingElement, M
|
|
45
|
-
export declare function H4<M = unknown>(declaration?: RxNodeDecl<El<HTMLHeadingElement, M
|
|
46
|
-
export declare function H5<M = unknown>(declaration?: RxNodeDecl<El<HTMLHeadingElement, M
|
|
47
|
-
export declare function H6<M = unknown>(declaration?: RxNodeDecl<El<HTMLHeadingElement, M
|
|
48
|
-
export declare function Head<M = unknown>(declaration?: RxNodeDecl<El<HTMLHeadElement, M
|
|
49
|
-
export declare function Header<M = unknown>(declaration?: RxNodeDecl<El<HTMLElement, M
|
|
50
|
-
export declare function HGroup<M = unknown>(declaration?: RxNodeDecl<El<HTMLElement, M
|
|
51
|
-
export declare function HR<M = unknown>(declaration?: RxNodeDecl<El<HTMLHRElement, M
|
|
52
|
-
export declare function Html<M = unknown>(declaration?: RxNodeDecl<El<HTMLHtmlElement, M
|
|
53
|
-
export declare function I<M = unknown>(declaration?: RxNodeDecl<El<HTMLElement, M
|
|
54
|
-
export declare function IFrame<M = unknown>(declaration?: RxNodeDecl<El<HTMLIFrameElement, M
|
|
55
|
-
export declare function Img<M = unknown>(declaration?: RxNodeDecl<El<HTMLImageElement, M
|
|
56
|
-
export declare function Input<M = unknown>(declaration?: RxNodeDecl<El<HTMLInputElement, M
|
|
57
|
-
export declare function Ins<M = unknown>(declaration?: RxNodeDecl<El<HTMLModElement, M
|
|
58
|
-
export declare function Kbd<M = unknown>(declaration?: RxNodeDecl<El<HTMLElement, M
|
|
59
|
-
export declare function KeyGen<M = unknown>(declaration?: RxNodeDecl<El<HTMLElement, M
|
|
60
|
-
export declare function Label<M = unknown>(declaration?: RxNodeDecl<El<HTMLLabelElement, M
|
|
61
|
-
export declare function Legend<M = unknown>(declaration?: RxNodeDecl<El<HTMLLegendElement, M
|
|
62
|
-
export declare function LI<M = unknown>(declaration?: RxNodeDecl<El<HTMLLIElement, M
|
|
63
|
-
export declare function Link<M = unknown>(declaration?: RxNodeDecl<El<HTMLLinkElement, M
|
|
64
|
-
export declare function Main<M = unknown>(declaration?: RxNodeDecl<El<HTMLElement, M
|
|
65
|
-
export declare function Map<M = unknown>(declaration?: RxNodeDecl<El<HTMLMapElement, M
|
|
66
|
-
export declare function Mark<M = unknown>(declaration?: RxNodeDecl<El<HTMLElement, M
|
|
67
|
-
export declare function Menu<M = unknown>(declaration?: RxNodeDecl<El<HTMLElement, M
|
|
68
|
-
export declare function MenuItem<M = unknown>(declaration?: RxNodeDecl<El<HTMLElement, M
|
|
69
|
-
export declare function Meta<M = unknown>(declaration?: RxNodeDecl<El<HTMLMetaElement, M
|
|
70
|
-
export declare function Meter<M = unknown>(declaration?: RxNodeDecl<El<HTMLElement, M
|
|
71
|
-
export declare function Nav<M = unknown>(declaration?: RxNodeDecl<El<HTMLElement, M
|
|
72
|
-
export declare function NoIndex<M = unknown>(declaration?: RxNodeDecl<El<HTMLElement, M
|
|
73
|
-
export declare function NoScript<M = unknown>(declaration?: RxNodeDecl<El<HTMLElement, M
|
|
74
|
-
export declare function Obj<M = unknown>(declaration?: RxNodeDecl<El<HTMLObjectElement, M
|
|
75
|
-
export declare function OL<M = unknown>(declaration?: RxNodeDecl<El<HTMLOListElement, M
|
|
76
|
-
export declare function OptGroup<M = unknown>(declaration?: RxNodeDecl<El<HTMLOptGroupElement, M
|
|
77
|
-
export declare function Option<M = unknown>(declaration?: RxNodeDecl<El<HTMLOptionElement, M
|
|
78
|
-
export declare function Output<M = unknown>(declaration?: RxNodeDecl<El<HTMLElement, M
|
|
79
|
-
export declare function P<M = unknown>(declaration?: RxNodeDecl<El<HTMLParagraphElement, M
|
|
80
|
-
export declare function Param<M = unknown>(declaration?: RxNodeDecl<El<HTMLElement, M
|
|
81
|
-
export declare function Picture<M = unknown>(declaration?: RxNodeDecl<El<HTMLElement, M
|
|
82
|
-
export declare function Pre<M = unknown>(declaration?: RxNodeDecl<El<HTMLPreElement, M
|
|
83
|
-
export declare function Progress<M = unknown>(declaration?: RxNodeDecl<El<HTMLProgressElement, M
|
|
84
|
-
export declare function Q<M = unknown>(declaration?: RxNodeDecl<El<HTMLQuoteElement, M
|
|
85
|
-
export declare function RP<M = unknown>(declaration?: RxNodeDecl<El<HTMLElement, M
|
|
86
|
-
export declare function RT<M = unknown>(declaration?: RxNodeDecl<El<HTMLElement, M
|
|
87
|
-
export declare function Ruby<M = unknown>(declaration?: RxNodeDecl<El<HTMLElement, M
|
|
88
|
-
export declare function S<M = unknown>(declaration?: RxNodeDecl<El<HTMLElement, M
|
|
89
|
-
export declare function Samp<M = unknown>(declaration?: RxNodeDecl<El<HTMLElement, M
|
|
90
|
-
export declare function Script<M = unknown>(declaration?: RxNodeDecl<El<HTMLScriptElement, M
|
|
91
|
-
export declare function Sctn<M = unknown>(declaration?: RxNodeDecl<El<HTMLElement, M
|
|
92
|
-
export declare function Select<M = unknown>(declaration?: RxNodeDecl<El<HTMLSelectElement, M
|
|
93
|
-
export declare function Small<M = unknown>(declaration?: RxNodeDecl<El<HTMLElement, M
|
|
94
|
-
export declare function Source<M = unknown>(declaration?: RxNodeDecl<El<HTMLSourceElement, M
|
|
95
|
-
export declare function Span<M = unknown>(declaration?: RxNodeDecl<El<HTMLSpanElement, M
|
|
96
|
-
export declare function Strong<M = unknown>(declaration?: RxNodeDecl<El<HTMLElement, M
|
|
97
|
-
export declare function Style<M = unknown>(declaration?: RxNodeDecl<El<HTMLStyleElement, M
|
|
98
|
-
export declare function Sub<M = unknown>(declaration?: RxNodeDecl<El<HTMLElement, M
|
|
99
|
-
export declare function Summary<M = unknown>(declaration?: RxNodeDecl<El<HTMLElement, M
|
|
100
|
-
export declare function Sup<M = unknown>(declaration?: RxNodeDecl<El<HTMLElement, M
|
|
101
|
-
export declare function Tbl<M = unknown>(declaration?: RxNodeDecl<El<HTMLTableElement, M
|
|
102
|
-
export declare function Template<M = unknown>(declaration?: RxNodeDecl<El<HTMLTemplateElement, M
|
|
103
|
-
export declare function TBody<M = unknown>(declaration?: RxNodeDecl<El<HTMLTableSectionElement, M
|
|
104
|
-
export declare function TD<M = unknown>(declaration?: RxNodeDecl<El<HTMLTableCellElement, M
|
|
105
|
-
export declare function TextArea<M = unknown>(declaration?: RxNodeDecl<El<HTMLTextAreaElement, M
|
|
106
|
-
export declare function TFoot<M = unknown>(declaration?: RxNodeDecl<El<HTMLTableSectionElement, M
|
|
107
|
-
export declare function TH<M = unknown>(declaration?: RxNodeDecl<El<HTMLTableCellElement, M
|
|
108
|
-
export declare function THead<M = unknown>(declaration?: RxNodeDecl<El<HTMLTableSectionElement, M
|
|
109
|
-
export declare function Time<M = unknown>(declaration?: RxNodeDecl<El<HTMLElement, M
|
|
110
|
-
export declare function Title<M = unknown>(declaration?: RxNodeDecl<El<HTMLTitleElement, M
|
|
111
|
-
export declare function TR<M = unknown>(declaration?: RxNodeDecl<El<HTMLTableRowElement, M
|
|
112
|
-
export declare function Track<M = unknown>(declaration?: RxNodeDecl<El<HTMLTrackElement, M
|
|
113
|
-
export declare function U<M = unknown>(declaration?: RxNodeDecl<El<HTMLElement, M
|
|
114
|
-
export declare function UL<M = unknown>(declaration?: RxNodeDecl<El<HTMLUListElement, M
|
|
115
|
-
export declare function Var<M = unknown>(declaration?: RxNodeDecl<El<HTMLElement, M
|
|
116
|
-
export declare function Video<M = unknown>(declaration?: RxNodeDecl<El<HTMLVideoElement, M
|
|
117
|
-
export declare function Wbr<M = unknown>(declaration?: RxNodeDecl<El<HTMLElement, M
|
|
118
|
-
export declare function Svg<M = unknown>(declaration?: RxNodeDecl<El<SVGSVGElement, M
|
|
119
|
-
export declare function SvgA<M = unknown>(declaration?: RxNodeDecl<El<SVGAElement, M
|
|
120
|
-
export declare function Animate<M = unknown>(declaration?: RxNodeDecl<El<SVGAnimateElement, M
|
|
121
|
-
export declare function AnimateMotion<M = unknown>(declaration?: RxNodeDecl<El<SVGAnimateMotionElement, M
|
|
122
|
-
export declare function AnimateTransform<M = unknown>(declaration?: RxNodeDecl<El<SVGAnimateTransformElement, M
|
|
123
|
-
export declare function Circle<M = unknown>(declaration?: RxNodeDecl<El<SVGCircleElement, M
|
|
124
|
-
export declare function ClipPath<M = unknown>(declaration?: RxNodeDecl<El<SVGClipPathElement, M
|
|
125
|
-
export declare function Defs<M = unknown>(declaration?: RxNodeDecl<El<SVGDefsElement, M
|
|
126
|
-
export declare function Desc<M = unknown>(declaration?: RxNodeDecl<El<SVGDescElement, M
|
|
127
|
-
export declare function Ellipse<M = unknown>(declaration?: RxNodeDecl<El<SVGEllipseElement, M
|
|
128
|
-
export declare function FeBlend<M = unknown>(declaration?: RxNodeDecl<El<SVGFEBlendElement, M
|
|
129
|
-
export declare function FeColorMatrix<M = unknown>(declaration?: RxNodeDecl<El<SVGFEColorMatrixElement, M
|
|
130
|
-
export declare function FeComponentTransfer<M = unknown>(declaration?: RxNodeDecl<El<SVGFEComponentTransferElement, M
|
|
131
|
-
export declare function FeComposite<M = unknown>(declaration?: RxNodeDecl<El<SVGFECompositeElement, M
|
|
132
|
-
export declare function FeConvolveMatrix<M = unknown>(declaration?: RxNodeDecl<El<SVGFEConvolveMatrixElement, M
|
|
133
|
-
export declare function FeDiffuseLighting<M = unknown>(declaration?: RxNodeDecl<El<SVGFEDiffuseLightingElement, M
|
|
134
|
-
export declare function FeDisplacementMap<M = unknown>(declaration?: RxNodeDecl<El<SVGFEDisplacementMapElement, M
|
|
135
|
-
export declare function FeDistantLight<M = unknown>(declaration?: RxNodeDecl<El<SVGFEDistantLightElement, M
|
|
136
|
-
export declare function FeDropShadow<M = unknown>(declaration?: RxNodeDecl<El<SVGFEDropShadowElement, M
|
|
137
|
-
export declare function FeFlood<M = unknown>(declaration?: RxNodeDecl<El<SVGFEFloodElement, M
|
|
138
|
-
export declare function FeFuncA<M = unknown>(declaration?: RxNodeDecl<El<SVGFEFuncAElement, M
|
|
139
|
-
export declare function FeFuncB<M = unknown>(declaration?: RxNodeDecl<El<SVGFEFuncBElement, M
|
|
140
|
-
export declare function FeFuncG<M = unknown>(declaration?: RxNodeDecl<El<SVGFEFuncGElement, M
|
|
141
|
-
export declare function FeFuncR<M = unknown>(declaration?: RxNodeDecl<El<SVGFEFuncRElement, M
|
|
142
|
-
export declare function FeGaussianBlur<M = unknown>(declaration?: RxNodeDecl<El<SVGFEGaussianBlurElement, M
|
|
143
|
-
export declare function FeImage<M = unknown>(declaration?: RxNodeDecl<El<SVGFEImageElement, M
|
|
144
|
-
export declare function FeMerge<M = unknown>(declaration?: RxNodeDecl<El<SVGFEMergeElement, M
|
|
145
|
-
export declare function FeMergeNode<M = unknown>(declaration?: RxNodeDecl<El<SVGFEMergeNodeElement, M
|
|
146
|
-
export declare function FeMorphology<M = unknown>(declaration?: RxNodeDecl<El<SVGFEMorphologyElement, M
|
|
147
|
-
export declare function FeOffset<M = unknown>(declaration?: RxNodeDecl<El<SVGFEOffsetElement, M
|
|
148
|
-
export declare function FePointLight<M = unknown>(declaration?: RxNodeDecl<El<SVGFEPointLightElement, M
|
|
149
|
-
export declare function FeSpecularLighting<M = unknown>(declaration?: RxNodeDecl<El<SVGFESpecularLightingElement, M
|
|
150
|
-
export declare function FeSpotLight<M = unknown>(declaration?: RxNodeDecl<El<SVGFESpotLightElement, M
|
|
151
|
-
export declare function FeTile<M = unknown>(declaration?: RxNodeDecl<El<SVGFETileElement, M
|
|
152
|
-
export declare function FeTurbulence<M = unknown>(declaration?: RxNodeDecl<El<SVGFETurbulenceElement, M
|
|
153
|
-
export declare function Filter<M = unknown>(declaration?: RxNodeDecl<El<SVGFilterElement, M
|
|
154
|
-
export declare function ForeignObject<M = unknown>(declaration?: RxNodeDecl<El<SVGForeignObjectElement, M
|
|
155
|
-
export declare function G<M = unknown>(declaration?: RxNodeDecl<El<SVGGElement, M
|
|
156
|
-
export declare function SvgImage<M = unknown>(declaration?: RxNodeDecl<El<SVGImageElement, M
|
|
157
|
-
export declare function SvgLine<M = unknown>(declaration?: RxNodeDecl<El<SVGLineElement, M
|
|
158
|
-
export declare function LinearGradient<M = unknown>(declaration?: RxNodeDecl<El<SVGLinearGradientElement, M
|
|
159
|
-
export declare function Marker<M = unknown>(declaration?: RxNodeDecl<El<SVGMarkerElement, M
|
|
160
|
-
export declare function Mask<M = unknown>(declaration?: RxNodeDecl<El<SVGMaskElement, M
|
|
161
|
-
export declare function MetaData<M = unknown>(declaration?: RxNodeDecl<El<SVGMetadataElement, M
|
|
162
|
-
export declare function MPath<M = unknown>(declaration?: RxNodeDecl<El<SVGElement, M
|
|
163
|
-
export declare function Path<M = unknown>(declaration?: RxNodeDecl<El<SVGPathElement, M
|
|
164
|
-
export declare function Pattern<M = unknown>(declaration?: RxNodeDecl<El<SVGPatternElement, M
|
|
165
|
-
export declare function Polygon<M = unknown>(declaration?: RxNodeDecl<El<SVGPolygonElement, M
|
|
166
|
-
export declare function PolyLine<M = unknown>(declaration?: RxNodeDecl<El<SVGPolylineElement, M
|
|
167
|
-
export declare function RadialGradient<M = unknown>(declaration?: RxNodeDecl<El<SVGRadialGradientElement, M
|
|
168
|
-
export declare function Rect<M = unknown>(declaration?: RxNodeDecl<El<SVGRectElement, M
|
|
169
|
-
export declare function Stop<M = unknown>(declaration?: RxNodeDecl<El<SVGStopElement, M
|
|
170
|
-
export declare function SvgSwitch<M = unknown>(declaration?: RxNodeDecl<El<SVGSwitchElement, M
|
|
171
|
-
export declare function Symbol<M = unknown>(declaration?: RxNodeDecl<El<SVGSymbolElement, M
|
|
172
|
-
export declare function Text<M = unknown>(declaration?: RxNodeDecl<El<SVGTextElement, M
|
|
173
|
-
export declare function TextPath<M = unknown>(declaration?: RxNodeDecl<El<SVGTextPathElement, M
|
|
174
|
-
export declare function TSpan<M = unknown>(declaration?: RxNodeDecl<El<SVGTSpanElement, M
|
|
175
|
-
export declare function Use<M = unknown>(declaration?: RxNodeDecl<El<SVGUseElement, M
|
|
176
|
-
export declare function View<M = unknown>(declaration?: RxNodeDecl<El<SVGViewElement, M
|
|
3
|
+
export declare function Page(declaration?: RxNodeDecl<El<HTMLBodyElement>>): RxNode<El<HTMLBodyElement>>;
|
|
4
|
+
export declare function A<M = unknown>(declaration?: RxNodeDecl<El<HTMLAnchorElement, M>>): RxNode<El<HTMLAnchorElement, M>>;
|
|
5
|
+
export declare function Abbr<M = unknown>(declaration?: RxNodeDecl<El<HTMLElement, M>>): RxNode<El<HTMLElement, M>>;
|
|
6
|
+
export declare function Address<M = unknown>(declaration?: RxNodeDecl<El<HTMLElement, M>>): RxNode<El<HTMLElement, M>>;
|
|
7
|
+
export declare function Area<M = unknown>(declaration?: RxNodeDecl<El<HTMLAreaElement, M>>): RxNode<El<HTMLAreaElement, M>>;
|
|
8
|
+
export declare function Article<M = unknown>(declaration?: RxNodeDecl<El<HTMLElement, M>>): RxNode<El<HTMLElement, M>>;
|
|
9
|
+
export declare function Aside<M = unknown>(declaration?: RxNodeDecl<El<HTMLElement, M>>): RxNode<El<HTMLElement, M>>;
|
|
10
|
+
export declare function Audio<M = unknown>(declaration?: RxNodeDecl<El<HTMLAudioElement, M>>): RxNode<El<HTMLAudioElement, M>>;
|
|
11
|
+
export declare function B<M = unknown>(declaration?: RxNodeDecl<El<HTMLElement, M>>): RxNode<El<HTMLElement, M>>;
|
|
12
|
+
export declare function Base<M = unknown>(declaration?: RxNodeDecl<El<HTMLBaseElement, M>>): RxNode<El<HTMLBaseElement, M>>;
|
|
13
|
+
export declare function Bdi<M = unknown>(declaration?: RxNodeDecl<El<HTMLElement, M>>): RxNode<El<HTMLElement, M>>;
|
|
14
|
+
export declare function Bdo<M = unknown>(declaration?: RxNodeDecl<El<HTMLElement, M>>): RxNode<El<HTMLElement, M>>;
|
|
15
|
+
export declare function Big<M = unknown>(declaration?: RxNodeDecl<El<HTMLElement, M>>): RxNode<El<HTMLElement, M>>;
|
|
16
|
+
export declare function BlockQuote<M = unknown>(declaration?: RxNodeDecl<El<HTMLElement, M>>): RxNode<El<HTMLElement, M>>;
|
|
17
|
+
export declare function Body<M = unknown>(declaration?: RxNodeDecl<El<HTMLBodyElement, M>>): RxNode<El<HTMLBodyElement, M>>;
|
|
18
|
+
export declare function BR<M = unknown>(declaration?: RxNodeDecl<El<HTMLBRElement, M>>): RxNode<El<HTMLBRElement, M>>;
|
|
19
|
+
export declare function Button<M = unknown>(declaration?: RxNodeDecl<El<HTMLButtonElement, M>>): RxNode<El<HTMLButtonElement, M>>;
|
|
20
|
+
export declare function Canvas<M = unknown>(declaration?: RxNodeDecl<El<HTMLCanvasElement, M>>): RxNode<El<HTMLCanvasElement, M>>;
|
|
21
|
+
export declare function Caption<M = unknown>(declaration?: RxNodeDecl<El<HTMLTableCaptionElement, M>>): RxNode<El<HTMLTableCaptionElement, M>>;
|
|
22
|
+
export declare function Cite<M = unknown>(declaration?: RxNodeDecl<El<HTMLElement, M>>): RxNode<El<HTMLElement, M>>;
|
|
23
|
+
export declare function Code<M = unknown>(declaration?: RxNodeDecl<El<HTMLElement, M>>): RxNode<El<HTMLElement, M>>;
|
|
24
|
+
export declare function Col<M = unknown>(declaration?: RxNodeDecl<El<HTMLTableColElement, M>>): RxNode<El<HTMLTableColElement, M>>;
|
|
25
|
+
export declare function ColGroup<M = unknown>(declaration?: RxNodeDecl<El<HTMLTableColElement, M>>): RxNode<El<HTMLTableColElement, M>>;
|
|
26
|
+
export declare function Data<M = unknown>(declaration?: RxNodeDecl<El<HTMLDataElement, M>>): RxNode<El<HTMLDataElement, M>>;
|
|
27
|
+
export declare function DataList<M = unknown>(declaration?: RxNodeDecl<El<HTMLDataListElement, M>>): RxNode<El<HTMLDataListElement, M>>;
|
|
28
|
+
export declare function DD<M = unknown>(declaration?: RxNodeDecl<El<HTMLElement, M>>): RxNode<El<HTMLElement, M>>;
|
|
29
|
+
export declare function Del<M = unknown>(declaration?: RxNodeDecl<El<HTMLElement, M>>): RxNode<El<HTMLElement, M>>;
|
|
30
|
+
export declare function Details<M = unknown>(declaration?: RxNodeDecl<El<HTMLElement, M>>): RxNode<El<HTMLElement, M>>;
|
|
31
|
+
export declare function Dfn<M = unknown>(declaration?: RxNodeDecl<El<HTMLElement, M>>): RxNode<El<HTMLElement, M>>;
|
|
32
|
+
export declare function Div<M = unknown>(declaration?: RxNodeDecl<El<HTMLDivElement, M>>): RxNode<El<HTMLDivElement, M>>;
|
|
33
|
+
export declare function DL<M = unknown>(declaration?: RxNodeDecl<El<HTMLDListElement, M>>): RxNode<El<HTMLDListElement, M>>;
|
|
34
|
+
export declare function DT<M = unknown>(declaration?: RxNodeDecl<El<HTMLElement, M>>): RxNode<El<HTMLElement, M>>;
|
|
35
|
+
export declare function EM<M = unknown>(declaration?: RxNodeDecl<El<HTMLElement, M>>): RxNode<El<HTMLElement, M>>;
|
|
36
|
+
export declare function Embed<M = unknown>(declaration?: RxNodeDecl<El<HTMLEmbedElement, M>>): RxNode<El<HTMLEmbedElement, M>>;
|
|
37
|
+
export declare function FieldSet<M = unknown>(declaration?: RxNodeDecl<El<HTMLFieldSetElement, M>>): RxNode<El<HTMLFieldSetElement, M>>;
|
|
38
|
+
export declare function FigCaption<M = unknown>(declaration?: RxNodeDecl<El<HTMLElement, M>>): RxNode<El<HTMLElement, M>>;
|
|
39
|
+
export declare function Figure<M = unknown>(declaration?: RxNodeDecl<El<HTMLElement, M>>): RxNode<El<HTMLElement, M>>;
|
|
40
|
+
export declare function Footer<M = unknown>(declaration?: RxNodeDecl<El<HTMLElement, M>>): RxNode<El<HTMLElement, M>>;
|
|
41
|
+
export declare function Form<M = unknown>(declaration?: RxNodeDecl<El<HTMLFormElement, M>>): RxNode<El<HTMLFormElement, M>>;
|
|
42
|
+
export declare function H1<M = unknown>(declaration?: RxNodeDecl<El<HTMLHeadingElement, M>>): RxNode<El<HTMLHeadingElement, M>>;
|
|
43
|
+
export declare function H2<M = unknown>(declaration?: RxNodeDecl<El<HTMLHeadingElement, M>>): RxNode<El<HTMLHeadingElement, M>>;
|
|
44
|
+
export declare function H3<M = unknown>(declaration?: RxNodeDecl<El<HTMLHeadingElement, M>>): RxNode<El<HTMLHeadingElement, M>>;
|
|
45
|
+
export declare function H4<M = unknown>(declaration?: RxNodeDecl<El<HTMLHeadingElement, M>>): RxNode<El<HTMLHeadingElement, M>>;
|
|
46
|
+
export declare function H5<M = unknown>(declaration?: RxNodeDecl<El<HTMLHeadingElement, M>>): RxNode<El<HTMLHeadingElement, M>>;
|
|
47
|
+
export declare function H6<M = unknown>(declaration?: RxNodeDecl<El<HTMLHeadingElement, M>>): RxNode<El<HTMLHeadingElement, M>>;
|
|
48
|
+
export declare function Head<M = unknown>(declaration?: RxNodeDecl<El<HTMLHeadElement, M>>): RxNode<El<HTMLHeadElement, M>>;
|
|
49
|
+
export declare function Header<M = unknown>(declaration?: RxNodeDecl<El<HTMLElement, M>>): RxNode<El<HTMLElement, M>>;
|
|
50
|
+
export declare function HGroup<M = unknown>(declaration?: RxNodeDecl<El<HTMLElement, M>>): RxNode<El<HTMLElement, M>>;
|
|
51
|
+
export declare function HR<M = unknown>(declaration?: RxNodeDecl<El<HTMLHRElement, M>>): RxNode<El<HTMLHRElement, M>>;
|
|
52
|
+
export declare function Html<M = unknown>(declaration?: RxNodeDecl<El<HTMLHtmlElement, M>>): RxNode<El<HTMLHtmlElement, M>>;
|
|
53
|
+
export declare function I<M = unknown>(declaration?: RxNodeDecl<El<HTMLElement, M>>): RxNode<El<HTMLElement, M>>;
|
|
54
|
+
export declare function IFrame<M = unknown>(declaration?: RxNodeDecl<El<HTMLIFrameElement, M>>): RxNode<El<HTMLIFrameElement, M>>;
|
|
55
|
+
export declare function Img<M = unknown>(declaration?: RxNodeDecl<El<HTMLImageElement, M>>): RxNode<El<HTMLImageElement, M>>;
|
|
56
|
+
export declare function Input<M = unknown>(declaration?: RxNodeDecl<El<HTMLInputElement, M>>): RxNode<El<HTMLInputElement, M>>;
|
|
57
|
+
export declare function Ins<M = unknown>(declaration?: RxNodeDecl<El<HTMLModElement, M>>): RxNode<El<HTMLModElement, M>>;
|
|
58
|
+
export declare function Kbd<M = unknown>(declaration?: RxNodeDecl<El<HTMLElement, M>>): RxNode<El<HTMLElement, M>>;
|
|
59
|
+
export declare function KeyGen<M = unknown>(declaration?: RxNodeDecl<El<HTMLElement, M>>): RxNode<El<HTMLElement, M>>;
|
|
60
|
+
export declare function Label<M = unknown>(declaration?: RxNodeDecl<El<HTMLLabelElement, M>>): RxNode<El<HTMLLabelElement, M>>;
|
|
61
|
+
export declare function Legend<M = unknown>(declaration?: RxNodeDecl<El<HTMLLegendElement, M>>): RxNode<El<HTMLLegendElement, M>>;
|
|
62
|
+
export declare function LI<M = unknown>(declaration?: RxNodeDecl<El<HTMLLIElement, M>>): RxNode<El<HTMLLIElement, M>>;
|
|
63
|
+
export declare function Link<M = unknown>(declaration?: RxNodeDecl<El<HTMLLinkElement, M>>): RxNode<El<HTMLLinkElement, M>>;
|
|
64
|
+
export declare function Main<M = unknown>(declaration?: RxNodeDecl<El<HTMLElement, M>>): RxNode<El<HTMLElement, M>>;
|
|
65
|
+
export declare function Map<M = unknown>(declaration?: RxNodeDecl<El<HTMLMapElement, M>>): RxNode<El<HTMLMapElement, M>>;
|
|
66
|
+
export declare function Mark<M = unknown>(declaration?: RxNodeDecl<El<HTMLElement, M>>): RxNode<El<HTMLElement, M>>;
|
|
67
|
+
export declare function Menu<M = unknown>(declaration?: RxNodeDecl<El<HTMLElement, M>>): RxNode<El<HTMLElement, M>>;
|
|
68
|
+
export declare function MenuItem<M = unknown>(declaration?: RxNodeDecl<El<HTMLElement, M>>): RxNode<El<HTMLElement, M>>;
|
|
69
|
+
export declare function Meta<M = unknown>(declaration?: RxNodeDecl<El<HTMLMetaElement, M>>): RxNode<El<HTMLMetaElement, M>>;
|
|
70
|
+
export declare function Meter<M = unknown>(declaration?: RxNodeDecl<El<HTMLElement, M>>): RxNode<El<HTMLElement, M>>;
|
|
71
|
+
export declare function Nav<M = unknown>(declaration?: RxNodeDecl<El<HTMLElement, M>>): RxNode<El<HTMLElement, M>>;
|
|
72
|
+
export declare function NoIndex<M = unknown>(declaration?: RxNodeDecl<El<HTMLElement, M>>): RxNode<El<HTMLElement, M>>;
|
|
73
|
+
export declare function NoScript<M = unknown>(declaration?: RxNodeDecl<El<HTMLElement, M>>): RxNode<El<HTMLElement, M>>;
|
|
74
|
+
export declare function Obj<M = unknown>(declaration?: RxNodeDecl<El<HTMLObjectElement, M>>): RxNode<El<HTMLObjectElement, M>>;
|
|
75
|
+
export declare function OL<M = unknown>(declaration?: RxNodeDecl<El<HTMLOListElement, M>>): RxNode<El<HTMLOListElement, M>>;
|
|
76
|
+
export declare function OptGroup<M = unknown>(declaration?: RxNodeDecl<El<HTMLOptGroupElement, M>>): RxNode<El<HTMLOptGroupElement, M>>;
|
|
77
|
+
export declare function Option<M = unknown>(declaration?: RxNodeDecl<El<HTMLOptionElement, M>>): RxNode<El<HTMLOptionElement, M>>;
|
|
78
|
+
export declare function Output<M = unknown>(declaration?: RxNodeDecl<El<HTMLElement, M>>): RxNode<El<HTMLElement, M>>;
|
|
79
|
+
export declare function P<M = unknown>(declaration?: RxNodeDecl<El<HTMLParagraphElement, M>>): RxNode<El<HTMLParagraphElement, M>>;
|
|
80
|
+
export declare function Param<M = unknown>(declaration?: RxNodeDecl<El<HTMLElement, M>>): RxNode<El<HTMLElement, M>>;
|
|
81
|
+
export declare function Picture<M = unknown>(declaration?: RxNodeDecl<El<HTMLElement, M>>): RxNode<El<HTMLElement, M>>;
|
|
82
|
+
export declare function Pre<M = unknown>(declaration?: RxNodeDecl<El<HTMLPreElement, M>>): RxNode<El<HTMLPreElement, M>>;
|
|
83
|
+
export declare function Progress<M = unknown>(declaration?: RxNodeDecl<El<HTMLProgressElement, M>>): RxNode<El<HTMLProgressElement, M>>;
|
|
84
|
+
export declare function Q<M = unknown>(declaration?: RxNodeDecl<El<HTMLQuoteElement, M>>): RxNode<El<HTMLQuoteElement, M>>;
|
|
85
|
+
export declare function RP<M = unknown>(declaration?: RxNodeDecl<El<HTMLElement, M>>): RxNode<El<HTMLElement, M>>;
|
|
86
|
+
export declare function RT<M = unknown>(declaration?: RxNodeDecl<El<HTMLElement, M>>): RxNode<El<HTMLElement, M>>;
|
|
87
|
+
export declare function Ruby<M = unknown>(declaration?: RxNodeDecl<El<HTMLElement, M>>): RxNode<El<HTMLElement, M>>;
|
|
88
|
+
export declare function S<M = unknown>(declaration?: RxNodeDecl<El<HTMLElement, M>>): RxNode<El<HTMLElement, M>>;
|
|
89
|
+
export declare function Samp<M = unknown>(declaration?: RxNodeDecl<El<HTMLElement, M>>): RxNode<El<HTMLElement, M>>;
|
|
90
|
+
export declare function Script<M = unknown>(declaration?: RxNodeDecl<El<HTMLScriptElement, M>>): RxNode<El<HTMLScriptElement, M>>;
|
|
91
|
+
export declare function Sctn<M = unknown>(declaration?: RxNodeDecl<El<HTMLElement, M>>): RxNode<El<HTMLElement, M>>;
|
|
92
|
+
export declare function Select<M = unknown>(declaration?: RxNodeDecl<El<HTMLSelectElement, M>>): RxNode<El<HTMLSelectElement, M>>;
|
|
93
|
+
export declare function Small<M = unknown>(declaration?: RxNodeDecl<El<HTMLElement, M>>): RxNode<El<HTMLElement, M>>;
|
|
94
|
+
export declare function Source<M = unknown>(declaration?: RxNodeDecl<El<HTMLSourceElement, M>>): RxNode<El<HTMLSourceElement, M>>;
|
|
95
|
+
export declare function Span<M = unknown>(declaration?: RxNodeDecl<El<HTMLSpanElement, M>>): RxNode<El<HTMLSpanElement, M>>;
|
|
96
|
+
export declare function Strong<M = unknown>(declaration?: RxNodeDecl<El<HTMLElement, M>>): RxNode<El<HTMLElement, M>>;
|
|
97
|
+
export declare function Style<M = unknown>(declaration?: RxNodeDecl<El<HTMLStyleElement, M>>): RxNode<El<HTMLStyleElement, M>>;
|
|
98
|
+
export declare function Sub<M = unknown>(declaration?: RxNodeDecl<El<HTMLElement, M>>): RxNode<El<HTMLElement, M>>;
|
|
99
|
+
export declare function Summary<M = unknown>(declaration?: RxNodeDecl<El<HTMLElement, M>>): RxNode<El<HTMLElement, M>>;
|
|
100
|
+
export declare function Sup<M = unknown>(declaration?: RxNodeDecl<El<HTMLElement, M>>): RxNode<El<HTMLElement, M>>;
|
|
101
|
+
export declare function Tbl<M = unknown>(declaration?: RxNodeDecl<El<HTMLTableElement, M>>): RxNode<El<HTMLTableElement, M>>;
|
|
102
|
+
export declare function Template<M = unknown>(declaration?: RxNodeDecl<El<HTMLTemplateElement, M>>): RxNode<El<HTMLTemplateElement, M>>;
|
|
103
|
+
export declare function TBody<M = unknown>(declaration?: RxNodeDecl<El<HTMLTableSectionElement, M>>): RxNode<El<HTMLTableSectionElement, M>>;
|
|
104
|
+
export declare function TD<M = unknown>(declaration?: RxNodeDecl<El<HTMLTableCellElement, M>>): RxNode<El<HTMLTableCellElement, M>>;
|
|
105
|
+
export declare function TextArea<M = unknown>(declaration?: RxNodeDecl<El<HTMLTextAreaElement, M>>): RxNode<El<HTMLTextAreaElement, M>>;
|
|
106
|
+
export declare function TFoot<M = unknown>(declaration?: RxNodeDecl<El<HTMLTableSectionElement, M>>): RxNode<El<HTMLTableSectionElement, M>>;
|
|
107
|
+
export declare function TH<M = unknown>(declaration?: RxNodeDecl<El<HTMLTableCellElement, M>>): RxNode<El<HTMLTableCellElement, M>>;
|
|
108
|
+
export declare function THead<M = unknown>(declaration?: RxNodeDecl<El<HTMLTableSectionElement, M>>): RxNode<El<HTMLTableSectionElement, M>>;
|
|
109
|
+
export declare function Time<M = unknown>(declaration?: RxNodeDecl<El<HTMLElement, M>>): RxNode<El<HTMLElement, M>>;
|
|
110
|
+
export declare function Title<M = unknown>(declaration?: RxNodeDecl<El<HTMLTitleElement, M>>): RxNode<El<HTMLTitleElement, M>>;
|
|
111
|
+
export declare function TR<M = unknown>(declaration?: RxNodeDecl<El<HTMLTableRowElement, M>>): RxNode<El<HTMLTableRowElement, M>>;
|
|
112
|
+
export declare function Track<M = unknown>(declaration?: RxNodeDecl<El<HTMLTrackElement, M>>): RxNode<El<HTMLTrackElement, M>>;
|
|
113
|
+
export declare function U<M = unknown>(declaration?: RxNodeDecl<El<HTMLElement, M>>): RxNode<El<HTMLElement, M>>;
|
|
114
|
+
export declare function UL<M = unknown>(declaration?: RxNodeDecl<El<HTMLUListElement, M>>): RxNode<El<HTMLUListElement, M>>;
|
|
115
|
+
export declare function Var<M = unknown>(declaration?: RxNodeDecl<El<HTMLElement, M>>): RxNode<El<HTMLElement, M>>;
|
|
116
|
+
export declare function Video<M = unknown>(declaration?: RxNodeDecl<El<HTMLVideoElement, M>>): RxNode<El<HTMLVideoElement, M>>;
|
|
117
|
+
export declare function Wbr<M = unknown>(declaration?: RxNodeDecl<El<HTMLElement, M>>): RxNode<El<HTMLElement, M>>;
|
|
118
|
+
export declare function Svg<M = unknown>(declaration?: RxNodeDecl<El<SVGSVGElement, M>>): RxNode<El<SVGSVGElement, M>>;
|
|
119
|
+
export declare function SvgA<M = unknown>(declaration?: RxNodeDecl<El<SVGAElement, M>>): RxNode<El<SVGAElement, M>>;
|
|
120
|
+
export declare function Animate<M = unknown>(declaration?: RxNodeDecl<El<SVGAnimateElement, M>>): RxNode<El<SVGAnimateElement, M>>;
|
|
121
|
+
export declare function AnimateMotion<M = unknown>(declaration?: RxNodeDecl<El<SVGAnimateMotionElement, M>>): RxNode<El<SVGAnimateMotionElement, M>>;
|
|
122
|
+
export declare function AnimateTransform<M = unknown>(declaration?: RxNodeDecl<El<SVGAnimateTransformElement, M>>): RxNode<El<SVGAnimateTransformElement, M>>;
|
|
123
|
+
export declare function Circle<M = unknown>(declaration?: RxNodeDecl<El<SVGCircleElement, M>>): RxNode<El<SVGCircleElement, M>>;
|
|
124
|
+
export declare function ClipPath<M = unknown>(declaration?: RxNodeDecl<El<SVGClipPathElement, M>>): RxNode<El<SVGClipPathElement, M>>;
|
|
125
|
+
export declare function Defs<M = unknown>(declaration?: RxNodeDecl<El<SVGDefsElement, M>>): RxNode<El<SVGDefsElement, M>>;
|
|
126
|
+
export declare function Desc<M = unknown>(declaration?: RxNodeDecl<El<SVGDescElement, M>>): RxNode<El<SVGDescElement, M>>;
|
|
127
|
+
export declare function Ellipse<M = unknown>(declaration?: RxNodeDecl<El<SVGEllipseElement, M>>): RxNode<El<SVGEllipseElement, M>>;
|
|
128
|
+
export declare function FeBlend<M = unknown>(declaration?: RxNodeDecl<El<SVGFEBlendElement, M>>): RxNode<El<SVGFEBlendElement, M>>;
|
|
129
|
+
export declare function FeColorMatrix<M = unknown>(declaration?: RxNodeDecl<El<SVGFEColorMatrixElement, M>>): RxNode<El<SVGFEColorMatrixElement, M>>;
|
|
130
|
+
export declare function FeComponentTransfer<M = unknown>(declaration?: RxNodeDecl<El<SVGFEComponentTransferElement, M>>): RxNode<El<SVGFEComponentTransferElement, M>>;
|
|
131
|
+
export declare function FeComposite<M = unknown>(declaration?: RxNodeDecl<El<SVGFECompositeElement, M>>): RxNode<El<SVGFECompositeElement, M>>;
|
|
132
|
+
export declare function FeConvolveMatrix<M = unknown>(declaration?: RxNodeDecl<El<SVGFEConvolveMatrixElement, M>>): RxNode<El<SVGFEConvolveMatrixElement, M>>;
|
|
133
|
+
export declare function FeDiffuseLighting<M = unknown>(declaration?: RxNodeDecl<El<SVGFEDiffuseLightingElement, M>>): RxNode<El<SVGFEDiffuseLightingElement, M>>;
|
|
134
|
+
export declare function FeDisplacementMap<M = unknown>(declaration?: RxNodeDecl<El<SVGFEDisplacementMapElement, M>>): RxNode<El<SVGFEDisplacementMapElement, M>>;
|
|
135
|
+
export declare function FeDistantLight<M = unknown>(declaration?: RxNodeDecl<El<SVGFEDistantLightElement, M>>): RxNode<El<SVGFEDistantLightElement, M>>;
|
|
136
|
+
export declare function FeDropShadow<M = unknown>(declaration?: RxNodeDecl<El<SVGFEDropShadowElement, M>>): RxNode<El<SVGFEDropShadowElement, M>>;
|
|
137
|
+
export declare function FeFlood<M = unknown>(declaration?: RxNodeDecl<El<SVGFEFloodElement, M>>): RxNode<El<SVGFEFloodElement, M>>;
|
|
138
|
+
export declare function FeFuncA<M = unknown>(declaration?: RxNodeDecl<El<SVGFEFuncAElement, M>>): RxNode<El<SVGFEFuncAElement, M>>;
|
|
139
|
+
export declare function FeFuncB<M = unknown>(declaration?: RxNodeDecl<El<SVGFEFuncBElement, M>>): RxNode<El<SVGFEFuncBElement, M>>;
|
|
140
|
+
export declare function FeFuncG<M = unknown>(declaration?: RxNodeDecl<El<SVGFEFuncGElement, M>>): RxNode<El<SVGFEFuncGElement, M>>;
|
|
141
|
+
export declare function FeFuncR<M = unknown>(declaration?: RxNodeDecl<El<SVGFEFuncRElement, M>>): RxNode<El<SVGFEFuncRElement, M>>;
|
|
142
|
+
export declare function FeGaussianBlur<M = unknown>(declaration?: RxNodeDecl<El<SVGFEGaussianBlurElement, M>>): RxNode<El<SVGFEGaussianBlurElement, M>>;
|
|
143
|
+
export declare function FeImage<M = unknown>(declaration?: RxNodeDecl<El<SVGFEImageElement, M>>): RxNode<El<SVGFEImageElement, M>>;
|
|
144
|
+
export declare function FeMerge<M = unknown>(declaration?: RxNodeDecl<El<SVGFEMergeElement, M>>): RxNode<El<SVGFEMergeElement, M>>;
|
|
145
|
+
export declare function FeMergeNode<M = unknown>(declaration?: RxNodeDecl<El<SVGFEMergeNodeElement, M>>): RxNode<El<SVGFEMergeNodeElement, M>>;
|
|
146
|
+
export declare function FeMorphology<M = unknown>(declaration?: RxNodeDecl<El<SVGFEMorphologyElement, M>>): RxNode<El<SVGFEMorphologyElement, M>>;
|
|
147
|
+
export declare function FeOffset<M = unknown>(declaration?: RxNodeDecl<El<SVGFEOffsetElement, M>>): RxNode<El<SVGFEOffsetElement, M>>;
|
|
148
|
+
export declare function FePointLight<M = unknown>(declaration?: RxNodeDecl<El<SVGFEPointLightElement, M>>): RxNode<El<SVGFEPointLightElement, M>>;
|
|
149
|
+
export declare function FeSpecularLighting<M = unknown>(declaration?: RxNodeDecl<El<SVGFESpecularLightingElement, M>>): RxNode<El<SVGFESpecularLightingElement, M>>;
|
|
150
|
+
export declare function FeSpotLight<M = unknown>(declaration?: RxNodeDecl<El<SVGFESpotLightElement, M>>): RxNode<El<SVGFESpotLightElement, M>>;
|
|
151
|
+
export declare function FeTile<M = unknown>(declaration?: RxNodeDecl<El<SVGFETileElement, M>>): RxNode<El<SVGFETileElement, M>>;
|
|
152
|
+
export declare function FeTurbulence<M = unknown>(declaration?: RxNodeDecl<El<SVGFETurbulenceElement, M>>): RxNode<El<SVGFETurbulenceElement, M>>;
|
|
153
|
+
export declare function Filter<M = unknown>(declaration?: RxNodeDecl<El<SVGFilterElement, M>>): RxNode<El<SVGFilterElement, M>>;
|
|
154
|
+
export declare function ForeignObject<M = unknown>(declaration?: RxNodeDecl<El<SVGForeignObjectElement, M>>): RxNode<El<SVGForeignObjectElement, M>>;
|
|
155
|
+
export declare function G<M = unknown>(declaration?: RxNodeDecl<El<SVGGElement, M>>): RxNode<El<SVGGElement, M>>;
|
|
156
|
+
export declare function SvgImage<M = unknown>(declaration?: RxNodeDecl<El<SVGImageElement, M>>): RxNode<El<SVGImageElement, M>>;
|
|
157
|
+
export declare function SvgLine<M = unknown>(declaration?: RxNodeDecl<El<SVGLineElement, M>>): RxNode<El<SVGLineElement, M>>;
|
|
158
|
+
export declare function LinearGradient<M = unknown>(declaration?: RxNodeDecl<El<SVGLinearGradientElement, M>>): RxNode<El<SVGLinearGradientElement, M>>;
|
|
159
|
+
export declare function Marker<M = unknown>(declaration?: RxNodeDecl<El<SVGMarkerElement, M>>): RxNode<El<SVGMarkerElement, M>>;
|
|
160
|
+
export declare function Mask<M = unknown>(declaration?: RxNodeDecl<El<SVGMaskElement, M>>): RxNode<El<SVGMaskElement, M>>;
|
|
161
|
+
export declare function MetaData<M = unknown>(declaration?: RxNodeDecl<El<SVGMetadataElement, M>>): RxNode<El<SVGMetadataElement, M>>;
|
|
162
|
+
export declare function MPath<M = unknown>(declaration?: RxNodeDecl<El<SVGElement, M>>): RxNode<El<SVGElement, M>>;
|
|
163
|
+
export declare function Path<M = unknown>(declaration?: RxNodeDecl<El<SVGPathElement, M>>): RxNode<El<SVGPathElement, M>>;
|
|
164
|
+
export declare function Pattern<M = unknown>(declaration?: RxNodeDecl<El<SVGPatternElement, M>>): RxNode<El<SVGPatternElement, M>>;
|
|
165
|
+
export declare function Polygon<M = unknown>(declaration?: RxNodeDecl<El<SVGPolygonElement, M>>): RxNode<El<SVGPolygonElement, M>>;
|
|
166
|
+
export declare function PolyLine<M = unknown>(declaration?: RxNodeDecl<El<SVGPolylineElement, M>>): RxNode<El<SVGPolylineElement, M>>;
|
|
167
|
+
export declare function RadialGradient<M = unknown>(declaration?: RxNodeDecl<El<SVGRadialGradientElement, M>>): RxNode<El<SVGRadialGradientElement, M>>;
|
|
168
|
+
export declare function Rect<M = unknown>(declaration?: RxNodeDecl<El<SVGRectElement, M>>): RxNode<El<SVGRectElement, M>>;
|
|
169
|
+
export declare function Stop<M = unknown>(declaration?: RxNodeDecl<El<SVGStopElement, M>>): RxNode<El<SVGStopElement, M>>;
|
|
170
|
+
export declare function SvgSwitch<M = unknown>(declaration?: RxNodeDecl<El<SVGSwitchElement, M>>): RxNode<El<SVGSwitchElement, M>>;
|
|
171
|
+
export declare function Symbol<M = unknown>(declaration?: RxNodeDecl<El<SVGSymbolElement, M>>): RxNode<El<SVGSymbolElement, M>>;
|
|
172
|
+
export declare function Text<M = unknown>(declaration?: RxNodeDecl<El<SVGTextElement, M>>): RxNode<El<SVGTextElement, M>>;
|
|
173
|
+
export declare function TextPath<M = unknown>(declaration?: RxNodeDecl<El<SVGTextPathElement, M>>): RxNode<El<SVGTextPathElement, M>>;
|
|
174
|
+
export declare function TSpan<M = unknown>(declaration?: RxNodeDecl<El<SVGTSpanElement, M>>): RxNode<El<SVGTSpanElement, M>>;
|
|
175
|
+
export declare function Use<M = unknown>(declaration?: RxNodeDecl<El<SVGUseElement, M>>): RxNode<El<SVGUseElement, M>>;
|
|
176
|
+
export declare function View<M = unknown>(declaration?: RxNodeDecl<El<SVGViewElement, M>>): RxNode<El<SVGViewElement, M>>;
|
|
@@ -1,183 +1,183 @@
|
|
|
1
1
|
import { RxNode } from "reactronic";
|
|
2
2
|
import { ElKind } from "./El.js";
|
|
3
3
|
import { StaticDriver, HtmlDriver, SvgDriver } from "./HtmlDriver.js";
|
|
4
|
-
export function Page(declaration
|
|
4
|
+
export function Page(declaration) {
|
|
5
5
|
const driver = new StaticDriver(global.document.body, "Page", false, el => el.kind = ElKind.panel);
|
|
6
|
-
return RxNode.declare(driver, declaration
|
|
6
|
+
return RxNode.declare(driver, declaration);
|
|
7
7
|
}
|
|
8
|
-
export function A(declaration
|
|
9
|
-
export function Abbr(declaration
|
|
10
|
-
export function Address(declaration
|
|
11
|
-
export function Area(declaration
|
|
12
|
-
export function Article(declaration
|
|
13
|
-
export function Aside(declaration
|
|
14
|
-
export function Audio(declaration
|
|
15
|
-
export function B(declaration
|
|
16
|
-
export function Base(declaration
|
|
17
|
-
export function Bdi(declaration
|
|
18
|
-
export function Bdo(declaration
|
|
19
|
-
export function Big(declaration
|
|
20
|
-
export function BlockQuote(declaration
|
|
21
|
-
export function Body(declaration
|
|
22
|
-
export function BR(declaration
|
|
23
|
-
export function Button(declaration
|
|
24
|
-
export function Canvas(declaration
|
|
25
|
-
export function Caption(declaration
|
|
26
|
-
export function Cite(declaration
|
|
27
|
-
export function Code(declaration
|
|
28
|
-
export function Col(declaration
|
|
29
|
-
export function ColGroup(declaration
|
|
30
|
-
export function Data(declaration
|
|
31
|
-
export function DataList(declaration
|
|
32
|
-
export function DD(declaration
|
|
33
|
-
export function Del(declaration
|
|
34
|
-
export function Details(declaration
|
|
35
|
-
export function Dfn(declaration
|
|
36
|
-
export function Div(declaration
|
|
37
|
-
export function DL(declaration
|
|
38
|
-
export function DT(declaration
|
|
39
|
-
export function EM(declaration
|
|
40
|
-
export function Embed(declaration
|
|
41
|
-
export function FieldSet(declaration
|
|
42
|
-
export function FigCaption(declaration
|
|
43
|
-
export function Figure(declaration
|
|
44
|
-
export function Footer(declaration
|
|
45
|
-
export function Form(declaration
|
|
46
|
-
export function H1(declaration
|
|
47
|
-
export function H2(declaration
|
|
48
|
-
export function H3(declaration
|
|
49
|
-
export function H4(declaration
|
|
50
|
-
export function H5(declaration
|
|
51
|
-
export function H6(declaration
|
|
52
|
-
export function Head(declaration
|
|
53
|
-
export function Header(declaration
|
|
54
|
-
export function HGroup(declaration
|
|
55
|
-
export function HR(declaration
|
|
56
|
-
export function Html(declaration
|
|
57
|
-
export function I(declaration
|
|
58
|
-
export function IFrame(declaration
|
|
59
|
-
export function Img(declaration
|
|
60
|
-
export function Input(declaration
|
|
61
|
-
export function Ins(declaration
|
|
62
|
-
export function Kbd(declaration
|
|
63
|
-
export function KeyGen(declaration
|
|
64
|
-
export function Label(declaration
|
|
65
|
-
export function Legend(declaration
|
|
66
|
-
export function LI(declaration
|
|
67
|
-
export function Link(declaration
|
|
68
|
-
export function Main(declaration
|
|
69
|
-
export function Map(declaration
|
|
70
|
-
export function Mark(declaration
|
|
71
|
-
export function Menu(declaration
|
|
72
|
-
export function MenuItem(declaration
|
|
73
|
-
export function Meta(declaration
|
|
74
|
-
export function Meter(declaration
|
|
75
|
-
export function Nav(declaration
|
|
76
|
-
export function NoIndex(declaration
|
|
77
|
-
export function NoScript(declaration
|
|
78
|
-
export function Obj(declaration
|
|
79
|
-
export function OL(declaration
|
|
80
|
-
export function OptGroup(declaration
|
|
81
|
-
export function Option(declaration
|
|
82
|
-
export function Output(declaration
|
|
83
|
-
export function P(declaration
|
|
84
|
-
export function Param(declaration
|
|
85
|
-
export function Picture(declaration
|
|
86
|
-
export function Pre(declaration
|
|
87
|
-
export function Progress(declaration
|
|
88
|
-
export function Q(declaration
|
|
89
|
-
export function RP(declaration
|
|
90
|
-
export function RT(declaration
|
|
91
|
-
export function Ruby(declaration
|
|
92
|
-
export function S(declaration
|
|
93
|
-
export function Samp(declaration
|
|
94
|
-
export function Script(declaration
|
|
95
|
-
export function Sctn(declaration
|
|
96
|
-
export function Select(declaration
|
|
97
|
-
export function Small(declaration
|
|
98
|
-
export function Source(declaration
|
|
99
|
-
export function Span(declaration
|
|
100
|
-
export function Strong(declaration
|
|
101
|
-
export function Style(declaration
|
|
102
|
-
export function Sub(declaration
|
|
103
|
-
export function Summary(declaration
|
|
104
|
-
export function Sup(declaration
|
|
105
|
-
export function Tbl(declaration
|
|
106
|
-
export function Template(declaration
|
|
107
|
-
export function TBody(declaration
|
|
108
|
-
export function TD(declaration
|
|
109
|
-
export function TextArea(declaration
|
|
110
|
-
export function TFoot(declaration
|
|
111
|
-
export function TH(declaration
|
|
112
|
-
export function THead(declaration
|
|
113
|
-
export function Time(declaration
|
|
114
|
-
export function Title(declaration
|
|
115
|
-
export function TR(declaration
|
|
116
|
-
export function Track(declaration
|
|
117
|
-
export function U(declaration
|
|
118
|
-
export function UL(declaration
|
|
119
|
-
export function Var(declaration
|
|
120
|
-
export function Video(declaration
|
|
121
|
-
export function Wbr(declaration
|
|
122
|
-
export function Svg(declaration
|
|
123
|
-
export function SvgA(declaration
|
|
124
|
-
export function Animate(declaration
|
|
125
|
-
export function AnimateMotion(declaration
|
|
126
|
-
export function AnimateTransform(declaration
|
|
127
|
-
export function Circle(declaration
|
|
128
|
-
export function ClipPath(declaration
|
|
129
|
-
export function Defs(declaration
|
|
130
|
-
export function Desc(declaration
|
|
131
|
-
export function Ellipse(declaration
|
|
132
|
-
export function FeBlend(declaration
|
|
133
|
-
export function FeColorMatrix(declaration
|
|
134
|
-
export function FeComponentTransfer(declaration
|
|
135
|
-
export function FeComposite(declaration
|
|
136
|
-
export function FeConvolveMatrix(declaration
|
|
137
|
-
export function FeDiffuseLighting(declaration
|
|
138
|
-
export function FeDisplacementMap(declaration
|
|
139
|
-
export function FeDistantLight(declaration
|
|
140
|
-
export function FeDropShadow(declaration
|
|
141
|
-
export function FeFlood(declaration
|
|
142
|
-
export function FeFuncA(declaration
|
|
143
|
-
export function FeFuncB(declaration
|
|
144
|
-
export function FeFuncG(declaration
|
|
145
|
-
export function FeFuncR(declaration
|
|
146
|
-
export function FeGaussianBlur(declaration
|
|
147
|
-
export function FeImage(declaration
|
|
148
|
-
export function FeMerge(declaration
|
|
149
|
-
export function FeMergeNode(declaration
|
|
150
|
-
export function FeMorphology(declaration
|
|
151
|
-
export function FeOffset(declaration
|
|
152
|
-
export function FePointLight(declaration
|
|
153
|
-
export function FeSpecularLighting(declaration
|
|
154
|
-
export function FeSpotLight(declaration
|
|
155
|
-
export function FeTile(declaration
|
|
156
|
-
export function FeTurbulence(declaration
|
|
157
|
-
export function Filter(declaration
|
|
158
|
-
export function ForeignObject(declaration
|
|
159
|
-
export function G(declaration
|
|
160
|
-
export function SvgImage(declaration
|
|
161
|
-
export function SvgLine(declaration
|
|
162
|
-
export function LinearGradient(declaration
|
|
163
|
-
export function Marker(declaration
|
|
164
|
-
export function Mask(declaration
|
|
165
|
-
export function MetaData(declaration
|
|
166
|
-
export function MPath(declaration
|
|
167
|
-
export function Path(declaration
|
|
168
|
-
export function Pattern(declaration
|
|
169
|
-
export function Polygon(declaration
|
|
170
|
-
export function PolyLine(declaration
|
|
171
|
-
export function RadialGradient(declaration
|
|
172
|
-
export function Rect(declaration
|
|
173
|
-
export function Stop(declaration
|
|
174
|
-
export function SvgSwitch(declaration
|
|
175
|
-
export function Symbol(declaration
|
|
176
|
-
export function Text(declaration
|
|
177
|
-
export function TextPath(declaration
|
|
178
|
-
export function TSpan(declaration
|
|
179
|
-
export function Use(declaration
|
|
180
|
-
export function View(declaration
|
|
8
|
+
export function A(declaration) { return RxNode.declare(HtmlTags.a, declaration); }
|
|
9
|
+
export function Abbr(declaration) { return RxNode.declare(HtmlTags.abbr, declaration); }
|
|
10
|
+
export function Address(declaration) { return RxNode.declare(HtmlTags.address, declaration); }
|
|
11
|
+
export function Area(declaration) { return RxNode.declare(HtmlTags.area, declaration); }
|
|
12
|
+
export function Article(declaration) { return RxNode.declare(HtmlTags.article, declaration); }
|
|
13
|
+
export function Aside(declaration) { return RxNode.declare(HtmlTags.aside, declaration); }
|
|
14
|
+
export function Audio(declaration) { return RxNode.declare(HtmlTags.audio, declaration); }
|
|
15
|
+
export function B(declaration) { return RxNode.declare(HtmlTags.b, declaration); }
|
|
16
|
+
export function Base(declaration) { return RxNode.declare(HtmlTags.base, declaration); }
|
|
17
|
+
export function Bdi(declaration) { return RxNode.declare(HtmlTags.bdi, declaration); }
|
|
18
|
+
export function Bdo(declaration) { return RxNode.declare(HtmlTags.bdo, declaration); }
|
|
19
|
+
export function Big(declaration) { return RxNode.declare(HtmlTags.big, declaration); }
|
|
20
|
+
export function BlockQuote(declaration) { return RxNode.declare(HtmlTags.blockquote, declaration); }
|
|
21
|
+
export function Body(declaration) { return RxNode.declare(HtmlTags.body, declaration); }
|
|
22
|
+
export function BR(declaration) { return RxNode.declare(HtmlTags.br, declaration); }
|
|
23
|
+
export function Button(declaration) { return RxNode.declare(HtmlTags.button, declaration); }
|
|
24
|
+
export function Canvas(declaration) { return RxNode.declare(HtmlTags.canvas, declaration); }
|
|
25
|
+
export function Caption(declaration) { return RxNode.declare(HtmlTags.caption, declaration); }
|
|
26
|
+
export function Cite(declaration) { return RxNode.declare(HtmlTags.cite, declaration); }
|
|
27
|
+
export function Code(declaration) { return RxNode.declare(HtmlTags.code, declaration); }
|
|
28
|
+
export function Col(declaration) { return RxNode.declare(HtmlTags.col, declaration); }
|
|
29
|
+
export function ColGroup(declaration) { return RxNode.declare(HtmlTags.colgroup, declaration); }
|
|
30
|
+
export function Data(declaration) { return RxNode.declare(HtmlTags.data, declaration); }
|
|
31
|
+
export function DataList(declaration) { return RxNode.declare(HtmlTags.datalist, declaration); }
|
|
32
|
+
export function DD(declaration) { return RxNode.declare(HtmlTags.dd, declaration); }
|
|
33
|
+
export function Del(declaration) { return RxNode.declare(HtmlTags.del, declaration); }
|
|
34
|
+
export function Details(declaration) { return RxNode.declare(HtmlTags.details, declaration); }
|
|
35
|
+
export function Dfn(declaration) { return RxNode.declare(HtmlTags.dfn, declaration); }
|
|
36
|
+
export function Div(declaration) { return RxNode.declare(HtmlTags.div, declaration); }
|
|
37
|
+
export function DL(declaration) { return RxNode.declare(HtmlTags.dl, declaration); }
|
|
38
|
+
export function DT(declaration) { return RxNode.declare(HtmlTags.dt, declaration); }
|
|
39
|
+
export function EM(declaration) { return RxNode.declare(HtmlTags.em, declaration); }
|
|
40
|
+
export function Embed(declaration) { return RxNode.declare(HtmlTags.embed, declaration); }
|
|
41
|
+
export function FieldSet(declaration) { return RxNode.declare(HtmlTags.fieldset, declaration); }
|
|
42
|
+
export function FigCaption(declaration) { return RxNode.declare(HtmlTags.figcaption, declaration); }
|
|
43
|
+
export function Figure(declaration) { return RxNode.declare(HtmlTags.figure, declaration); }
|
|
44
|
+
export function Footer(declaration) { return RxNode.declare(HtmlTags.footer, declaration); }
|
|
45
|
+
export function Form(declaration) { return RxNode.declare(HtmlTags.form, declaration); }
|
|
46
|
+
export function H1(declaration) { return RxNode.declare(HtmlTags.h1, declaration); }
|
|
47
|
+
export function H2(declaration) { return RxNode.declare(HtmlTags.h2, declaration); }
|
|
48
|
+
export function H3(declaration) { return RxNode.declare(HtmlTags.h3, declaration); }
|
|
49
|
+
export function H4(declaration) { return RxNode.declare(HtmlTags.h4, declaration); }
|
|
50
|
+
export function H5(declaration) { return RxNode.declare(HtmlTags.h5, declaration); }
|
|
51
|
+
export function H6(declaration) { return RxNode.declare(HtmlTags.h6, declaration); }
|
|
52
|
+
export function Head(declaration) { return RxNode.declare(HtmlTags.head, declaration); }
|
|
53
|
+
export function Header(declaration) { return RxNode.declare(HtmlTags.header, declaration); }
|
|
54
|
+
export function HGroup(declaration) { return RxNode.declare(HtmlTags.hgroup, declaration); }
|
|
55
|
+
export function HR(declaration) { return RxNode.declare(HtmlTags.hr, declaration); }
|
|
56
|
+
export function Html(declaration) { return RxNode.declare(HtmlTags.html, declaration); }
|
|
57
|
+
export function I(declaration) { return RxNode.declare(HtmlTags.i, declaration); }
|
|
58
|
+
export function IFrame(declaration) { return RxNode.declare(HtmlTags.iframe, declaration); }
|
|
59
|
+
export function Img(declaration) { return RxNode.declare(HtmlTags.img, declaration); }
|
|
60
|
+
export function Input(declaration) { return RxNode.declare(HtmlTags.input, declaration); }
|
|
61
|
+
export function Ins(declaration) { return RxNode.declare(HtmlTags.ins, declaration); }
|
|
62
|
+
export function Kbd(declaration) { return RxNode.declare(HtmlTags.kbd, declaration); }
|
|
63
|
+
export function KeyGen(declaration) { return RxNode.declare(HtmlTags.keygen, declaration); }
|
|
64
|
+
export function Label(declaration) { return RxNode.declare(HtmlTags.label, declaration); }
|
|
65
|
+
export function Legend(declaration) { return RxNode.declare(HtmlTags.legend, declaration); }
|
|
66
|
+
export function LI(declaration) { return RxNode.declare(HtmlTags.li, declaration); }
|
|
67
|
+
export function Link(declaration) { return RxNode.declare(HtmlTags.link, declaration); }
|
|
68
|
+
export function Main(declaration) { return RxNode.declare(HtmlTags.main, declaration); }
|
|
69
|
+
export function Map(declaration) { return RxNode.declare(HtmlTags.map, declaration); }
|
|
70
|
+
export function Mark(declaration) { return RxNode.declare(HtmlTags.mark, declaration); }
|
|
71
|
+
export function Menu(declaration) { return RxNode.declare(HtmlTags.menu, declaration); }
|
|
72
|
+
export function MenuItem(declaration) { return RxNode.declare(HtmlTags.menuitem, declaration); }
|
|
73
|
+
export function Meta(declaration) { return RxNode.declare(HtmlTags.meta, declaration); }
|
|
74
|
+
export function Meter(declaration) { return RxNode.declare(HtmlTags.meter, declaration); }
|
|
75
|
+
export function Nav(declaration) { return RxNode.declare(HtmlTags.nav, declaration); }
|
|
76
|
+
export function NoIndex(declaration) { return RxNode.declare(HtmlTags.noindex, declaration); }
|
|
77
|
+
export function NoScript(declaration) { return RxNode.declare(HtmlTags.noscript, declaration); }
|
|
78
|
+
export function Obj(declaration) { return RxNode.declare(HtmlTags.object, declaration); }
|
|
79
|
+
export function OL(declaration) { return RxNode.declare(HtmlTags.ol, declaration); }
|
|
80
|
+
export function OptGroup(declaration) { return RxNode.declare(HtmlTags.optgroup, declaration); }
|
|
81
|
+
export function Option(declaration) { return RxNode.declare(HtmlTags.option, declaration); }
|
|
82
|
+
export function Output(declaration) { return RxNode.declare(HtmlTags.output, declaration); }
|
|
83
|
+
export function P(declaration) { return RxNode.declare(HtmlTags.p, declaration); }
|
|
84
|
+
export function Param(declaration) { return RxNode.declare(HtmlTags.param, declaration); }
|
|
85
|
+
export function Picture(declaration) { return RxNode.declare(HtmlTags.picture, declaration); }
|
|
86
|
+
export function Pre(declaration) { return RxNode.declare(HtmlTags.pre, declaration); }
|
|
87
|
+
export function Progress(declaration) { return RxNode.declare(HtmlTags.progress, declaration); }
|
|
88
|
+
export function Q(declaration) { return RxNode.declare(HtmlTags.q, declaration); }
|
|
89
|
+
export function RP(declaration) { return RxNode.declare(HtmlTags.rp, declaration); }
|
|
90
|
+
export function RT(declaration) { return RxNode.declare(HtmlTags.rt, declaration); }
|
|
91
|
+
export function Ruby(declaration) { return RxNode.declare(HtmlTags.ruby, declaration); }
|
|
92
|
+
export function S(declaration) { return RxNode.declare(HtmlTags.s, declaration); }
|
|
93
|
+
export function Samp(declaration) { return RxNode.declare(HtmlTags.samp, declaration); }
|
|
94
|
+
export function Script(declaration) { return RxNode.declare(HtmlTags.script, declaration); }
|
|
95
|
+
export function Sctn(declaration) { return RxNode.declare(HtmlTags.section, declaration); }
|
|
96
|
+
export function Select(declaration) { return RxNode.declare(HtmlTags.select, declaration); }
|
|
97
|
+
export function Small(declaration) { return RxNode.declare(HtmlTags.small, declaration); }
|
|
98
|
+
export function Source(declaration) { return RxNode.declare(HtmlTags.source, declaration); }
|
|
99
|
+
export function Span(declaration) { return RxNode.declare(HtmlTags.span, declaration); }
|
|
100
|
+
export function Strong(declaration) { return RxNode.declare(HtmlTags.strong, declaration); }
|
|
101
|
+
export function Style(declaration) { return RxNode.declare(HtmlTags.style, declaration); }
|
|
102
|
+
export function Sub(declaration) { return RxNode.declare(HtmlTags.sub, declaration); }
|
|
103
|
+
export function Summary(declaration) { return RxNode.declare(HtmlTags.summary, declaration); }
|
|
104
|
+
export function Sup(declaration) { return RxNode.declare(HtmlTags.sup, declaration); }
|
|
105
|
+
export function Tbl(declaration) { return RxNode.declare(HtmlTags.table, declaration); }
|
|
106
|
+
export function Template(declaration) { return RxNode.declare(HtmlTags.template, declaration); }
|
|
107
|
+
export function TBody(declaration) { return RxNode.declare(HtmlTags.tbody, declaration); }
|
|
108
|
+
export function TD(declaration) { return RxNode.declare(HtmlTags.td, declaration); }
|
|
109
|
+
export function TextArea(declaration) { return RxNode.declare(HtmlTags.textarea, declaration); }
|
|
110
|
+
export function TFoot(declaration) { return RxNode.declare(HtmlTags.tfoot, declaration); }
|
|
111
|
+
export function TH(declaration) { return RxNode.declare(HtmlTags.th, declaration); }
|
|
112
|
+
export function THead(declaration) { return RxNode.declare(HtmlTags.thead, declaration); }
|
|
113
|
+
export function Time(declaration) { return RxNode.declare(HtmlTags.time, declaration); }
|
|
114
|
+
export function Title(declaration) { return RxNode.declare(HtmlTags.title, declaration); }
|
|
115
|
+
export function TR(declaration) { return RxNode.declare(HtmlTags.tr, declaration); }
|
|
116
|
+
export function Track(declaration) { return RxNode.declare(HtmlTags.track, declaration); }
|
|
117
|
+
export function U(declaration) { return RxNode.declare(HtmlTags.u, declaration); }
|
|
118
|
+
export function UL(declaration) { return RxNode.declare(HtmlTags.ul, declaration); }
|
|
119
|
+
export function Var(declaration) { return RxNode.declare(HtmlTags.var, declaration); }
|
|
120
|
+
export function Video(declaration) { return RxNode.declare(HtmlTags.video, declaration); }
|
|
121
|
+
export function Wbr(declaration) { return RxNode.declare(HtmlTags.wbr, declaration); }
|
|
122
|
+
export function Svg(declaration) { return RxNode.declare(SvgTags.svg, declaration); }
|
|
123
|
+
export function SvgA(declaration) { return RxNode.declare(SvgTags.a, declaration); }
|
|
124
|
+
export function Animate(declaration) { return RxNode.declare(SvgTags.animate, declaration); }
|
|
125
|
+
export function AnimateMotion(declaration) { return RxNode.declare(SvgTags.animateMotion, declaration); }
|
|
126
|
+
export function AnimateTransform(declaration) { return RxNode.declare(SvgTags.animateTransform, declaration); }
|
|
127
|
+
export function Circle(declaration) { return RxNode.declare(SvgTags.circle, declaration); }
|
|
128
|
+
export function ClipPath(declaration) { return RxNode.declare(SvgTags.clipPath, declaration); }
|
|
129
|
+
export function Defs(declaration) { return RxNode.declare(SvgTags.defs, declaration); }
|
|
130
|
+
export function Desc(declaration) { return RxNode.declare(SvgTags.desc, declaration); }
|
|
131
|
+
export function Ellipse(declaration) { return RxNode.declare(SvgTags.ellipse, declaration); }
|
|
132
|
+
export function FeBlend(declaration) { return RxNode.declare(SvgTags.feBlend, declaration); }
|
|
133
|
+
export function FeColorMatrix(declaration) { return RxNode.declare(SvgTags.feColorMatrix, declaration); }
|
|
134
|
+
export function FeComponentTransfer(declaration) { return RxNode.declare(SvgTags.feComponentTransfer, declaration); }
|
|
135
|
+
export function FeComposite(declaration) { return RxNode.declare(SvgTags.feComposite, declaration); }
|
|
136
|
+
export function FeConvolveMatrix(declaration) { return RxNode.declare(SvgTags.feConvolveMatrix, declaration); }
|
|
137
|
+
export function FeDiffuseLighting(declaration) { return RxNode.declare(SvgTags.feDiffuseLighting, declaration); }
|
|
138
|
+
export function FeDisplacementMap(declaration) { return RxNode.declare(SvgTags.feDisplacementMap, declaration); }
|
|
139
|
+
export function FeDistantLight(declaration) { return RxNode.declare(SvgTags.feDistantLight, declaration); }
|
|
140
|
+
export function FeDropShadow(declaration) { return RxNode.declare(SvgTags.feDropShadow, declaration); }
|
|
141
|
+
export function FeFlood(declaration) { return RxNode.declare(SvgTags.feFlood, declaration); }
|
|
142
|
+
export function FeFuncA(declaration) { return RxNode.declare(SvgTags.feFuncA, declaration); }
|
|
143
|
+
export function FeFuncB(declaration) { return RxNode.declare(SvgTags.feFuncB, declaration); }
|
|
144
|
+
export function FeFuncG(declaration) { return RxNode.declare(SvgTags.feFuncG, declaration); }
|
|
145
|
+
export function FeFuncR(declaration) { return RxNode.declare(SvgTags.feFuncR, declaration); }
|
|
146
|
+
export function FeGaussianBlur(declaration) { return RxNode.declare(SvgTags.feGaussianBlur, declaration); }
|
|
147
|
+
export function FeImage(declaration) { return RxNode.declare(SvgTags.feImage, declaration); }
|
|
148
|
+
export function FeMerge(declaration) { return RxNode.declare(SvgTags.feMerge, declaration); }
|
|
149
|
+
export function FeMergeNode(declaration) { return RxNode.declare(SvgTags.feMergeNode, declaration); }
|
|
150
|
+
export function FeMorphology(declaration) { return RxNode.declare(SvgTags.feMorphology, declaration); }
|
|
151
|
+
export function FeOffset(declaration) { return RxNode.declare(SvgTags.feOffset, declaration); }
|
|
152
|
+
export function FePointLight(declaration) { return RxNode.declare(SvgTags.fePointLight, declaration); }
|
|
153
|
+
export function FeSpecularLighting(declaration) { return RxNode.declare(SvgTags.feSpecularLighting, declaration); }
|
|
154
|
+
export function FeSpotLight(declaration) { return RxNode.declare(SvgTags.feSpotLight, declaration); }
|
|
155
|
+
export function FeTile(declaration) { return RxNode.declare(SvgTags.feTile, declaration); }
|
|
156
|
+
export function FeTurbulence(declaration) { return RxNode.declare(SvgTags.feTurbulence, declaration); }
|
|
157
|
+
export function Filter(declaration) { return RxNode.declare(SvgTags.filter, declaration); }
|
|
158
|
+
export function ForeignObject(declaration) { return RxNode.declare(SvgTags.foreignObject, declaration); }
|
|
159
|
+
export function G(declaration) { return RxNode.declare(SvgTags.g, declaration); }
|
|
160
|
+
export function SvgImage(declaration) { return RxNode.declare(SvgTags.image, declaration); }
|
|
161
|
+
export function SvgLine(declaration) { return RxNode.declare(SvgTags.line, declaration); }
|
|
162
|
+
export function LinearGradient(declaration) { return RxNode.declare(SvgTags.linearGradient, declaration); }
|
|
163
|
+
export function Marker(declaration) { return RxNode.declare(SvgTags.marker, declaration); }
|
|
164
|
+
export function Mask(declaration) { return RxNode.declare(SvgTags.mask, declaration); }
|
|
165
|
+
export function MetaData(declaration) { return RxNode.declare(SvgTags.metadata, declaration); }
|
|
166
|
+
export function MPath(declaration) { return RxNode.declare(SvgTags.mpath, declaration); }
|
|
167
|
+
export function Path(declaration) { return RxNode.declare(SvgTags.path, declaration); }
|
|
168
|
+
export function Pattern(declaration) { return RxNode.declare(SvgTags.pattern, declaration); }
|
|
169
|
+
export function Polygon(declaration) { return RxNode.declare(SvgTags.polygon, declaration); }
|
|
170
|
+
export function PolyLine(declaration) { return RxNode.declare(SvgTags.polyline, declaration); }
|
|
171
|
+
export function RadialGradient(declaration) { return RxNode.declare(SvgTags.radialGradient, declaration); }
|
|
172
|
+
export function Rect(declaration) { return RxNode.declare(SvgTags.rect, declaration); }
|
|
173
|
+
export function Stop(declaration) { return RxNode.declare(SvgTags.stop, declaration); }
|
|
174
|
+
export function SvgSwitch(declaration) { return RxNode.declare(SvgTags.switch, declaration); }
|
|
175
|
+
export function Symbol(declaration) { return RxNode.declare(SvgTags.symbol, declaration); }
|
|
176
|
+
export function Text(declaration) { return RxNode.declare(SvgTags.text, declaration); }
|
|
177
|
+
export function TextPath(declaration) { return RxNode.declare(SvgTags.textPath, declaration); }
|
|
178
|
+
export function TSpan(declaration) { return RxNode.declare(SvgTags.tspan, declaration); }
|
|
179
|
+
export function Use(declaration) { return RxNode.declare(SvgTags.use, declaration); }
|
|
180
|
+
export function View(declaration) { return RxNode.declare(SvgTags.view, declaration); }
|
|
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),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "verstak",
|
|
3
|
-
"version": "0.24.
|
|
3
|
+
"version": "0.24.308",
|
|
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.
|
|
34
|
+
"reactronic": "^0.24.308"
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|
|
37
37
|
"@types/node": "20.11.17",
|