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.
@@ -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 baseFor<T, M, R>(outer: BlockBody<T, M, R> | undefined, base: BlockBody<T, M, R>): BlockVmt<T, M, R>;
23
- export declare function defineSubTreeContext<T extends Object>(type: Type<T>, context: T): void;
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 name: string;
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>(name: string, driver: AbstractDriver<T> | undefined, body: BlockBody<T, M, R>): VBlock<T, M, R>;
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 baseFor(outer, base) {
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 defineSubTreeContext(type, context) {
41
- return VBlockImpl.defineSubTreeContext(type, context);
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(name, driver, body) {
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
- name || (name = `${++owner.numerator}`);
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(name, undefined, "nested blocks can be declared inside render function only"));
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(name, driver, owner, body);
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 getBlockName(block) {
192
- return block.stamp >= 0 ? block.name : undefined;
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(name, driver, owner, body) {
206
+ constructor(key, driver, owner, body) {
207
207
  super();
208
- this.name = name;
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, getBlockName);
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 defineSubTreeContext(type, context) {
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.name);
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.name}`);
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.name})` }, () => {
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("SYSTEM", gSysDriver, { level: 0 }, { reacting: true, render: NOP }));
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>(name: string, body: BlockBody<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
4
- export declare function PlainText(content: string, name?: string, body?: BlockBody<HTMLElement, void, void>): VBlock<HTMLElement, void, void>;
5
- export declare function HtmlText(content: string, name?: string, body?: BlockBody<HTMLElement, void, void>): VBlock<HTMLElement, void, void>;
6
- export declare function Grid<M = unknown, R = void>(name: string, body: BlockBody<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
7
- export declare function Line<T = void>(claim: (x: void) => T): VBlock<HTMLElement>;
8
- export declare function lineFeed(body?: BlockBody<HTMLElement, void, void>, noCoalescing?: boolean): VBlock<HTMLElement>;
9
- export declare function Group<M = unknown, R = void>(name: string, body: BlockBody<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
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, baseFor } from "../core/api";
1
+ import { VBlock, LayoutKind, Align, GridCursor, asBaseFor } from "../core/api";
2
2
  import { HtmlDriver } from "./HtmlDriver";
3
- export function Block(name, body) {
4
- return VBlock.claim(name, VerstakTags.block, body);
3
+ export function Block(body) {
4
+ return VBlock.claim(VerstakTags.block, body);
5
5
  }
6
- export function PlainText(content, name, body) {
7
- return VBlock.claim(name !== null && name !== void 0 ? name : "", VerstakTags.text, baseFor(body, {
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, name, body) {
14
- return VBlock.claim(name !== null && name !== void 0 ? name : "", VerstakTags.text, baseFor(body, {
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(name, body) {
21
- return VBlock.claim(name, VerstakTags.grid, body);
20
+ export function Grid(body) {
21
+ return VBlock.claim(VerstakTags.grid, body);
22
22
  }
23
- export function Line(claim) {
24
- const result = VBlock.claim("", VerstakTags.row, EMPTY_BLOCK_BODY);
25
- claim();
26
- VBlock.claim("", VerstakTags.row, EMPTY_BLOCK_BODY);
27
- return result;
23
+ export function Line(body) {
24
+ lineFeed();
25
+ body();
26
+ lineFeed();
28
27
  }
29
- export function lineFeed(body, noCoalescing) {
30
- return VBlock.claim("", VerstakTags.row, body !== null && body !== void 0 ? body : EMPTY_BLOCK_BODY);
28
+ export function lineFeed(noCoalescing, key) {
29
+ return VBlock.claim(VerstakTags.row, { key });
31
30
  }
32
- export function Group(name, body) {
33
- return VBlock.claim(name, VerstakTags.group, body);
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("", VerstakTags.row, EMPTY_BLOCK_BODY);
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(name: string, body: BlockBody<HTMLElement>): VBlock<HTMLElement>;
3
- export declare function A<M = unknown, R = void>(name: string, body: BlockBody<HTMLAnchorElement, M, R> | Render<HTMLAnchorElement, M, R>): VBlock<HTMLAnchorElement, M, R>;
4
- export declare function Abbr<M = unknown, R = void>(name: string, body: BlockBody<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
5
- export declare function Address<M = unknown, R = void>(name: string, body: BlockBody<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
6
- export declare function Area<M = unknown, R = void>(name: string, body: BlockBody<HTMLAreaElement, M, R> | Render<HTMLAreaElement, M, R>): VBlock<HTMLAreaElement, M, R>;
7
- export declare function Article<M = unknown, R = void>(name: string, body: BlockBody<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
8
- export declare function Aside<M = unknown, R = void>(name: string, body: BlockBody<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
9
- export declare function Audio<M = unknown, R = void>(name: string, body: BlockBody<HTMLAudioElement, M, R> | Render<HTMLAudioElement, M, R>): VBlock<HTMLAudioElement, M, R>;
10
- export declare function B<M = unknown, R = void>(name: string, body: BlockBody<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
11
- export declare function Base<M = unknown, R = void>(name: string, body: BlockBody<HTMLBaseElement, M, R> | Render<HTMLBaseElement, M, R>): VBlock<HTMLBaseElement, M, R>;
12
- export declare function Bdi<M = unknown, R = void>(name: string, body: BlockBody<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
13
- export declare function Bdo<M = unknown, R = void>(name: string, body: BlockBody<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
14
- export declare function Big<M = unknown, R = void>(name: string, body: BlockBody<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
15
- export declare function BlockQuote<M = unknown, R = void>(name: string, body: BlockBody<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
16
- export declare function Body<M = unknown, R = void>(name: string, body: BlockBody<HTMLBodyElement, M, R> | Render<HTMLBodyElement, M, R>): VBlock<HTMLBodyElement, M, R>;
17
- export declare function BR<M = unknown, R = void>(name: string, body: BlockBody<HTMLBRElement, M, R> | Render<HTMLBRElement, M, R>): VBlock<HTMLBRElement, M, R>;
18
- export declare function Button<M = unknown, R = void>(name: string, body: BlockBody<HTMLButtonElement, M, R> | Render<HTMLButtonElement, M, R>): VBlock<HTMLButtonElement, M, R>;
19
- export declare function Canvas<M = unknown, R = void>(name: string, body: BlockBody<HTMLCanvasElement, M, R> | Render<HTMLCanvasElement, M, R>): VBlock<HTMLCanvasElement, M, R>;
20
- export declare function Caption<M = unknown, R = void>(name: string, body: BlockBody<HTMLTableCaptionElement, M, R> | Render<HTMLTableCaptionElement, M, R>): VBlock<HTMLTableCaptionElement, M, R>;
21
- export declare function Cite<M = unknown, R = void>(name: string, body: BlockBody<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
22
- export declare function Code<M = unknown, R = void>(name: string, body: BlockBody<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
23
- export declare function Col<M = unknown, R = void>(name: string, body: BlockBody<HTMLTableColElement, M, R> | Render<HTMLTableColElement, M, R>): VBlock<HTMLTableColElement, M, R>;
24
- export declare function ColGroup<M = unknown, R = void>(name: string, body: BlockBody<HTMLTableColElement, M, R> | Render<HTMLTableColElement, M, R>): VBlock<HTMLTableColElement, M, R>;
25
- export declare function Data<M = unknown, R = void>(name: string, body: BlockBody<HTMLDataElement, M, R> | Render<HTMLDataElement, M, R>): VBlock<HTMLDataElement, M, R>;
26
- export declare function DataList<M = unknown, R = void>(name: string, body: BlockBody<HTMLDataListElement, M, R> | Render<HTMLDataListElement, M, R>): VBlock<HTMLDataListElement, M, R>;
27
- export declare function DD<M = unknown, R = void>(name: string, body: BlockBody<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
28
- export declare function Del<M = unknown, R = void>(name: string, body: BlockBody<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
29
- export declare function Details<M = unknown, R = void>(name: string, body: BlockBody<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
30
- export declare function Dfn<M = unknown, R = void>(name: string, body: BlockBody<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
31
- export declare function Div<M = unknown, R = void>(name: string, body: BlockBody<HTMLDivElement, M, R> | Render<HTMLDivElement, M, R>): VBlock<HTMLDivElement, M, R>;
32
- export declare function DL<M = unknown, R = void>(name: string, body: BlockBody<HTMLDListElement, M, R> | Render<HTMLDListElement, M, R>): VBlock<HTMLDListElement, M, R>;
33
- export declare function DT<M = unknown, R = void>(name: string, body: BlockBody<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
34
- export declare function EM<M = unknown, R = void>(name: string, body: BlockBody<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
35
- export declare function Embed<M = unknown, R = void>(name: string, body: BlockBody<HTMLEmbedElement, M, R> | Render<HTMLEmbedElement, M, R>): VBlock<HTMLEmbedElement, M, R>;
36
- export declare function FieldSet<M = unknown, R = void>(name: string, body: BlockBody<HTMLFieldSetElement, M, R> | Render<HTMLFieldSetElement, M, R>): VBlock<HTMLFieldSetElement, M, R>;
37
- export declare function FigCaption<M = unknown, R = void>(name: string, body: BlockBody<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
38
- export declare function Figure<M = unknown, R = void>(name: string, body: BlockBody<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
39
- export declare function Footer<M = unknown, R = void>(name: string, body: BlockBody<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
40
- export declare function Form<M = unknown, R = void>(name: string, body: BlockBody<HTMLFormElement, M, R> | Render<HTMLFormElement, M, R>): VBlock<HTMLFormElement, M, R>;
41
- export declare function H1<M = unknown, R = void>(name: string, body: BlockBody<HTMLHeadingElement, M, R> | Render<HTMLHeadingElement, M, R>): VBlock<HTMLHeadingElement, M, R>;
42
- export declare function H2<M = unknown, R = void>(name: string, body: BlockBody<HTMLHeadingElement, M, R> | Render<HTMLHeadingElement, M, R>): VBlock<HTMLHeadingElement, M, R>;
43
- export declare function H3<M = unknown, R = void>(name: string, body: BlockBody<HTMLHeadingElement, M, R> | Render<HTMLHeadingElement, M, R>): VBlock<HTMLHeadingElement, M, R>;
44
- export declare function H4<M = unknown, R = void>(name: string, body: BlockBody<HTMLHeadingElement, M, R> | Render<HTMLHeadingElement, M, R>): VBlock<HTMLHeadingElement, M, R>;
45
- export declare function H5<M = unknown, R = void>(name: string, body: BlockBody<HTMLHeadingElement, M, R> | Render<HTMLHeadingElement, M, R>): VBlock<HTMLHeadingElement, M, R>;
46
- export declare function H6<M = unknown, R = void>(name: string, body: BlockBody<HTMLHeadingElement, M, R> | Render<HTMLHeadingElement, M, R>): VBlock<HTMLHeadingElement, M, R>;
47
- export declare function Head<M = unknown, R = void>(name: string, body: BlockBody<HTMLHeadElement, M, R> | Render<HTMLHeadElement, M, R>): VBlock<HTMLHeadElement, M, R>;
48
- export declare function Header<M = unknown, R = void>(name: string, body: BlockBody<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
49
- export declare function HGroup<M = unknown, R = void>(name: string, body: BlockBody<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
50
- export declare function HR<M = unknown, R = void>(name: string, body: BlockBody<HTMLHRElement, M, R> | Render<HTMLHRElement, M, R>): VBlock<HTMLHRElement, M, R>;
51
- export declare function Html<M = unknown, R = void>(name: string, body: BlockBody<HTMLHtmlElement, M, R> | Render<HTMLHtmlElement, M, R>): VBlock<HTMLHtmlElement, M, R>;
52
- export declare function I<M = unknown, R = void>(name: string, body: BlockBody<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
53
- export declare function IFrame<M = unknown, R = void>(name: string, body: BlockBody<HTMLIFrameElement, M, R> | Render<HTMLIFrameElement, M, R>): VBlock<HTMLIFrameElement, M, R>;
54
- export declare function Img<M = unknown, R = void>(name: string, body: BlockBody<HTMLImageElement, M, R> | Render<HTMLImageElement, M, R>): VBlock<HTMLImageElement, M, R>;
55
- export declare function Input<M = unknown, R = void>(name: string, body: BlockBody<HTMLInputElement, M, R> | Render<HTMLInputElement, M, R>): VBlock<HTMLInputElement, M, R>;
56
- export declare function Ins<M = unknown, R = void>(name: string, body: BlockBody<HTMLModElement, M, R> | Render<HTMLModElement, M, R>): VBlock<HTMLModElement, M, R>;
57
- export declare function Kbd<M = unknown, R = void>(name: string, body: BlockBody<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
58
- export declare function KeyGen<M = unknown, R = void>(name: string, body: BlockBody<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
59
- export declare function Label<M = unknown, R = void>(name: string, body: BlockBody<HTMLLabelElement, M, R> | Render<HTMLLabelElement, M, R>): VBlock<HTMLLabelElement, M, R>;
60
- export declare function Legend<M = unknown, R = void>(name: string, body: BlockBody<HTMLLegendElement, M, R> | Render<HTMLLegendElement, M, R>): VBlock<HTMLLegendElement, M, R>;
61
- export declare function LI<M = unknown, R = void>(name: string, body: BlockBody<HTMLLIElement, M, R> | Render<HTMLLIElement, M, R>): VBlock<HTMLLIElement, M, R>;
62
- export declare function Link<M = unknown, R = void>(name: string, body: BlockBody<HTMLLinkElement, M, R> | Render<HTMLLinkElement, M, R>): VBlock<HTMLLinkElement, M, R>;
63
- export declare function Main<M = unknown, R = void>(name: string, body: BlockBody<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
64
- export declare function Map<M = unknown, R = void>(name: string, body: BlockBody<HTMLMapElement, M, R> | Render<HTMLMapElement, M, R>): VBlock<HTMLMapElement, M, R>;
65
- export declare function Mark<M = unknown, R = void>(name: string, body: BlockBody<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
66
- export declare function Menu<M = unknown, R = void>(name: string, body: BlockBody<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
67
- export declare function MenuItem<M = unknown, R = void>(name: string, body: BlockBody<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
68
- export declare function Meta<M = unknown, R = void>(name: string, 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>(name: string, body: BlockBody<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
70
- export declare function Nav<M = unknown, R = void>(name: string, body: BlockBody<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
71
- export declare function NoIndex<M = unknown, R = void>(name: string, body: BlockBody<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
72
- export declare function NoScript<M = unknown, R = void>(name: string, body: BlockBody<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
73
- export declare function Obj<M = unknown, R = void>(name: string, body: BlockBody<HTMLObjectElement, M, R> | Render<HTMLObjectElement, M, R>): VBlock<HTMLObjectElement, M, R>;
74
- export declare function OL<M = unknown, R = void>(name: string, body: BlockBody<HTMLOListElement, M, R> | Render<HTMLOListElement, M, R>): VBlock<HTMLOListElement, M, R>;
75
- export declare function OptGroup<M = unknown, R = void>(name: string, body: BlockBody<HTMLOptGroupElement, M, R> | Render<HTMLOptGroupElement, M, R>): VBlock<HTMLOptGroupElement, M, R>;
76
- export declare function Option<M = unknown, R = void>(name: string, body: BlockBody<HTMLOptionElement, M, R> | Render<HTMLOptionElement, M, R>): VBlock<HTMLOptionElement, M, R>;
77
- export declare function Output<M = unknown, R = void>(name: string, body: BlockBody<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
78
- export declare function P<M = unknown, R = void>(name: string, body: BlockBody<HTMLParagraphElement, M, R> | Render<HTMLParagraphElement, M, R>): VBlock<HTMLParagraphElement, M, R>;
79
- export declare function Param<M = unknown, R = void>(name: string, body: BlockBody<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
80
- export declare function Picture<M = unknown, R = void>(name: string, body: BlockBody<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
81
- export declare function Pre<M = unknown, R = void>(name: string, body: BlockBody<HTMLPreElement, M, R> | Render<HTMLPreElement, M, R>): VBlock<HTMLPreElement, M, R>;
82
- export declare function Progress<M = unknown, R = void>(name: string, body: BlockBody<HTMLProgressElement, M, R> | Render<HTMLProgressElement, M, R>): VBlock<HTMLProgressElement, M, R>;
83
- export declare function Q<M = unknown, R = void>(name: string, body: BlockBody<HTMLQuoteElement, M, R> | Render<HTMLQuoteElement, M, R>): VBlock<HTMLQuoteElement, M, R>;
84
- export declare function RP<M = unknown, R = void>(name: string, body: BlockBody<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
85
- export declare function RT<M = unknown, R = void>(name: string, body: BlockBody<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
86
- export declare function Ruby<M = unknown, R = void>(name: string, body: BlockBody<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
87
- export declare function S<M = unknown, R = void>(name: string, body: BlockBody<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
88
- export declare function Samp<M = unknown, R = void>(name: string, body: BlockBody<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
89
- export declare function Script<M = unknown, R = void>(name: string, body: BlockBody<HTMLScriptElement, M, R> | Render<HTMLScriptElement, M, R>): VBlock<HTMLScriptElement, M, R>;
90
- export declare function Section<M = unknown, R = void>(name: string, body: BlockBody<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
91
- export declare function Select<M = unknown, R = void>(name: string, body: BlockBody<HTMLSelectElement, M, R> | Render<HTMLSelectElement, M, R>): VBlock<HTMLSelectElement, M, R>;
92
- export declare function Small<M = unknown, R = void>(name: string, body: BlockBody<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
93
- export declare function Source<M = unknown, R = void>(name: string, body: BlockBody<HTMLSourceElement, M, R> | Render<HTMLSourceElement, M, R>): VBlock<HTMLSourceElement, M, R>;
94
- export declare function Span<M = unknown, R = void>(name: string, body: BlockBody<HTMLSpanElement, M, R> | Render<HTMLSpanElement, M, R>): VBlock<HTMLSpanElement, M, R>;
95
- export declare function Strong<M = unknown, R = void>(name: string, body: BlockBody<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
96
- export declare function Style<M = unknown, R = void>(name: string, body: BlockBody<HTMLStyleElement, M, R> | Render<HTMLStyleElement, M, R>): VBlock<HTMLStyleElement, M, R>;
97
- export declare function Sub<M = unknown, R = void>(name: string, body: BlockBody<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
98
- export declare function Summary<M = unknown, R = void>(name: string, body: BlockBody<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
99
- export declare function Sup<M = unknown, R = void>(name: string, body: BlockBody<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
100
- export declare function Table<M = unknown, R = void>(name: string, body: BlockBody<HTMLTableElement, M, R> | Render<HTMLTableElement, M, R>): VBlock<HTMLTableElement, M, R>;
101
- export declare function Template<M = unknown, R = void>(name: string, body: BlockBody<HTMLTemplateElement, M, R> | Render<HTMLTemplateElement, M, R>): VBlock<HTMLTemplateElement, M, R>;
102
- export declare function TBody<M = unknown, R = void>(name: string, body: BlockBody<HTMLTableSectionElement, M, R> | Render<HTMLTableSectionElement, M, R>): VBlock<HTMLTableSectionElement, M, R>;
103
- export declare function TD<M = unknown, R = void>(name: string, body: BlockBody<HTMLTableCellElement, M, R> | Render<HTMLTableCellElement, M, R>): VBlock<HTMLTableCellElement, M, R>;
104
- export declare function TextArea<M = unknown, R = void>(name: string, body: BlockBody<HTMLTextAreaElement, M, R> | Render<HTMLTextAreaElement, M, R>): VBlock<HTMLTextAreaElement, M, R>;
105
- export declare function TFoot<M = unknown, R = void>(name: string, body: BlockBody<HTMLTableSectionElement, M, R> | Render<HTMLTableSectionElement, M, R>): VBlock<HTMLTableSectionElement, M, R>;
106
- export declare function TH<M = unknown, R = void>(name: string, body: BlockBody<HTMLTableCellElement, M, R> | Render<HTMLTableCellElement, M, R>): VBlock<HTMLTableCellElement, M, R>;
107
- export declare function THead<M = unknown, R = void>(name: string, body: BlockBody<HTMLTableSectionElement, M, R> | Render<HTMLTableSectionElement, M, R>): VBlock<HTMLTableSectionElement, M, R>;
108
- export declare function Time<M = unknown, R = void>(name: string, body: BlockBody<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
109
- export declare function Title<M = unknown, R = void>(name: string, body: BlockBody<HTMLTitleElement, M, R> | Render<HTMLTitleElement, M, R>): VBlock<HTMLTitleElement, M, R>;
110
- export declare function TR<M = unknown, R = void>(name: string, body: BlockBody<HTMLTableRowElement, M, R> | Render<HTMLTableRowElement, M, R>): VBlock<HTMLTableRowElement, M, R>;
111
- export declare function Track<M = unknown, R = void>(name: string, body: BlockBody<HTMLTrackElement, M, R> | Render<HTMLTrackElement, M, R>): VBlock<HTMLTrackElement, M, R>;
112
- export declare function U<M = unknown, R = void>(name: string, body: BlockBody<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
113
- export declare function UL<M = unknown, R = void>(name: string, body: BlockBody<HTMLUListElement, M, R> | Render<HTMLUListElement, M, R>): VBlock<HTMLUListElement, M, R>;
114
- export declare function Var<M = unknown, R = void>(name: string, body: BlockBody<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
115
- export declare function Video<M = unknown, R = void>(name: string, body: BlockBody<HTMLVideoElement, M, R> | Render<HTMLVideoElement, M, R>): VBlock<HTMLVideoElement, M, R>;
116
- export declare function Wbr<M = unknown, R = void>(name: string, body: BlockBody<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
117
- export declare function Svg<M = unknown, R = void>(name: string, body: BlockBody<SVGSVGElement, M, R> | Render<SVGSVGElement, M, R>): VBlock<SVGSVGElement, M, R>;
118
- export declare function SvgA<M = unknown, R = void>(name: string, body: BlockBody<SVGAElement, M, R> | Render<SVGAElement, M, R>): VBlock<SVGAElement, M, R>;
119
- export declare function Animate<M = unknown, R = void>(name: string, body: BlockBody<SVGAnimateElement, M, R> | Render<SVGAnimateElement, M, R>): VBlock<SVGAnimateElement, M, R>;
120
- export declare function AnimateMotion<M = unknown, R = void>(name: string, body: BlockBody<SVGAnimateMotionElement, M, R> | Render<SVGAnimateMotionElement, M, R>): VBlock<SVGAnimateMotionElement, M, R>;
121
- export declare function AnimateTransform<M = unknown, R = void>(name: string, body: BlockBody<SVGAnimateTransformElement, M, R> | Render<SVGAnimateTransformElement, M, R>): VBlock<SVGAnimateTransformElement, M, R>;
122
- export declare function Circle<M = unknown, R = void>(name: string, body: BlockBody<SVGCircleElement, M, R> | Render<SVGCircleElement, M, R>): VBlock<SVGCircleElement, M, R>;
123
- export declare function ClipPath<M = unknown, R = void>(name: string, body: BlockBody<SVGClipPathElement, M, R> | Render<SVGClipPathElement, M, R>): VBlock<SVGClipPathElement, M, R>;
124
- export declare function Defs<M = unknown, R = void>(name: string, body: BlockBody<SVGDefsElement, M, R> | Render<SVGDefsElement, M, R>): VBlock<SVGDefsElement, M, R>;
125
- export declare function Desc<M = unknown, R = void>(name: string, body: BlockBody<SVGDescElement, M, R> | Render<SVGDescElement, M, R>): VBlock<SVGDescElement, M, R>;
126
- export declare function Ellipse<M = unknown, R = void>(name: string, body: BlockBody<SVGEllipseElement, M, R> | Render<SVGEllipseElement, M, R>): VBlock<SVGEllipseElement, M, R>;
127
- export declare function FeBlend<M = unknown, R = void>(name: string, body: BlockBody<SVGFEBlendElement, M, R> | Render<SVGFEBlendElement, M, R>): VBlock<SVGFEBlendElement, M, R>;
128
- export declare function FeColorMatrix<M = unknown, R = void>(name: string, body: BlockBody<SVGFEColorMatrixElement, M, R> | Render<SVGFEColorMatrixElement, M, R>): VBlock<SVGFEColorMatrixElement, M, R>;
129
- export declare function FeComponentTransfer<M = unknown, R = void>(name: string, body: BlockBody<SVGFEComponentTransferElement, M, R> | Render<SVGFEComponentTransferElement, M, R>): VBlock<SVGFEComponentTransferElement, M, R>;
130
- export declare function FeComposite<M = unknown, R = void>(name: string, body: BlockBody<SVGFECompositeElement, M, R> | Render<SVGFECompositeElement, M, R>): VBlock<SVGFECompositeElement, M, R>;
131
- export declare function FeConvolveMatrix<M = unknown, R = void>(name: string, body: BlockBody<SVGFEConvolveMatrixElement, M, R> | Render<SVGFEConvolveMatrixElement, M, R>): VBlock<SVGFEConvolveMatrixElement, M, R>;
132
- export declare function FeDiffuseLighting<M = unknown, R = void>(name: string, body: BlockBody<SVGFEDiffuseLightingElement, M, R> | Render<SVGFEDiffuseLightingElement, M, R>): VBlock<SVGFEDiffuseLightingElement, M, R>;
133
- export declare function FeDisplacementMap<M = unknown, R = void>(name: string, body: BlockBody<SVGFEDisplacementMapElement, M, R> | Render<SVGFEDisplacementMapElement, M, R>): VBlock<SVGFEDisplacementMapElement, M, R>;
134
- export declare function FeDistantLight<M = unknown, R = void>(name: string, body: BlockBody<SVGFEDistantLightElement, M, R> | Render<SVGFEDistantLightElement, M, R>): VBlock<SVGFEDistantLightElement, M, R>;
135
- export declare function FeDropShadow<M = unknown, R = void>(name: string, body: BlockBody<SVGFEDropShadowElement, M, R> | Render<SVGFEDropShadowElement, M, R>): VBlock<SVGFEDropShadowElement, M, R>;
136
- export declare function FeFlood<M = unknown, R = void>(name: string, body: BlockBody<SVGFEFloodElement, M, R> | Render<SVGFEFloodElement, M, R>): VBlock<SVGFEFloodElement, M, R>;
137
- export declare function FeFuncA<M = unknown, R = void>(name: string, body: BlockBody<SVGFEFuncAElement, M, R> | Render<SVGFEFuncAElement, M, R>): VBlock<SVGFEFuncAElement, M, R>;
138
- export declare function FeFuncB<M = unknown, R = void>(name: string, body: BlockBody<SVGFEFuncBElement, M, R> | Render<SVGFEFuncBElement, M, R>): VBlock<SVGFEFuncBElement, M, R>;
139
- export declare function FeFuncG<M = unknown, R = void>(name: string, body: BlockBody<SVGFEFuncGElement, M, R> | Render<SVGFEFuncGElement, M, R>): VBlock<SVGFEFuncGElement, M, R>;
140
- export declare function FeFuncR<M = unknown, R = void>(name: string, body: BlockBody<SVGFEFuncRElement, M, R> | Render<SVGFEFuncRElement, M, R>): VBlock<SVGFEFuncRElement, M, R>;
141
- export declare function FeGaussianBlur<M = unknown, R = void>(name: string, body: BlockBody<SVGFEGaussianBlurElement, M, R> | Render<SVGFEGaussianBlurElement, M, R>): VBlock<SVGFEGaussianBlurElement, M, R>;
142
- export declare function FeImage<M = unknown, R = void>(name: string, body: BlockBody<SVGFEImageElement, M, R> | Render<SVGFEImageElement, M, R>): VBlock<SVGFEImageElement, M, R>;
143
- export declare function FeMerge<M = unknown, R = void>(name: string, body: BlockBody<SVGFEMergeElement, M, R> | Render<SVGFEMergeElement, M, R>): VBlock<SVGFEMergeElement, M, R>;
144
- export declare function FeMergeNode<M = unknown, R = void>(name: string, body: BlockBody<SVGFEMergeNodeElement, M, R> | Render<SVGFEMergeNodeElement, M, R>): VBlock<SVGFEMergeNodeElement, M, R>;
145
- export declare function FeMorphology<M = unknown, R = void>(name: string, body: BlockBody<SVGFEMorphologyElement, M, R> | Render<SVGFEMorphologyElement, M, R>): VBlock<SVGFEMorphologyElement, M, R>;
146
- export declare function FeOffset<M = unknown, R = void>(name: string, body: BlockBody<SVGFEOffsetElement, M, R> | Render<SVGFEOffsetElement, M, R>): VBlock<SVGFEOffsetElement, M, R>;
147
- export declare function FePointLight<M = unknown, R = void>(name: string, body: BlockBody<SVGFEPointLightElement, M, R> | Render<SVGFEPointLightElement, M, R>): VBlock<SVGFEPointLightElement, M, R>;
148
- export declare function FeSpecularLighting<M = unknown, R = void>(name: string, body: BlockBody<SVGFESpecularLightingElement, M, R> | Render<SVGFESpecularLightingElement, M, R>): VBlock<SVGFESpecularLightingElement, M, R>;
149
- export declare function FeSpotLight<M = unknown, R = void>(name: string, body: BlockBody<SVGFESpotLightElement, M, R> | Render<SVGFESpotLightElement, M, R>): VBlock<SVGFESpotLightElement, M, R>;
150
- export declare function FeTile<M = unknown, R = void>(name: string, body: BlockBody<SVGFETileElement, M, R> | Render<SVGFETileElement, M, R>): VBlock<SVGFETileElement, M, R>;
151
- export declare function FeTurbulence<M = unknown, R = void>(name: string, body: BlockBody<SVGFETurbulenceElement, M, R> | Render<SVGFETurbulenceElement, M, R>): VBlock<SVGFETurbulenceElement, M, R>;
152
- export declare function Filter<M = unknown, R = void>(name: string, body: BlockBody<SVGFilterElement, M, R> | Render<SVGFilterElement, M, R>): VBlock<SVGFilterElement, M, R>;
153
- export declare function ForeignObject<M = unknown, R = void>(name: string, body: BlockBody<SVGForeignObjectElement, M, R> | Render<SVGForeignObjectElement, M, R>): VBlock<SVGForeignObjectElement, M, R>;
154
- export declare function G<M = unknown, R = void>(name: string, body: BlockBody<SVGGElement, M, R> | Render<SVGGElement, M, R>): VBlock<SVGGElement, M, R>;
155
- export declare function SvgImage<M = unknown, R = void>(name: string, body: BlockBody<SVGImageElement, M, R> | Render<SVGImageElement, M, R>): VBlock<SVGImageElement, M, R>;
156
- export declare function SvgLine<M = unknown, R = void>(name: string, body: BlockBody<SVGLineElement, M, R> | Render<SVGLineElement, M, R>): VBlock<SVGLineElement, M, R>;
157
- export declare function LinearGradient<M = unknown, R = void>(name: string, body: BlockBody<SVGLinearGradientElement, M, R> | Render<SVGLinearGradientElement, M, R>): VBlock<SVGLinearGradientElement, M, R>;
158
- export declare function Marker<M = unknown, R = void>(name: string, body: BlockBody<SVGMarkerElement, M, R> | Render<SVGMarkerElement, M, R>): VBlock<SVGMarkerElement, M, R>;
159
- export declare function Mask<M = unknown, R = void>(name: string, body: BlockBody<SVGMaskElement, M, R> | Render<SVGMaskElement, M, R>): VBlock<SVGMaskElement, M, R>;
160
- export declare function MetaData<M = unknown, R = void>(name: string, body: BlockBody<SVGMetadataElement, M, R> | Render<SVGMetadataElement, M, R>): VBlock<SVGMetadataElement, M, R>;
161
- export declare function MPath<M = unknown, R = void>(name: string, body: BlockBody<SVGElement, M, R> | Render<SVGElement, M, R>): VBlock<SVGElement, M, R>;
162
- export declare function Path<M = unknown, R = void>(name: string, body: BlockBody<SVGPathElement, M, R> | Render<SVGPathElement, M, R>): VBlock<SVGPathElement, M, R>;
163
- export declare function Pattern<M = unknown, R = void>(name: string, body: BlockBody<SVGPatternElement, M, R> | Render<SVGPatternElement, M, R>): VBlock<SVGPatternElement, M, R>;
164
- export declare function Polygon<M = unknown, R = void>(name: string, body: BlockBody<SVGPolygonElement, M, R> | Render<SVGPolygonElement, M, R>): VBlock<SVGPolygonElement, M, R>;
165
- export declare function PolyLine<M = unknown, R = void>(name: string, body: BlockBody<SVGPolylineElement, M, R> | Render<SVGPolylineElement, M, R>): VBlock<SVGPolylineElement, M, R>;
166
- export declare function RadialGradient<M = unknown, R = void>(name: string, body: BlockBody<SVGRadialGradientElement, M, R> | Render<SVGRadialGradientElement, M, R>): VBlock<SVGRadialGradientElement, M, R>;
167
- export declare function Rect<M = unknown, R = void>(name: string, body: BlockBody<SVGRectElement, M, R> | Render<SVGRectElement, M, R>): VBlock<SVGRectElement, M, R>;
168
- export declare function Stop<M = unknown, R = void>(name: string, body: BlockBody<SVGStopElement, M, R> | Render<SVGStopElement, M, R>): VBlock<SVGStopElement, M, R>;
169
- export declare function SvgSwitch<M = unknown, R = void>(name: string, body: BlockBody<SVGSwitchElement, M, R> | Render<SVGSwitchElement, M, R>): VBlock<SVGSwitchElement, M, R>;
170
- export declare function Symbol<M = unknown, R = void>(name: string, body: BlockBody<SVGSymbolElement, M, R> | Render<SVGSymbolElement, M, R>): VBlock<SVGSymbolElement, M, R>;
171
- export declare function Text<M = unknown, R = void>(name: string, body: BlockBody<SVGTextElement, M, R> | Render<SVGTextElement, M, R>): VBlock<SVGTextElement, M, R>;
172
- export declare function TextPath<M = unknown, R = void>(name: string, body: BlockBody<SVGTextPathElement, M, R> | Render<SVGTextPathElement, M, R>): VBlock<SVGTextPathElement, M, R>;
173
- export declare function TSpan<M = unknown, R = void>(name: string, body: BlockBody<SVGTSpanElement, M, R> | Render<SVGTSpanElement, M, R>): VBlock<SVGTSpanElement, M, R>;
174
- export declare function Use<M = unknown, R = void>(name: string, body: BlockBody<SVGUseElement, M, R> | Render<SVGUseElement, M, R>): VBlock<SVGUseElement, M, R>;
175
- export declare function View<M = unknown, R = void>(name: string, body: BlockBody<SVGViewElement, M, R> | Render<SVGViewElement, M, R>): VBlock<SVGViewElement, M, R>;
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(name, body) {
4
- const driver = new StaticDriver(global.document.body, name, LayoutKind.Block);
5
- return VBlock.claim(name, driver, body);
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(name, body) { return VBlock.claim(name, HtmlTags.a, body); }
8
- export function Abbr(name, body) { return VBlock.claim(name, HtmlTags.abbr, body); }
9
- export function Address(name, body) { return VBlock.claim(name, HtmlTags.address, body); }
10
- export function Area(name, body) { return VBlock.claim(name, HtmlTags.area, body); }
11
- export function Article(name, body) { return VBlock.claim(name, HtmlTags.article, body); }
12
- export function Aside(name, body) { return VBlock.claim(name, HtmlTags.aside, body); }
13
- export function Audio(name, body) { return VBlock.claim(name, HtmlTags.audio, body); }
14
- export function B(name, body) { return VBlock.claim(name, HtmlTags.b, body); }
15
- export function Base(name, body) { return VBlock.claim(name, HtmlTags.base, body); }
16
- export function Bdi(name, body) { return VBlock.claim(name, HtmlTags.bdi, body); }
17
- export function Bdo(name, body) { return VBlock.claim(name, HtmlTags.bdo, body); }
18
- export function Big(name, body) { return VBlock.claim(name, HtmlTags.big, body); }
19
- export function BlockQuote(name, body) { return VBlock.claim(name, HtmlTags.blockquote, body); }
20
- export function Body(name, body) { return VBlock.claim(name, HtmlTags.body, body); }
21
- export function BR(name, body) { return VBlock.claim(name, HtmlTags.br, body); }
22
- export function Button(name, body) { return VBlock.claim(name, HtmlTags.button, body); }
23
- export function Canvas(name, body) { return VBlock.claim(name, HtmlTags.canvas, body); }
24
- export function Caption(name, body) { return VBlock.claim(name, HtmlTags.caption, body); }
25
- export function Cite(name, body) { return VBlock.claim(name, HtmlTags.cite, body); }
26
- export function Code(name, body) { return VBlock.claim(name, HtmlTags.code, body); }
27
- export function Col(name, body) { return VBlock.claim(name, HtmlTags.col, body); }
28
- export function ColGroup(name, body) { return VBlock.claim(name, HtmlTags.colgroup, body); }
29
- export function Data(name, body) { return VBlock.claim(name, HtmlTags.data, body); }
30
- export function DataList(name, body) { return VBlock.claim(name, HtmlTags.datalist, body); }
31
- export function DD(name, body) { return VBlock.claim(name, HtmlTags.dd, body); }
32
- export function Del(name, body) { return VBlock.claim(name, HtmlTags.del, body); }
33
- export function Details(name, body) { return VBlock.claim(name, HtmlTags.details, body); }
34
- export function Dfn(name, body) { return VBlock.claim(name, HtmlTags.dfn, body); }
35
- export function Div(name, body) { return VBlock.claim(name, HtmlTags.div, body); }
36
- export function DL(name, body) { return VBlock.claim(name, HtmlTags.dl, body); }
37
- export function DT(name, body) { return VBlock.claim(name, HtmlTags.dt, body); }
38
- export function EM(name, body) { return VBlock.claim(name, HtmlTags.em, body); }
39
- export function Embed(name, body) { return VBlock.claim(name, HtmlTags.embed, body); }
40
- export function FieldSet(name, body) { return VBlock.claim(name, HtmlTags.fieldset, body); }
41
- export function FigCaption(name, body) { return VBlock.claim(name, HtmlTags.figcaption, body); }
42
- export function Figure(name, body) { return VBlock.claim(name, HtmlTags.figure, body); }
43
- export function Footer(name, body) { return VBlock.claim(name, HtmlTags.footer, body); }
44
- export function Form(name, body) { return VBlock.claim(name, HtmlTags.form, body); }
45
- export function H1(name, body) { return VBlock.claim(name, HtmlTags.h1, body); }
46
- export function H2(name, body) { return VBlock.claim(name, HtmlTags.h2, body); }
47
- export function H3(name, body) { return VBlock.claim(name, HtmlTags.h3, body); }
48
- export function H4(name, body) { return VBlock.claim(name, HtmlTags.h4, body); }
49
- export function H5(name, body) { return VBlock.claim(name, HtmlTags.h5, body); }
50
- export function H6(name, body) { return VBlock.claim(name, HtmlTags.h6, body); }
51
- export function Head(name, body) { return VBlock.claim(name, HtmlTags.head, body); }
52
- export function Header(name, body) { return VBlock.claim(name, HtmlTags.header, body); }
53
- export function HGroup(name, body) { return VBlock.claim(name, HtmlTags.hgroup, body); }
54
- export function HR(name, body) { return VBlock.claim(name, HtmlTags.hr, body); }
55
- export function Html(name, body) { return VBlock.claim(name, HtmlTags.html, body); }
56
- export function I(name, body) { return VBlock.claim(name, HtmlTags.i, body); }
57
- export function IFrame(name, body) { return VBlock.claim(name, HtmlTags.iframe, body); }
58
- export function Img(name, body) { return VBlock.claim(name, HtmlTags.img, body); }
59
- export function Input(name, body) { return VBlock.claim(name, HtmlTags.input, body); }
60
- export function Ins(name, body) { return VBlock.claim(name, HtmlTags.ins, body); }
61
- export function Kbd(name, body) { return VBlock.claim(name, HtmlTags.kbd, body); }
62
- export function KeyGen(name, body) { return VBlock.claim(name, HtmlTags.keygen, body); }
63
- export function Label(name, body) { return VBlock.claim(name, HtmlTags.label, body); }
64
- export function Legend(name, body) { return VBlock.claim(name, HtmlTags.legend, body); }
65
- export function LI(name, body) { return VBlock.claim(name, HtmlTags.li, body); }
66
- export function Link(name, body) { return VBlock.claim(name, HtmlTags.link, body); }
67
- export function Main(name, body) { return VBlock.claim(name, HtmlTags.main, body); }
68
- export function Map(name, body) { return VBlock.claim(name, HtmlTags.map, body); }
69
- export function Mark(name, body) { return VBlock.claim(name, HtmlTags.mark, body); }
70
- export function Menu(name, body) { return VBlock.claim(name, HtmlTags.menu, body); }
71
- export function MenuItem(name, body) { return VBlock.claim(name, HtmlTags.menuitem, body); }
72
- export function Meta(name, body, renderer) { return VBlock.claim(name, HtmlTags.meta, body); }
73
- export function Meter(name, body) { return VBlock.claim(name, HtmlTags.meter, body); }
74
- export function Nav(name, body) { return VBlock.claim(name, HtmlTags.nav, body); }
75
- export function NoIndex(name, body) { return VBlock.claim(name, HtmlTags.noindex, body); }
76
- export function NoScript(name, body) { return VBlock.claim(name, HtmlTags.noscript, body); }
77
- export function Obj(name, body) { return VBlock.claim(name, HtmlTags.object, body); }
78
- export function OL(name, body) { return VBlock.claim(name, HtmlTags.ol, body); }
79
- export function OptGroup(name, body) { return VBlock.claim(name, HtmlTags.optgroup, body); }
80
- export function Option(name, body) { return VBlock.claim(name, HtmlTags.option, body); }
81
- export function Output(name, body) { return VBlock.claim(name, HtmlTags.output, body); }
82
- export function P(name, body) { return VBlock.claim(name, HtmlTags.p, body); }
83
- export function Param(name, body) { return VBlock.claim(name, HtmlTags.param, body); }
84
- export function Picture(name, body) { return VBlock.claim(name, HtmlTags.picture, body); }
85
- export function Pre(name, body) { return VBlock.claim(name, HtmlTags.pre, body); }
86
- export function Progress(name, body) { return VBlock.claim(name, HtmlTags.progress, body); }
87
- export function Q(name, body) { return VBlock.claim(name, HtmlTags.q, body); }
88
- export function RP(name, body) { return VBlock.claim(name, HtmlTags.rp, body); }
89
- export function RT(name, body) { return VBlock.claim(name, HtmlTags.rt, body); }
90
- export function Ruby(name, body) { return VBlock.claim(name, HtmlTags.ruby, body); }
91
- export function S(name, body) { return VBlock.claim(name, HtmlTags.s, body); }
92
- export function Samp(name, body) { return VBlock.claim(name, HtmlTags.samp, body); }
93
- export function Script(name, body) { return VBlock.claim(name, HtmlTags.script, body); }
94
- export function Section(name, body) { return VBlock.claim(name, HtmlTags.section, body); }
95
- export function Select(name, body) { return VBlock.claim(name, HtmlTags.select, body); }
96
- export function Small(name, body) { return VBlock.claim(name, HtmlTags.small, body); }
97
- export function Source(name, body) { return VBlock.claim(name, HtmlTags.source, body); }
98
- export function Span(name, body) { return VBlock.claim(name, HtmlTags.span, body); }
99
- export function Strong(name, body) { return VBlock.claim(name, HtmlTags.strong, body); }
100
- export function Style(name, body) { return VBlock.claim(name, HtmlTags.style, body); }
101
- export function Sub(name, body) { return VBlock.claim(name, HtmlTags.sub, body); }
102
- export function Summary(name, body) { return VBlock.claim(name, HtmlTags.summary, body); }
103
- export function Sup(name, body) { return VBlock.claim(name, HtmlTags.sup, body); }
104
- export function Table(name, body) { return VBlock.claim(name, HtmlTags.table, body); }
105
- export function Template(name, body) { return VBlock.claim(name, HtmlTags.template, body); }
106
- export function TBody(name, body) { return VBlock.claim(name, HtmlTags.tbody, body); }
107
- export function TD(name, body) { return VBlock.claim(name, HtmlTags.td, body); }
108
- export function TextArea(name, body) { return VBlock.claim(name, HtmlTags.textarea, body); }
109
- export function TFoot(name, body) { return VBlock.claim(name, HtmlTags.tfoot, body); }
110
- export function TH(name, body) { return VBlock.claim(name, HtmlTags.th, body); }
111
- export function THead(name, body) { return VBlock.claim(name, HtmlTags.thead, body); }
112
- export function Time(name, body) { return VBlock.claim(name, HtmlTags.time, body); }
113
- export function Title(name, body) { return VBlock.claim(name, HtmlTags.title, body); }
114
- export function TR(name, body) { return VBlock.claim(name, HtmlTags.tr, body); }
115
- export function Track(name, body) { return VBlock.claim(name, HtmlTags.track, body); }
116
- export function U(name, body) { return VBlock.claim(name, HtmlTags.u, body); }
117
- export function UL(name, body) { return VBlock.claim(name, HtmlTags.ul, body); }
118
- export function Var(name, body) { return VBlock.claim(name, HtmlTags.var, body); }
119
- export function Video(name, body) { return VBlock.claim(name, HtmlTags.video, body); }
120
- export function Wbr(name, body) { return VBlock.claim(name, HtmlTags.wbr, body); }
121
- export function Svg(name, body) { return VBlock.claim(name, SvgTags.svg, body); }
122
- export function SvgA(name, body) { return VBlock.claim(name, SvgTags.a, body); }
123
- export function Animate(name, body) { return VBlock.claim(name, SvgTags.animate, body); }
124
- export function AnimateMotion(name, body) { return VBlock.claim(name, SvgTags.animateMotion, body); }
125
- export function AnimateTransform(name, body) { return VBlock.claim(name, SvgTags.animateTransform, body); }
126
- export function Circle(name, body) { return VBlock.claim(name, SvgTags.circle, body); }
127
- export function ClipPath(name, body) { return VBlock.claim(name, SvgTags.clipPath, body); }
128
- export function Defs(name, body) { return VBlock.claim(name, SvgTags.defs, body); }
129
- export function Desc(name, body) { return VBlock.claim(name, SvgTags.desc, body); }
130
- export function Ellipse(name, body) { return VBlock.claim(name, SvgTags.ellipse, body); }
131
- export function FeBlend(name, body) { return VBlock.claim(name, SvgTags.feBlend, body); }
132
- export function FeColorMatrix(name, body) { return VBlock.claim(name, SvgTags.feColorMatrix, body); }
133
- export function FeComponentTransfer(name, body) { return VBlock.claim(name, SvgTags.feComponentTransfer, body); }
134
- export function FeComposite(name, body) { return VBlock.claim(name, SvgTags.feComposite, body); }
135
- export function FeConvolveMatrix(name, body) { return VBlock.claim(name, SvgTags.feConvolveMatrix, body); }
136
- export function FeDiffuseLighting(name, body) { return VBlock.claim(name, SvgTags.feDiffuseLighting, body); }
137
- export function FeDisplacementMap(name, body) { return VBlock.claim(name, SvgTags.feDisplacementMap, body); }
138
- export function FeDistantLight(name, body) { return VBlock.claim(name, SvgTags.feDistantLight, body); }
139
- export function FeDropShadow(name, body) { return VBlock.claim(name, SvgTags.feDropShadow, body); }
140
- export function FeFlood(name, body) { return VBlock.claim(name, SvgTags.feFlood, body); }
141
- export function FeFuncA(name, body) { return VBlock.claim(name, SvgTags.feFuncA, body); }
142
- export function FeFuncB(name, body) { return VBlock.claim(name, SvgTags.feFuncB, body); }
143
- export function FeFuncG(name, body) { return VBlock.claim(name, SvgTags.feFuncG, body); }
144
- export function FeFuncR(name, body) { return VBlock.claim(name, SvgTags.feFuncR, body); }
145
- export function FeGaussianBlur(name, body) { return VBlock.claim(name, SvgTags.feGaussianBlur, body); }
146
- export function FeImage(name, body) { return VBlock.claim(name, SvgTags.feImage, body); }
147
- export function FeMerge(name, body) { return VBlock.claim(name, SvgTags.feMerge, body); }
148
- export function FeMergeNode(name, body) { return VBlock.claim(name, SvgTags.feMergeNode, body); }
149
- export function FeMorphology(name, body) { return VBlock.claim(name, SvgTags.feMorphology, body); }
150
- export function FeOffset(name, body) { return VBlock.claim(name, SvgTags.feOffset, body); }
151
- export function FePointLight(name, body) { return VBlock.claim(name, SvgTags.fePointLight, body); }
152
- export function FeSpecularLighting(name, body) { return VBlock.claim(name, SvgTags.feSpecularLighting, body); }
153
- export function FeSpotLight(name, body) { return VBlock.claim(name, SvgTags.feSpotLight, body); }
154
- export function FeTile(name, body) { return VBlock.claim(name, SvgTags.feTile, body); }
155
- export function FeTurbulence(name, body) { return VBlock.claim(name, SvgTags.feTurbulence, body); }
156
- export function Filter(name, body) { return VBlock.claim(name, SvgTags.filter, body); }
157
- export function ForeignObject(name, body) { return VBlock.claim(name, SvgTags.foreignObject, body); }
158
- export function G(name, body) { return VBlock.claim(name, SvgTags.g, body); }
159
- export function SvgImage(name, body) { return VBlock.claim(name, SvgTags.image, body); }
160
- export function SvgLine(name, body) { return VBlock.claim(name, SvgTags.line, body); }
161
- export function LinearGradient(name, body) { return VBlock.claim(name, SvgTags.linearGradient, body); }
162
- export function Marker(name, body) { return VBlock.claim(name, SvgTags.marker, body); }
163
- export function Mask(name, body) { return VBlock.claim(name, SvgTags.mask, body); }
164
- export function MetaData(name, body) { return VBlock.claim(name, SvgTags.metadata, body); }
165
- export function MPath(name, body) { return VBlock.claim(name, SvgTags.mpath, body); }
166
- export function Path(name, body) { return VBlock.claim(name, SvgTags.path, body); }
167
- export function Pattern(name, body) { return VBlock.claim(name, SvgTags.pattern, body); }
168
- export function Polygon(name, body) { return VBlock.claim(name, SvgTags.polygon, body); }
169
- export function PolyLine(name, body) { return VBlock.claim(name, SvgTags.polyline, body); }
170
- export function RadialGradient(name, body) { return VBlock.claim(name, SvgTags.radialGradient, body); }
171
- export function Rect(name, body) { return VBlock.claim(name, SvgTags.rect, body); }
172
- export function Stop(name, body) { return VBlock.claim(name, SvgTags.stop, body); }
173
- export function SvgSwitch(name, body) { return VBlock.claim(name, SvgTags.switch, body); }
174
- export function Symbol(name, body) { return VBlock.claim(name, SvgTags.symbol, body); }
175
- export function Text(name, body) { return VBlock.claim(name, SvgTags.text, body); }
176
- export function TextPath(name, body) { return VBlock.claim(name, SvgTags.textPath, body); }
177
- export function TSpan(name, body) { return VBlock.claim(name, SvgTags.tspan, body); }
178
- export function Use(name, body) { return VBlock.claim(name, SvgTags.use, body); }
179
- export function View(name, body) { return VBlock.claim(name, SvgTags.view, body); }
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.name);
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(name: string, target: HTMLElement, model: FocusModel, switchEditMode?: ((model?: FocusModel) => void) | undefined): void;
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(name, target, model, switchEditMode = undefined) {
3
- VBlock.claim(name, undefined, {
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) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "verstak",
3
- "version": "0.22.514",
3
+ "version": "0.22.515",
4
4
  "description": "Verstak - Front-End Library",
5
5
  "publisher": "Nezaboodka Software",
6
6
  "license": "Apache-2.0",