verstak 0.94.25029 → 0.94.25030
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/components/Button.v.js +3 -3
- package/build/dist/source/components/Icon.v.d.ts +2 -2
- package/build/dist/source/components/Icon.v.js +2 -2
- package/build/dist/source/components/Image.v.d.ts +2 -2
- package/build/dist/source/components/Image.v.js +2 -2
- package/build/dist/source/components/Input.v.d.ts +2 -2
- package/build/dist/source/components/Input.v.js +2 -2
- package/build/dist/source/components/Spinner.v.d.ts +2 -2
- package/build/dist/source/components/Spinner.v.js +2 -2
- package/build/dist/source/components/Toggle.v.js +3 -3
- package/build/dist/source/core/ElDriver.js +2 -2
- package/build/dist/source/core/Elements.js +13 -13
- package/build/dist/source/core/WebDriver.js +6 -6
- package/build/dist/source/core/sensors/Handlers.js +1 -1
- package/build/dist/source/html/DraggableArea.view.js +2 -2
- package/build/dist/source/html/HtmlElements.js +115 -115
- package/build/dist/source/svg/SvgElements.js +60 -60
- package/package.json +2 -2
|
@@ -1,16 +1,16 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ReactiveTreeNode, Mode } from "reactronic";
|
|
2
2
|
import { Division, JustText, OnClick } from "verstak";
|
|
3
3
|
import { triggeringModel } from "./common/Utils.js";
|
|
4
4
|
import { Theme } from "./Theme.js";
|
|
5
5
|
import { Icon } from "./Icon.v.js";
|
|
6
6
|
export function Button(declaration) {
|
|
7
|
-
return (Division(
|
|
7
|
+
return (Division(ReactiveTreeNode.withBasis(declaration, {
|
|
8
8
|
mode: Mode.autonomous,
|
|
9
9
|
preparation: el => {
|
|
10
10
|
var _a;
|
|
11
11
|
(_a = el.model) !== null && _a !== void 0 ? _a : (el.model = triggeringModel({
|
|
12
12
|
icon: "fa-solid fa-square",
|
|
13
|
-
label: ReactiveTreeNode.key,
|
|
13
|
+
label: ReactiveTreeNode.current.key,
|
|
14
14
|
}));
|
|
15
15
|
},
|
|
16
16
|
script: el => {
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import { ReactiveTreeNodeDecl } from "reactronic";
|
|
1
|
+
import { ReactiveTreeNode, ReactiveTreeNodeDecl } from "reactronic";
|
|
2
2
|
import { El } from "verstak";
|
|
3
|
-
export declare function Icon(name: string, declaration?: ReactiveTreeNodeDecl<El<HTMLElement, void>>):
|
|
3
|
+
export declare function Icon(name: string, declaration?: ReactiveTreeNodeDecl<El<HTMLElement, void>>): ReactiveTreeNode<El<HTMLElement, void>>;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ReactiveTreeNode, Mode } from "reactronic";
|
|
2
2
|
import { Division } from "verstak";
|
|
3
3
|
import { Theme } from "./Theme.js";
|
|
4
4
|
export function Icon(name, declaration) {
|
|
5
|
-
return (Division(
|
|
5
|
+
return (Division(ReactiveTreeNode.withBasis(declaration, {
|
|
6
6
|
mode: Mode.autonomous,
|
|
7
7
|
triggers: { name },
|
|
8
8
|
script: el => {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { ReactiveTreeNodeDecl } from "reactronic";
|
|
1
|
+
import { ReactiveTreeNode, ReactiveTreeNodeDecl } from "reactronic";
|
|
2
2
|
import { El } from "verstak";
|
|
3
3
|
export type ImageModel = {
|
|
4
4
|
source?: string;
|
|
5
5
|
};
|
|
6
|
-
export declare function Image(declaration?: ReactiveTreeNodeDecl<El<HTMLElement, ImageModel>>):
|
|
6
|
+
export declare function Image(declaration?: ReactiveTreeNodeDecl<El<HTMLElement, ImageModel>>): ReactiveTreeNode<El<HTMLElement, ImageModel>>;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ReactiveTreeNode, Mode } from "reactronic";
|
|
2
2
|
import { Division } from "verstak";
|
|
3
3
|
import { triggeringModel } from "./common/Utils.js";
|
|
4
4
|
export function Image(declaration) {
|
|
5
|
-
return (Division(
|
|
5
|
+
return (Division(ReactiveTreeNode.withBasis(declaration, {
|
|
6
6
|
mode: Mode.autonomous,
|
|
7
7
|
preparation: el => {
|
|
8
8
|
var _a;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ReactiveTreeNodeDecl } from "reactronic";
|
|
1
|
+
import { ReactiveTreeNode, ReactiveTreeNodeDecl } from "reactronic";
|
|
2
2
|
import { FocusModel, El } from "verstak";
|
|
3
3
|
import { ValuesOrRefs } from "./common/Utils.js";
|
|
4
4
|
export type InputModel<T = string> = FocusModel & {
|
|
@@ -12,5 +12,5 @@ export type InputModel<T = string> = FocusModel & {
|
|
|
12
12
|
isHotText: boolean;
|
|
13
13
|
inputStyle: string;
|
|
14
14
|
};
|
|
15
|
-
export declare function Input(declaration?: ReactiveTreeNodeDecl<El<HTMLElement, InputModel>>):
|
|
15
|
+
export declare function Input(declaration?: ReactiveTreeNodeDecl<El<HTMLElement, InputModel>>): ReactiveTreeNode<El<HTMLElement, InputModel<string>>>;
|
|
16
16
|
export declare function composeInputModel<T>(props?: Partial<ValuesOrRefs<InputModel<T>>>): InputModel<T>;
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ReactiveTreeNode, Mode } from "reactronic";
|
|
2
2
|
import { Division, JustText, OnFocus, rowBreak, Fragment, KeyboardModifiers, Horizontal, Vertical } from "verstak";
|
|
3
3
|
import { triggeringModel } from "./common/Utils.js";
|
|
4
4
|
import { Theme } from "./Theme.js";
|
|
5
5
|
import { Icon } from "./Icon.v.js";
|
|
6
6
|
export function Input(declaration) {
|
|
7
|
-
return (Division(
|
|
7
|
+
return (Division(ReactiveTreeNode.withBasis(declaration, {
|
|
8
8
|
mode: Mode.autonomous,
|
|
9
9
|
preparation: el => {
|
|
10
10
|
var _a;
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import { ReactiveTreeNodeDecl } from "reactronic";
|
|
1
|
+
import { ReactiveTreeNode, ReactiveTreeNodeDecl } from "reactronic";
|
|
2
2
|
import { El } from "verstak";
|
|
3
3
|
import { ValuesOrRefs } from "./common/Utils.js";
|
|
4
4
|
export type SpinnerModel = {
|
|
5
5
|
active: boolean;
|
|
6
6
|
color: string;
|
|
7
7
|
};
|
|
8
|
-
export declare function Spinner(declaration?: ReactiveTreeNodeDecl<El<HTMLElement, SpinnerModel>>):
|
|
8
|
+
export declare function Spinner(declaration?: ReactiveTreeNodeDecl<El<HTMLElement, SpinnerModel>>): ReactiveTreeNode<El<HTMLElement, SpinnerModel>>;
|
|
9
9
|
export declare function composeSpinnerModel<T>(props?: Partial<ValuesOrRefs<SpinnerModel>>): SpinnerModel;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ReactiveTreeNode, Mode } from "reactronic";
|
|
2
2
|
import { Division, JustText } from "verstak";
|
|
3
3
|
import { triggeringModel } from "./common/Utils.js";
|
|
4
4
|
export function Spinner(declaration) {
|
|
5
|
-
return (Division(
|
|
5
|
+
return (Division(ReactiveTreeNode.withBasis(declaration, {
|
|
6
6
|
mode: Mode.autonomous,
|
|
7
7
|
preparation: el => {
|
|
8
8
|
var _a;
|
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ReactiveTreeNode, Mode } from "reactronic";
|
|
2
2
|
import { Division, JustText, OnClick } from "verstak";
|
|
3
3
|
import { triggeringModel } from "./common/Utils.js";
|
|
4
4
|
import { Theme } from "./Theme.js";
|
|
5
5
|
import { Icon } from "./Icon.v.js";
|
|
6
6
|
export function Toggle(declaration) {
|
|
7
|
-
return (Division(
|
|
7
|
+
return (Division(ReactiveTreeNode.withBasis(declaration, {
|
|
8
8
|
mode: Mode.autonomous,
|
|
9
9
|
preparation: el => {
|
|
10
10
|
var _a;
|
|
11
11
|
(_a = el.model) !== null && _a !== void 0 ? _a : (el.model = triggeringModel({
|
|
12
|
-
label: ReactiveTreeNode.key,
|
|
12
|
+
label: ReactiveTreeNode.current.key,
|
|
13
13
|
checked: true,
|
|
14
14
|
color: "green"
|
|
15
15
|
}));
|
|
@@ -7,7 +7,7 @@ var __decorate = (this && this.__decorate) || function (decorators, target, key,
|
|
|
7
7
|
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
8
8
|
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
9
9
|
};
|
|
10
|
-
import {
|
|
10
|
+
import { ReactiveTreeNode, BaseDriver, Transaction, observable, ObservableObject } from "reactronic";
|
|
11
11
|
import { ElKind, Horizontal, Vertical, Direction } from "./El.js";
|
|
12
12
|
import { equalElCoords, parseElCoords } from "./ElUtils.js";
|
|
13
13
|
export class ElDriver extends BaseDriver {
|
|
@@ -482,7 +482,7 @@ export class ElImpl {
|
|
|
482
482
|
}
|
|
483
483
|
static applyOverlayVisible(element, value) {
|
|
484
484
|
const s = element.style;
|
|
485
|
-
const host =
|
|
485
|
+
const host = ReactiveTreeNode.findMatchingHost(element.node, n => n.element.native instanceof HTMLElement || n.element.native instanceof SVGElement);
|
|
486
486
|
const nativeHost = host === null || host === void 0 ? void 0 : host.element.native;
|
|
487
487
|
if (value === true) {
|
|
488
488
|
const doc = document.body;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ReactiveTreeNode, Mode, runNonReactively } from "reactronic";
|
|
2
2
|
import { ElKind, Direction } from "./El.js";
|
|
3
3
|
import { clamp } from "./ElUtils.js";
|
|
4
4
|
import { Constants, CursorCommandDriver, ElDriver, ElLayoutInfo, InitialElLayoutInfo } from "./ElDriver.js";
|
|
@@ -7,23 +7,23 @@ import { Axis, BodyFontSize, Dimension, toPx } from "./Sizes.js";
|
|
|
7
7
|
import { HtmlDriver, StaticDriver } from "./WebDriver.js";
|
|
8
8
|
export function Window(scriptOrDeclaration, scriptAsync, key, mode, preparation, preparationAsync, finalization, triggers, basis) {
|
|
9
9
|
const driver = new StaticDriver(global.document.body, "Page", false, el => el.kind = ElKind.division);
|
|
10
|
-
return
|
|
10
|
+
return ReactiveTreeNode.declare(driver, scriptOrDeclaration, scriptAsync, key, mode, preparation, preparationAsync, finalization, triggers, basis);
|
|
11
11
|
}
|
|
12
12
|
export function Division(scriptOrDeclaration, scriptAsync, key, mode, preparation, preparationAsync, finalization, triggers, basis) {
|
|
13
|
-
return
|
|
13
|
+
return ReactiveTreeNode.declare(Drivers.division, scriptOrDeclaration, scriptAsync, key, mode, preparation, preparationAsync, finalization, triggers, basis);
|
|
14
14
|
}
|
|
15
15
|
export function Table(scriptOrDeclaration, scriptAsync, key, mode, preparation, preparationAsync, finalization, triggers, basis) {
|
|
16
|
-
return
|
|
16
|
+
return ReactiveTreeNode.declare(Drivers.table, scriptOrDeclaration, scriptAsync, key, mode, preparation, preparationAsync, finalization, triggers, basis);
|
|
17
17
|
}
|
|
18
18
|
export function row(builder, shiftCursorDown) {
|
|
19
19
|
rowBreak(shiftCursorDown);
|
|
20
20
|
builder === null || builder === void 0 ? void 0 : builder();
|
|
21
21
|
}
|
|
22
22
|
export function Splitter(scriptOrDeclaration, scriptAsync, key, mode, preparation, preparationAsync, finalization, triggers, basis) {
|
|
23
|
-
return
|
|
23
|
+
return ReactiveTreeNode.declare(Drivers.splitter, scriptOrDeclaration, scriptAsync, key, mode, preparation, preparationAsync, finalization, triggers, basis);
|
|
24
24
|
}
|
|
25
25
|
export function rowBreak(shiftCursorDown) {
|
|
26
|
-
|
|
26
|
+
ReactiveTreeNode.declare(Drivers.partition);
|
|
27
27
|
}
|
|
28
28
|
export function declareSplitter(index, splitViewNode) {
|
|
29
29
|
const key = `splitter-${index}`;
|
|
@@ -79,14 +79,14 @@ export function declareSplitter(index, splitViewNode) {
|
|
|
79
79
|
}));
|
|
80
80
|
}
|
|
81
81
|
export function cursor(place) {
|
|
82
|
-
|
|
82
|
+
ReactiveTreeNode.declare(Drivers.cursor, {
|
|
83
83
|
script: el => {
|
|
84
84
|
el.place = place;
|
|
85
85
|
},
|
|
86
86
|
});
|
|
87
87
|
}
|
|
88
88
|
export function JustText(content, formatted, declaration) {
|
|
89
|
-
return
|
|
89
|
+
return ReactiveTreeNode.declare(Drivers.text, ReactiveTreeNode.withBasis(declaration, {
|
|
90
90
|
script: el => {
|
|
91
91
|
if (formatted)
|
|
92
92
|
el.native.innerHTML = content;
|
|
@@ -96,13 +96,13 @@ export function JustText(content, formatted, declaration) {
|
|
|
96
96
|
}));
|
|
97
97
|
}
|
|
98
98
|
export function Group(scriptOrDeclaration, scriptAsync, key, mode, preparation, preparationAsync, finalization, triggers, basis) {
|
|
99
|
-
return
|
|
99
|
+
return ReactiveTreeNode.declare(Drivers.group, scriptOrDeclaration, scriptAsync, key, mode, preparation, preparationAsync, finalization, triggers, basis);
|
|
100
100
|
}
|
|
101
101
|
export function Fragment(script) {
|
|
102
102
|
return PseudoElement({ mode: Mode.autonomous, script });
|
|
103
103
|
}
|
|
104
104
|
export function PseudoElement(scriptOrDeclaration, scriptAsync, key, mode, preparation, preparationAsync, finalization, triggers, basis) {
|
|
105
|
-
return
|
|
105
|
+
return ReactiveTreeNode.declare(Drivers.pseudo, scriptOrDeclaration, scriptAsync, key, mode, preparation, preparationAsync, finalization, triggers, basis);
|
|
106
106
|
}
|
|
107
107
|
export class DivisionDriver extends HtmlDriver {
|
|
108
108
|
runScript(node) {
|
|
@@ -172,9 +172,9 @@ export class DivisionDriver extends HtmlDriver {
|
|
|
172
172
|
}
|
|
173
173
|
},
|
|
174
174
|
});
|
|
175
|
-
|
|
175
|
+
ReactiveTreeNode.runNestedNodeScriptsThenDo(() => {
|
|
176
176
|
layoutInfo.isUpdateFinished = true;
|
|
177
|
-
|
|
177
|
+
ReactiveTreeNode.triggerScriptRun(relayoutEl, { stamp: node.stamp });
|
|
178
178
|
});
|
|
179
179
|
}
|
|
180
180
|
return result;
|
|
@@ -231,7 +231,7 @@ export class PartitionDriver extends HtmlDriver {
|
|
|
231
231
|
const ownerEl = node.owner.element;
|
|
232
232
|
if (ownerEl.sealed !== undefined) {
|
|
233
233
|
node.element.style.flexGrow = "1";
|
|
234
|
-
|
|
234
|
+
ReactiveTreeNode.declare(Drivers.wrapper, {
|
|
235
235
|
script: el => {
|
|
236
236
|
const ownerEl = el.node.owner.owner.element;
|
|
237
237
|
if (ownerEl.splitView !== undefined) {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ReactiveTreeNode, ReactiveSystem, proceedSyncOrAsync } from "reactronic";
|
|
2
2
|
import { Constants, ElDriver, ElImpl } from "./ElDriver.js";
|
|
3
3
|
export class WebDriver extends ElDriver {
|
|
4
4
|
setNativeElement(node) {
|
|
@@ -31,13 +31,13 @@ export class WebDriver extends ElDriver {
|
|
|
31
31
|
const native = element.native;
|
|
32
32
|
if (native) {
|
|
33
33
|
const sequential = node.owner.children.isStrict;
|
|
34
|
-
const automaticHost =
|
|
34
|
+
const automaticHost = ReactiveTreeNode.findMatchingHost(node, n => n.element.native instanceof HTMLElement || n.element.native instanceof SVGElement);
|
|
35
35
|
const automaticNativeHost = automaticHost !== node.owner
|
|
36
36
|
? automaticHost === null || automaticHost === void 0 ? void 0 : automaticHost.driver.provideHost(automaticHost).element.native
|
|
37
37
|
: automaticHost === null || automaticHost === void 0 ? void 0 : automaticHost.element.native;
|
|
38
38
|
if (automaticNativeHost) {
|
|
39
39
|
if (sequential && !node.driver.isPartition) {
|
|
40
|
-
const after =
|
|
40
|
+
const after = ReactiveTreeNode.findMatchingPrevSibling(node, n => n.element.native instanceof HTMLElement || n.element.native instanceof SVGElement);
|
|
41
41
|
if (after === undefined || after.driver.isPartition) {
|
|
42
42
|
if (automaticNativeHost !== native.parentNode || !native.previousSibling)
|
|
43
43
|
automaticNativeHost.prepend(native);
|
|
@@ -67,16 +67,16 @@ export class WebDriver extends ElDriver {
|
|
|
67
67
|
element.place = undefined;
|
|
68
68
|
}
|
|
69
69
|
if (gBlinkingEffectMarker)
|
|
70
|
-
blink(element.native, ReactiveTreeNode.
|
|
70
|
+
blink(element.native, ReactiveTreeNode.currentScriptPriority, node.stamp);
|
|
71
71
|
}, e => {
|
|
72
72
|
});
|
|
73
73
|
return result;
|
|
74
74
|
}
|
|
75
75
|
static findBrotherlyHost(node) {
|
|
76
|
-
return
|
|
76
|
+
return ReactiveTreeNode.findMatchingHost(node, n => n.element.native instanceof HTMLElement || n.element.native instanceof SVGElement);
|
|
77
77
|
}
|
|
78
78
|
static findBrotherlyPrevSibling(node) {
|
|
79
|
-
return
|
|
79
|
+
return ReactiveTreeNode.findMatchingPrevSibling(node, n => n.element.native instanceof HTMLElement || n.element.native instanceof SVGElement);
|
|
80
80
|
}
|
|
81
81
|
static get blinkingEffectMarker() {
|
|
82
82
|
return gBlinkingEffectMarker;
|
|
@@ -70,7 +70,7 @@ export function OnFocus(target, model, switchEditMode = undefined, key) {
|
|
|
70
70
|
mode: Mode.autonomous,
|
|
71
71
|
triggers: { target, model },
|
|
72
72
|
preparation: el => {
|
|
73
|
-
el.node.
|
|
73
|
+
el.node.configureReactivity({ throttling: 0 });
|
|
74
74
|
},
|
|
75
75
|
script: el => {
|
|
76
76
|
if (switchEditMode === undefined && !(target instanceof HTMLInputElement || target.hasAttribute("tabindex")))
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ReactiveTreeNode, Mode } from "reactronic";
|
|
2
2
|
import { Div } from "./HtmlElements.js";
|
|
3
3
|
import { Fragment } from "../core/Elements.js";
|
|
4
4
|
export function DraggableArea(draggingId, builder) {
|
|
5
|
-
return (Div(
|
|
5
|
+
return (Div(ReactiveTreeNode.withBasis(builder, {
|
|
6
6
|
mode: Mode.autonomous,
|
|
7
7
|
script: b => {
|
|
8
8
|
const e = b.native;
|
|
@@ -1,120 +1,120 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ReactiveTreeNode } from "reactronic";
|
|
2
2
|
import { ElKind } from "../core/El.js";
|
|
3
3
|
import { HtmlDriver } from "../core/WebDriver.js";
|
|
4
|
-
export function A(declaration) { return
|
|
5
|
-
export function Abbr(declaration) { return
|
|
6
|
-
export function Address(declaration) { return
|
|
7
|
-
export function Area(declaration) { return
|
|
8
|
-
export function Article(declaration) { return
|
|
9
|
-
export function Aside(declaration) { return
|
|
10
|
-
export function Audio(declaration) { return
|
|
11
|
-
export function B(declaration) { return
|
|
12
|
-
export function Base(declaration) { return
|
|
13
|
-
export function Bdi(declaration) { return
|
|
14
|
-
export function Bdo(declaration) { return
|
|
15
|
-
export function Big(declaration) { return
|
|
16
|
-
export function BlockQuote(declaration) { return
|
|
17
|
-
export function Body(declaration) { return
|
|
18
|
-
export function BR(declaration) { return
|
|
19
|
-
export function Button(declaration) { return
|
|
20
|
-
export function Canvas(declaration) { return
|
|
21
|
-
export function Caption(declaration) { return
|
|
22
|
-
export function Cite(declaration) { return
|
|
23
|
-
export function Code(declaration) { return
|
|
24
|
-
export function Col(declaration) { return
|
|
25
|
-
export function ColGroup(declaration) { return
|
|
26
|
-
export function Data(declaration) { return
|
|
27
|
-
export function DataList(declaration) { return
|
|
28
|
-
export function DD(declaration) { return
|
|
29
|
-
export function Del(declaration) { return
|
|
30
|
-
export function Details(declaration) { return
|
|
31
|
-
export function Dfn(declaration) { return
|
|
32
|
-
export function Div(declaration) { return
|
|
33
|
-
export function DL(declaration) { return
|
|
34
|
-
export function DT(declaration) { return
|
|
35
|
-
export function EM(declaration) { return
|
|
36
|
-
export function Embed(declaration) { return
|
|
37
|
-
export function FieldSet(declaration) { return
|
|
38
|
-
export function FigCaption(declaration) { return
|
|
39
|
-
export function Figure(declaration) { return
|
|
40
|
-
export function Footer(declaration) { return
|
|
41
|
-
export function Form(declaration) { return
|
|
42
|
-
export function H1(declaration) { return
|
|
43
|
-
export function H2(declaration) { return
|
|
44
|
-
export function H3(declaration) { return
|
|
45
|
-
export function H4(declaration) { return
|
|
46
|
-
export function H5(declaration) { return
|
|
47
|
-
export function H6(declaration) { return
|
|
48
|
-
export function Head(declaration) { return
|
|
49
|
-
export function Header(declaration) { return
|
|
50
|
-
export function HGroup(declaration) { return
|
|
51
|
-
export function HR(declaration) { return
|
|
52
|
-
export function Html(declaration) { return
|
|
53
|
-
export function I(declaration) { return
|
|
54
|
-
export function IFrame(declaration) { return
|
|
55
|
-
export function Img(declaration) { return
|
|
56
|
-
export function Input(declaration) { return
|
|
57
|
-
export function Ins(declaration) { return
|
|
58
|
-
export function Kbd(declaration) { return
|
|
59
|
-
export function KeyGen(declaration) { return
|
|
60
|
-
export function Label(declaration) { return
|
|
61
|
-
export function Legend(declaration) { return
|
|
62
|
-
export function LI(declaration) { return
|
|
63
|
-
export function Link(declaration) { return
|
|
64
|
-
export function Main(declaration) { return
|
|
65
|
-
export function Map(declaration) { return
|
|
66
|
-
export function Mark(declaration) { return
|
|
67
|
-
export function Menu(declaration) { return
|
|
68
|
-
export function MenuItem(declaration) { return
|
|
69
|
-
export function Meta(declaration) { return
|
|
70
|
-
export function Meter(declaration) { return
|
|
71
|
-
export function Nav(declaration) { return
|
|
72
|
-
export function NoIndex(declaration) { return
|
|
73
|
-
export function NoScript(declaration) { return
|
|
74
|
-
export function Obj(declaration) { return
|
|
75
|
-
export function OL(declaration) { return
|
|
76
|
-
export function OptGroup(declaration) { return
|
|
77
|
-
export function Option(declaration) { return
|
|
78
|
-
export function Output(declaration) { return
|
|
79
|
-
export function P(declaration) { return
|
|
80
|
-
export function Param(declaration) { return
|
|
81
|
-
export function Picture(declaration) { return
|
|
82
|
-
export function Pre(declaration) { return
|
|
83
|
-
export function Progress(declaration) { return
|
|
84
|
-
export function Q(declaration) { return
|
|
85
|
-
export function RP(declaration) { return
|
|
86
|
-
export function RT(declaration) { return
|
|
87
|
-
export function Ruby(declaration) { return
|
|
88
|
-
export function S(declaration) { return
|
|
89
|
-
export function Samp(declaration) { return
|
|
90
|
-
export function Script(declaration) { return
|
|
91
|
-
export function Section(declaration) { return
|
|
92
|
-
export function Select(declaration) { return
|
|
93
|
-
export function Small(declaration) { return
|
|
94
|
-
export function Source(declaration) { return
|
|
95
|
-
export function Span(declaration) { return
|
|
96
|
-
export function Strong(declaration) { return
|
|
97
|
-
export function Style(declaration) { return
|
|
98
|
-
export function Sub(declaration) { return
|
|
99
|
-
export function Summary(declaration) { return
|
|
100
|
-
export function Sup(declaration) { return
|
|
101
|
-
export function Tbl(declaration) { return
|
|
102
|
-
export function Template(declaration) { return
|
|
103
|
-
export function TBody(declaration) { return
|
|
104
|
-
export function TD(declaration) { return
|
|
105
|
-
export function TextArea(declaration) { return
|
|
106
|
-
export function TFoot(declaration) { return
|
|
107
|
-
export function TH(declaration) { return
|
|
108
|
-
export function THead(declaration) { return
|
|
109
|
-
export function Time(declaration) { return
|
|
110
|
-
export function Title(declaration) { return
|
|
111
|
-
export function TR(declaration) { return
|
|
112
|
-
export function Track(declaration) { return
|
|
113
|
-
export function U(declaration) { return
|
|
114
|
-
export function UL(declaration) { return
|
|
115
|
-
export function Var(declaration) { return
|
|
116
|
-
export function Video(declaration) { return
|
|
117
|
-
export function Wbr(declaration) { return
|
|
4
|
+
export function A(declaration) { return ReactiveTreeNode.declare(HtmlTags.a, declaration); }
|
|
5
|
+
export function Abbr(declaration) { return ReactiveTreeNode.declare(HtmlTags.abbr, declaration); }
|
|
6
|
+
export function Address(declaration) { return ReactiveTreeNode.declare(HtmlTags.address, declaration); }
|
|
7
|
+
export function Area(declaration) { return ReactiveTreeNode.declare(HtmlTags.area, declaration); }
|
|
8
|
+
export function Article(declaration) { return ReactiveTreeNode.declare(HtmlTags.article, declaration); }
|
|
9
|
+
export function Aside(declaration) { return ReactiveTreeNode.declare(HtmlTags.aside, declaration); }
|
|
10
|
+
export function Audio(declaration) { return ReactiveTreeNode.declare(HtmlTags.audio, declaration); }
|
|
11
|
+
export function B(declaration) { return ReactiveTreeNode.declare(HtmlTags.b, declaration); }
|
|
12
|
+
export function Base(declaration) { return ReactiveTreeNode.declare(HtmlTags.base, declaration); }
|
|
13
|
+
export function Bdi(declaration) { return ReactiveTreeNode.declare(HtmlTags.bdi, declaration); }
|
|
14
|
+
export function Bdo(declaration) { return ReactiveTreeNode.declare(HtmlTags.bdo, declaration); }
|
|
15
|
+
export function Big(declaration) { return ReactiveTreeNode.declare(HtmlTags.big, declaration); }
|
|
16
|
+
export function BlockQuote(declaration) { return ReactiveTreeNode.declare(HtmlTags.blockquote, declaration); }
|
|
17
|
+
export function Body(declaration) { return ReactiveTreeNode.declare(HtmlTags.body, declaration); }
|
|
18
|
+
export function BR(declaration) { return ReactiveTreeNode.declare(HtmlTags.br, declaration); }
|
|
19
|
+
export function Button(declaration) { return ReactiveTreeNode.declare(HtmlTags.button, declaration); }
|
|
20
|
+
export function Canvas(declaration) { return ReactiveTreeNode.declare(HtmlTags.canvas, declaration); }
|
|
21
|
+
export function Caption(declaration) { return ReactiveTreeNode.declare(HtmlTags.caption, declaration); }
|
|
22
|
+
export function Cite(declaration) { return ReactiveTreeNode.declare(HtmlTags.cite, declaration); }
|
|
23
|
+
export function Code(declaration) { return ReactiveTreeNode.declare(HtmlTags.code, declaration); }
|
|
24
|
+
export function Col(declaration) { return ReactiveTreeNode.declare(HtmlTags.col, declaration); }
|
|
25
|
+
export function ColGroup(declaration) { return ReactiveTreeNode.declare(HtmlTags.colgroup, declaration); }
|
|
26
|
+
export function Data(declaration) { return ReactiveTreeNode.declare(HtmlTags.data, declaration); }
|
|
27
|
+
export function DataList(declaration) { return ReactiveTreeNode.declare(HtmlTags.datalist, declaration); }
|
|
28
|
+
export function DD(declaration) { return ReactiveTreeNode.declare(HtmlTags.dd, declaration); }
|
|
29
|
+
export function Del(declaration) { return ReactiveTreeNode.declare(HtmlTags.del, declaration); }
|
|
30
|
+
export function Details(declaration) { return ReactiveTreeNode.declare(HtmlTags.details, declaration); }
|
|
31
|
+
export function Dfn(declaration) { return ReactiveTreeNode.declare(HtmlTags.dfn, declaration); }
|
|
32
|
+
export function Div(declaration) { return ReactiveTreeNode.declare(HtmlTags.div, declaration); }
|
|
33
|
+
export function DL(declaration) { return ReactiveTreeNode.declare(HtmlTags.dl, declaration); }
|
|
34
|
+
export function DT(declaration) { return ReactiveTreeNode.declare(HtmlTags.dt, declaration); }
|
|
35
|
+
export function EM(declaration) { return ReactiveTreeNode.declare(HtmlTags.em, declaration); }
|
|
36
|
+
export function Embed(declaration) { return ReactiveTreeNode.declare(HtmlTags.embed, declaration); }
|
|
37
|
+
export function FieldSet(declaration) { return ReactiveTreeNode.declare(HtmlTags.fieldset, declaration); }
|
|
38
|
+
export function FigCaption(declaration) { return ReactiveTreeNode.declare(HtmlTags.figcaption, declaration); }
|
|
39
|
+
export function Figure(declaration) { return ReactiveTreeNode.declare(HtmlTags.figure, declaration); }
|
|
40
|
+
export function Footer(declaration) { return ReactiveTreeNode.declare(HtmlTags.footer, declaration); }
|
|
41
|
+
export function Form(declaration) { return ReactiveTreeNode.declare(HtmlTags.form, declaration); }
|
|
42
|
+
export function H1(declaration) { return ReactiveTreeNode.declare(HtmlTags.h1, declaration); }
|
|
43
|
+
export function H2(declaration) { return ReactiveTreeNode.declare(HtmlTags.h2, declaration); }
|
|
44
|
+
export function H3(declaration) { return ReactiveTreeNode.declare(HtmlTags.h3, declaration); }
|
|
45
|
+
export function H4(declaration) { return ReactiveTreeNode.declare(HtmlTags.h4, declaration); }
|
|
46
|
+
export function H5(declaration) { return ReactiveTreeNode.declare(HtmlTags.h5, declaration); }
|
|
47
|
+
export function H6(declaration) { return ReactiveTreeNode.declare(HtmlTags.h6, declaration); }
|
|
48
|
+
export function Head(declaration) { return ReactiveTreeNode.declare(HtmlTags.head, declaration); }
|
|
49
|
+
export function Header(declaration) { return ReactiveTreeNode.declare(HtmlTags.header, declaration); }
|
|
50
|
+
export function HGroup(declaration) { return ReactiveTreeNode.declare(HtmlTags.hgroup, declaration); }
|
|
51
|
+
export function HR(declaration) { return ReactiveTreeNode.declare(HtmlTags.hr, declaration); }
|
|
52
|
+
export function Html(declaration) { return ReactiveTreeNode.declare(HtmlTags.html, declaration); }
|
|
53
|
+
export function I(declaration) { return ReactiveTreeNode.declare(HtmlTags.i, declaration); }
|
|
54
|
+
export function IFrame(declaration) { return ReactiveTreeNode.declare(HtmlTags.iframe, declaration); }
|
|
55
|
+
export function Img(declaration) { return ReactiveTreeNode.declare(HtmlTags.img, declaration); }
|
|
56
|
+
export function Input(declaration) { return ReactiveTreeNode.declare(HtmlTags.input, declaration); }
|
|
57
|
+
export function Ins(declaration) { return ReactiveTreeNode.declare(HtmlTags.ins, declaration); }
|
|
58
|
+
export function Kbd(declaration) { return ReactiveTreeNode.declare(HtmlTags.kbd, declaration); }
|
|
59
|
+
export function KeyGen(declaration) { return ReactiveTreeNode.declare(HtmlTags.keygen, declaration); }
|
|
60
|
+
export function Label(declaration) { return ReactiveTreeNode.declare(HtmlTags.label, declaration); }
|
|
61
|
+
export function Legend(declaration) { return ReactiveTreeNode.declare(HtmlTags.legend, declaration); }
|
|
62
|
+
export function LI(declaration) { return ReactiveTreeNode.declare(HtmlTags.li, declaration); }
|
|
63
|
+
export function Link(declaration) { return ReactiveTreeNode.declare(HtmlTags.link, declaration); }
|
|
64
|
+
export function Main(declaration) { return ReactiveTreeNode.declare(HtmlTags.main, declaration); }
|
|
65
|
+
export function Map(declaration) { return ReactiveTreeNode.declare(HtmlTags.map, declaration); }
|
|
66
|
+
export function Mark(declaration) { return ReactiveTreeNode.declare(HtmlTags.mark, declaration); }
|
|
67
|
+
export function Menu(declaration) { return ReactiveTreeNode.declare(HtmlTags.menu, declaration); }
|
|
68
|
+
export function MenuItem(declaration) { return ReactiveTreeNode.declare(HtmlTags.menuitem, declaration); }
|
|
69
|
+
export function Meta(declaration) { return ReactiveTreeNode.declare(HtmlTags.meta, declaration); }
|
|
70
|
+
export function Meter(declaration) { return ReactiveTreeNode.declare(HtmlTags.meter, declaration); }
|
|
71
|
+
export function Nav(declaration) { return ReactiveTreeNode.declare(HtmlTags.nav, declaration); }
|
|
72
|
+
export function NoIndex(declaration) { return ReactiveTreeNode.declare(HtmlTags.noindex, declaration); }
|
|
73
|
+
export function NoScript(declaration) { return ReactiveTreeNode.declare(HtmlTags.noscript, declaration); }
|
|
74
|
+
export function Obj(declaration) { return ReactiveTreeNode.declare(HtmlTags.object, declaration); }
|
|
75
|
+
export function OL(declaration) { return ReactiveTreeNode.declare(HtmlTags.ol, declaration); }
|
|
76
|
+
export function OptGroup(declaration) { return ReactiveTreeNode.declare(HtmlTags.optgroup, declaration); }
|
|
77
|
+
export function Option(declaration) { return ReactiveTreeNode.declare(HtmlTags.option, declaration); }
|
|
78
|
+
export function Output(declaration) { return ReactiveTreeNode.declare(HtmlTags.output, declaration); }
|
|
79
|
+
export function P(declaration) { return ReactiveTreeNode.declare(HtmlTags.p, declaration); }
|
|
80
|
+
export function Param(declaration) { return ReactiveTreeNode.declare(HtmlTags.param, declaration); }
|
|
81
|
+
export function Picture(declaration) { return ReactiveTreeNode.declare(HtmlTags.picture, declaration); }
|
|
82
|
+
export function Pre(declaration) { return ReactiveTreeNode.declare(HtmlTags.pre, declaration); }
|
|
83
|
+
export function Progress(declaration) { return ReactiveTreeNode.declare(HtmlTags.progress, declaration); }
|
|
84
|
+
export function Q(declaration) { return ReactiveTreeNode.declare(HtmlTags.q, declaration); }
|
|
85
|
+
export function RP(declaration) { return ReactiveTreeNode.declare(HtmlTags.rp, declaration); }
|
|
86
|
+
export function RT(declaration) { return ReactiveTreeNode.declare(HtmlTags.rt, declaration); }
|
|
87
|
+
export function Ruby(declaration) { return ReactiveTreeNode.declare(HtmlTags.ruby, declaration); }
|
|
88
|
+
export function S(declaration) { return ReactiveTreeNode.declare(HtmlTags.s, declaration); }
|
|
89
|
+
export function Samp(declaration) { return ReactiveTreeNode.declare(HtmlTags.samp, declaration); }
|
|
90
|
+
export function Script(declaration) { return ReactiveTreeNode.declare(HtmlTags.script, declaration); }
|
|
91
|
+
export function Section(declaration) { return ReactiveTreeNode.declare(HtmlTags.section, declaration); }
|
|
92
|
+
export function Select(declaration) { return ReactiveTreeNode.declare(HtmlTags.select, declaration); }
|
|
93
|
+
export function Small(declaration) { return ReactiveTreeNode.declare(HtmlTags.small, declaration); }
|
|
94
|
+
export function Source(declaration) { return ReactiveTreeNode.declare(HtmlTags.source, declaration); }
|
|
95
|
+
export function Span(declaration) { return ReactiveTreeNode.declare(HtmlTags.span, declaration); }
|
|
96
|
+
export function Strong(declaration) { return ReactiveTreeNode.declare(HtmlTags.strong, declaration); }
|
|
97
|
+
export function Style(declaration) { return ReactiveTreeNode.declare(HtmlTags.style, declaration); }
|
|
98
|
+
export function Sub(declaration) { return ReactiveTreeNode.declare(HtmlTags.sub, declaration); }
|
|
99
|
+
export function Summary(declaration) { return ReactiveTreeNode.declare(HtmlTags.summary, declaration); }
|
|
100
|
+
export function Sup(declaration) { return ReactiveTreeNode.declare(HtmlTags.sup, declaration); }
|
|
101
|
+
export function Tbl(declaration) { return ReactiveTreeNode.declare(HtmlTags.table, declaration); }
|
|
102
|
+
export function Template(declaration) { return ReactiveTreeNode.declare(HtmlTags.template, declaration); }
|
|
103
|
+
export function TBody(declaration) { return ReactiveTreeNode.declare(HtmlTags.tbody, declaration); }
|
|
104
|
+
export function TD(declaration) { return ReactiveTreeNode.declare(HtmlTags.td, declaration); }
|
|
105
|
+
export function TextArea(declaration) { return ReactiveTreeNode.declare(HtmlTags.textarea, declaration); }
|
|
106
|
+
export function TFoot(declaration) { return ReactiveTreeNode.declare(HtmlTags.tfoot, declaration); }
|
|
107
|
+
export function TH(declaration) { return ReactiveTreeNode.declare(HtmlTags.th, declaration); }
|
|
108
|
+
export function THead(declaration) { return ReactiveTreeNode.declare(HtmlTags.thead, declaration); }
|
|
109
|
+
export function Time(declaration) { return ReactiveTreeNode.declare(HtmlTags.time, declaration); }
|
|
110
|
+
export function Title(declaration) { return ReactiveTreeNode.declare(HtmlTags.title, declaration); }
|
|
111
|
+
export function TR(declaration) { return ReactiveTreeNode.declare(HtmlTags.tr, declaration); }
|
|
112
|
+
export function Track(declaration) { return ReactiveTreeNode.declare(HtmlTags.track, declaration); }
|
|
113
|
+
export function U(declaration) { return ReactiveTreeNode.declare(HtmlTags.u, declaration); }
|
|
114
|
+
export function UL(declaration) { return ReactiveTreeNode.declare(HtmlTags.ul, declaration); }
|
|
115
|
+
export function Var(declaration) { return ReactiveTreeNode.declare(HtmlTags.var, declaration); }
|
|
116
|
+
export function Video(declaration) { return ReactiveTreeNode.declare(HtmlTags.video, declaration); }
|
|
117
|
+
export function Wbr(declaration) { return ReactiveTreeNode.declare(HtmlTags.wbr, declaration); }
|
|
118
118
|
const HtmlTags = {
|
|
119
119
|
a: new HtmlDriver("a", false, el => el.kind = ElKind.native),
|
|
120
120
|
abbr: new HtmlDriver("abbr", false, el => el.kind = ElKind.native),
|
|
@@ -1,65 +1,65 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ReactiveTreeNode } from "reactronic";
|
|
2
2
|
import { ElKind } from "../core/El.js";
|
|
3
3
|
import { SvgDriver } from "../core/WebDriver.js";
|
|
4
|
-
export function Svg(declaration) { return
|
|
5
|
-
export function SvgA(declaration) { return
|
|
6
|
-
export function Animate(declaration) { return
|
|
7
|
-
export function AnimateMotion(declaration) { return
|
|
8
|
-
export function AnimateTransform(declaration) { return
|
|
9
|
-
export function Circle(declaration) { return
|
|
10
|
-
export function ClipPath(declaration) { return
|
|
11
|
-
export function Defs(declaration) { return
|
|
12
|
-
export function Desc(declaration) { return
|
|
13
|
-
export function Ellipse(declaration) { return
|
|
14
|
-
export function FeBlend(declaration) { return
|
|
15
|
-
export function FeColorMatrix(declaration) { return
|
|
16
|
-
export function FeComponentTransfer(declaration) { return
|
|
17
|
-
export function FeComposite(declaration) { return
|
|
18
|
-
export function FeConvolveMatrix(declaration) { return
|
|
19
|
-
export function FeDiffuseLighting(declaration) { return
|
|
20
|
-
export function FeDisplacementMap(declaration) { return
|
|
21
|
-
export function FeDistantLight(declaration) { return
|
|
22
|
-
export function FeDropShadow(declaration) { return
|
|
23
|
-
export function FeFlood(declaration) { return
|
|
24
|
-
export function FeFuncA(declaration) { return
|
|
25
|
-
export function FeFuncB(declaration) { return
|
|
26
|
-
export function FeFuncG(declaration) { return
|
|
27
|
-
export function FeFuncR(declaration) { return
|
|
28
|
-
export function FeGaussianBlur(declaration) { return
|
|
29
|
-
export function FeImage(declaration) { return
|
|
30
|
-
export function FeMerge(declaration) { return
|
|
31
|
-
export function FeMergeNode(declaration) { return
|
|
32
|
-
export function FeMorphology(declaration) { return
|
|
33
|
-
export function FeOffset(declaration) { return
|
|
34
|
-
export function FePointLight(declaration) { return
|
|
35
|
-
export function FeSpecularLighting(declaration) { return
|
|
36
|
-
export function FeSpotLight(declaration) { return
|
|
37
|
-
export function FeTile(declaration) { return
|
|
38
|
-
export function FeTurbulence(declaration) { return
|
|
39
|
-
export function Filter(declaration) { return
|
|
40
|
-
export function ForeignObject(declaration) { return
|
|
41
|
-
export function G(declaration) { return
|
|
42
|
-
export function SvgImage(declaration) { return
|
|
43
|
-
export function SvgLine(declaration) { return
|
|
44
|
-
export function LinearGradient(declaration) { return
|
|
45
|
-
export function Marker(declaration) { return
|
|
46
|
-
export function Mask(declaration) { return
|
|
47
|
-
export function MetaData(declaration) { return
|
|
48
|
-
export function MPath(declaration) { return
|
|
49
|
-
export function Path(declaration) { return
|
|
50
|
-
export function Pattern(declaration) { return
|
|
51
|
-
export function Polygon(declaration) { return
|
|
52
|
-
export function PolyLine(declaration) { return
|
|
53
|
-
export function RadialGradient(declaration) { return
|
|
54
|
-
export function Rect(declaration) { return
|
|
55
|
-
export function Stop(declaration) { return
|
|
56
|
-
export function SvgSwitch(declaration) { return
|
|
57
|
-
export function Symbol(declaration) { return
|
|
58
|
-
export function Text(declaration) { return
|
|
59
|
-
export function TextPath(declaration) { return
|
|
60
|
-
export function TSpan(declaration) { return
|
|
61
|
-
export function Use(declaration) { return
|
|
62
|
-
export function View(declaration) { return
|
|
4
|
+
export function Svg(declaration) { return ReactiveTreeNode.declare(SvgTags.svg, declaration); }
|
|
5
|
+
export function SvgA(declaration) { return ReactiveTreeNode.declare(SvgTags.a, declaration); }
|
|
6
|
+
export function Animate(declaration) { return ReactiveTreeNode.declare(SvgTags.animate, declaration); }
|
|
7
|
+
export function AnimateMotion(declaration) { return ReactiveTreeNode.declare(SvgTags.animateMotion, declaration); }
|
|
8
|
+
export function AnimateTransform(declaration) { return ReactiveTreeNode.declare(SvgTags.animateTransform, declaration); }
|
|
9
|
+
export function Circle(declaration) { return ReactiveTreeNode.declare(SvgTags.circle, declaration); }
|
|
10
|
+
export function ClipPath(declaration) { return ReactiveTreeNode.declare(SvgTags.clipPath, declaration); }
|
|
11
|
+
export function Defs(declaration) { return ReactiveTreeNode.declare(SvgTags.defs, declaration); }
|
|
12
|
+
export function Desc(declaration) { return ReactiveTreeNode.declare(SvgTags.desc, declaration); }
|
|
13
|
+
export function Ellipse(declaration) { return ReactiveTreeNode.declare(SvgTags.ellipse, declaration); }
|
|
14
|
+
export function FeBlend(declaration) { return ReactiveTreeNode.declare(SvgTags.feBlend, declaration); }
|
|
15
|
+
export function FeColorMatrix(declaration) { return ReactiveTreeNode.declare(SvgTags.feColorMatrix, declaration); }
|
|
16
|
+
export function FeComponentTransfer(declaration) { return ReactiveTreeNode.declare(SvgTags.feComponentTransfer, declaration); }
|
|
17
|
+
export function FeComposite(declaration) { return ReactiveTreeNode.declare(SvgTags.feComposite, declaration); }
|
|
18
|
+
export function FeConvolveMatrix(declaration) { return ReactiveTreeNode.declare(SvgTags.feConvolveMatrix, declaration); }
|
|
19
|
+
export function FeDiffuseLighting(declaration) { return ReactiveTreeNode.declare(SvgTags.feDiffuseLighting, declaration); }
|
|
20
|
+
export function FeDisplacementMap(declaration) { return ReactiveTreeNode.declare(SvgTags.feDisplacementMap, declaration); }
|
|
21
|
+
export function FeDistantLight(declaration) { return ReactiveTreeNode.declare(SvgTags.feDistantLight, declaration); }
|
|
22
|
+
export function FeDropShadow(declaration) { return ReactiveTreeNode.declare(SvgTags.feDropShadow, declaration); }
|
|
23
|
+
export function FeFlood(declaration) { return ReactiveTreeNode.declare(SvgTags.feFlood, declaration); }
|
|
24
|
+
export function FeFuncA(declaration) { return ReactiveTreeNode.declare(SvgTags.feFuncA, declaration); }
|
|
25
|
+
export function FeFuncB(declaration) { return ReactiveTreeNode.declare(SvgTags.feFuncB, declaration); }
|
|
26
|
+
export function FeFuncG(declaration) { return ReactiveTreeNode.declare(SvgTags.feFuncG, declaration); }
|
|
27
|
+
export function FeFuncR(declaration) { return ReactiveTreeNode.declare(SvgTags.feFuncR, declaration); }
|
|
28
|
+
export function FeGaussianBlur(declaration) { return ReactiveTreeNode.declare(SvgTags.feGaussianBlur, declaration); }
|
|
29
|
+
export function FeImage(declaration) { return ReactiveTreeNode.declare(SvgTags.feImage, declaration); }
|
|
30
|
+
export function FeMerge(declaration) { return ReactiveTreeNode.declare(SvgTags.feMerge, declaration); }
|
|
31
|
+
export function FeMergeNode(declaration) { return ReactiveTreeNode.declare(SvgTags.feMergeNode, declaration); }
|
|
32
|
+
export function FeMorphology(declaration) { return ReactiveTreeNode.declare(SvgTags.feMorphology, declaration); }
|
|
33
|
+
export function FeOffset(declaration) { return ReactiveTreeNode.declare(SvgTags.feOffset, declaration); }
|
|
34
|
+
export function FePointLight(declaration) { return ReactiveTreeNode.declare(SvgTags.fePointLight, declaration); }
|
|
35
|
+
export function FeSpecularLighting(declaration) { return ReactiveTreeNode.declare(SvgTags.feSpecularLighting, declaration); }
|
|
36
|
+
export function FeSpotLight(declaration) { return ReactiveTreeNode.declare(SvgTags.feSpotLight, declaration); }
|
|
37
|
+
export function FeTile(declaration) { return ReactiveTreeNode.declare(SvgTags.feTile, declaration); }
|
|
38
|
+
export function FeTurbulence(declaration) { return ReactiveTreeNode.declare(SvgTags.feTurbulence, declaration); }
|
|
39
|
+
export function Filter(declaration) { return ReactiveTreeNode.declare(SvgTags.filter, declaration); }
|
|
40
|
+
export function ForeignObject(declaration) { return ReactiveTreeNode.declare(SvgTags.foreignObject, declaration); }
|
|
41
|
+
export function G(declaration) { return ReactiveTreeNode.declare(SvgTags.g, declaration); }
|
|
42
|
+
export function SvgImage(declaration) { return ReactiveTreeNode.declare(SvgTags.image, declaration); }
|
|
43
|
+
export function SvgLine(declaration) { return ReactiveTreeNode.declare(SvgTags.line, declaration); }
|
|
44
|
+
export function LinearGradient(declaration) { return ReactiveTreeNode.declare(SvgTags.linearGradient, declaration); }
|
|
45
|
+
export function Marker(declaration) { return ReactiveTreeNode.declare(SvgTags.marker, declaration); }
|
|
46
|
+
export function Mask(declaration) { return ReactiveTreeNode.declare(SvgTags.mask, declaration); }
|
|
47
|
+
export function MetaData(declaration) { return ReactiveTreeNode.declare(SvgTags.metadata, declaration); }
|
|
48
|
+
export function MPath(declaration) { return ReactiveTreeNode.declare(SvgTags.mpath, declaration); }
|
|
49
|
+
export function Path(declaration) { return ReactiveTreeNode.declare(SvgTags.path, declaration); }
|
|
50
|
+
export function Pattern(declaration) { return ReactiveTreeNode.declare(SvgTags.pattern, declaration); }
|
|
51
|
+
export function Polygon(declaration) { return ReactiveTreeNode.declare(SvgTags.polygon, declaration); }
|
|
52
|
+
export function PolyLine(declaration) { return ReactiveTreeNode.declare(SvgTags.polyline, declaration); }
|
|
53
|
+
export function RadialGradient(declaration) { return ReactiveTreeNode.declare(SvgTags.radialGradient, declaration); }
|
|
54
|
+
export function Rect(declaration) { return ReactiveTreeNode.declare(SvgTags.rect, declaration); }
|
|
55
|
+
export function Stop(declaration) { return ReactiveTreeNode.declare(SvgTags.stop, declaration); }
|
|
56
|
+
export function SvgSwitch(declaration) { return ReactiveTreeNode.declare(SvgTags.switch, declaration); }
|
|
57
|
+
export function Symbol(declaration) { return ReactiveTreeNode.declare(SvgTags.symbol, declaration); }
|
|
58
|
+
export function Text(declaration) { return ReactiveTreeNode.declare(SvgTags.text, declaration); }
|
|
59
|
+
export function TextPath(declaration) { return ReactiveTreeNode.declare(SvgTags.textPath, declaration); }
|
|
60
|
+
export function TSpan(declaration) { return ReactiveTreeNode.declare(SvgTags.tspan, declaration); }
|
|
61
|
+
export function Use(declaration) { return ReactiveTreeNode.declare(SvgTags.use, declaration); }
|
|
62
|
+
export function View(declaration) { return ReactiveTreeNode.declare(SvgTags.view, declaration); }
|
|
63
63
|
const SvgTags = {
|
|
64
64
|
svg: new SvgDriver("svg", false, el => el.kind = ElKind.native),
|
|
65
65
|
a: new SvgDriver("a", false, el => el.kind = ElKind.native),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "verstak",
|
|
3
|
-
"version": "0.94.
|
|
3
|
+
"version": "0.94.25030",
|
|
4
4
|
"description": "Verstak - Front-End Library",
|
|
5
5
|
"publisher": "Nezaboodka Software",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
"markdown-it": "^14.1.0",
|
|
43
43
|
"markdown-it-prism": "^2.3.0",
|
|
44
44
|
"prismjs": "^1.29.0",
|
|
45
|
-
"reactronic": "^0.94.
|
|
45
|
+
"reactronic": "^0.94.25030"
|
|
46
46
|
},
|
|
47
47
|
"devDependencies": {
|
|
48
48
|
"@types/markdown-it": "14.1.2",
|