verstak 0.22.514 → 0.22.515
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/core/VBlock.d.ts +5 -4
- package/build/dist/source/core/VBlock.js +24 -20
- package/build/dist/source/html/Blocks.d.ts +7 -7
- package/build/dist/source/html/Blocks.js +18 -20
- package/build/dist/source/html/HtmlBlocks.d.ts +174 -174
- package/build/dist/source/html/HtmlBlocks.js +176 -176
- package/build/dist/source/html/HtmlDriver.js +1 -1
- package/build/dist/source/html/ReactingFocuser.d.ts +1 -1
- package/build/dist/source/html/ReactingFocuser.js +2 -2
- package/package.json +1 -1
|
@@ -12,6 +12,7 @@ export declare const enum Priority {
|
|
|
12
12
|
export declare type Type<T> = new (...args: any[]) => T;
|
|
13
13
|
export declare type BlockBody<T = unknown, M = unknown, R = void> = Render<T, M, R> | BlockVmt<T, M, R>;
|
|
14
14
|
export interface BlockVmt<T = unknown, M = unknown, R = void> {
|
|
15
|
+
key?: string;
|
|
15
16
|
reacting?: boolean;
|
|
16
17
|
triggers?: unknown;
|
|
17
18
|
initialize?: Render<T, M, R>;
|
|
@@ -19,15 +20,15 @@ export interface BlockVmt<T = unknown, M = unknown, R = void> {
|
|
|
19
20
|
render?: Render<T, M, R>;
|
|
20
21
|
finalize?: Render<T, M, R>;
|
|
21
22
|
}
|
|
22
|
-
export declare function
|
|
23
|
-
export declare function
|
|
23
|
+
export declare function asBaseFor<T, M, R>(outer: BlockBody<T, M, R> | undefined, base: BlockBody<T, M, R>): BlockVmt<T, M, R>;
|
|
24
|
+
export declare function setContext<T extends Object>(type: Type<T>, context: T): void;
|
|
24
25
|
export declare function use<T extends Object>(type: Type<T>): T;
|
|
25
26
|
export declare abstract class VBlock<T = unknown, M = unknown, R = void> {
|
|
26
27
|
static readonly shortFrameDuration = 16;
|
|
27
28
|
static readonly longFrameDuration = 300;
|
|
28
29
|
static currentRenderingPriority: Priority;
|
|
29
30
|
static frameDuration: number;
|
|
30
|
-
abstract readonly
|
|
31
|
+
abstract readonly key: string;
|
|
31
32
|
abstract readonly driver: AbstractDriver<T>;
|
|
32
33
|
abstract readonly body: Readonly<BlockVmt<T, M, R>>;
|
|
33
34
|
abstract model: M;
|
|
@@ -56,7 +57,7 @@ export declare abstract class VBlock<T = unknown, M = unknown, R = void> {
|
|
|
56
57
|
static get current(): VBlock;
|
|
57
58
|
static renderNestedTreesThenDo(action: (error: unknown) => void): void;
|
|
58
59
|
static runForAllBlocks<T>(action: (e: T) => void): void;
|
|
59
|
-
static claim<T = undefined, M = unknown, R = void>(
|
|
60
|
+
static claim<T = undefined, M = unknown, R = void>(driver: AbstractDriver<T> | undefined, body: BlockBody<T, M, R>): VBlock<T, M, R>;
|
|
60
61
|
static getDefaultLoggingOptions(): LoggingOptions | undefined;
|
|
61
62
|
static setDefaultLoggingOptions(logging?: LoggingOptions): void;
|
|
62
63
|
}
|
|
@@ -25,7 +25,7 @@ export var Priority;
|
|
|
25
25
|
Priority[Priority["AsyncP1"] = 1] = "AsyncP1";
|
|
26
26
|
Priority[Priority["AsyncP2"] = 2] = "AsyncP2";
|
|
27
27
|
})(Priority || (Priority = {}));
|
|
28
|
-
export function
|
|
28
|
+
export function asBaseFor(outer, base) {
|
|
29
29
|
if (outer instanceof Function)
|
|
30
30
|
outer = { render: outer };
|
|
31
31
|
if (base instanceof Function)
|
|
@@ -37,8 +37,8 @@ function via(outer, base) {
|
|
|
37
37
|
const inherited = base !== null && base !== void 0 ? base : NOP;
|
|
38
38
|
return outer ? b => outer(b, () => inherited(b)) : inherited;
|
|
39
39
|
}
|
|
40
|
-
export function
|
|
41
|
-
return VBlockImpl.
|
|
40
|
+
export function setContext(type, context) {
|
|
41
|
+
return VBlockImpl.setContext(type, context);
|
|
42
42
|
}
|
|
43
43
|
export function use(type) {
|
|
44
44
|
return VBlockImpl.use(type);
|
|
@@ -60,22 +60,22 @@ export class VBlock {
|
|
|
60
60
|
static runForAllBlocks(action) {
|
|
61
61
|
forEachChildRecursively(gSysRoot, action);
|
|
62
62
|
}
|
|
63
|
-
static claim(
|
|
63
|
+
static claim(driver, body) {
|
|
64
64
|
var _a, _b;
|
|
65
|
-
if (body instanceof Function)
|
|
66
|
-
body = { render: body };
|
|
67
65
|
let result;
|
|
68
66
|
const owner = gCurrent.instance;
|
|
69
67
|
const children = owner.children;
|
|
70
68
|
let ex = undefined;
|
|
71
69
|
driver !== null && driver !== void 0 ? driver : (driver = AbstractDriver.group);
|
|
72
|
-
|
|
70
|
+
if (body instanceof Function)
|
|
71
|
+
body = { render: body };
|
|
72
|
+
let key = body.key;
|
|
73
73
|
if (driver.isRow) {
|
|
74
74
|
const last = children.lastClaimedItem();
|
|
75
75
|
if (((_a = last === null || last === void 0 ? void 0 : last.instance) === null || _a === void 0 ? void 0 : _a.driver) === driver)
|
|
76
76
|
ex = last;
|
|
77
77
|
}
|
|
78
|
-
ex !== null && ex !== void 0 ? ex : (ex = children.claim(
|
|
78
|
+
ex !== null && ex !== void 0 ? ex : (ex = children.claim(key = key || `${++owner.numerator}!`, undefined, "nested blocks can be declared inside render function only"));
|
|
79
79
|
if (ex) {
|
|
80
80
|
result = ex.instance;
|
|
81
81
|
if (result.driver !== driver && driver !== undefined)
|
|
@@ -86,7 +86,7 @@ export class VBlock {
|
|
|
86
86
|
result.body = body;
|
|
87
87
|
}
|
|
88
88
|
else {
|
|
89
|
-
result = new VBlockImpl(
|
|
89
|
+
result = new VBlockImpl(key || `${++owner.numerator}!`, driver, owner, body);
|
|
90
90
|
result.item = children.add(result);
|
|
91
91
|
VBlockImpl.grandCount++;
|
|
92
92
|
if (body.reacting)
|
|
@@ -188,8 +188,8 @@ export class StaticDriver extends AbstractDriver {
|
|
|
188
188
|
super.initialize(block, this.element);
|
|
189
189
|
}
|
|
190
190
|
}
|
|
191
|
-
function
|
|
192
|
-
return block.stamp >= 0 ? block.
|
|
191
|
+
function getBlockKey(block) {
|
|
192
|
+
return block.stamp >= 0 ? block.key : undefined;
|
|
193
193
|
}
|
|
194
194
|
class VBlockContext extends ObservableObject {
|
|
195
195
|
constructor(type, instance) {
|
|
@@ -203,9 +203,9 @@ __decorate([
|
|
|
203
203
|
__metadata("design:type", Object)
|
|
204
204
|
], VBlockContext.prototype, "type", void 0);
|
|
205
205
|
class VBlockImpl extends VBlock {
|
|
206
|
-
constructor(
|
|
206
|
+
constructor(key, driver, owner, body) {
|
|
207
207
|
super();
|
|
208
|
-
this.
|
|
208
|
+
this.key = key;
|
|
209
209
|
this.driver = driver;
|
|
210
210
|
this.body = body;
|
|
211
211
|
this.model = undefined;
|
|
@@ -225,7 +225,7 @@ class VBlockImpl extends VBlock {
|
|
|
225
225
|
this.renderingPriority = Priority.SyncP0;
|
|
226
226
|
this.level = owner.level + 1;
|
|
227
227
|
this.host = owner;
|
|
228
|
-
this.children = new Collection(driver.isSequential,
|
|
228
|
+
this.children = new Collection(driver.isSequential, getBlockKey);
|
|
229
229
|
this.numerator = 0;
|
|
230
230
|
this.item = undefined;
|
|
231
231
|
this.stamp = 0;
|
|
@@ -332,7 +332,7 @@ class VBlockImpl extends VBlock {
|
|
|
332
332
|
throw new Error(`${type.name} context doesn't exist`);
|
|
333
333
|
return (_b = b.context) === null || _b === void 0 ? void 0 : _b.instance;
|
|
334
334
|
}
|
|
335
|
-
static
|
|
335
|
+
static setContext(type, context) {
|
|
336
336
|
const block = gCurrent.instance;
|
|
337
337
|
const host = block.host;
|
|
338
338
|
const hostCtx = nonreactive(() => { var _a; return (_a = host.context) === null || _a === void 0 ? void 0 : _a.instance; });
|
|
@@ -380,8 +380,12 @@ function runRenderNestedTreesThenDo(error, action) {
|
|
|
380
380
|
let promised = undefined;
|
|
381
381
|
try {
|
|
382
382
|
children.endMerge(error);
|
|
383
|
-
for (const item of children.removedItems(true))
|
|
383
|
+
for (const item of children.removedItems(true)) {
|
|
384
|
+
const b = item.instance;
|
|
385
|
+
if (b.key !== b.body.key)
|
|
386
|
+
console.warn(`every conditionally rendered block requires explicit key: ${b.key}, ${b.driver.name}`);
|
|
384
387
|
runFinalize(item, true);
|
|
388
|
+
}
|
|
385
389
|
if (!error) {
|
|
386
390
|
const ownerIsBlock = owner.driver.isBlock;
|
|
387
391
|
const sequential = children.strict;
|
|
@@ -493,7 +497,7 @@ function prepareRender(item, redeploy, sequential) {
|
|
|
493
497
|
if ((_a = block.body) === null || _a === void 0 ? void 0 : _a.reacting) {
|
|
494
498
|
Transaction.outside(() => {
|
|
495
499
|
if (Rx.isLogging)
|
|
496
|
-
Rx.setLoggingHint(block, block.
|
|
500
|
+
Rx.setLoggingHint(block, block.key);
|
|
497
501
|
Rx.getController(block.rerender).configure({
|
|
498
502
|
order: block.level,
|
|
499
503
|
});
|
|
@@ -530,7 +534,7 @@ function runRender(item) {
|
|
|
530
534
|
}
|
|
531
535
|
catch (e) {
|
|
532
536
|
runRenderNestedTreesThenDo(e, NOP);
|
|
533
|
-
console.log(`Rendering failed: ${block.
|
|
537
|
+
console.log(`Rendering failed: ${block.key}`);
|
|
534
538
|
console.log(`${e}`);
|
|
535
539
|
}
|
|
536
540
|
});
|
|
@@ -550,7 +554,7 @@ function runFinalize(item, isLeader) {
|
|
|
550
554
|
else
|
|
551
555
|
gFirstToDispose = gLastToDispose = item;
|
|
552
556
|
if (gFirstToDispose === item)
|
|
553
|
-
Transaction.run({ separation: "disposal", hint: `runDisposalLoop(initiator=${item.instance.
|
|
557
|
+
Transaction.run({ separation: "disposal", hint: `runDisposalLoop(initiator=${item.instance.key})` }, () => {
|
|
554
558
|
void runDisposalLoop().then(NOP, error => console.log(error));
|
|
555
559
|
});
|
|
556
560
|
}
|
|
@@ -648,7 +652,7 @@ function defaultReject(error) {
|
|
|
648
652
|
Promise.prototype.then = reactronicDomHookedThen;
|
|
649
653
|
const NOP = (...args) => { };
|
|
650
654
|
const gSysDriver = new StaticDriver(null, "SYSTEM", LayoutKind.Group);
|
|
651
|
-
const gSysRoot = Collection.createItem(new VBlockImpl(
|
|
655
|
+
const gSysRoot = Collection.createItem(new VBlockImpl(gSysDriver.name, gSysDriver, { level: 0 }, { reacting: true, render: NOP }));
|
|
652
656
|
gSysRoot.instance.item = gSysRoot;
|
|
653
657
|
Object.defineProperty(gSysRoot.instance, "host", {
|
|
654
658
|
value: gSysRoot.instance,
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import { VBlock, BlockBody, Align, CellRange } from "../core/api";
|
|
2
2
|
import { HtmlDriver } from "./HtmlDriver";
|
|
3
|
-
export declare function Block<M = unknown, R = void>(
|
|
4
|
-
export declare function PlainText(content: string,
|
|
5
|
-
export declare function HtmlText(content: string,
|
|
6
|
-
export declare function Grid<M = unknown, R = void>(
|
|
7
|
-
export declare function Line<T = void>(
|
|
8
|
-
export declare function lineFeed(
|
|
9
|
-
export declare function Group<M = unknown, R = void>(
|
|
3
|
+
export declare function Block<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
|
|
4
|
+
export declare function PlainText(content: string, body?: BlockBody<HTMLElement, void, void>): VBlock<HTMLElement, void, void>;
|
|
5
|
+
export declare function HtmlText(content: string, body?: BlockBody<HTMLElement, void, void>): VBlock<HTMLElement, void, void>;
|
|
6
|
+
export declare function Grid<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
|
|
7
|
+
export declare function Line<T = void>(body: (block: void) => T): void;
|
|
8
|
+
export declare function lineFeed(noCoalescing?: boolean, key?: string): VBlock<HTMLElement>;
|
|
9
|
+
export declare function Group<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
|
|
10
10
|
export declare class VerstakDriver<T extends HTMLElement> extends HtmlDriver<T> {
|
|
11
11
|
applyCellRange(block: VBlock<T>, cellRange: CellRange | undefined): void;
|
|
12
12
|
applyWidthGrowth(block: VBlock<T>, widthGrowth: number): void;
|
|
@@ -1,36 +1,35 @@
|
|
|
1
|
-
import { VBlock, LayoutKind, Align, GridCursor,
|
|
1
|
+
import { VBlock, LayoutKind, Align, GridCursor, asBaseFor } from "../core/api";
|
|
2
2
|
import { HtmlDriver } from "./HtmlDriver";
|
|
3
|
-
export function Block(
|
|
4
|
-
return VBlock.claim(
|
|
3
|
+
export function Block(body) {
|
|
4
|
+
return VBlock.claim(VerstakTags.block, body);
|
|
5
5
|
}
|
|
6
|
-
export function PlainText(content,
|
|
7
|
-
return VBlock.claim(
|
|
6
|
+
export function PlainText(content, body) {
|
|
7
|
+
return VBlock.claim(VerstakTags.text, asBaseFor(body, {
|
|
8
8
|
render(b) {
|
|
9
9
|
b.native.innerText = content;
|
|
10
10
|
},
|
|
11
11
|
}));
|
|
12
12
|
}
|
|
13
|
-
export function HtmlText(content,
|
|
14
|
-
return VBlock.claim(
|
|
13
|
+
export function HtmlText(content, body) {
|
|
14
|
+
return VBlock.claim(VerstakTags.text, asBaseFor(body, {
|
|
15
15
|
render(b) {
|
|
16
16
|
b.native.innerHTML = content;
|
|
17
17
|
},
|
|
18
18
|
}));
|
|
19
19
|
}
|
|
20
|
-
export function Grid(
|
|
21
|
-
return VBlock.claim(
|
|
20
|
+
export function Grid(body) {
|
|
21
|
+
return VBlock.claim(VerstakTags.grid, body);
|
|
22
22
|
}
|
|
23
|
-
export function Line(
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
return result;
|
|
23
|
+
export function Line(body) {
|
|
24
|
+
lineFeed();
|
|
25
|
+
body();
|
|
26
|
+
lineFeed();
|
|
28
27
|
}
|
|
29
|
-
export function lineFeed(
|
|
30
|
-
return VBlock.claim(
|
|
28
|
+
export function lineFeed(noCoalescing, key) {
|
|
29
|
+
return VBlock.claim(VerstakTags.row, { key });
|
|
31
30
|
}
|
|
32
|
-
export function Group(
|
|
33
|
-
return VBlock.claim(
|
|
31
|
+
export function Group(body) {
|
|
32
|
+
return VBlock.claim(VerstakTags.group, body);
|
|
34
33
|
}
|
|
35
34
|
export class VerstakDriver extends HtmlDriver {
|
|
36
35
|
applyCellRange(block, cellRange) {
|
|
@@ -120,7 +119,7 @@ export class VerstakDriver extends HtmlDriver {
|
|
|
120
119
|
}
|
|
121
120
|
render(block) {
|
|
122
121
|
if (block.driver.layout < LayoutKind.Row)
|
|
123
|
-
VBlock.claim(
|
|
122
|
+
VBlock.claim(VerstakTags.row, {});
|
|
124
123
|
return super.render(block);
|
|
125
124
|
}
|
|
126
125
|
}
|
|
@@ -131,6 +130,5 @@ const VerstakTags = {
|
|
|
131
130
|
row: new VerstakDriver("v-row", LayoutKind.Row),
|
|
132
131
|
group: new VerstakDriver("v-group", LayoutKind.Group),
|
|
133
132
|
};
|
|
134
|
-
const EMPTY_BLOCK_BODY = { render() { } };
|
|
135
133
|
const AlignToCss = ["stretch", "start", "center", "end"];
|
|
136
134
|
const TextAlignCss = ["justify", "left", "center", "right"];
|
|
@@ -1,175 +1,175 @@
|
|
|
1
1
|
import { VBlock, Render, BlockBody } from "../core/api";
|
|
2
|
-
export declare function HtmlBody(
|
|
3
|
-
export declare function A<M = unknown, R = void>(
|
|
4
|
-
export declare function Abbr<M = unknown, R = void>(
|
|
5
|
-
export declare function Address<M = unknown, R = void>(
|
|
6
|
-
export declare function Area<M = unknown, R = void>(
|
|
7
|
-
export declare function Article<M = unknown, R = void>(
|
|
8
|
-
export declare function Aside<M = unknown, R = void>(
|
|
9
|
-
export declare function Audio<M = unknown, R = void>(
|
|
10
|
-
export declare function B<M = unknown, R = void>(
|
|
11
|
-
export declare function Base<M = unknown, R = void>(
|
|
12
|
-
export declare function Bdi<M = unknown, R = void>(
|
|
13
|
-
export declare function Bdo<M = unknown, R = void>(
|
|
14
|
-
export declare function Big<M = unknown, R = void>(
|
|
15
|
-
export declare function BlockQuote<M = unknown, R = void>(
|
|
16
|
-
export declare function Body<M = unknown, R = void>(
|
|
17
|
-
export declare function BR<M = unknown, R = void>(
|
|
18
|
-
export declare function Button<M = unknown, R = void>(
|
|
19
|
-
export declare function Canvas<M = unknown, R = void>(
|
|
20
|
-
export declare function Caption<M = unknown, R = void>(
|
|
21
|
-
export declare function Cite<M = unknown, R = void>(
|
|
22
|
-
export declare function Code<M = unknown, R = void>(
|
|
23
|
-
export declare function Col<M = unknown, R = void>(
|
|
24
|
-
export declare function ColGroup<M = unknown, R = void>(
|
|
25
|
-
export declare function Data<M = unknown, R = void>(
|
|
26
|
-
export declare function DataList<M = unknown, R = void>(
|
|
27
|
-
export declare function DD<M = unknown, R = void>(
|
|
28
|
-
export declare function Del<M = unknown, R = void>(
|
|
29
|
-
export declare function Details<M = unknown, R = void>(
|
|
30
|
-
export declare function Dfn<M = unknown, R = void>(
|
|
31
|
-
export declare function Div<M = unknown, R = void>(
|
|
32
|
-
export declare function DL<M = unknown, R = void>(
|
|
33
|
-
export declare function DT<M = unknown, R = void>(
|
|
34
|
-
export declare function EM<M = unknown, R = void>(
|
|
35
|
-
export declare function Embed<M = unknown, R = void>(
|
|
36
|
-
export declare function FieldSet<M = unknown, R = void>(
|
|
37
|
-
export declare function FigCaption<M = unknown, R = void>(
|
|
38
|
-
export declare function Figure<M = unknown, R = void>(
|
|
39
|
-
export declare function Footer<M = unknown, R = void>(
|
|
40
|
-
export declare function Form<M = unknown, R = void>(
|
|
41
|
-
export declare function H1<M = unknown, R = void>(
|
|
42
|
-
export declare function H2<M = unknown, R = void>(
|
|
43
|
-
export declare function H3<M = unknown, R = void>(
|
|
44
|
-
export declare function H4<M = unknown, R = void>(
|
|
45
|
-
export declare function H5<M = unknown, R = void>(
|
|
46
|
-
export declare function H6<M = unknown, R = void>(
|
|
47
|
-
export declare function Head<M = unknown, R = void>(
|
|
48
|
-
export declare function Header<M = unknown, R = void>(
|
|
49
|
-
export declare function HGroup<M = unknown, R = void>(
|
|
50
|
-
export declare function HR<M = unknown, R = void>(
|
|
51
|
-
export declare function Html<M = unknown, R = void>(
|
|
52
|
-
export declare function I<M = unknown, R = void>(
|
|
53
|
-
export declare function IFrame<M = unknown, R = void>(
|
|
54
|
-
export declare function Img<M = unknown, R = void>(
|
|
55
|
-
export declare function Input<M = unknown, R = void>(
|
|
56
|
-
export declare function Ins<M = unknown, R = void>(
|
|
57
|
-
export declare function Kbd<M = unknown, R = void>(
|
|
58
|
-
export declare function KeyGen<M = unknown, R = void>(
|
|
59
|
-
export declare function Label<M = unknown, R = void>(
|
|
60
|
-
export declare function Legend<M = unknown, R = void>(
|
|
61
|
-
export declare function LI<M = unknown, R = void>(
|
|
62
|
-
export declare function Link<M = unknown, R = void>(
|
|
63
|
-
export declare function Main<M = unknown, R = void>(
|
|
64
|
-
export declare function Map<M = unknown, R = void>(
|
|
65
|
-
export declare function Mark<M = unknown, R = void>(
|
|
66
|
-
export declare function Menu<M = unknown, R = void>(
|
|
67
|
-
export declare function MenuItem<M = unknown, R = void>(
|
|
68
|
-
export declare function Meta<M = unknown, R = void>(
|
|
69
|
-
export declare function Meter<M = unknown, R = void>(
|
|
70
|
-
export declare function Nav<M = unknown, R = void>(
|
|
71
|
-
export declare function NoIndex<M = unknown, R = void>(
|
|
72
|
-
export declare function NoScript<M = unknown, R = void>(
|
|
73
|
-
export declare function Obj<M = unknown, R = void>(
|
|
74
|
-
export declare function OL<M = unknown, R = void>(
|
|
75
|
-
export declare function OptGroup<M = unknown, R = void>(
|
|
76
|
-
export declare function Option<M = unknown, R = void>(
|
|
77
|
-
export declare function Output<M = unknown, R = void>(
|
|
78
|
-
export declare function P<M = unknown, R = void>(
|
|
79
|
-
export declare function Param<M = unknown, R = void>(
|
|
80
|
-
export declare function Picture<M = unknown, R = void>(
|
|
81
|
-
export declare function Pre<M = unknown, R = void>(
|
|
82
|
-
export declare function Progress<M = unknown, R = void>(
|
|
83
|
-
export declare function Q<M = unknown, R = void>(
|
|
84
|
-
export declare function RP<M = unknown, R = void>(
|
|
85
|
-
export declare function RT<M = unknown, R = void>(
|
|
86
|
-
export declare function Ruby<M = unknown, R = void>(
|
|
87
|
-
export declare function S<M = unknown, R = void>(
|
|
88
|
-
export declare function Samp<M = unknown, R = void>(
|
|
89
|
-
export declare function Script<M = unknown, R = void>(
|
|
90
|
-
export declare function Section<M = unknown, R = void>(
|
|
91
|
-
export declare function Select<M = unknown, R = void>(
|
|
92
|
-
export declare function Small<M = unknown, R = void>(
|
|
93
|
-
export declare function Source<M = unknown, R = void>(
|
|
94
|
-
export declare function Span<M = unknown, R = void>(
|
|
95
|
-
export declare function Strong<M = unknown, R = void>(
|
|
96
|
-
export declare function Style<M = unknown, R = void>(
|
|
97
|
-
export declare function Sub<M = unknown, R = void>(
|
|
98
|
-
export declare function Summary<M = unknown, R = void>(
|
|
99
|
-
export declare function Sup<M = unknown, R = void>(
|
|
100
|
-
export declare function Table<M = unknown, R = void>(
|
|
101
|
-
export declare function Template<M = unknown, R = void>(
|
|
102
|
-
export declare function TBody<M = unknown, R = void>(
|
|
103
|
-
export declare function TD<M = unknown, R = void>(
|
|
104
|
-
export declare function TextArea<M = unknown, R = void>(
|
|
105
|
-
export declare function TFoot<M = unknown, R = void>(
|
|
106
|
-
export declare function TH<M = unknown, R = void>(
|
|
107
|
-
export declare function THead<M = unknown, R = void>(
|
|
108
|
-
export declare function Time<M = unknown, R = void>(
|
|
109
|
-
export declare function Title<M = unknown, R = void>(
|
|
110
|
-
export declare function TR<M = unknown, R = void>(
|
|
111
|
-
export declare function Track<M = unknown, R = void>(
|
|
112
|
-
export declare function U<M = unknown, R = void>(
|
|
113
|
-
export declare function UL<M = unknown, R = void>(
|
|
114
|
-
export declare function Var<M = unknown, R = void>(
|
|
115
|
-
export declare function Video<M = unknown, R = void>(
|
|
116
|
-
export declare function Wbr<M = unknown, R = void>(
|
|
117
|
-
export declare function Svg<M = unknown, R = void>(
|
|
118
|
-
export declare function SvgA<M = unknown, R = void>(
|
|
119
|
-
export declare function Animate<M = unknown, R = void>(
|
|
120
|
-
export declare function AnimateMotion<M = unknown, R = void>(
|
|
121
|
-
export declare function AnimateTransform<M = unknown, R = void>(
|
|
122
|
-
export declare function Circle<M = unknown, R = void>(
|
|
123
|
-
export declare function ClipPath<M = unknown, R = void>(
|
|
124
|
-
export declare function Defs<M = unknown, R = void>(
|
|
125
|
-
export declare function Desc<M = unknown, R = void>(
|
|
126
|
-
export declare function Ellipse<M = unknown, R = void>(
|
|
127
|
-
export declare function FeBlend<M = unknown, R = void>(
|
|
128
|
-
export declare function FeColorMatrix<M = unknown, R = void>(
|
|
129
|
-
export declare function FeComponentTransfer<M = unknown, R = void>(
|
|
130
|
-
export declare function FeComposite<M = unknown, R = void>(
|
|
131
|
-
export declare function FeConvolveMatrix<M = unknown, R = void>(
|
|
132
|
-
export declare function FeDiffuseLighting<M = unknown, R = void>(
|
|
133
|
-
export declare function FeDisplacementMap<M = unknown, R = void>(
|
|
134
|
-
export declare function FeDistantLight<M = unknown, R = void>(
|
|
135
|
-
export declare function FeDropShadow<M = unknown, R = void>(
|
|
136
|
-
export declare function FeFlood<M = unknown, R = void>(
|
|
137
|
-
export declare function FeFuncA<M = unknown, R = void>(
|
|
138
|
-
export declare function FeFuncB<M = unknown, R = void>(
|
|
139
|
-
export declare function FeFuncG<M = unknown, R = void>(
|
|
140
|
-
export declare function FeFuncR<M = unknown, R = void>(
|
|
141
|
-
export declare function FeGaussianBlur<M = unknown, R = void>(
|
|
142
|
-
export declare function FeImage<M = unknown, R = void>(
|
|
143
|
-
export declare function FeMerge<M = unknown, R = void>(
|
|
144
|
-
export declare function FeMergeNode<M = unknown, R = void>(
|
|
145
|
-
export declare function FeMorphology<M = unknown, R = void>(
|
|
146
|
-
export declare function FeOffset<M = unknown, R = void>(
|
|
147
|
-
export declare function FePointLight<M = unknown, R = void>(
|
|
148
|
-
export declare function FeSpecularLighting<M = unknown, R = void>(
|
|
149
|
-
export declare function FeSpotLight<M = unknown, R = void>(
|
|
150
|
-
export declare function FeTile<M = unknown, R = void>(
|
|
151
|
-
export declare function FeTurbulence<M = unknown, R = void>(
|
|
152
|
-
export declare function Filter<M = unknown, R = void>(
|
|
153
|
-
export declare function ForeignObject<M = unknown, R = void>(
|
|
154
|
-
export declare function G<M = unknown, R = void>(
|
|
155
|
-
export declare function SvgImage<M = unknown, R = void>(
|
|
156
|
-
export declare function SvgLine<M = unknown, R = void>(
|
|
157
|
-
export declare function LinearGradient<M = unknown, R = void>(
|
|
158
|
-
export declare function Marker<M = unknown, R = void>(
|
|
159
|
-
export declare function Mask<M = unknown, R = void>(
|
|
160
|
-
export declare function MetaData<M = unknown, R = void>(
|
|
161
|
-
export declare function MPath<M = unknown, R = void>(
|
|
162
|
-
export declare function Path<M = unknown, R = void>(
|
|
163
|
-
export declare function Pattern<M = unknown, R = void>(
|
|
164
|
-
export declare function Polygon<M = unknown, R = void>(
|
|
165
|
-
export declare function PolyLine<M = unknown, R = void>(
|
|
166
|
-
export declare function RadialGradient<M = unknown, R = void>(
|
|
167
|
-
export declare function Rect<M = unknown, R = void>(
|
|
168
|
-
export declare function Stop<M = unknown, R = void>(
|
|
169
|
-
export declare function SvgSwitch<M = unknown, R = void>(
|
|
170
|
-
export declare function Symbol<M = unknown, R = void>(
|
|
171
|
-
export declare function Text<M = unknown, R = void>(
|
|
172
|
-
export declare function TextPath<M = unknown, R = void>(
|
|
173
|
-
export declare function TSpan<M = unknown, R = void>(
|
|
174
|
-
export declare function Use<M = unknown, R = void>(
|
|
175
|
-
export declare function View<M = unknown, R = void>(
|
|
2
|
+
export declare function HtmlBody(body: BlockBody<HTMLElement>): VBlock<HTMLElement>;
|
|
3
|
+
export declare function A<M = unknown, R = void>(body: BlockBody<HTMLAnchorElement, M, R> | Render<HTMLAnchorElement, M, R>): VBlock<HTMLAnchorElement, M, R>;
|
|
4
|
+
export declare function Abbr<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
|
|
5
|
+
export declare function Address<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
|
|
6
|
+
export declare function Area<M = unknown, R = void>(body: BlockBody<HTMLAreaElement, M, R> | Render<HTMLAreaElement, M, R>): VBlock<HTMLAreaElement, M, R>;
|
|
7
|
+
export declare function Article<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
|
|
8
|
+
export declare function Aside<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
|
|
9
|
+
export declare function Audio<M = unknown, R = void>(body: BlockBody<HTMLAudioElement, M, R> | Render<HTMLAudioElement, M, R>): VBlock<HTMLAudioElement, M, R>;
|
|
10
|
+
export declare function B<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
|
|
11
|
+
export declare function Base<M = unknown, R = void>(body: BlockBody<HTMLBaseElement, M, R> | Render<HTMLBaseElement, M, R>): VBlock<HTMLBaseElement, M, R>;
|
|
12
|
+
export declare function Bdi<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
|
|
13
|
+
export declare function Bdo<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
|
|
14
|
+
export declare function Big<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
|
|
15
|
+
export declare function BlockQuote<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
|
|
16
|
+
export declare function Body<M = unknown, R = void>(body: BlockBody<HTMLBodyElement, M, R> | Render<HTMLBodyElement, M, R>): VBlock<HTMLBodyElement, M, R>;
|
|
17
|
+
export declare function BR<M = unknown, R = void>(body: BlockBody<HTMLBRElement, M, R> | Render<HTMLBRElement, M, R>): VBlock<HTMLBRElement, M, R>;
|
|
18
|
+
export declare function Button<M = unknown, R = void>(body: BlockBody<HTMLButtonElement, M, R> | Render<HTMLButtonElement, M, R>): VBlock<HTMLButtonElement, M, R>;
|
|
19
|
+
export declare function Canvas<M = unknown, R = void>(body: BlockBody<HTMLCanvasElement, M, R> | Render<HTMLCanvasElement, M, R>): VBlock<HTMLCanvasElement, M, R>;
|
|
20
|
+
export declare function Caption<M = unknown, R = void>(body: BlockBody<HTMLTableCaptionElement, M, R> | Render<HTMLTableCaptionElement, M, R>): VBlock<HTMLTableCaptionElement, M, R>;
|
|
21
|
+
export declare function Cite<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
|
|
22
|
+
export declare function Code<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
|
|
23
|
+
export declare function Col<M = unknown, R = void>(body: BlockBody<HTMLTableColElement, M, R> | Render<HTMLTableColElement, M, R>): VBlock<HTMLTableColElement, M, R>;
|
|
24
|
+
export declare function ColGroup<M = unknown, R = void>(body: BlockBody<HTMLTableColElement, M, R> | Render<HTMLTableColElement, M, R>): VBlock<HTMLTableColElement, M, R>;
|
|
25
|
+
export declare function Data<M = unknown, R = void>(body: BlockBody<HTMLDataElement, M, R> | Render<HTMLDataElement, M, R>): VBlock<HTMLDataElement, M, R>;
|
|
26
|
+
export declare function DataList<M = unknown, R = void>(body: BlockBody<HTMLDataListElement, M, R> | Render<HTMLDataListElement, M, R>): VBlock<HTMLDataListElement, M, R>;
|
|
27
|
+
export declare function DD<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
|
|
28
|
+
export declare function Del<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
|
|
29
|
+
export declare function Details<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
|
|
30
|
+
export declare function Dfn<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
|
|
31
|
+
export declare function Div<M = unknown, R = void>(body: BlockBody<HTMLDivElement, M, R> | Render<HTMLDivElement, M, R>): VBlock<HTMLDivElement, M, R>;
|
|
32
|
+
export declare function DL<M = unknown, R = void>(body: BlockBody<HTMLDListElement, M, R> | Render<HTMLDListElement, M, R>): VBlock<HTMLDListElement, M, R>;
|
|
33
|
+
export declare function DT<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
|
|
34
|
+
export declare function EM<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
|
|
35
|
+
export declare function Embed<M = unknown, R = void>(body: BlockBody<HTMLEmbedElement, M, R> | Render<HTMLEmbedElement, M, R>): VBlock<HTMLEmbedElement, M, R>;
|
|
36
|
+
export declare function FieldSet<M = unknown, R = void>(body: BlockBody<HTMLFieldSetElement, M, R> | Render<HTMLFieldSetElement, M, R>): VBlock<HTMLFieldSetElement, M, R>;
|
|
37
|
+
export declare function FigCaption<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
|
|
38
|
+
export declare function Figure<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
|
|
39
|
+
export declare function Footer<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
|
|
40
|
+
export declare function Form<M = unknown, R = void>(body: BlockBody<HTMLFormElement, M, R> | Render<HTMLFormElement, M, R>): VBlock<HTMLFormElement, M, R>;
|
|
41
|
+
export declare function H1<M = unknown, R = void>(body: BlockBody<HTMLHeadingElement, M, R> | Render<HTMLHeadingElement, M, R>): VBlock<HTMLHeadingElement, M, R>;
|
|
42
|
+
export declare function H2<M = unknown, R = void>(body: BlockBody<HTMLHeadingElement, M, R> | Render<HTMLHeadingElement, M, R>): VBlock<HTMLHeadingElement, M, R>;
|
|
43
|
+
export declare function H3<M = unknown, R = void>(body: BlockBody<HTMLHeadingElement, M, R> | Render<HTMLHeadingElement, M, R>): VBlock<HTMLHeadingElement, M, R>;
|
|
44
|
+
export declare function H4<M = unknown, R = void>(body: BlockBody<HTMLHeadingElement, M, R> | Render<HTMLHeadingElement, M, R>): VBlock<HTMLHeadingElement, M, R>;
|
|
45
|
+
export declare function H5<M = unknown, R = void>(body: BlockBody<HTMLHeadingElement, M, R> | Render<HTMLHeadingElement, M, R>): VBlock<HTMLHeadingElement, M, R>;
|
|
46
|
+
export declare function H6<M = unknown, R = void>(body: BlockBody<HTMLHeadingElement, M, R> | Render<HTMLHeadingElement, M, R>): VBlock<HTMLHeadingElement, M, R>;
|
|
47
|
+
export declare function Head<M = unknown, R = void>(body: BlockBody<HTMLHeadElement, M, R> | Render<HTMLHeadElement, M, R>): VBlock<HTMLHeadElement, M, R>;
|
|
48
|
+
export declare function Header<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
|
|
49
|
+
export declare function HGroup<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
|
|
50
|
+
export declare function HR<M = unknown, R = void>(body: BlockBody<HTMLHRElement, M, R> | Render<HTMLHRElement, M, R>): VBlock<HTMLHRElement, M, R>;
|
|
51
|
+
export declare function Html<M = unknown, R = void>(body: BlockBody<HTMLHtmlElement, M, R> | Render<HTMLHtmlElement, M, R>): VBlock<HTMLHtmlElement, M, R>;
|
|
52
|
+
export declare function I<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
|
|
53
|
+
export declare function IFrame<M = unknown, R = void>(body: BlockBody<HTMLIFrameElement, M, R> | Render<HTMLIFrameElement, M, R>): VBlock<HTMLIFrameElement, M, R>;
|
|
54
|
+
export declare function Img<M = unknown, R = void>(body: BlockBody<HTMLImageElement, M, R> | Render<HTMLImageElement, M, R>): VBlock<HTMLImageElement, M, R>;
|
|
55
|
+
export declare function Input<M = unknown, R = void>(body: BlockBody<HTMLInputElement, M, R> | Render<HTMLInputElement, M, R>): VBlock<HTMLInputElement, M, R>;
|
|
56
|
+
export declare function Ins<M = unknown, R = void>(body: BlockBody<HTMLModElement, M, R> | Render<HTMLModElement, M, R>): VBlock<HTMLModElement, M, R>;
|
|
57
|
+
export declare function Kbd<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
|
|
58
|
+
export declare function KeyGen<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
|
|
59
|
+
export declare function Label<M = unknown, R = void>(body: BlockBody<HTMLLabelElement, M, R> | Render<HTMLLabelElement, M, R>): VBlock<HTMLLabelElement, M, R>;
|
|
60
|
+
export declare function Legend<M = unknown, R = void>(body: BlockBody<HTMLLegendElement, M, R> | Render<HTMLLegendElement, M, R>): VBlock<HTMLLegendElement, M, R>;
|
|
61
|
+
export declare function LI<M = unknown, R = void>(body: BlockBody<HTMLLIElement, M, R> | Render<HTMLLIElement, M, R>): VBlock<HTMLLIElement, M, R>;
|
|
62
|
+
export declare function Link<M = unknown, R = void>(body: BlockBody<HTMLLinkElement, M, R> | Render<HTMLLinkElement, M, R>): VBlock<HTMLLinkElement, M, R>;
|
|
63
|
+
export declare function Main<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
|
|
64
|
+
export declare function Map<M = unknown, R = void>(body: BlockBody<HTMLMapElement, M, R> | Render<HTMLMapElement, M, R>): VBlock<HTMLMapElement, M, R>;
|
|
65
|
+
export declare function Mark<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
|
|
66
|
+
export declare function Menu<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
|
|
67
|
+
export declare function MenuItem<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
|
|
68
|
+
export declare function Meta<M = unknown, R = void>(body: BlockBody<HTMLMetaElement, M, R> | Render<HTMLMetaElement, M, R>, renderer: Render<HTMLMetaElement, M, R>): VBlock<HTMLMetaElement, M, R>;
|
|
69
|
+
export declare function Meter<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
|
|
70
|
+
export declare function Nav<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
|
|
71
|
+
export declare function NoIndex<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
|
|
72
|
+
export declare function NoScript<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
|
|
73
|
+
export declare function Obj<M = unknown, R = void>(body: BlockBody<HTMLObjectElement, M, R> | Render<HTMLObjectElement, M, R>): VBlock<HTMLObjectElement, M, R>;
|
|
74
|
+
export declare function OL<M = unknown, R = void>(body: BlockBody<HTMLOListElement, M, R> | Render<HTMLOListElement, M, R>): VBlock<HTMLOListElement, M, R>;
|
|
75
|
+
export declare function OptGroup<M = unknown, R = void>(body: BlockBody<HTMLOptGroupElement, M, R> | Render<HTMLOptGroupElement, M, R>): VBlock<HTMLOptGroupElement, M, R>;
|
|
76
|
+
export declare function Option<M = unknown, R = void>(body: BlockBody<HTMLOptionElement, M, R> | Render<HTMLOptionElement, M, R>): VBlock<HTMLOptionElement, M, R>;
|
|
77
|
+
export declare function Output<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
|
|
78
|
+
export declare function P<M = unknown, R = void>(body: BlockBody<HTMLParagraphElement, M, R> | Render<HTMLParagraphElement, M, R>): VBlock<HTMLParagraphElement, M, R>;
|
|
79
|
+
export declare function Param<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
|
|
80
|
+
export declare function Picture<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
|
|
81
|
+
export declare function Pre<M = unknown, R = void>(body: BlockBody<HTMLPreElement, M, R> | Render<HTMLPreElement, M, R>): VBlock<HTMLPreElement, M, R>;
|
|
82
|
+
export declare function Progress<M = unknown, R = void>(body: BlockBody<HTMLProgressElement, M, R> | Render<HTMLProgressElement, M, R>): VBlock<HTMLProgressElement, M, R>;
|
|
83
|
+
export declare function Q<M = unknown, R = void>(body: BlockBody<HTMLQuoteElement, M, R> | Render<HTMLQuoteElement, M, R>): VBlock<HTMLQuoteElement, M, R>;
|
|
84
|
+
export declare function RP<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
|
|
85
|
+
export declare function RT<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
|
|
86
|
+
export declare function Ruby<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
|
|
87
|
+
export declare function S<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
|
|
88
|
+
export declare function Samp<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
|
|
89
|
+
export declare function Script<M = unknown, R = void>(body: BlockBody<HTMLScriptElement, M, R> | Render<HTMLScriptElement, M, R>): VBlock<HTMLScriptElement, M, R>;
|
|
90
|
+
export declare function Section<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
|
|
91
|
+
export declare function Select<M = unknown, R = void>(body: BlockBody<HTMLSelectElement, M, R> | Render<HTMLSelectElement, M, R>): VBlock<HTMLSelectElement, M, R>;
|
|
92
|
+
export declare function Small<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
|
|
93
|
+
export declare function Source<M = unknown, R = void>(body: BlockBody<HTMLSourceElement, M, R> | Render<HTMLSourceElement, M, R>): VBlock<HTMLSourceElement, M, R>;
|
|
94
|
+
export declare function Span<M = unknown, R = void>(body: BlockBody<HTMLSpanElement, M, R> | Render<HTMLSpanElement, M, R>): VBlock<HTMLSpanElement, M, R>;
|
|
95
|
+
export declare function Strong<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
|
|
96
|
+
export declare function Style<M = unknown, R = void>(body: BlockBody<HTMLStyleElement, M, R> | Render<HTMLStyleElement, M, R>): VBlock<HTMLStyleElement, M, R>;
|
|
97
|
+
export declare function Sub<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
|
|
98
|
+
export declare function Summary<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
|
|
99
|
+
export declare function Sup<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
|
|
100
|
+
export declare function Table<M = unknown, R = void>(body: BlockBody<HTMLTableElement, M, R> | Render<HTMLTableElement, M, R>): VBlock<HTMLTableElement, M, R>;
|
|
101
|
+
export declare function Template<M = unknown, R = void>(body: BlockBody<HTMLTemplateElement, M, R> | Render<HTMLTemplateElement, M, R>): VBlock<HTMLTemplateElement, M, R>;
|
|
102
|
+
export declare function TBody<M = unknown, R = void>(body: BlockBody<HTMLTableSectionElement, M, R> | Render<HTMLTableSectionElement, M, R>): VBlock<HTMLTableSectionElement, M, R>;
|
|
103
|
+
export declare function TD<M = unknown, R = void>(body: BlockBody<HTMLTableCellElement, M, R> | Render<HTMLTableCellElement, M, R>): VBlock<HTMLTableCellElement, M, R>;
|
|
104
|
+
export declare function TextArea<M = unknown, R = void>(body: BlockBody<HTMLTextAreaElement, M, R> | Render<HTMLTextAreaElement, M, R>): VBlock<HTMLTextAreaElement, M, R>;
|
|
105
|
+
export declare function TFoot<M = unknown, R = void>(body: BlockBody<HTMLTableSectionElement, M, R> | Render<HTMLTableSectionElement, M, R>): VBlock<HTMLTableSectionElement, M, R>;
|
|
106
|
+
export declare function TH<M = unknown, R = void>(body: BlockBody<HTMLTableCellElement, M, R> | Render<HTMLTableCellElement, M, R>): VBlock<HTMLTableCellElement, M, R>;
|
|
107
|
+
export declare function THead<M = unknown, R = void>(body: BlockBody<HTMLTableSectionElement, M, R> | Render<HTMLTableSectionElement, M, R>): VBlock<HTMLTableSectionElement, M, R>;
|
|
108
|
+
export declare function Time<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
|
|
109
|
+
export declare function Title<M = unknown, R = void>(body: BlockBody<HTMLTitleElement, M, R> | Render<HTMLTitleElement, M, R>): VBlock<HTMLTitleElement, M, R>;
|
|
110
|
+
export declare function TR<M = unknown, R = void>(body: BlockBody<HTMLTableRowElement, M, R> | Render<HTMLTableRowElement, M, R>): VBlock<HTMLTableRowElement, M, R>;
|
|
111
|
+
export declare function Track<M = unknown, R = void>(body: BlockBody<HTMLTrackElement, M, R> | Render<HTMLTrackElement, M, R>): VBlock<HTMLTrackElement, M, R>;
|
|
112
|
+
export declare function U<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
|
|
113
|
+
export declare function UL<M = unknown, R = void>(body: BlockBody<HTMLUListElement, M, R> | Render<HTMLUListElement, M, R>): VBlock<HTMLUListElement, M, R>;
|
|
114
|
+
export declare function Var<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
|
|
115
|
+
export declare function Video<M = unknown, R = void>(body: BlockBody<HTMLVideoElement, M, R> | Render<HTMLVideoElement, M, R>): VBlock<HTMLVideoElement, M, R>;
|
|
116
|
+
export declare function Wbr<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
|
|
117
|
+
export declare function Svg<M = unknown, R = void>(body: BlockBody<SVGSVGElement, M, R> | Render<SVGSVGElement, M, R>): VBlock<SVGSVGElement, M, R>;
|
|
118
|
+
export declare function SvgA<M = unknown, R = void>(body: BlockBody<SVGAElement, M, R> | Render<SVGAElement, M, R>): VBlock<SVGAElement, M, R>;
|
|
119
|
+
export declare function Animate<M = unknown, R = void>(body: BlockBody<SVGAnimateElement, M, R> | Render<SVGAnimateElement, M, R>): VBlock<SVGAnimateElement, M, R>;
|
|
120
|
+
export declare function AnimateMotion<M = unknown, R = void>(body: BlockBody<SVGAnimateMotionElement, M, R> | Render<SVGAnimateMotionElement, M, R>): VBlock<SVGAnimateMotionElement, M, R>;
|
|
121
|
+
export declare function AnimateTransform<M = unknown, R = void>(body: BlockBody<SVGAnimateTransformElement, M, R> | Render<SVGAnimateTransformElement, M, R>): VBlock<SVGAnimateTransformElement, M, R>;
|
|
122
|
+
export declare function Circle<M = unknown, R = void>(body: BlockBody<SVGCircleElement, M, R> | Render<SVGCircleElement, M, R>): VBlock<SVGCircleElement, M, R>;
|
|
123
|
+
export declare function ClipPath<M = unknown, R = void>(body: BlockBody<SVGClipPathElement, M, R> | Render<SVGClipPathElement, M, R>): VBlock<SVGClipPathElement, M, R>;
|
|
124
|
+
export declare function Defs<M = unknown, R = void>(body: BlockBody<SVGDefsElement, M, R> | Render<SVGDefsElement, M, R>): VBlock<SVGDefsElement, M, R>;
|
|
125
|
+
export declare function Desc<M = unknown, R = void>(body: BlockBody<SVGDescElement, M, R> | Render<SVGDescElement, M, R>): VBlock<SVGDescElement, M, R>;
|
|
126
|
+
export declare function Ellipse<M = unknown, R = void>(body: BlockBody<SVGEllipseElement, M, R> | Render<SVGEllipseElement, M, R>): VBlock<SVGEllipseElement, M, R>;
|
|
127
|
+
export declare function FeBlend<M = unknown, R = void>(body: BlockBody<SVGFEBlendElement, M, R> | Render<SVGFEBlendElement, M, R>): VBlock<SVGFEBlendElement, M, R>;
|
|
128
|
+
export declare function FeColorMatrix<M = unknown, R = void>(body: BlockBody<SVGFEColorMatrixElement, M, R> | Render<SVGFEColorMatrixElement, M, R>): VBlock<SVGFEColorMatrixElement, M, R>;
|
|
129
|
+
export declare function FeComponentTransfer<M = unknown, R = void>(body: BlockBody<SVGFEComponentTransferElement, M, R> | Render<SVGFEComponentTransferElement, M, R>): VBlock<SVGFEComponentTransferElement, M, R>;
|
|
130
|
+
export declare function FeComposite<M = unknown, R = void>(body: BlockBody<SVGFECompositeElement, M, R> | Render<SVGFECompositeElement, M, R>): VBlock<SVGFECompositeElement, M, R>;
|
|
131
|
+
export declare function FeConvolveMatrix<M = unknown, R = void>(body: BlockBody<SVGFEConvolveMatrixElement, M, R> | Render<SVGFEConvolveMatrixElement, M, R>): VBlock<SVGFEConvolveMatrixElement, M, R>;
|
|
132
|
+
export declare function FeDiffuseLighting<M = unknown, R = void>(body: BlockBody<SVGFEDiffuseLightingElement, M, R> | Render<SVGFEDiffuseLightingElement, M, R>): VBlock<SVGFEDiffuseLightingElement, M, R>;
|
|
133
|
+
export declare function FeDisplacementMap<M = unknown, R = void>(body: BlockBody<SVGFEDisplacementMapElement, M, R> | Render<SVGFEDisplacementMapElement, M, R>): VBlock<SVGFEDisplacementMapElement, M, R>;
|
|
134
|
+
export declare function FeDistantLight<M = unknown, R = void>(body: BlockBody<SVGFEDistantLightElement, M, R> | Render<SVGFEDistantLightElement, M, R>): VBlock<SVGFEDistantLightElement, M, R>;
|
|
135
|
+
export declare function FeDropShadow<M = unknown, R = void>(body: BlockBody<SVGFEDropShadowElement, M, R> | Render<SVGFEDropShadowElement, M, R>): VBlock<SVGFEDropShadowElement, M, R>;
|
|
136
|
+
export declare function FeFlood<M = unknown, R = void>(body: BlockBody<SVGFEFloodElement, M, R> | Render<SVGFEFloodElement, M, R>): VBlock<SVGFEFloodElement, M, R>;
|
|
137
|
+
export declare function FeFuncA<M = unknown, R = void>(body: BlockBody<SVGFEFuncAElement, M, R> | Render<SVGFEFuncAElement, M, R>): VBlock<SVGFEFuncAElement, M, R>;
|
|
138
|
+
export declare function FeFuncB<M = unknown, R = void>(body: BlockBody<SVGFEFuncBElement, M, R> | Render<SVGFEFuncBElement, M, R>): VBlock<SVGFEFuncBElement, M, R>;
|
|
139
|
+
export declare function FeFuncG<M = unknown, R = void>(body: BlockBody<SVGFEFuncGElement, M, R> | Render<SVGFEFuncGElement, M, R>): VBlock<SVGFEFuncGElement, M, R>;
|
|
140
|
+
export declare function FeFuncR<M = unknown, R = void>(body: BlockBody<SVGFEFuncRElement, M, R> | Render<SVGFEFuncRElement, M, R>): VBlock<SVGFEFuncRElement, M, R>;
|
|
141
|
+
export declare function FeGaussianBlur<M = unknown, R = void>(body: BlockBody<SVGFEGaussianBlurElement, M, R> | Render<SVGFEGaussianBlurElement, M, R>): VBlock<SVGFEGaussianBlurElement, M, R>;
|
|
142
|
+
export declare function FeImage<M = unknown, R = void>(body: BlockBody<SVGFEImageElement, M, R> | Render<SVGFEImageElement, M, R>): VBlock<SVGFEImageElement, M, R>;
|
|
143
|
+
export declare function FeMerge<M = unknown, R = void>(body: BlockBody<SVGFEMergeElement, M, R> | Render<SVGFEMergeElement, M, R>): VBlock<SVGFEMergeElement, M, R>;
|
|
144
|
+
export declare function FeMergeNode<M = unknown, R = void>(body: BlockBody<SVGFEMergeNodeElement, M, R> | Render<SVGFEMergeNodeElement, M, R>): VBlock<SVGFEMergeNodeElement, M, R>;
|
|
145
|
+
export declare function FeMorphology<M = unknown, R = void>(body: BlockBody<SVGFEMorphologyElement, M, R> | Render<SVGFEMorphologyElement, M, R>): VBlock<SVGFEMorphologyElement, M, R>;
|
|
146
|
+
export declare function FeOffset<M = unknown, R = void>(body: BlockBody<SVGFEOffsetElement, M, R> | Render<SVGFEOffsetElement, M, R>): VBlock<SVGFEOffsetElement, M, R>;
|
|
147
|
+
export declare function FePointLight<M = unknown, R = void>(body: BlockBody<SVGFEPointLightElement, M, R> | Render<SVGFEPointLightElement, M, R>): VBlock<SVGFEPointLightElement, M, R>;
|
|
148
|
+
export declare function FeSpecularLighting<M = unknown, R = void>(body: BlockBody<SVGFESpecularLightingElement, M, R> | Render<SVGFESpecularLightingElement, M, R>): VBlock<SVGFESpecularLightingElement, M, R>;
|
|
149
|
+
export declare function FeSpotLight<M = unknown, R = void>(body: BlockBody<SVGFESpotLightElement, M, R> | Render<SVGFESpotLightElement, M, R>): VBlock<SVGFESpotLightElement, M, R>;
|
|
150
|
+
export declare function FeTile<M = unknown, R = void>(body: BlockBody<SVGFETileElement, M, R> | Render<SVGFETileElement, M, R>): VBlock<SVGFETileElement, M, R>;
|
|
151
|
+
export declare function FeTurbulence<M = unknown, R = void>(body: BlockBody<SVGFETurbulenceElement, M, R> | Render<SVGFETurbulenceElement, M, R>): VBlock<SVGFETurbulenceElement, M, R>;
|
|
152
|
+
export declare function Filter<M = unknown, R = void>(body: BlockBody<SVGFilterElement, M, R> | Render<SVGFilterElement, M, R>): VBlock<SVGFilterElement, M, R>;
|
|
153
|
+
export declare function ForeignObject<M = unknown, R = void>(body: BlockBody<SVGForeignObjectElement, M, R> | Render<SVGForeignObjectElement, M, R>): VBlock<SVGForeignObjectElement, M, R>;
|
|
154
|
+
export declare function G<M = unknown, R = void>(body: BlockBody<SVGGElement, M, R> | Render<SVGGElement, M, R>): VBlock<SVGGElement, M, R>;
|
|
155
|
+
export declare function SvgImage<M = unknown, R = void>(body: BlockBody<SVGImageElement, M, R> | Render<SVGImageElement, M, R>): VBlock<SVGImageElement, M, R>;
|
|
156
|
+
export declare function SvgLine<M = unknown, R = void>(body: BlockBody<SVGLineElement, M, R> | Render<SVGLineElement, M, R>): VBlock<SVGLineElement, M, R>;
|
|
157
|
+
export declare function LinearGradient<M = unknown, R = void>(body: BlockBody<SVGLinearGradientElement, M, R> | Render<SVGLinearGradientElement, M, R>): VBlock<SVGLinearGradientElement, M, R>;
|
|
158
|
+
export declare function Marker<M = unknown, R = void>(body: BlockBody<SVGMarkerElement, M, R> | Render<SVGMarkerElement, M, R>): VBlock<SVGMarkerElement, M, R>;
|
|
159
|
+
export declare function Mask<M = unknown, R = void>(body: BlockBody<SVGMaskElement, M, R> | Render<SVGMaskElement, M, R>): VBlock<SVGMaskElement, M, R>;
|
|
160
|
+
export declare function MetaData<M = unknown, R = void>(body: BlockBody<SVGMetadataElement, M, R> | Render<SVGMetadataElement, M, R>): VBlock<SVGMetadataElement, M, R>;
|
|
161
|
+
export declare function MPath<M = unknown, R = void>(body: BlockBody<SVGElement, M, R> | Render<SVGElement, M, R>): VBlock<SVGElement, M, R>;
|
|
162
|
+
export declare function Path<M = unknown, R = void>(body: BlockBody<SVGPathElement, M, R> | Render<SVGPathElement, M, R>): VBlock<SVGPathElement, M, R>;
|
|
163
|
+
export declare function Pattern<M = unknown, R = void>(body: BlockBody<SVGPatternElement, M, R> | Render<SVGPatternElement, M, R>): VBlock<SVGPatternElement, M, R>;
|
|
164
|
+
export declare function Polygon<M = unknown, R = void>(body: BlockBody<SVGPolygonElement, M, R> | Render<SVGPolygonElement, M, R>): VBlock<SVGPolygonElement, M, R>;
|
|
165
|
+
export declare function PolyLine<M = unknown, R = void>(body: BlockBody<SVGPolylineElement, M, R> | Render<SVGPolylineElement, M, R>): VBlock<SVGPolylineElement, M, R>;
|
|
166
|
+
export declare function RadialGradient<M = unknown, R = void>(body: BlockBody<SVGRadialGradientElement, M, R> | Render<SVGRadialGradientElement, M, R>): VBlock<SVGRadialGradientElement, M, R>;
|
|
167
|
+
export declare function Rect<M = unknown, R = void>(body: BlockBody<SVGRectElement, M, R> | Render<SVGRectElement, M, R>): VBlock<SVGRectElement, M, R>;
|
|
168
|
+
export declare function Stop<M = unknown, R = void>(body: BlockBody<SVGStopElement, M, R> | Render<SVGStopElement, M, R>): VBlock<SVGStopElement, M, R>;
|
|
169
|
+
export declare function SvgSwitch<M = unknown, R = void>(body: BlockBody<SVGSwitchElement, M, R> | Render<SVGSwitchElement, M, R>): VBlock<SVGSwitchElement, M, R>;
|
|
170
|
+
export declare function Symbol<M = unknown, R = void>(body: BlockBody<SVGSymbolElement, M, R> | Render<SVGSymbolElement, M, R>): VBlock<SVGSymbolElement, M, R>;
|
|
171
|
+
export declare function Text<M = unknown, R = void>(body: BlockBody<SVGTextElement, M, R> | Render<SVGTextElement, M, R>): VBlock<SVGTextElement, M, R>;
|
|
172
|
+
export declare function TextPath<M = unknown, R = void>(body: BlockBody<SVGTextPathElement, M, R> | Render<SVGTextPathElement, M, R>): VBlock<SVGTextPathElement, M, R>;
|
|
173
|
+
export declare function TSpan<M = unknown, R = void>(body: BlockBody<SVGTSpanElement, M, R> | Render<SVGTSpanElement, M, R>): VBlock<SVGTSpanElement, M, R>;
|
|
174
|
+
export declare function Use<M = unknown, R = void>(body: BlockBody<SVGUseElement, M, R> | Render<SVGUseElement, M, R>): VBlock<SVGUseElement, M, R>;
|
|
175
|
+
export declare function View<M = unknown, R = void>(body: BlockBody<SVGViewElement, M, R> | Render<SVGViewElement, M, R>): VBlock<SVGViewElement, M, R>;
|
|
@@ -1,182 +1,182 @@
|
|
|
1
1
|
import { VBlock, StaticDriver, LayoutKind } from "../core/api";
|
|
2
2
|
import { HtmlDriver, SvgDriver } from "./HtmlDriver";
|
|
3
|
-
export function HtmlBody(
|
|
4
|
-
const driver = new StaticDriver(global.document.body,
|
|
5
|
-
return VBlock.claim(
|
|
3
|
+
export function HtmlBody(body) {
|
|
4
|
+
const driver = new StaticDriver(global.document.body, "HtmlBody", LayoutKind.Block);
|
|
5
|
+
return VBlock.claim(driver, body);
|
|
6
6
|
}
|
|
7
|
-
export function A(
|
|
8
|
-
export function Abbr(
|
|
9
|
-
export function Address(
|
|
10
|
-
export function Area(
|
|
11
|
-
export function Article(
|
|
12
|
-
export function Aside(
|
|
13
|
-
export function Audio(
|
|
14
|
-
export function B(
|
|
15
|
-
export function Base(
|
|
16
|
-
export function Bdi(
|
|
17
|
-
export function Bdo(
|
|
18
|
-
export function Big(
|
|
19
|
-
export function BlockQuote(
|
|
20
|
-
export function Body(
|
|
21
|
-
export function BR(
|
|
22
|
-
export function Button(
|
|
23
|
-
export function Canvas(
|
|
24
|
-
export function Caption(
|
|
25
|
-
export function Cite(
|
|
26
|
-
export function Code(
|
|
27
|
-
export function Col(
|
|
28
|
-
export function ColGroup(
|
|
29
|
-
export function Data(
|
|
30
|
-
export function DataList(
|
|
31
|
-
export function DD(
|
|
32
|
-
export function Del(
|
|
33
|
-
export function Details(
|
|
34
|
-
export function Dfn(
|
|
35
|
-
export function Div(
|
|
36
|
-
export function DL(
|
|
37
|
-
export function DT(
|
|
38
|
-
export function EM(
|
|
39
|
-
export function Embed(
|
|
40
|
-
export function FieldSet(
|
|
41
|
-
export function FigCaption(
|
|
42
|
-
export function Figure(
|
|
43
|
-
export function Footer(
|
|
44
|
-
export function Form(
|
|
45
|
-
export function H1(
|
|
46
|
-
export function H2(
|
|
47
|
-
export function H3(
|
|
48
|
-
export function H4(
|
|
49
|
-
export function H5(
|
|
50
|
-
export function H6(
|
|
51
|
-
export function Head(
|
|
52
|
-
export function Header(
|
|
53
|
-
export function HGroup(
|
|
54
|
-
export function HR(
|
|
55
|
-
export function Html(
|
|
56
|
-
export function I(
|
|
57
|
-
export function IFrame(
|
|
58
|
-
export function Img(
|
|
59
|
-
export function Input(
|
|
60
|
-
export function Ins(
|
|
61
|
-
export function Kbd(
|
|
62
|
-
export function KeyGen(
|
|
63
|
-
export function Label(
|
|
64
|
-
export function Legend(
|
|
65
|
-
export function LI(
|
|
66
|
-
export function Link(
|
|
67
|
-
export function Main(
|
|
68
|
-
export function Map(
|
|
69
|
-
export function Mark(
|
|
70
|
-
export function Menu(
|
|
71
|
-
export function MenuItem(
|
|
72
|
-
export function Meta(
|
|
73
|
-
export function Meter(
|
|
74
|
-
export function Nav(
|
|
75
|
-
export function NoIndex(
|
|
76
|
-
export function NoScript(
|
|
77
|
-
export function Obj(
|
|
78
|
-
export function OL(
|
|
79
|
-
export function OptGroup(
|
|
80
|
-
export function Option(
|
|
81
|
-
export function Output(
|
|
82
|
-
export function P(
|
|
83
|
-
export function Param(
|
|
84
|
-
export function Picture(
|
|
85
|
-
export function Pre(
|
|
86
|
-
export function Progress(
|
|
87
|
-
export function Q(
|
|
88
|
-
export function RP(
|
|
89
|
-
export function RT(
|
|
90
|
-
export function Ruby(
|
|
91
|
-
export function S(
|
|
92
|
-
export function Samp(
|
|
93
|
-
export function Script(
|
|
94
|
-
export function Section(
|
|
95
|
-
export function Select(
|
|
96
|
-
export function Small(
|
|
97
|
-
export function Source(
|
|
98
|
-
export function Span(
|
|
99
|
-
export function Strong(
|
|
100
|
-
export function Style(
|
|
101
|
-
export function Sub(
|
|
102
|
-
export function Summary(
|
|
103
|
-
export function Sup(
|
|
104
|
-
export function Table(
|
|
105
|
-
export function Template(
|
|
106
|
-
export function TBody(
|
|
107
|
-
export function TD(
|
|
108
|
-
export function TextArea(
|
|
109
|
-
export function TFoot(
|
|
110
|
-
export function TH(
|
|
111
|
-
export function THead(
|
|
112
|
-
export function Time(
|
|
113
|
-
export function Title(
|
|
114
|
-
export function TR(
|
|
115
|
-
export function Track(
|
|
116
|
-
export function U(
|
|
117
|
-
export function UL(
|
|
118
|
-
export function Var(
|
|
119
|
-
export function Video(
|
|
120
|
-
export function Wbr(
|
|
121
|
-
export function Svg(
|
|
122
|
-
export function SvgA(
|
|
123
|
-
export function Animate(
|
|
124
|
-
export function AnimateMotion(
|
|
125
|
-
export function AnimateTransform(
|
|
126
|
-
export function Circle(
|
|
127
|
-
export function ClipPath(
|
|
128
|
-
export function Defs(
|
|
129
|
-
export function Desc(
|
|
130
|
-
export function Ellipse(
|
|
131
|
-
export function FeBlend(
|
|
132
|
-
export function FeColorMatrix(
|
|
133
|
-
export function FeComponentTransfer(
|
|
134
|
-
export function FeComposite(
|
|
135
|
-
export function FeConvolveMatrix(
|
|
136
|
-
export function FeDiffuseLighting(
|
|
137
|
-
export function FeDisplacementMap(
|
|
138
|
-
export function FeDistantLight(
|
|
139
|
-
export function FeDropShadow(
|
|
140
|
-
export function FeFlood(
|
|
141
|
-
export function FeFuncA(
|
|
142
|
-
export function FeFuncB(
|
|
143
|
-
export function FeFuncG(
|
|
144
|
-
export function FeFuncR(
|
|
145
|
-
export function FeGaussianBlur(
|
|
146
|
-
export function FeImage(
|
|
147
|
-
export function FeMerge(
|
|
148
|
-
export function FeMergeNode(
|
|
149
|
-
export function FeMorphology(
|
|
150
|
-
export function FeOffset(
|
|
151
|
-
export function FePointLight(
|
|
152
|
-
export function FeSpecularLighting(
|
|
153
|
-
export function FeSpotLight(
|
|
154
|
-
export function FeTile(
|
|
155
|
-
export function FeTurbulence(
|
|
156
|
-
export function Filter(
|
|
157
|
-
export function ForeignObject(
|
|
158
|
-
export function G(
|
|
159
|
-
export function SvgImage(
|
|
160
|
-
export function SvgLine(
|
|
161
|
-
export function LinearGradient(
|
|
162
|
-
export function Marker(
|
|
163
|
-
export function Mask(
|
|
164
|
-
export function MetaData(
|
|
165
|
-
export function MPath(
|
|
166
|
-
export function Path(
|
|
167
|
-
export function Pattern(
|
|
168
|
-
export function Polygon(
|
|
169
|
-
export function PolyLine(
|
|
170
|
-
export function RadialGradient(
|
|
171
|
-
export function Rect(
|
|
172
|
-
export function Stop(
|
|
173
|
-
export function SvgSwitch(
|
|
174
|
-
export function Symbol(
|
|
175
|
-
export function Text(
|
|
176
|
-
export function TextPath(
|
|
177
|
-
export function TSpan(
|
|
178
|
-
export function Use(
|
|
179
|
-
export function View(
|
|
7
|
+
export function A(body) { return VBlock.claim(HtmlTags.a, body); }
|
|
8
|
+
export function Abbr(body) { return VBlock.claim(HtmlTags.abbr, body); }
|
|
9
|
+
export function Address(body) { return VBlock.claim(HtmlTags.address, body); }
|
|
10
|
+
export function Area(body) { return VBlock.claim(HtmlTags.area, body); }
|
|
11
|
+
export function Article(body) { return VBlock.claim(HtmlTags.article, body); }
|
|
12
|
+
export function Aside(body) { return VBlock.claim(HtmlTags.aside, body); }
|
|
13
|
+
export function Audio(body) { return VBlock.claim(HtmlTags.audio, body); }
|
|
14
|
+
export function B(body) { return VBlock.claim(HtmlTags.b, body); }
|
|
15
|
+
export function Base(body) { return VBlock.claim(HtmlTags.base, body); }
|
|
16
|
+
export function Bdi(body) { return VBlock.claim(HtmlTags.bdi, body); }
|
|
17
|
+
export function Bdo(body) { return VBlock.claim(HtmlTags.bdo, body); }
|
|
18
|
+
export function Big(body) { return VBlock.claim(HtmlTags.big, body); }
|
|
19
|
+
export function BlockQuote(body) { return VBlock.claim(HtmlTags.blockquote, body); }
|
|
20
|
+
export function Body(body) { return VBlock.claim(HtmlTags.body, body); }
|
|
21
|
+
export function BR(body) { return VBlock.claim(HtmlTags.br, body); }
|
|
22
|
+
export function Button(body) { return VBlock.claim(HtmlTags.button, body); }
|
|
23
|
+
export function Canvas(body) { return VBlock.claim(HtmlTags.canvas, body); }
|
|
24
|
+
export function Caption(body) { return VBlock.claim(HtmlTags.caption, body); }
|
|
25
|
+
export function Cite(body) { return VBlock.claim(HtmlTags.cite, body); }
|
|
26
|
+
export function Code(body) { return VBlock.claim(HtmlTags.code, body); }
|
|
27
|
+
export function Col(body) { return VBlock.claim(HtmlTags.col, body); }
|
|
28
|
+
export function ColGroup(body) { return VBlock.claim(HtmlTags.colgroup, body); }
|
|
29
|
+
export function Data(body) { return VBlock.claim(HtmlTags.data, body); }
|
|
30
|
+
export function DataList(body) { return VBlock.claim(HtmlTags.datalist, body); }
|
|
31
|
+
export function DD(body) { return VBlock.claim(HtmlTags.dd, body); }
|
|
32
|
+
export function Del(body) { return VBlock.claim(HtmlTags.del, body); }
|
|
33
|
+
export function Details(body) { return VBlock.claim(HtmlTags.details, body); }
|
|
34
|
+
export function Dfn(body) { return VBlock.claim(HtmlTags.dfn, body); }
|
|
35
|
+
export function Div(body) { return VBlock.claim(HtmlTags.div, body); }
|
|
36
|
+
export function DL(body) { return VBlock.claim(HtmlTags.dl, body); }
|
|
37
|
+
export function DT(body) { return VBlock.claim(HtmlTags.dt, body); }
|
|
38
|
+
export function EM(body) { return VBlock.claim(HtmlTags.em, body); }
|
|
39
|
+
export function Embed(body) { return VBlock.claim(HtmlTags.embed, body); }
|
|
40
|
+
export function FieldSet(body) { return VBlock.claim(HtmlTags.fieldset, body); }
|
|
41
|
+
export function FigCaption(body) { return VBlock.claim(HtmlTags.figcaption, body); }
|
|
42
|
+
export function Figure(body) { return VBlock.claim(HtmlTags.figure, body); }
|
|
43
|
+
export function Footer(body) { return VBlock.claim(HtmlTags.footer, body); }
|
|
44
|
+
export function Form(body) { return VBlock.claim(HtmlTags.form, body); }
|
|
45
|
+
export function H1(body) { return VBlock.claim(HtmlTags.h1, body); }
|
|
46
|
+
export function H2(body) { return VBlock.claim(HtmlTags.h2, body); }
|
|
47
|
+
export function H3(body) { return VBlock.claim(HtmlTags.h3, body); }
|
|
48
|
+
export function H4(body) { return VBlock.claim(HtmlTags.h4, body); }
|
|
49
|
+
export function H5(body) { return VBlock.claim(HtmlTags.h5, body); }
|
|
50
|
+
export function H6(body) { return VBlock.claim(HtmlTags.h6, body); }
|
|
51
|
+
export function Head(body) { return VBlock.claim(HtmlTags.head, body); }
|
|
52
|
+
export function Header(body) { return VBlock.claim(HtmlTags.header, body); }
|
|
53
|
+
export function HGroup(body) { return VBlock.claim(HtmlTags.hgroup, body); }
|
|
54
|
+
export function HR(body) { return VBlock.claim(HtmlTags.hr, body); }
|
|
55
|
+
export function Html(body) { return VBlock.claim(HtmlTags.html, body); }
|
|
56
|
+
export function I(body) { return VBlock.claim(HtmlTags.i, body); }
|
|
57
|
+
export function IFrame(body) { return VBlock.claim(HtmlTags.iframe, body); }
|
|
58
|
+
export function Img(body) { return VBlock.claim(HtmlTags.img, body); }
|
|
59
|
+
export function Input(body) { return VBlock.claim(HtmlTags.input, body); }
|
|
60
|
+
export function Ins(body) { return VBlock.claim(HtmlTags.ins, body); }
|
|
61
|
+
export function Kbd(body) { return VBlock.claim(HtmlTags.kbd, body); }
|
|
62
|
+
export function KeyGen(body) { return VBlock.claim(HtmlTags.keygen, body); }
|
|
63
|
+
export function Label(body) { return VBlock.claim(HtmlTags.label, body); }
|
|
64
|
+
export function Legend(body) { return VBlock.claim(HtmlTags.legend, body); }
|
|
65
|
+
export function LI(body) { return VBlock.claim(HtmlTags.li, body); }
|
|
66
|
+
export function Link(body) { return VBlock.claim(HtmlTags.link, body); }
|
|
67
|
+
export function Main(body) { return VBlock.claim(HtmlTags.main, body); }
|
|
68
|
+
export function Map(body) { return VBlock.claim(HtmlTags.map, body); }
|
|
69
|
+
export function Mark(body) { return VBlock.claim(HtmlTags.mark, body); }
|
|
70
|
+
export function Menu(body) { return VBlock.claim(HtmlTags.menu, body); }
|
|
71
|
+
export function MenuItem(body) { return VBlock.claim(HtmlTags.menuitem, body); }
|
|
72
|
+
export function Meta(body, renderer) { return VBlock.claim(HtmlTags.meta, body); }
|
|
73
|
+
export function Meter(body) { return VBlock.claim(HtmlTags.meter, body); }
|
|
74
|
+
export function Nav(body) { return VBlock.claim(HtmlTags.nav, body); }
|
|
75
|
+
export function NoIndex(body) { return VBlock.claim(HtmlTags.noindex, body); }
|
|
76
|
+
export function NoScript(body) { return VBlock.claim(HtmlTags.noscript, body); }
|
|
77
|
+
export function Obj(body) { return VBlock.claim(HtmlTags.object, body); }
|
|
78
|
+
export function OL(body) { return VBlock.claim(HtmlTags.ol, body); }
|
|
79
|
+
export function OptGroup(body) { return VBlock.claim(HtmlTags.optgroup, body); }
|
|
80
|
+
export function Option(body) { return VBlock.claim(HtmlTags.option, body); }
|
|
81
|
+
export function Output(body) { return VBlock.claim(HtmlTags.output, body); }
|
|
82
|
+
export function P(body) { return VBlock.claim(HtmlTags.p, body); }
|
|
83
|
+
export function Param(body) { return VBlock.claim(HtmlTags.param, body); }
|
|
84
|
+
export function Picture(body) { return VBlock.claim(HtmlTags.picture, body); }
|
|
85
|
+
export function Pre(body) { return VBlock.claim(HtmlTags.pre, body); }
|
|
86
|
+
export function Progress(body) { return VBlock.claim(HtmlTags.progress, body); }
|
|
87
|
+
export function Q(body) { return VBlock.claim(HtmlTags.q, body); }
|
|
88
|
+
export function RP(body) { return VBlock.claim(HtmlTags.rp, body); }
|
|
89
|
+
export function RT(body) { return VBlock.claim(HtmlTags.rt, body); }
|
|
90
|
+
export function Ruby(body) { return VBlock.claim(HtmlTags.ruby, body); }
|
|
91
|
+
export function S(body) { return VBlock.claim(HtmlTags.s, body); }
|
|
92
|
+
export function Samp(body) { return VBlock.claim(HtmlTags.samp, body); }
|
|
93
|
+
export function Script(body) { return VBlock.claim(HtmlTags.script, body); }
|
|
94
|
+
export function Section(body) { return VBlock.claim(HtmlTags.section, body); }
|
|
95
|
+
export function Select(body) { return VBlock.claim(HtmlTags.select, body); }
|
|
96
|
+
export function Small(body) { return VBlock.claim(HtmlTags.small, body); }
|
|
97
|
+
export function Source(body) { return VBlock.claim(HtmlTags.source, body); }
|
|
98
|
+
export function Span(body) { return VBlock.claim(HtmlTags.span, body); }
|
|
99
|
+
export function Strong(body) { return VBlock.claim(HtmlTags.strong, body); }
|
|
100
|
+
export function Style(body) { return VBlock.claim(HtmlTags.style, body); }
|
|
101
|
+
export function Sub(body) { return VBlock.claim(HtmlTags.sub, body); }
|
|
102
|
+
export function Summary(body) { return VBlock.claim(HtmlTags.summary, body); }
|
|
103
|
+
export function Sup(body) { return VBlock.claim(HtmlTags.sup, body); }
|
|
104
|
+
export function Table(body) { return VBlock.claim(HtmlTags.table, body); }
|
|
105
|
+
export function Template(body) { return VBlock.claim(HtmlTags.template, body); }
|
|
106
|
+
export function TBody(body) { return VBlock.claim(HtmlTags.tbody, body); }
|
|
107
|
+
export function TD(body) { return VBlock.claim(HtmlTags.td, body); }
|
|
108
|
+
export function TextArea(body) { return VBlock.claim(HtmlTags.textarea, body); }
|
|
109
|
+
export function TFoot(body) { return VBlock.claim(HtmlTags.tfoot, body); }
|
|
110
|
+
export function TH(body) { return VBlock.claim(HtmlTags.th, body); }
|
|
111
|
+
export function THead(body) { return VBlock.claim(HtmlTags.thead, body); }
|
|
112
|
+
export function Time(body) { return VBlock.claim(HtmlTags.time, body); }
|
|
113
|
+
export function Title(body) { return VBlock.claim(HtmlTags.title, body); }
|
|
114
|
+
export function TR(body) { return VBlock.claim(HtmlTags.tr, body); }
|
|
115
|
+
export function Track(body) { return VBlock.claim(HtmlTags.track, body); }
|
|
116
|
+
export function U(body) { return VBlock.claim(HtmlTags.u, body); }
|
|
117
|
+
export function UL(body) { return VBlock.claim(HtmlTags.ul, body); }
|
|
118
|
+
export function Var(body) { return VBlock.claim(HtmlTags.var, body); }
|
|
119
|
+
export function Video(body) { return VBlock.claim(HtmlTags.video, body); }
|
|
120
|
+
export function Wbr(body) { return VBlock.claim(HtmlTags.wbr, body); }
|
|
121
|
+
export function Svg(body) { return VBlock.claim(SvgTags.svg, body); }
|
|
122
|
+
export function SvgA(body) { return VBlock.claim(SvgTags.a, body); }
|
|
123
|
+
export function Animate(body) { return VBlock.claim(SvgTags.animate, body); }
|
|
124
|
+
export function AnimateMotion(body) { return VBlock.claim(SvgTags.animateMotion, body); }
|
|
125
|
+
export function AnimateTransform(body) { return VBlock.claim(SvgTags.animateTransform, body); }
|
|
126
|
+
export function Circle(body) { return VBlock.claim(SvgTags.circle, body); }
|
|
127
|
+
export function ClipPath(body) { return VBlock.claim(SvgTags.clipPath, body); }
|
|
128
|
+
export function Defs(body) { return VBlock.claim(SvgTags.defs, body); }
|
|
129
|
+
export function Desc(body) { return VBlock.claim(SvgTags.desc, body); }
|
|
130
|
+
export function Ellipse(body) { return VBlock.claim(SvgTags.ellipse, body); }
|
|
131
|
+
export function FeBlend(body) { return VBlock.claim(SvgTags.feBlend, body); }
|
|
132
|
+
export function FeColorMatrix(body) { return VBlock.claim(SvgTags.feColorMatrix, body); }
|
|
133
|
+
export function FeComponentTransfer(body) { return VBlock.claim(SvgTags.feComponentTransfer, body); }
|
|
134
|
+
export function FeComposite(body) { return VBlock.claim(SvgTags.feComposite, body); }
|
|
135
|
+
export function FeConvolveMatrix(body) { return VBlock.claim(SvgTags.feConvolveMatrix, body); }
|
|
136
|
+
export function FeDiffuseLighting(body) { return VBlock.claim(SvgTags.feDiffuseLighting, body); }
|
|
137
|
+
export function FeDisplacementMap(body) { return VBlock.claim(SvgTags.feDisplacementMap, body); }
|
|
138
|
+
export function FeDistantLight(body) { return VBlock.claim(SvgTags.feDistantLight, body); }
|
|
139
|
+
export function FeDropShadow(body) { return VBlock.claim(SvgTags.feDropShadow, body); }
|
|
140
|
+
export function FeFlood(body) { return VBlock.claim(SvgTags.feFlood, body); }
|
|
141
|
+
export function FeFuncA(body) { return VBlock.claim(SvgTags.feFuncA, body); }
|
|
142
|
+
export function FeFuncB(body) { return VBlock.claim(SvgTags.feFuncB, body); }
|
|
143
|
+
export function FeFuncG(body) { return VBlock.claim(SvgTags.feFuncG, body); }
|
|
144
|
+
export function FeFuncR(body) { return VBlock.claim(SvgTags.feFuncR, body); }
|
|
145
|
+
export function FeGaussianBlur(body) { return VBlock.claim(SvgTags.feGaussianBlur, body); }
|
|
146
|
+
export function FeImage(body) { return VBlock.claim(SvgTags.feImage, body); }
|
|
147
|
+
export function FeMerge(body) { return VBlock.claim(SvgTags.feMerge, body); }
|
|
148
|
+
export function FeMergeNode(body) { return VBlock.claim(SvgTags.feMergeNode, body); }
|
|
149
|
+
export function FeMorphology(body) { return VBlock.claim(SvgTags.feMorphology, body); }
|
|
150
|
+
export function FeOffset(body) { return VBlock.claim(SvgTags.feOffset, body); }
|
|
151
|
+
export function FePointLight(body) { return VBlock.claim(SvgTags.fePointLight, body); }
|
|
152
|
+
export function FeSpecularLighting(body) { return VBlock.claim(SvgTags.feSpecularLighting, body); }
|
|
153
|
+
export function FeSpotLight(body) { return VBlock.claim(SvgTags.feSpotLight, body); }
|
|
154
|
+
export function FeTile(body) { return VBlock.claim(SvgTags.feTile, body); }
|
|
155
|
+
export function FeTurbulence(body) { return VBlock.claim(SvgTags.feTurbulence, body); }
|
|
156
|
+
export function Filter(body) { return VBlock.claim(SvgTags.filter, body); }
|
|
157
|
+
export function ForeignObject(body) { return VBlock.claim(SvgTags.foreignObject, body); }
|
|
158
|
+
export function G(body) { return VBlock.claim(SvgTags.g, body); }
|
|
159
|
+
export function SvgImage(body) { return VBlock.claim(SvgTags.image, body); }
|
|
160
|
+
export function SvgLine(body) { return VBlock.claim(SvgTags.line, body); }
|
|
161
|
+
export function LinearGradient(body) { return VBlock.claim(SvgTags.linearGradient, body); }
|
|
162
|
+
export function Marker(body) { return VBlock.claim(SvgTags.marker, body); }
|
|
163
|
+
export function Mask(body) { return VBlock.claim(SvgTags.mask, body); }
|
|
164
|
+
export function MetaData(body) { return VBlock.claim(SvgTags.metadata, body); }
|
|
165
|
+
export function MPath(body) { return VBlock.claim(SvgTags.mpath, body); }
|
|
166
|
+
export function Path(body) { return VBlock.claim(SvgTags.path, body); }
|
|
167
|
+
export function Pattern(body) { return VBlock.claim(SvgTags.pattern, body); }
|
|
168
|
+
export function Polygon(body) { return VBlock.claim(SvgTags.polygon, body); }
|
|
169
|
+
export function PolyLine(body) { return VBlock.claim(SvgTags.polyline, body); }
|
|
170
|
+
export function RadialGradient(body) { return VBlock.claim(SvgTags.radialGradient, body); }
|
|
171
|
+
export function Rect(body) { return VBlock.claim(SvgTags.rect, body); }
|
|
172
|
+
export function Stop(body) { return VBlock.claim(SvgTags.stop, body); }
|
|
173
|
+
export function SvgSwitch(body) { return VBlock.claim(SvgTags.switch, body); }
|
|
174
|
+
export function Symbol(body) { return VBlock.claim(SvgTags.symbol, body); }
|
|
175
|
+
export function Text(body) { return VBlock.claim(SvgTags.text, body); }
|
|
176
|
+
export function TextPath(body) { return VBlock.claim(SvgTags.textPath, body); }
|
|
177
|
+
export function TSpan(body) { return VBlock.claim(SvgTags.tspan, body); }
|
|
178
|
+
export function Use(body) { return VBlock.claim(SvgTags.use, body); }
|
|
179
|
+
export function View(body) { return VBlock.claim(SvgTags.view, body); }
|
|
180
180
|
const HtmlTags = {
|
|
181
181
|
a: new HtmlDriver("a", LayoutKind.Block),
|
|
182
182
|
abbr: new HtmlDriver("abbr", LayoutKind.Block),
|
|
@@ -4,7 +4,7 @@ export class BaseHtmlDriver extends AbstractDriver {
|
|
|
4
4
|
initialize(block, element) {
|
|
5
5
|
element = this.createElement(block);
|
|
6
6
|
if (Rx.isLogging && this.name)
|
|
7
|
-
element.setAttribute("n", block.
|
|
7
|
+
element.setAttribute("n", block.key);
|
|
8
8
|
super.initialize(block, element);
|
|
9
9
|
}
|
|
10
10
|
finalize(block, isLeader) {
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { FocusModel } from "./sensors/FocusSensor";
|
|
2
|
-
export declare function ReactingFocuser(
|
|
2
|
+
export declare function ReactingFocuser(target: HTMLElement, model: FocusModel, switchEditMode?: ((model?: FocusModel) => void) | undefined): void;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { VBlock } from "../core/api";
|
|
2
|
-
export function ReactingFocuser(
|
|
3
|
-
VBlock.claim(
|
|
2
|
+
export function ReactingFocuser(target, model, switchEditMode = undefined) {
|
|
3
|
+
VBlock.claim(undefined, {
|
|
4
4
|
reacting: true,
|
|
5
5
|
triggers: { target, model },
|
|
6
6
|
initialize(b) {
|