verstak 0.23.100 → 0.23.102

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.
@@ -2,28 +2,22 @@ import { LoggingOptions, Item, CollectionReader, MemberOptions } from "reactroni
2
2
  import { CellRange } from "./CellRange";
3
3
  import { Cursor, Align, Cells } from "./Cursor";
4
4
  export type Callback<T = unknown> = (native: T) => void;
5
- export type Operation<T = unknown, M = unknown, R = void> = (block: VBlock<T, M, R>) => R;
6
- export type VirtualOperation<T = unknown, M = unknown, R = void> = (block: VBlock<T, M, R>, base: () => R) => R;
5
+ export type Operation<T = unknown, M = unknown, R = void> = (block: VBlock<T, M, R>, base: () => R) => R;
7
6
  export type AsyncOperation<T = unknown, M = unknown> = (block: VBlock<T, M, Promise<void>>) => Promise<void>;
8
- export type BlockBody<T = unknown, M = unknown, R = void> = Operation<T, M, R> | BlockVmt<T, M, R>;
9
7
  export declare const enum Priority {
10
8
  Realtime = 0,
11
9
  Normal = 1,
12
10
  Background = 2
13
11
  }
14
- export interface BlockVmt<T = unknown, M = unknown, R = void> {
15
- base?: BlockVmt<T, M, R>;
12
+ export interface BlockBody<T = unknown, M = unknown, R = void> {
13
+ base?: BlockBody<T, M, R>;
16
14
  key?: string;
17
- autonomous?: boolean;
15
+ reaction?: boolean;
18
16
  triggers?: unknown;
19
17
  initialize?: Operation<T, M, R>;
20
18
  render?: Operation<T, M, R>;
21
19
  finalize?: Operation<T, M, R>;
22
- redefinedInitialize?: VirtualOperation<T, M, R>;
23
- redefinedRender?: VirtualOperation<T, M, R>;
24
- redefinedFinalize?: VirtualOperation<T, M, R>;
25
20
  }
26
- export declare function vmt<T, M, R>(body: BlockBody<T, M, R> | undefined): BlockVmt<T, M, R> | undefined;
27
21
  export declare abstract class VBlock<T = unknown, M = unknown, R = void> {
28
22
  static readonly shortFrameDuration = 16;
29
23
  static readonly longFrameDuration = 300;
@@ -31,7 +25,7 @@ export declare abstract class VBlock<T = unknown, M = unknown, R = void> {
31
25
  static frameDuration: number;
32
26
  abstract readonly key: string;
33
27
  abstract readonly driver: AbstractDriver<T>;
34
- abstract readonly body: Readonly<BlockVmt<T, M, R>>;
28
+ abstract readonly body: Readonly<BlockBody<T, M, R>>;
35
29
  abstract model: M;
36
30
  abstract cells: Cells;
37
31
  abstract widthGrowth: number;
@@ -59,7 +53,7 @@ export declare abstract class VBlock<T = unknown, M = unknown, R = void> {
59
53
  static get current(): VBlock;
60
54
  static renderNestedTreesThenDo(action: (error: unknown) => void): void;
61
55
  static runForAllBlocks<T>(action: (e: T) => void): void;
62
- static claim<T = undefined, M = unknown, R = void>(driver: AbstractDriver<T> | undefined, body: BlockBody<T, M, R>): VBlock<T, M, R>;
56
+ static claim<T = undefined, M = unknown, R = void>(driver: AbstractDriver<T> | undefined, body?: BlockBody<T, M, R>, base?: BlockBody<T, M, R>): VBlock<T, M, R>;
63
57
  private static generateKey;
64
58
  static getDefaultLoggingOptions(): LoggingOptions | undefined;
65
59
  static setDefaultLoggingOptions(logging?: LoggingOptions): void;
@@ -68,7 +62,7 @@ export declare enum LayoutKind {
68
62
  Block = 0,
69
63
  Grid = 1,
70
64
  Line = 2,
71
- Group = 3,
65
+ Fragment = 3,
72
66
  Text = 4
73
67
  }
74
68
  export declare class AbstractDriver<T> {
@@ -26,11 +26,6 @@ export var Priority;
26
26
  Priority[Priority["Normal"] = 1] = "Normal";
27
27
  Priority[Priority["Background"] = 2] = "Background";
28
28
  })(Priority || (Priority = {}));
29
- export function vmt(body) {
30
- if (body instanceof Function)
31
- body = { render: body };
32
- return body;
33
- }
34
29
  export class VBlock {
35
30
  get isInitialRendering() {
36
31
  return this.stamp === 2;
@@ -48,15 +43,17 @@ export class VBlock {
48
43
  static runForAllBlocks(action) {
49
44
  forEachChildRecursively(gSysRoot, action);
50
45
  }
51
- static claim(driver, body) {
46
+ static claim(driver, body, base) {
52
47
  var _a;
53
48
  let result;
54
49
  const owner = gCurrent.instance;
55
50
  const children = owner.children;
56
51
  let ex = undefined;
52
+ if (body)
53
+ body.base = base;
54
+ else
55
+ body = base !== null && base !== void 0 ? base : {};
57
56
  driver !== null && driver !== void 0 ? driver : (driver = AbstractDriver.group);
58
- if (body instanceof Function)
59
- body = { render: body };
60
57
  let key = body.key;
61
58
  if (driver.isLine) {
62
59
  const last = children.lastClaimedItem();
@@ -77,7 +74,7 @@ export class VBlock {
77
74
  result = new VBlockImpl(key || VBlock.generateKey(owner), driver, owner, body);
78
75
  result.item = children.add(result);
79
76
  VBlockImpl.grandCount++;
80
- if (body.autonomous)
77
+ if (isReaction(body))
81
78
  VBlockImpl.disposableCount++;
82
79
  }
83
80
  return result;
@@ -87,9 +84,9 @@ export class VBlock {
87
84
  const lettered = emitLetters(n);
88
85
  let result;
89
86
  if (Rx.isLogging)
90
- result = `${getCallerInfo(lettered)}!`;
87
+ result = `·${getCallerInfo(lettered)}`;
91
88
  else
92
- result = `${lettered}!`;
89
+ result = `·${lettered}`;
93
90
  return result;
94
91
  }
95
92
  static getDefaultLoggingOptions() {
@@ -108,7 +105,7 @@ export var LayoutKind;
108
105
  LayoutKind[LayoutKind["Block"] = 0] = "Block";
109
106
  LayoutKind[LayoutKind["Grid"] = 1] = "Grid";
110
107
  LayoutKind[LayoutKind["Line"] = 2] = "Line";
111
- LayoutKind[LayoutKind["Group"] = 3] = "Group";
108
+ LayoutKind[LayoutKind["Fragment"] = 3] = "Fragment";
112
109
  LayoutKind[LayoutKind["Text"] = 4] = "Text";
113
110
  })(LayoutKind || (LayoutKind = {}));
114
111
  const createDefaultCursor = () => new Cursor();
@@ -164,42 +161,34 @@ export class AbstractDriver {
164
161
  applyStyling(block, secondary, styleName, enabled) {
165
162
  }
166
163
  }
167
- AbstractDriver.group = new AbstractDriver("group", LayoutKind.Group);
168
- function invokeInitializeChain(block, vmt) {
164
+ AbstractDriver.group = new AbstractDriver("group", LayoutKind.Fragment);
165
+ function isReaction(body) {
169
166
  var _a;
170
- const redefined = vmt.redefinedInitialize;
171
- const base = vmt.base;
172
- if (!redefined) {
173
- (_a = vmt.initialize) === null || _a === void 0 ? void 0 : _a.call(vmt, block);
174
- if (base)
175
- invokeInitializeChain(block, base);
176
- }
177
- else
178
- redefined(block, base ? () => invokeInitializeChain(block, base) : NOP);
167
+ return (_a = body === null || body === void 0 ? void 0 : body.reaction) !== null && _a !== void 0 ? _a : ((body === null || body === void 0 ? void 0 : body.base) ? isReaction(body === null || body === void 0 ? void 0 : body.base) : false);
179
168
  }
180
- function invokeRenderChain(block, vmt) {
181
- var _a;
182
- const redefined = vmt.redefinedRender;
183
- const base = vmt.base;
184
- if (!redefined) {
185
- if (base)
186
- invokeRenderChain(block, base);
187
- (_a = vmt.render) === null || _a === void 0 ? void 0 : _a.call(vmt, block);
188
- }
189
- else
190
- redefined(block, base ? () => invokeRenderChain(block, base) : NOP);
169
+ function invokeInitializeChain(block, body) {
170
+ const initialize = body.initialize;
171
+ const base = body.base;
172
+ if (initialize)
173
+ initialize(block, base ? () => invokeInitializeChain(block, base) : NOP);
174
+ else if (base)
175
+ invokeInitializeChain(block, base);
191
176
  }
192
- function invokeFinalizeChain(block, vmt) {
193
- var _a;
194
- const redefined = vmt.redefinedFinalize;
195
- const base = vmt.base;
196
- if (!redefined) {
197
- (_a = vmt.finalize) === null || _a === void 0 ? void 0 : _a.call(vmt, block);
198
- if (base)
199
- invokeFinalizeChain(block, base);
200
- }
201
- else
202
- redefined(block, base ? () => invokeFinalizeChain(block, base) : NOP);
177
+ function invokeRenderChain(block, body) {
178
+ const render = body.render;
179
+ const base = body.base;
180
+ if (render)
181
+ render(block, base ? () => invokeRenderChain(block, base) : NOP);
182
+ else if (base)
183
+ invokeRenderChain(block, base);
184
+ }
185
+ function invokeFinalizeChain(block, body) {
186
+ const finalize = body.finalize;
187
+ const base = body.base;
188
+ if (finalize)
189
+ finalize(block, base ? () => invokeFinalizeChain(block, base) : NOP);
190
+ else if (base)
191
+ invokeFinalizeChain(block, base);
203
192
  }
204
193
  export class StaticDriver extends AbstractDriver {
205
194
  constructor(element, name, layout, createCursor) {
@@ -371,7 +360,7 @@ class VBlockImpl extends VBlock {
371
360
  this.assignedStyle = true;
372
361
  }
373
362
  configureReactronic(options) {
374
- if (this.stamp !== 1 || !this.body.autonomous)
363
+ if (this.stamp !== 1 || !isReaction(this.body))
375
364
  throw new Error("reactronic can be configured only for reacting blocks and only inside initialize");
376
365
  return Rx.getController(this.render).configure(options);
377
366
  }
@@ -532,7 +521,7 @@ function renderIncrementally(owner, stamp, allChildren, items, priority) {
532
521
  function triggerRendering(item) {
533
522
  const block = item.instance;
534
523
  if (block.stamp >= 0) {
535
- if (block.body.autonomous) {
524
+ if (isReaction(block.body)) {
536
525
  if (block.stamp === 0) {
537
526
  Transaction.outside(() => {
538
527
  if (Rx.isLogging)
@@ -595,7 +584,7 @@ function triggerFinalization(item, isLeader, individual) {
595
584
  console.log(`WARNING: it is recommended to assign explicit key for conditionally rendered block in order to avoid unexpected side effects: ${block.key}`);
596
585
  block.stamp = ~block.stamp;
597
586
  const childrenAreLeaders = block.driver.finalize(block, isLeader);
598
- if (block.body.autonomous) {
587
+ if (isReaction(block.body)) {
599
588
  item.aux = undefined;
600
589
  const last = gLastToDispose;
601
590
  if (last)
@@ -700,8 +689,8 @@ function defaultReject(error) {
700
689
  }
701
690
  Promise.prototype.then = reactronicDomHookedThen;
702
691
  const NOP = (...args) => { };
703
- const gSysDriver = new StaticDriver(null, "SYSTEM", LayoutKind.Group);
704
- const gSysRoot = Collection.createItem(new VBlockImpl(gSysDriver.name, gSysDriver, { level: 0 }, { autonomous: true, render: NOP }));
692
+ const gSysDriver = new StaticDriver(null, "SYSTEM", LayoutKind.Fragment);
693
+ const gSysRoot = Collection.createItem(new VBlockImpl(gSysDriver.name, gSysDriver, { level: 0 }, { reaction: true, render: NOP }));
705
694
  gSysRoot.instance.item = gSysRoot;
706
695
  Object.defineProperty(gSysRoot.instance, "host", {
707
696
  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>(body: BlockBody<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
3
+ export declare function Block<M = unknown, R = void>(body?: BlockBody<HTMLElement, M, R>, base?: BlockBody<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
4
4
  export declare function PlainText(content: string, body?: BlockBody<HTMLElement, void, void>): VBlock<HTMLElement, void, void>;
5
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>;
6
+ export declare function Grid<M = unknown, R = void>(body?: BlockBody<HTMLElement, M, R>, base?: BlockBody<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
7
7
  export declare function line<T = void>(body: (block: void) => T): void;
8
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>;
9
+ export declare function Fragment<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,24 +1,24 @@
1
- import { VBlock, LayoutKind, Align, GridCursor, vmt } from "../core/api";
1
+ import { VBlock, LayoutKind, Align, GridCursor } from "../core/api";
2
2
  import { HtmlDriver } from "./HtmlDriver";
3
- export function Block(body) {
4
- return VBlock.claim(VerstakTags.block, body);
3
+ export function Block(body, base) {
4
+ return VBlock.claim(VerstakTags.block, body, base);
5
5
  }
6
6
  export function PlainText(content, body) {
7
- return VBlock.claim(VerstakTags.text, Object.assign(Object.assign({}, vmt(body)), { base: {
8
- render(b) {
9
- b.native.innerText = content;
10
- }
11
- } }));
7
+ return VBlock.claim(VerstakTags.text, body, {
8
+ render(b) {
9
+ b.native.innerText = content;
10
+ }
11
+ });
12
12
  }
13
13
  export function HtmlText(content, body) {
14
- return VBlock.claim(VerstakTags.text, Object.assign(Object.assign({}, vmt(body)), { base: {
15
- render(b) {
16
- b.native.innerHTML = content;
17
- }
18
- } }));
14
+ return VBlock.claim(VerstakTags.text, body, {
15
+ render(b) {
16
+ b.native.innerHTML = content;
17
+ }
18
+ });
19
19
  }
20
- export function Grid(body) {
21
- return VBlock.claim(VerstakTags.grid, body);
20
+ export function Grid(body, base) {
21
+ return VBlock.claim(VerstakTags.grid, body, base);
22
22
  }
23
23
  export function line(body) {
24
24
  lineFeed();
@@ -27,8 +27,8 @@ export function line(body) {
27
27
  export function lineFeed(noCoalescing, key) {
28
28
  return VBlock.claim(VerstakTags.line, { key });
29
29
  }
30
- export function Group(body) {
31
- return VBlock.claim(VerstakTags.group, body);
30
+ export function Fragment(body) {
31
+ return VBlock.claim(VerstakTags.fragment, body);
32
32
  }
33
33
  export class VerstakDriver extends HtmlDriver {
34
34
  applyCellRange(block, cellRange) {
@@ -148,7 +148,7 @@ const VerstakTags = {
148
148
  text: new VerstakDriver("v-text", LayoutKind.Text),
149
149
  grid: new VerstakDriver("v-grid", LayoutKind.Grid, () => new GridCursor()),
150
150
  line: new VerstakDriver("v-line", LayoutKind.Line),
151
- group: new VerstakDriver("v-group", LayoutKind.Group),
151
+ fragment: new VerstakDriver("v-fragment", LayoutKind.Fragment),
152
152
  };
153
153
  const AlignToCss = ["stretch", "start", "center", "end"];
154
154
  const TextAlignCss = ["justify", "left", "center", "right"];
@@ -1,175 +1,175 @@
1
1
  import { VBlock, BlockBody } from "../core/api";
2
2
  export declare function HtmlBody(body: BlockBody<HTMLElement>): VBlock<HTMLElement>;
3
- export declare function A<M = unknown, R = void>(body: BlockBody<HTMLAnchorElement, M, R>): VBlock<HTMLAnchorElement, M, R>;
4
- export declare function Abbr<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
5
- export declare function Address<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
6
- export declare function Area<M = unknown, R = void>(body: BlockBody<HTMLAreaElement, M, R>): VBlock<HTMLAreaElement, M, R>;
7
- export declare function Article<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
8
- export declare function Aside<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
9
- export declare function Audio<M = unknown, R = void>(body: BlockBody<HTMLAudioElement, M, R>): VBlock<HTMLAudioElement, M, R>;
10
- export declare function B<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
11
- export declare function Base<M = unknown, R = void>(body: BlockBody<HTMLBaseElement, M, R>): VBlock<HTMLBaseElement, M, R>;
12
- export declare function Bdi<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
13
- export declare function Bdo<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
14
- export declare function Big<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
15
- export declare function BlockQuote<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
16
- export declare function Body<M = unknown, R = void>(body: BlockBody<HTMLBodyElement, M, R>): VBlock<HTMLBodyElement, M, R>;
17
- export declare function BR<M = unknown, R = void>(body: BlockBody<HTMLBRElement, M, R>): VBlock<HTMLBRElement, M, R>;
18
- export declare function Button<M = unknown, R = void>(body: BlockBody<HTMLButtonElement, M, R>): VBlock<HTMLButtonElement, M, R>;
19
- export declare function Canvas<M = unknown, R = void>(body: BlockBody<HTMLCanvasElement, M, R>): VBlock<HTMLCanvasElement, M, R>;
20
- export declare function Caption<M = unknown, R = void>(body: BlockBody<HTMLTableCaptionElement, M, R>): VBlock<HTMLTableCaptionElement, M, R>;
21
- export declare function Cite<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
22
- export declare function Code<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
23
- export declare function Col<M = unknown, R = void>(body: BlockBody<HTMLTableColElement, M, R>): VBlock<HTMLTableColElement, M, R>;
24
- export declare function ColGroup<M = unknown, R = void>(body: BlockBody<HTMLTableColElement, M, R>): VBlock<HTMLTableColElement, M, R>;
25
- export declare function Data<M = unknown, R = void>(body: BlockBody<HTMLDataElement, M, R>): VBlock<HTMLDataElement, M, R>;
26
- export declare function DataList<M = unknown, R = void>(body: BlockBody<HTMLDataListElement, M, R>): VBlock<HTMLDataListElement, M, R>;
27
- export declare function DD<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
28
- export declare function Del<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
29
- export declare function Details<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
30
- export declare function Dfn<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
31
- export declare function Div<M = unknown, R = void>(body: BlockBody<HTMLDivElement, M, R>): VBlock<HTMLDivElement, M, R>;
32
- export declare function DL<M = unknown, R = void>(body: BlockBody<HTMLDListElement, M, R>): VBlock<HTMLDListElement, M, R>;
33
- export declare function DT<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
34
- export declare function EM<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
35
- export declare function Embed<M = unknown, R = void>(body: BlockBody<HTMLEmbedElement, M, R>): VBlock<HTMLEmbedElement, M, R>;
36
- export declare function FieldSet<M = unknown, R = void>(body: BlockBody<HTMLFieldSetElement, M, R>): VBlock<HTMLFieldSetElement, M, R>;
37
- export declare function FigCaption<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
38
- export declare function Figure<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
39
- export declare function Footer<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
40
- export declare function Form<M = unknown, R = void>(body: BlockBody<HTMLFormElement, M, R>): VBlock<HTMLFormElement, M, R>;
41
- export declare function H1<M = unknown, R = void>(body: BlockBody<HTMLHeadingElement, M, R>): VBlock<HTMLHeadingElement, M, R>;
42
- export declare function H2<M = unknown, R = void>(body: BlockBody<HTMLHeadingElement, M, R>): VBlock<HTMLHeadingElement, M, R>;
43
- export declare function H3<M = unknown, R = void>(body: BlockBody<HTMLHeadingElement, M, R>): VBlock<HTMLHeadingElement, M, R>;
44
- export declare function H4<M = unknown, R = void>(body: BlockBody<HTMLHeadingElement, M, R>): VBlock<HTMLHeadingElement, M, R>;
45
- export declare function H5<M = unknown, R = void>(body: BlockBody<HTMLHeadingElement, M, R>): VBlock<HTMLHeadingElement, M, R>;
46
- export declare function H6<M = unknown, R = void>(body: BlockBody<HTMLHeadingElement, M, R>): VBlock<HTMLHeadingElement, M, R>;
47
- export declare function Head<M = unknown, R = void>(body: BlockBody<HTMLHeadElement, M, R>): VBlock<HTMLHeadElement, M, R>;
48
- export declare function Header<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
49
- export declare function HGroup<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
50
- export declare function HR<M = unknown, R = void>(body: BlockBody<HTMLHRElement, M, R>): VBlock<HTMLHRElement, M, R>;
51
- export declare function Html<M = unknown, R = void>(body: BlockBody<HTMLHtmlElement, M, R>): VBlock<HTMLHtmlElement, M, R>;
52
- export declare function I<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
53
- export declare function IFrame<M = unknown, R = void>(body: BlockBody<HTMLIFrameElement, M, R>): VBlock<HTMLIFrameElement, M, R>;
54
- export declare function Img<M = unknown, R = void>(body: BlockBody<HTMLImageElement, M, R>): VBlock<HTMLImageElement, M, R>;
55
- export declare function Input<M = unknown, R = void>(body: BlockBody<HTMLInputElement, M, R>): VBlock<HTMLInputElement, M, R>;
56
- export declare function Ins<M = unknown, R = void>(body: BlockBody<HTMLModElement, M, R>): VBlock<HTMLModElement, M, R>;
57
- export declare function Kbd<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
58
- export declare function KeyGen<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
59
- export declare function Label<M = unknown, R = void>(body: BlockBody<HTMLLabelElement, M, R>): VBlock<HTMLLabelElement, M, R>;
60
- export declare function Legend<M = unknown, R = void>(body: BlockBody<HTMLLegendElement, M, R>): VBlock<HTMLLegendElement, M, R>;
61
- export declare function LI<M = unknown, R = void>(body: BlockBody<HTMLLIElement, M, R>): VBlock<HTMLLIElement, M, R>;
62
- export declare function Link<M = unknown, R = void>(body: BlockBody<HTMLLinkElement, M, R>): VBlock<HTMLLinkElement, M, R>;
63
- export declare function Main<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
64
- export declare function Map<M = unknown, R = void>(body: BlockBody<HTMLMapElement, M, R>): VBlock<HTMLMapElement, M, R>;
65
- export declare function Mark<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
66
- export declare function Menu<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
67
- export declare function MenuItem<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
68
- export declare function Meta<M = unknown, R = void>(body: BlockBody<HTMLMetaElement, M, R>): VBlock<HTMLMetaElement, M, R>;
69
- export declare function Meter<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
70
- export declare function Nav<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
71
- export declare function NoIndex<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
72
- export declare function NoScript<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
73
- export declare function Obj<M = unknown, R = void>(body: BlockBody<HTMLObjectElement, M, R>): VBlock<HTMLObjectElement, M, R>;
74
- export declare function OL<M = unknown, R = void>(body: BlockBody<HTMLOListElement, M, R>): VBlock<HTMLOListElement, M, R>;
75
- export declare function OptGroup<M = unknown, R = void>(body: BlockBody<HTMLOptGroupElement, M, R>): VBlock<HTMLOptGroupElement, M, R>;
76
- export declare function Option<M = unknown, R = void>(body: BlockBody<HTMLOptionElement, M, R>): VBlock<HTMLOptionElement, M, R>;
77
- export declare function Output<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
78
- export declare function P<M = unknown, R = void>(body: BlockBody<HTMLParagraphElement, M, R>): VBlock<HTMLParagraphElement, M, R>;
79
- export declare function Param<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
80
- export declare function Picture<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
81
- export declare function Pre<M = unknown, R = void>(body: BlockBody<HTMLPreElement, M, R>): VBlock<HTMLPreElement, M, R>;
82
- export declare function Progress<M = unknown, R = void>(body: BlockBody<HTMLProgressElement, M, R>): VBlock<HTMLProgressElement, M, R>;
83
- export declare function Q<M = unknown, R = void>(body: BlockBody<HTMLQuoteElement, M, R>): VBlock<HTMLQuoteElement, M, R>;
84
- export declare function RP<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
85
- export declare function RT<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
86
- export declare function Ruby<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
87
- export declare function S<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
88
- export declare function Samp<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
89
- export declare function Script<M = unknown, R = void>(body: BlockBody<HTMLScriptElement, M, R>): VBlock<HTMLScriptElement, M, R>;
90
- export declare function Section<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
91
- export declare function Select<M = unknown, R = void>(body: BlockBody<HTMLSelectElement, M, R>): VBlock<HTMLSelectElement, M, R>;
92
- export declare function Small<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
93
- export declare function Source<M = unknown, R = void>(body: BlockBody<HTMLSourceElement, M, R>): VBlock<HTMLSourceElement, M, R>;
94
- export declare function Span<M = unknown, R = void>(body: BlockBody<HTMLSpanElement, M, R>): VBlock<HTMLSpanElement, M, R>;
95
- export declare function Strong<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
96
- export declare function Style<M = unknown, R = void>(body: BlockBody<HTMLStyleElement, M, R>): VBlock<HTMLStyleElement, M, R>;
97
- export declare function Sub<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
98
- export declare function Summary<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
99
- export declare function Sup<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
100
- export declare function Table<M = unknown, R = void>(body: BlockBody<HTMLTableElement, M, R>): VBlock<HTMLTableElement, M, R>;
101
- export declare function Template<M = unknown, R = void>(body: BlockBody<HTMLTemplateElement, M, R>): VBlock<HTMLTemplateElement, M, R>;
102
- export declare function TBody<M = unknown, R = void>(body: BlockBody<HTMLTableSectionElement, M, R>): VBlock<HTMLTableSectionElement, M, R>;
103
- export declare function TD<M = unknown, R = void>(body: BlockBody<HTMLTableCellElement, M, R>): VBlock<HTMLTableCellElement, M, R>;
104
- export declare function TextArea<M = unknown, R = void>(body: BlockBody<HTMLTextAreaElement, M, R>): VBlock<HTMLTextAreaElement, M, R>;
105
- export declare function TFoot<M = unknown, R = void>(body: BlockBody<HTMLTableSectionElement, M, R>): VBlock<HTMLTableSectionElement, M, R>;
106
- export declare function TH<M = unknown, R = void>(body: BlockBody<HTMLTableCellElement, M, R>): VBlock<HTMLTableCellElement, M, R>;
107
- export declare function THead<M = unknown, R = void>(body: BlockBody<HTMLTableSectionElement, M, R>): VBlock<HTMLTableSectionElement, M, R>;
108
- export declare function Time<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
109
- export declare function Title<M = unknown, R = void>(body: BlockBody<HTMLTitleElement, M, R>): VBlock<HTMLTitleElement, M, R>;
110
- export declare function TR<M = unknown, R = void>(body: BlockBody<HTMLTableRowElement, M, R>): VBlock<HTMLTableRowElement, M, R>;
111
- export declare function Track<M = unknown, R = void>(body: BlockBody<HTMLTrackElement, M, R>): VBlock<HTMLTrackElement, M, R>;
112
- export declare function U<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
113
- export declare function UL<M = unknown, R = void>(body: BlockBody<HTMLUListElement, M, R>): VBlock<HTMLUListElement, M, R>;
114
- export declare function Var<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
115
- export declare function Video<M = unknown, R = void>(body: BlockBody<HTMLVideoElement, M, R>): VBlock<HTMLVideoElement, M, R>;
116
- export declare function Wbr<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
117
- export declare function Svg<M = unknown, R = void>(body: BlockBody<SVGSVGElement, M, R>): VBlock<SVGSVGElement, M, R>;
118
- export declare function SvgA<M = unknown, R = void>(body: BlockBody<SVGAElement, M, R>): VBlock<SVGAElement, M, R>;
119
- export declare function Animate<M = unknown, R = void>(body: BlockBody<SVGAnimateElement, M, R>): VBlock<SVGAnimateElement, M, R>;
120
- export declare function AnimateMotion<M = unknown, R = void>(body: BlockBody<SVGAnimateMotionElement, M, R>): VBlock<SVGAnimateMotionElement, M, R>;
121
- export declare function AnimateTransform<M = unknown, R = void>(body: BlockBody<SVGAnimateTransformElement, M, R>): VBlock<SVGAnimateTransformElement, M, R>;
122
- export declare function Circle<M = unknown, R = void>(body: BlockBody<SVGCircleElement, M, R>): VBlock<SVGCircleElement, M, R>;
123
- export declare function ClipPath<M = unknown, R = void>(body: BlockBody<SVGClipPathElement, M, R>): VBlock<SVGClipPathElement, M, R>;
124
- export declare function Defs<M = unknown, R = void>(body: BlockBody<SVGDefsElement, M, R>): VBlock<SVGDefsElement, M, R>;
125
- export declare function Desc<M = unknown, R = void>(body: BlockBody<SVGDescElement, M, R>): VBlock<SVGDescElement, M, R>;
126
- export declare function Ellipse<M = unknown, R = void>(body: BlockBody<SVGEllipseElement, M, R>): VBlock<SVGEllipseElement, M, R>;
127
- export declare function FeBlend<M = unknown, R = void>(body: BlockBody<SVGFEBlendElement, M, R>): VBlock<SVGFEBlendElement, M, R>;
128
- export declare function FeColorMatrix<M = unknown, R = void>(body: BlockBody<SVGFEColorMatrixElement, M, R>): VBlock<SVGFEColorMatrixElement, M, R>;
129
- export declare function FeComponentTransfer<M = unknown, R = void>(body: BlockBody<SVGFEComponentTransferElement, M, R>): VBlock<SVGFEComponentTransferElement, M, R>;
130
- export declare function FeComposite<M = unknown, R = void>(body: BlockBody<SVGFECompositeElement, M, R>): VBlock<SVGFECompositeElement, M, R>;
131
- export declare function FeConvolveMatrix<M = unknown, R = void>(body: BlockBody<SVGFEConvolveMatrixElement, M, R>): VBlock<SVGFEConvolveMatrixElement, M, R>;
132
- export declare function FeDiffuseLighting<M = unknown, R = void>(body: BlockBody<SVGFEDiffuseLightingElement, M, R>): VBlock<SVGFEDiffuseLightingElement, M, R>;
133
- export declare function FeDisplacementMap<M = unknown, R = void>(body: BlockBody<SVGFEDisplacementMapElement, M, R>): VBlock<SVGFEDisplacementMapElement, M, R>;
134
- export declare function FeDistantLight<M = unknown, R = void>(body: BlockBody<SVGFEDistantLightElement, M, R>): VBlock<SVGFEDistantLightElement, M, R>;
135
- export declare function FeDropShadow<M = unknown, R = void>(body: BlockBody<SVGFEDropShadowElement, M, R>): VBlock<SVGFEDropShadowElement, M, R>;
136
- export declare function FeFlood<M = unknown, R = void>(body: BlockBody<SVGFEFloodElement, M, R>): VBlock<SVGFEFloodElement, M, R>;
137
- export declare function FeFuncA<M = unknown, R = void>(body: BlockBody<SVGFEFuncAElement, M, R>): VBlock<SVGFEFuncAElement, M, R>;
138
- export declare function FeFuncB<M = unknown, R = void>(body: BlockBody<SVGFEFuncBElement, M, R>): VBlock<SVGFEFuncBElement, M, R>;
139
- export declare function FeFuncG<M = unknown, R = void>(body: BlockBody<SVGFEFuncGElement, M, R>): VBlock<SVGFEFuncGElement, M, R>;
140
- export declare function FeFuncR<M = unknown, R = void>(body: BlockBody<SVGFEFuncRElement, M, R>): VBlock<SVGFEFuncRElement, M, R>;
141
- export declare function FeGaussianBlur<M = unknown, R = void>(body: BlockBody<SVGFEGaussianBlurElement, M, R>): VBlock<SVGFEGaussianBlurElement, M, R>;
142
- export declare function FeImage<M = unknown, R = void>(body: BlockBody<SVGFEImageElement, M, R>): VBlock<SVGFEImageElement, M, R>;
143
- export declare function FeMerge<M = unknown, R = void>(body: BlockBody<SVGFEMergeElement, M, R>): VBlock<SVGFEMergeElement, M, R>;
144
- export declare function FeMergeNode<M = unknown, R = void>(body: BlockBody<SVGFEMergeNodeElement, M, R>): VBlock<SVGFEMergeNodeElement, M, R>;
145
- export declare function FeMorphology<M = unknown, R = void>(body: BlockBody<SVGFEMorphologyElement, M, R>): VBlock<SVGFEMorphologyElement, M, R>;
146
- export declare function FeOffset<M = unknown, R = void>(body: BlockBody<SVGFEOffsetElement, M, R>): VBlock<SVGFEOffsetElement, M, R>;
147
- export declare function FePointLight<M = unknown, R = void>(body: BlockBody<SVGFEPointLightElement, M, R>): VBlock<SVGFEPointLightElement, M, R>;
148
- export declare function FeSpecularLighting<M = unknown, R = void>(body: BlockBody<SVGFESpecularLightingElement, M, R>): VBlock<SVGFESpecularLightingElement, M, R>;
149
- export declare function FeSpotLight<M = unknown, R = void>(body: BlockBody<SVGFESpotLightElement, M, R>): VBlock<SVGFESpotLightElement, M, R>;
150
- export declare function FeTile<M = unknown, R = void>(body: BlockBody<SVGFETileElement, M, R>): VBlock<SVGFETileElement, M, R>;
151
- export declare function FeTurbulence<M = unknown, R = void>(body: BlockBody<SVGFETurbulenceElement, M, R>): VBlock<SVGFETurbulenceElement, M, R>;
152
- export declare function Filter<M = unknown, R = void>(body: BlockBody<SVGFilterElement, M, R>): VBlock<SVGFilterElement, M, R>;
153
- export declare function ForeignObject<M = unknown, R = void>(body: BlockBody<SVGForeignObjectElement, M, R>): VBlock<SVGForeignObjectElement, M, R>;
154
- export declare function G<M = unknown, R = void>(body: BlockBody<SVGGElement, M, R>): VBlock<SVGGElement, M, R>;
155
- export declare function SvgImage<M = unknown, R = void>(body: BlockBody<SVGImageElement, M, R>): VBlock<SVGImageElement, M, R>;
156
- export declare function SvgLine<M = unknown, R = void>(body: BlockBody<SVGLineElement, M, R>): VBlock<SVGLineElement, M, R>;
157
- export declare function LinearGradient<M = unknown, R = void>(body: BlockBody<SVGLinearGradientElement, M, R>): VBlock<SVGLinearGradientElement, M, R>;
158
- export declare function Marker<M = unknown, R = void>(body: BlockBody<SVGMarkerElement, M, R>): VBlock<SVGMarkerElement, M, R>;
159
- export declare function Mask<M = unknown, R = void>(body: BlockBody<SVGMaskElement, M, R>): VBlock<SVGMaskElement, M, R>;
160
- export declare function MetaData<M = unknown, R = void>(body: BlockBody<SVGMetadataElement, M, R>): VBlock<SVGMetadataElement, M, R>;
161
- export declare function MPath<M = unknown, R = void>(body: BlockBody<SVGElement, M, R>): VBlock<SVGElement, M, R>;
162
- export declare function Path<M = unknown, R = void>(body: BlockBody<SVGPathElement, M, R>): VBlock<SVGPathElement, M, R>;
163
- export declare function Pattern<M = unknown, R = void>(body: BlockBody<SVGPatternElement, M, R>): VBlock<SVGPatternElement, M, R>;
164
- export declare function Polygon<M = unknown, R = void>(body: BlockBody<SVGPolygonElement, M, R>): VBlock<SVGPolygonElement, M, R>;
165
- export declare function PolyLine<M = unknown, R = void>(body: BlockBody<SVGPolylineElement, M, R>): VBlock<SVGPolylineElement, M, R>;
166
- export declare function RadialGradient<M = unknown, R = void>(body: BlockBody<SVGRadialGradientElement, M, R>): VBlock<SVGRadialGradientElement, M, R>;
167
- export declare function Rect<M = unknown, R = void>(body: BlockBody<SVGRectElement, M, R>): VBlock<SVGRectElement, M, R>;
168
- export declare function Stop<M = unknown, R = void>(body: BlockBody<SVGStopElement, M, R>): VBlock<SVGStopElement, M, R>;
169
- export declare function SvgSwitch<M = unknown, R = void>(body: BlockBody<SVGSwitchElement, M, R>): VBlock<SVGSwitchElement, M, R>;
170
- export declare function Symbol<M = unknown, R = void>(body: BlockBody<SVGSymbolElement, M, R>): VBlock<SVGSymbolElement, M, R>;
171
- export declare function Text<M = unknown, R = void>(body: BlockBody<SVGTextElement, M, R>): VBlock<SVGTextElement, M, R>;
172
- export declare function TextPath<M = unknown, R = void>(body: BlockBody<SVGTextPathElement, M, R>): VBlock<SVGTextPathElement, M, R>;
173
- export declare function TSpan<M = unknown, R = void>(body: BlockBody<SVGTSpanElement, M, R>): VBlock<SVGTSpanElement, M, R>;
174
- export declare function Use<M = unknown, R = void>(body: BlockBody<SVGUseElement, M, R>): VBlock<SVGUseElement, M, R>;
175
- export declare function View<M = unknown, R = void>(body: BlockBody<SVGViewElement, M, R>): VBlock<SVGViewElement, M, R>;
3
+ export declare function A<M = unknown, R = void>(body: BlockBody<HTMLAnchorElement, M, R>, base?: BlockBody<HTMLAnchorElement, M, R>): VBlock<HTMLAnchorElement, M, R>;
4
+ export declare function Abbr<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R>, base?: BlockBody<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
5
+ export declare function Address<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R>, base?: BlockBody<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
6
+ export declare function Area<M = unknown, R = void>(body: BlockBody<HTMLAreaElement, M, R>, base?: BlockBody<HTMLAreaElement, M, R>): VBlock<HTMLAreaElement, M, R>;
7
+ export declare function Article<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R>, base?: BlockBody<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
8
+ export declare function Aside<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R>, base?: BlockBody<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
9
+ export declare function Audio<M = unknown, R = void>(body: BlockBody<HTMLAudioElement, M, R>, base?: BlockBody<HTMLAudioElement, M, R>): VBlock<HTMLAudioElement, M, R>;
10
+ export declare function B<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R>, base?: BlockBody<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
11
+ export declare function Base<M = unknown, R = void>(body: BlockBody<HTMLBaseElement, M, R>, base?: BlockBody<HTMLBaseElement, M, R>): VBlock<HTMLBaseElement, M, R>;
12
+ export declare function Bdi<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R>, base?: BlockBody<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
13
+ export declare function Bdo<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R>, base?: BlockBody<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
14
+ export declare function Big<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R>, base?: BlockBody<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
15
+ export declare function BlockQuote<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R>, base?: BlockBody<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
16
+ export declare function Body<M = unknown, R = void>(body: BlockBody<HTMLBodyElement, M, R>, base?: BlockBody<HTMLBodyElement, M, R>): VBlock<HTMLBodyElement, M, R>;
17
+ export declare function BR<M = unknown, R = void>(body: BlockBody<HTMLBRElement, M, R>, base?: BlockBody<HTMLBRElement, M, R>): VBlock<HTMLBRElement, M, R>;
18
+ export declare function Button<M = unknown, R = void>(body: BlockBody<HTMLButtonElement, M, R>, base?: BlockBody<HTMLButtonElement, M, R>): VBlock<HTMLButtonElement, M, R>;
19
+ export declare function Canvas<M = unknown, R = void>(body: BlockBody<HTMLCanvasElement, M, R>, base?: BlockBody<HTMLCanvasElement, M, R>): VBlock<HTMLCanvasElement, M, R>;
20
+ export declare function Caption<M = unknown, R = void>(body: BlockBody<HTMLTableCaptionElement, M, R>, base?: BlockBody<HTMLTableCaptionElement, M, R>): VBlock<HTMLTableCaptionElement, M, R>;
21
+ export declare function Cite<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R>, base?: BlockBody<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
22
+ export declare function Code<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R>, base?: BlockBody<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
23
+ export declare function Col<M = unknown, R = void>(body: BlockBody<HTMLTableColElement, M, R>, base?: BlockBody<HTMLTableColElement, M, R>): VBlock<HTMLTableColElement, M, R>;
24
+ export declare function ColGroup<M = unknown, R = void>(body: BlockBody<HTMLTableColElement, M, R>, base?: BlockBody<HTMLTableColElement, M, R>): VBlock<HTMLTableColElement, M, R>;
25
+ export declare function Data<M = unknown, R = void>(body: BlockBody<HTMLDataElement, M, R>, base?: BlockBody<HTMLDataElement, M, R>): VBlock<HTMLDataElement, M, R>;
26
+ export declare function DataList<M = unknown, R = void>(body: BlockBody<HTMLDataListElement, M, R>, base?: BlockBody<HTMLDataListElement, M, R>): VBlock<HTMLDataListElement, M, R>;
27
+ export declare function DD<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R>, base?: BlockBody<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
28
+ export declare function Del<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R>, base?: BlockBody<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
29
+ export declare function Details<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R>, base?: BlockBody<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
30
+ export declare function Dfn<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R>, base?: BlockBody<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
31
+ export declare function Div<M = unknown, R = void>(body: BlockBody<HTMLDivElement, M, R>, base?: BlockBody<HTMLDivElement, M, R>): VBlock<HTMLDivElement, M, R>;
32
+ export declare function DL<M = unknown, R = void>(body: BlockBody<HTMLDListElement, M, R>, base?: BlockBody<HTMLDListElement, M, R>): VBlock<HTMLDListElement, M, R>;
33
+ export declare function DT<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R>, base?: BlockBody<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
34
+ export declare function EM<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R>, base?: BlockBody<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
35
+ export declare function Embed<M = unknown, R = void>(body: BlockBody<HTMLEmbedElement, M, R>, base?: BlockBody<HTMLEmbedElement, M, R>): VBlock<HTMLEmbedElement, M, R>;
36
+ export declare function FieldSet<M = unknown, R = void>(body: BlockBody<HTMLFieldSetElement, M, R>, base?: BlockBody<HTMLFieldSetElement, M, R>): VBlock<HTMLFieldSetElement, M, R>;
37
+ export declare function FigCaption<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R>, base?: BlockBody<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
38
+ export declare function Figure<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R>, base?: BlockBody<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
39
+ export declare function Footer<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R>, base?: BlockBody<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
40
+ export declare function Form<M = unknown, R = void>(body: BlockBody<HTMLFormElement, M, R>, base?: BlockBody<HTMLFormElement, M, R>): VBlock<HTMLFormElement, M, R>;
41
+ export declare function H1<M = unknown, R = void>(body: BlockBody<HTMLHeadingElement, M, R>, base?: BlockBody<HTMLHeadingElement, M, R>): VBlock<HTMLHeadingElement, M, R>;
42
+ export declare function H2<M = unknown, R = void>(body: BlockBody<HTMLHeadingElement, M, R>, base?: BlockBody<HTMLHeadingElement, M, R>): VBlock<HTMLHeadingElement, M, R>;
43
+ export declare function H3<M = unknown, R = void>(body: BlockBody<HTMLHeadingElement, M, R>, base?: BlockBody<HTMLHeadingElement, M, R>): VBlock<HTMLHeadingElement, M, R>;
44
+ export declare function H4<M = unknown, R = void>(body: BlockBody<HTMLHeadingElement, M, R>, base?: BlockBody<HTMLHeadingElement, M, R>): VBlock<HTMLHeadingElement, M, R>;
45
+ export declare function H5<M = unknown, R = void>(body: BlockBody<HTMLHeadingElement, M, R>, base?: BlockBody<HTMLHeadingElement, M, R>): VBlock<HTMLHeadingElement, M, R>;
46
+ export declare function H6<M = unknown, R = void>(body: BlockBody<HTMLHeadingElement, M, R>, base?: BlockBody<HTMLHeadingElement, M, R>): VBlock<HTMLHeadingElement, M, R>;
47
+ export declare function Head<M = unknown, R = void>(body: BlockBody<HTMLHeadElement, M, R>, base?: BlockBody<HTMLHeadElement, M, R>): VBlock<HTMLHeadElement, M, R>;
48
+ export declare function Header<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R>, base?: BlockBody<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
49
+ export declare function HGroup<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R>, base?: BlockBody<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
50
+ export declare function HR<M = unknown, R = void>(body: BlockBody<HTMLHRElement, M, R>, base?: BlockBody<HTMLHRElement, M, R>): VBlock<HTMLHRElement, M, R>;
51
+ export declare function Html<M = unknown, R = void>(body: BlockBody<HTMLHtmlElement, M, R>, base?: BlockBody<HTMLHtmlElement, M, R>): VBlock<HTMLHtmlElement, M, R>;
52
+ export declare function I<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R>, base?: BlockBody<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
53
+ export declare function IFrame<M = unknown, R = void>(body: BlockBody<HTMLIFrameElement, M, R>, base?: BlockBody<HTMLIFrameElement, M, R>): VBlock<HTMLIFrameElement, M, R>;
54
+ export declare function Img<M = unknown, R = void>(body: BlockBody<HTMLImageElement, M, R>, base?: BlockBody<HTMLImageElement, M, R>): VBlock<HTMLImageElement, M, R>;
55
+ export declare function Input<M = unknown, R = void>(body: BlockBody<HTMLInputElement, M, R>, base?: BlockBody<HTMLInputElement, M, R>): VBlock<HTMLInputElement, M, R>;
56
+ export declare function Ins<M = unknown, R = void>(body: BlockBody<HTMLModElement, M, R>, base?: BlockBody<HTMLModElement, M, R>): VBlock<HTMLModElement, M, R>;
57
+ export declare function Kbd<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R>, base?: BlockBody<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
58
+ export declare function KeyGen<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R>, base?: BlockBody<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
59
+ export declare function Label<M = unknown, R = void>(body: BlockBody<HTMLLabelElement, M, R>, base?: BlockBody<HTMLLabelElement, M, R>): VBlock<HTMLLabelElement, M, R>;
60
+ export declare function Legend<M = unknown, R = void>(body: BlockBody<HTMLLegendElement, M, R>, base?: BlockBody<HTMLLegendElement, M, R>): VBlock<HTMLLegendElement, M, R>;
61
+ export declare function LI<M = unknown, R = void>(body: BlockBody<HTMLLIElement, M, R>, base?: BlockBody<HTMLLIElement, M, R>): VBlock<HTMLLIElement, M, R>;
62
+ export declare function Link<M = unknown, R = void>(body: BlockBody<HTMLLinkElement, M, R>, base?: BlockBody<HTMLLinkElement, M, R>): VBlock<HTMLLinkElement, M, R>;
63
+ export declare function Main<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R>, base?: BlockBody<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
64
+ export declare function Map<M = unknown, R = void>(body: BlockBody<HTMLMapElement, M, R>, base?: BlockBody<HTMLMapElement, M, R>): VBlock<HTMLMapElement, M, R>;
65
+ export declare function Mark<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R>, base?: BlockBody<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
66
+ export declare function Menu<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R>, base?: BlockBody<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
67
+ export declare function MenuItem<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R>, base?: BlockBody<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
68
+ export declare function Meta<M = unknown, R = void>(body: BlockBody<HTMLMetaElement, M, R>, base?: BlockBody<HTMLMetaElement, M, R>): VBlock<HTMLMetaElement, M, R>;
69
+ export declare function Meter<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R>, base?: BlockBody<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
70
+ export declare function Nav<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R>, base?: BlockBody<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
71
+ export declare function NoIndex<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R>, base?: BlockBody<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
72
+ export declare function NoScript<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R>, base?: BlockBody<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
73
+ export declare function Obj<M = unknown, R = void>(body: BlockBody<HTMLObjectElement, M, R>, base?: BlockBody<HTMLObjectElement, M, R>): VBlock<HTMLObjectElement, M, R>;
74
+ export declare function OL<M = unknown, R = void>(body: BlockBody<HTMLOListElement, M, R>, base?: BlockBody<HTMLOListElement, M, R>): VBlock<HTMLOListElement, M, R>;
75
+ export declare function OptGroup<M = unknown, R = void>(body: BlockBody<HTMLOptGroupElement, M, R>, base?: BlockBody<HTMLOptGroupElement, M, R>): VBlock<HTMLOptGroupElement, M, R>;
76
+ export declare function Option<M = unknown, R = void>(body: BlockBody<HTMLOptionElement, M, R>, base?: BlockBody<HTMLOptionElement, M, R>): VBlock<HTMLOptionElement, M, R>;
77
+ export declare function Output<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R>, base?: BlockBody<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
78
+ export declare function P<M = unknown, R = void>(body: BlockBody<HTMLParagraphElement, M, R>, base?: BlockBody<HTMLParagraphElement, M, R>): VBlock<HTMLParagraphElement, M, R>;
79
+ export declare function Param<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R>, base?: BlockBody<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
80
+ export declare function Picture<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R>, base?: BlockBody<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
81
+ export declare function Pre<M = unknown, R = void>(body: BlockBody<HTMLPreElement, M, R>, base?: BlockBody<HTMLPreElement, M, R>): VBlock<HTMLPreElement, M, R>;
82
+ export declare function Progress<M = unknown, R = void>(body: BlockBody<HTMLProgressElement, M, R>, base?: BlockBody<HTMLProgressElement, M, R>): VBlock<HTMLProgressElement, M, R>;
83
+ export declare function Q<M = unknown, R = void>(body: BlockBody<HTMLQuoteElement, M, R>, base?: BlockBody<HTMLQuoteElement, M, R>): VBlock<HTMLQuoteElement, M, R>;
84
+ export declare function RP<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R>, base?: BlockBody<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
85
+ export declare function RT<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R>, base?: BlockBody<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
86
+ export declare function Ruby<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R>, base?: BlockBody<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
87
+ export declare function S<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R>, base?: BlockBody<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
88
+ export declare function Samp<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R>, base?: BlockBody<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
89
+ export declare function Script<M = unknown, R = void>(body: BlockBody<HTMLScriptElement, M, R>, base?: BlockBody<HTMLScriptElement, M, R>): VBlock<HTMLScriptElement, M, R>;
90
+ export declare function Section<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R>, base?: BlockBody<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
91
+ export declare function Select<M = unknown, R = void>(body: BlockBody<HTMLSelectElement, M, R>, base?: BlockBody<HTMLSelectElement, M, R>): VBlock<HTMLSelectElement, M, R>;
92
+ export declare function Small<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R>, base?: BlockBody<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
93
+ export declare function Source<M = unknown, R = void>(body: BlockBody<HTMLSourceElement, M, R>, base?: BlockBody<HTMLSourceElement, M, R>): VBlock<HTMLSourceElement, M, R>;
94
+ export declare function Span<M = unknown, R = void>(body: BlockBody<HTMLSpanElement, M, R>, base?: BlockBody<HTMLSpanElement, M, R>): VBlock<HTMLSpanElement, M, R>;
95
+ export declare function Strong<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R>, base?: BlockBody<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
96
+ export declare function Style<M = unknown, R = void>(body: BlockBody<HTMLStyleElement, M, R>, base?: BlockBody<HTMLStyleElement, M, R>): VBlock<HTMLStyleElement, M, R>;
97
+ export declare function Sub<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R>, base?: BlockBody<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
98
+ export declare function Summary<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R>, base?: BlockBody<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
99
+ export declare function Sup<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R>, base?: BlockBody<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
100
+ export declare function Table<M = unknown, R = void>(body: BlockBody<HTMLTableElement, M, R>, base?: BlockBody<HTMLTableElement, M, R>): VBlock<HTMLTableElement, M, R>;
101
+ export declare function Template<M = unknown, R = void>(body: BlockBody<HTMLTemplateElement, M, R>, base?: BlockBody<HTMLTemplateElement, M, R>): VBlock<HTMLTemplateElement, M, R>;
102
+ export declare function TBody<M = unknown, R = void>(body: BlockBody<HTMLTableSectionElement, M, R>, base?: BlockBody<HTMLTableSectionElement, M, R>): VBlock<HTMLTableSectionElement, M, R>;
103
+ export declare function TD<M = unknown, R = void>(body: BlockBody<HTMLTableCellElement, M, R>, base?: BlockBody<HTMLTableCellElement, M, R>): VBlock<HTMLTableCellElement, M, R>;
104
+ export declare function TextArea<M = unknown, R = void>(body: BlockBody<HTMLTextAreaElement, M, R>, base?: BlockBody<HTMLTextAreaElement, M, R>): VBlock<HTMLTextAreaElement, M, R>;
105
+ export declare function TFoot<M = unknown, R = void>(body: BlockBody<HTMLTableSectionElement, M, R>, base?: BlockBody<HTMLTableSectionElement, M, R>): VBlock<HTMLTableSectionElement, M, R>;
106
+ export declare function TH<M = unknown, R = void>(body: BlockBody<HTMLTableCellElement, M, R>, base?: BlockBody<HTMLTableCellElement, M, R>): VBlock<HTMLTableCellElement, M, R>;
107
+ export declare function THead<M = unknown, R = void>(body: BlockBody<HTMLTableSectionElement, M, R>, base?: BlockBody<HTMLTableSectionElement, M, R>): VBlock<HTMLTableSectionElement, M, R>;
108
+ export declare function Time<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R>, base?: BlockBody<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
109
+ export declare function Title<M = unknown, R = void>(body: BlockBody<HTMLTitleElement, M, R>, base?: BlockBody<HTMLTitleElement, M, R>): VBlock<HTMLTitleElement, M, R>;
110
+ export declare function TR<M = unknown, R = void>(body: BlockBody<HTMLTableRowElement, M, R>, base?: BlockBody<HTMLTableRowElement, M, R>): VBlock<HTMLTableRowElement, M, R>;
111
+ export declare function Track<M = unknown, R = void>(body: BlockBody<HTMLTrackElement, M, R>, base?: BlockBody<HTMLTrackElement, M, R>): VBlock<HTMLTrackElement, M, R>;
112
+ export declare function U<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R>, base?: BlockBody<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
113
+ export declare function UL<M = unknown, R = void>(body: BlockBody<HTMLUListElement, M, R>, base?: BlockBody<HTMLUListElement, M, R>): VBlock<HTMLUListElement, M, R>;
114
+ export declare function Var<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R>, base?: BlockBody<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
115
+ export declare function Video<M = unknown, R = void>(body: BlockBody<HTMLVideoElement, M, R>, base?: BlockBody<HTMLVideoElement, M, R>): VBlock<HTMLVideoElement, M, R>;
116
+ export declare function Wbr<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R>, base?: BlockBody<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
117
+ export declare function Svg<M = unknown, R = void>(body: BlockBody<SVGSVGElement, M, R>, base?: BlockBody<SVGSVGElement, M, R>): VBlock<SVGSVGElement, M, R>;
118
+ export declare function SvgA<M = unknown, R = void>(body: BlockBody<SVGAElement, M, R>, base?: BlockBody<SVGAElement, M, R>): VBlock<SVGAElement, M, R>;
119
+ export declare function Animate<M = unknown, R = void>(body: BlockBody<SVGAnimateElement, M, R>, base?: BlockBody<SVGAnimateElement, M, R>): VBlock<SVGAnimateElement, M, R>;
120
+ export declare function AnimateMotion<M = unknown, R = void>(body: BlockBody<SVGAnimateMotionElement, M, R>, base?: BlockBody<SVGAnimateMotionElement, M, R>): VBlock<SVGAnimateMotionElement, M, R>;
121
+ export declare function AnimateTransform<M = unknown, R = void>(body: BlockBody<SVGAnimateTransformElement, M, R>, base?: BlockBody<SVGAnimateTransformElement, M, R>): VBlock<SVGAnimateTransformElement, M, R>;
122
+ export declare function Circle<M = unknown, R = void>(body: BlockBody<SVGCircleElement, M, R>, base?: BlockBody<SVGCircleElement, M, R>): VBlock<SVGCircleElement, M, R>;
123
+ export declare function ClipPath<M = unknown, R = void>(body: BlockBody<SVGClipPathElement, M, R>, base?: BlockBody<SVGClipPathElement, M, R>): VBlock<SVGClipPathElement, M, R>;
124
+ export declare function Defs<M = unknown, R = void>(body: BlockBody<SVGDefsElement, M, R>, base?: BlockBody<SVGDefsElement, M, R>): VBlock<SVGDefsElement, M, R>;
125
+ export declare function Desc<M = unknown, R = void>(body: BlockBody<SVGDescElement, M, R>, base?: BlockBody<SVGDescElement, M, R>): VBlock<SVGDescElement, M, R>;
126
+ export declare function Ellipse<M = unknown, R = void>(body: BlockBody<SVGEllipseElement, M, R>, base?: BlockBody<SVGEllipseElement, M, R>): VBlock<SVGEllipseElement, M, R>;
127
+ export declare function FeBlend<M = unknown, R = void>(body: BlockBody<SVGFEBlendElement, M, R>, base?: BlockBody<SVGFEBlendElement, M, R>): VBlock<SVGFEBlendElement, M, R>;
128
+ export declare function FeColorMatrix<M = unknown, R = void>(body: BlockBody<SVGFEColorMatrixElement, M, R>, base?: BlockBody<SVGFEColorMatrixElement, M, R>): VBlock<SVGFEColorMatrixElement, M, R>;
129
+ export declare function FeComponentTransfer<M = unknown, R = void>(body: BlockBody<SVGFEComponentTransferElement, M, R>, base?: BlockBody<SVGFEComponentTransferElement, M, R>): VBlock<SVGFEComponentTransferElement, M, R>;
130
+ export declare function FeComposite<M = unknown, R = void>(body: BlockBody<SVGFECompositeElement, M, R>, base?: BlockBody<SVGFECompositeElement, M, R>): VBlock<SVGFECompositeElement, M, R>;
131
+ export declare function FeConvolveMatrix<M = unknown, R = void>(body: BlockBody<SVGFEConvolveMatrixElement, M, R>, base?: BlockBody<SVGFEConvolveMatrixElement, M, R>): VBlock<SVGFEConvolveMatrixElement, M, R>;
132
+ export declare function FeDiffuseLighting<M = unknown, R = void>(body: BlockBody<SVGFEDiffuseLightingElement, M, R>, base?: BlockBody<SVGFEDiffuseLightingElement, M, R>): VBlock<SVGFEDiffuseLightingElement, M, R>;
133
+ export declare function FeDisplacementMap<M = unknown, R = void>(body: BlockBody<SVGFEDisplacementMapElement, M, R>, base?: BlockBody<SVGFEDisplacementMapElement, M, R>): VBlock<SVGFEDisplacementMapElement, M, R>;
134
+ export declare function FeDistantLight<M = unknown, R = void>(body: BlockBody<SVGFEDistantLightElement, M, R>, base?: BlockBody<SVGFEDistantLightElement, M, R>): VBlock<SVGFEDistantLightElement, M, R>;
135
+ export declare function FeDropShadow<M = unknown, R = void>(body: BlockBody<SVGFEDropShadowElement, M, R>, base?: BlockBody<SVGFEDropShadowElement, M, R>): VBlock<SVGFEDropShadowElement, M, R>;
136
+ export declare function FeFlood<M = unknown, R = void>(body: BlockBody<SVGFEFloodElement, M, R>, base?: BlockBody<SVGFEFloodElement, M, R>): VBlock<SVGFEFloodElement, M, R>;
137
+ export declare function FeFuncA<M = unknown, R = void>(body: BlockBody<SVGFEFuncAElement, M, R>, base?: BlockBody<SVGFEFuncAElement, M, R>): VBlock<SVGFEFuncAElement, M, R>;
138
+ export declare function FeFuncB<M = unknown, R = void>(body: BlockBody<SVGFEFuncBElement, M, R>, base?: BlockBody<SVGFEFuncBElement, M, R>): VBlock<SVGFEFuncBElement, M, R>;
139
+ export declare function FeFuncG<M = unknown, R = void>(body: BlockBody<SVGFEFuncGElement, M, R>, base?: BlockBody<SVGFEFuncGElement, M, R>): VBlock<SVGFEFuncGElement, M, R>;
140
+ export declare function FeFuncR<M = unknown, R = void>(body: BlockBody<SVGFEFuncRElement, M, R>, base?: BlockBody<SVGFEFuncRElement, M, R>): VBlock<SVGFEFuncRElement, M, R>;
141
+ export declare function FeGaussianBlur<M = unknown, R = void>(body: BlockBody<SVGFEGaussianBlurElement, M, R>, base?: BlockBody<SVGFEGaussianBlurElement, M, R>): VBlock<SVGFEGaussianBlurElement, M, R>;
142
+ export declare function FeImage<M = unknown, R = void>(body: BlockBody<SVGFEImageElement, M, R>, base?: BlockBody<SVGFEImageElement, M, R>): VBlock<SVGFEImageElement, M, R>;
143
+ export declare function FeMerge<M = unknown, R = void>(body: BlockBody<SVGFEMergeElement, M, R>, base?: BlockBody<SVGFEMergeElement, M, R>): VBlock<SVGFEMergeElement, M, R>;
144
+ export declare function FeMergeNode<M = unknown, R = void>(body: BlockBody<SVGFEMergeNodeElement, M, R>, base?: BlockBody<SVGFEMergeNodeElement, M, R>): VBlock<SVGFEMergeNodeElement, M, R>;
145
+ export declare function FeMorphology<M = unknown, R = void>(body: BlockBody<SVGFEMorphologyElement, M, R>, base?: BlockBody<SVGFEMorphologyElement, M, R>): VBlock<SVGFEMorphologyElement, M, R>;
146
+ export declare function FeOffset<M = unknown, R = void>(body: BlockBody<SVGFEOffsetElement, M, R>, base?: BlockBody<SVGFEOffsetElement, M, R>): VBlock<SVGFEOffsetElement, M, R>;
147
+ export declare function FePointLight<M = unknown, R = void>(body: BlockBody<SVGFEPointLightElement, M, R>, base?: BlockBody<SVGFEPointLightElement, M, R>): VBlock<SVGFEPointLightElement, M, R>;
148
+ export declare function FeSpecularLighting<M = unknown, R = void>(body: BlockBody<SVGFESpecularLightingElement, M, R>, base?: BlockBody<SVGFESpecularLightingElement, M, R>): VBlock<SVGFESpecularLightingElement, M, R>;
149
+ export declare function FeSpotLight<M = unknown, R = void>(body: BlockBody<SVGFESpotLightElement, M, R>, base?: BlockBody<SVGFESpotLightElement, M, R>): VBlock<SVGFESpotLightElement, M, R>;
150
+ export declare function FeTile<M = unknown, R = void>(body: BlockBody<SVGFETileElement, M, R>, base?: BlockBody<SVGFETileElement, M, R>): VBlock<SVGFETileElement, M, R>;
151
+ export declare function FeTurbulence<M = unknown, R = void>(body: BlockBody<SVGFETurbulenceElement, M, R>, base?: BlockBody<SVGFETurbulenceElement, M, R>): VBlock<SVGFETurbulenceElement, M, R>;
152
+ export declare function Filter<M = unknown, R = void>(body: BlockBody<SVGFilterElement, M, R>, base?: BlockBody<SVGFilterElement, M, R>): VBlock<SVGFilterElement, M, R>;
153
+ export declare function ForeignObject<M = unknown, R = void>(body: BlockBody<SVGForeignObjectElement, M, R>, base?: BlockBody<SVGForeignObjectElement, M, R>): VBlock<SVGForeignObjectElement, M, R>;
154
+ export declare function G<M = unknown, R = void>(body: BlockBody<SVGGElement, M, R>, base?: BlockBody<SVGGElement, M, R>): VBlock<SVGGElement, M, R>;
155
+ export declare function SvgImage<M = unknown, R = void>(body: BlockBody<SVGImageElement, M, R>, base?: BlockBody<SVGImageElement, M, R>): VBlock<SVGImageElement, M, R>;
156
+ export declare function SvgLine<M = unknown, R = void>(body: BlockBody<SVGLineElement, M, R>, base?: BlockBody<SVGLineElement, M, R>): VBlock<SVGLineElement, M, R>;
157
+ export declare function LinearGradient<M = unknown, R = void>(body: BlockBody<SVGLinearGradientElement, M, R>, base?: BlockBody<SVGLinearGradientElement, M, R>): VBlock<SVGLinearGradientElement, M, R>;
158
+ export declare function Marker<M = unknown, R = void>(body: BlockBody<SVGMarkerElement, M, R>, base?: BlockBody<SVGMarkerElement, M, R>): VBlock<SVGMarkerElement, M, R>;
159
+ export declare function Mask<M = unknown, R = void>(body: BlockBody<SVGMaskElement, M, R>, base?: BlockBody<SVGMaskElement, M, R>): VBlock<SVGMaskElement, M, R>;
160
+ export declare function MetaData<M = unknown, R = void>(body: BlockBody<SVGMetadataElement, M, R>, base?: BlockBody<SVGMetadataElement, M, R>): VBlock<SVGMetadataElement, M, R>;
161
+ export declare function MPath<M = unknown, R = void>(body: BlockBody<SVGElement, M, R>, base?: BlockBody<SVGElement, M, R>): VBlock<SVGElement, M, R>;
162
+ export declare function Path<M = unknown, R = void>(body: BlockBody<SVGPathElement, M, R>, base?: BlockBody<SVGPathElement, M, R>): VBlock<SVGPathElement, M, R>;
163
+ export declare function Pattern<M = unknown, R = void>(body: BlockBody<SVGPatternElement, M, R>, base?: BlockBody<SVGPatternElement, M, R>): VBlock<SVGPatternElement, M, R>;
164
+ export declare function Polygon<M = unknown, R = void>(body: BlockBody<SVGPolygonElement, M, R>, base?: BlockBody<SVGPolygonElement, M, R>): VBlock<SVGPolygonElement, M, R>;
165
+ export declare function PolyLine<M = unknown, R = void>(body: BlockBody<SVGPolylineElement, M, R>, base?: BlockBody<SVGPolylineElement, M, R>): VBlock<SVGPolylineElement, M, R>;
166
+ export declare function RadialGradient<M = unknown, R = void>(body: BlockBody<SVGRadialGradientElement, M, R>, base?: BlockBody<SVGRadialGradientElement, M, R>): VBlock<SVGRadialGradientElement, M, R>;
167
+ export declare function Rect<M = unknown, R = void>(body: BlockBody<SVGRectElement, M, R>, base?: BlockBody<SVGRectElement, M, R>): VBlock<SVGRectElement, M, R>;
168
+ export declare function Stop<M = unknown, R = void>(body: BlockBody<SVGStopElement, M, R>, base?: BlockBody<SVGStopElement, M, R>): VBlock<SVGStopElement, M, R>;
169
+ export declare function SvgSwitch<M = unknown, R = void>(body: BlockBody<SVGSwitchElement, M, R>, base?: BlockBody<SVGSwitchElement, M, R>): VBlock<SVGSwitchElement, M, R>;
170
+ export declare function Symbol<M = unknown, R = void>(body: BlockBody<SVGSymbolElement, M, R>, base?: BlockBody<SVGSymbolElement, M, R>): VBlock<SVGSymbolElement, M, R>;
171
+ export declare function Text<M = unknown, R = void>(body: BlockBody<SVGTextElement, M, R>, base?: BlockBody<SVGTextElement, M, R>): VBlock<SVGTextElement, M, R>;
172
+ export declare function TextPath<M = unknown, R = void>(body: BlockBody<SVGTextPathElement, M, R>, base?: BlockBody<SVGTextPathElement, M, R>): VBlock<SVGTextPathElement, M, R>;
173
+ export declare function TSpan<M = unknown, R = void>(body: BlockBody<SVGTSpanElement, M, R>, base?: BlockBody<SVGTSpanElement, M, R>): VBlock<SVGTSpanElement, M, R>;
174
+ export declare function Use<M = unknown, R = void>(body: BlockBody<SVGUseElement, M, R>, base?: BlockBody<SVGUseElement, M, R>): VBlock<SVGUseElement, M, R>;
175
+ export declare function View<M = unknown, R = void>(body: BlockBody<SVGViewElement, M, R>, base?: BlockBody<SVGViewElement, M, R>): VBlock<SVGViewElement, M, R>;
@@ -4,179 +4,179 @@ export function HtmlBody(body) {
4
4
  const driver = new StaticDriver(global.document.body, "HtmlBody", LayoutKind.Block);
5
5
  return VBlock.claim(driver, body);
6
6
  }
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) { 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); }
7
+ export function A(body, base) { return VBlock.claim(HtmlTags.a, body, base); }
8
+ export function Abbr(body, base) { return VBlock.claim(HtmlTags.abbr, body, base); }
9
+ export function Address(body, base) { return VBlock.claim(HtmlTags.address, body, base); }
10
+ export function Area(body, base) { return VBlock.claim(HtmlTags.area, body, base); }
11
+ export function Article(body, base) { return VBlock.claim(HtmlTags.article, body, base); }
12
+ export function Aside(body, base) { return VBlock.claim(HtmlTags.aside, body, base); }
13
+ export function Audio(body, base) { return VBlock.claim(HtmlTags.audio, body, base); }
14
+ export function B(body, base) { return VBlock.claim(HtmlTags.b, body, base); }
15
+ export function Base(body, base) { return VBlock.claim(HtmlTags.base, body, base); }
16
+ export function Bdi(body, base) { return VBlock.claim(HtmlTags.bdi, body, base); }
17
+ export function Bdo(body, base) { return VBlock.claim(HtmlTags.bdo, body, base); }
18
+ export function Big(body, base) { return VBlock.claim(HtmlTags.big, body, base); }
19
+ export function BlockQuote(body, base) { return VBlock.claim(HtmlTags.blockquote, body, base); }
20
+ export function Body(body, base) { return VBlock.claim(HtmlTags.body, body, base); }
21
+ export function BR(body, base) { return VBlock.claim(HtmlTags.br, body, base); }
22
+ export function Button(body, base) { return VBlock.claim(HtmlTags.button, body, base); }
23
+ export function Canvas(body, base) { return VBlock.claim(HtmlTags.canvas, body, base); }
24
+ export function Caption(body, base) { return VBlock.claim(HtmlTags.caption, body, base); }
25
+ export function Cite(body, base) { return VBlock.claim(HtmlTags.cite, body, base); }
26
+ export function Code(body, base) { return VBlock.claim(HtmlTags.code, body, base); }
27
+ export function Col(body, base) { return VBlock.claim(HtmlTags.col, body, base); }
28
+ export function ColGroup(body, base) { return VBlock.claim(HtmlTags.colgroup, body, base); }
29
+ export function Data(body, base) { return VBlock.claim(HtmlTags.data, body, base); }
30
+ export function DataList(body, base) { return VBlock.claim(HtmlTags.datalist, body, base); }
31
+ export function DD(body, base) { return VBlock.claim(HtmlTags.dd, body, base); }
32
+ export function Del(body, base) { return VBlock.claim(HtmlTags.del, body, base); }
33
+ export function Details(body, base) { return VBlock.claim(HtmlTags.details, body, base); }
34
+ export function Dfn(body, base) { return VBlock.claim(HtmlTags.dfn, body, base); }
35
+ export function Div(body, base) { return VBlock.claim(HtmlTags.div, body, base); }
36
+ export function DL(body, base) { return VBlock.claim(HtmlTags.dl, body, base); }
37
+ export function DT(body, base) { return VBlock.claim(HtmlTags.dt, body, base); }
38
+ export function EM(body, base) { return VBlock.claim(HtmlTags.em, body, base); }
39
+ export function Embed(body, base) { return VBlock.claim(HtmlTags.embed, body, base); }
40
+ export function FieldSet(body, base) { return VBlock.claim(HtmlTags.fieldset, body, base); }
41
+ export function FigCaption(body, base) { return VBlock.claim(HtmlTags.figcaption, body, base); }
42
+ export function Figure(body, base) { return VBlock.claim(HtmlTags.figure, body, base); }
43
+ export function Footer(body, base) { return VBlock.claim(HtmlTags.footer, body, base); }
44
+ export function Form(body, base) { return VBlock.claim(HtmlTags.form, body, base); }
45
+ export function H1(body, base) { return VBlock.claim(HtmlTags.h1, body, base); }
46
+ export function H2(body, base) { return VBlock.claim(HtmlTags.h2, body, base); }
47
+ export function H3(body, base) { return VBlock.claim(HtmlTags.h3, body, base); }
48
+ export function H4(body, base) { return VBlock.claim(HtmlTags.h4, body, base); }
49
+ export function H5(body, base) { return VBlock.claim(HtmlTags.h5, body, base); }
50
+ export function H6(body, base) { return VBlock.claim(HtmlTags.h6, body, base); }
51
+ export function Head(body, base) { return VBlock.claim(HtmlTags.head, body, base); }
52
+ export function Header(body, base) { return VBlock.claim(HtmlTags.header, body, base); }
53
+ export function HGroup(body, base) { return VBlock.claim(HtmlTags.hgroup, body, base); }
54
+ export function HR(body, base) { return VBlock.claim(HtmlTags.hr, body, base); }
55
+ export function Html(body, base) { return VBlock.claim(HtmlTags.html, body, base); }
56
+ export function I(body, base) { return VBlock.claim(HtmlTags.i, body, base); }
57
+ export function IFrame(body, base) { return VBlock.claim(HtmlTags.iframe, body, base); }
58
+ export function Img(body, base) { return VBlock.claim(HtmlTags.img, body, base); }
59
+ export function Input(body, base) { return VBlock.claim(HtmlTags.input, body, base); }
60
+ export function Ins(body, base) { return VBlock.claim(HtmlTags.ins, body, base); }
61
+ export function Kbd(body, base) { return VBlock.claim(HtmlTags.kbd, body, base); }
62
+ export function KeyGen(body, base) { return VBlock.claim(HtmlTags.keygen, body, base); }
63
+ export function Label(body, base) { return VBlock.claim(HtmlTags.label, body, base); }
64
+ export function Legend(body, base) { return VBlock.claim(HtmlTags.legend, body, base); }
65
+ export function LI(body, base) { return VBlock.claim(HtmlTags.li, body, base); }
66
+ export function Link(body, base) { return VBlock.claim(HtmlTags.link, body, base); }
67
+ export function Main(body, base) { return VBlock.claim(HtmlTags.main, body, base); }
68
+ export function Map(body, base) { return VBlock.claim(HtmlTags.map, body, base); }
69
+ export function Mark(body, base) { return VBlock.claim(HtmlTags.mark, body, base); }
70
+ export function Menu(body, base) { return VBlock.claim(HtmlTags.menu, body, base); }
71
+ export function MenuItem(body, base) { return VBlock.claim(HtmlTags.menuitem, body, base); }
72
+ export function Meta(body, base) { return VBlock.claim(HtmlTags.meta, body, base); }
73
+ export function Meter(body, base) { return VBlock.claim(HtmlTags.meter, body, base); }
74
+ export function Nav(body, base) { return VBlock.claim(HtmlTags.nav, body, base); }
75
+ export function NoIndex(body, base) { return VBlock.claim(HtmlTags.noindex, body, base); }
76
+ export function NoScript(body, base) { return VBlock.claim(HtmlTags.noscript, body, base); }
77
+ export function Obj(body, base) { return VBlock.claim(HtmlTags.object, body, base); }
78
+ export function OL(body, base) { return VBlock.claim(HtmlTags.ol, body, base); }
79
+ export function OptGroup(body, base) { return VBlock.claim(HtmlTags.optgroup, body, base); }
80
+ export function Option(body, base) { return VBlock.claim(HtmlTags.option, body, base); }
81
+ export function Output(body, base) { return VBlock.claim(HtmlTags.output, body, base); }
82
+ export function P(body, base) { return VBlock.claim(HtmlTags.p, body, base); }
83
+ export function Param(body, base) { return VBlock.claim(HtmlTags.param, body, base); }
84
+ export function Picture(body, base) { return VBlock.claim(HtmlTags.picture, body, base); }
85
+ export function Pre(body, base) { return VBlock.claim(HtmlTags.pre, body, base); }
86
+ export function Progress(body, base) { return VBlock.claim(HtmlTags.progress, body, base); }
87
+ export function Q(body, base) { return VBlock.claim(HtmlTags.q, body, base); }
88
+ export function RP(body, base) { return VBlock.claim(HtmlTags.rp, body, base); }
89
+ export function RT(body, base) { return VBlock.claim(HtmlTags.rt, body, base); }
90
+ export function Ruby(body, base) { return VBlock.claim(HtmlTags.ruby, body, base); }
91
+ export function S(body, base) { return VBlock.claim(HtmlTags.s, body, base); }
92
+ export function Samp(body, base) { return VBlock.claim(HtmlTags.samp, body, base); }
93
+ export function Script(body, base) { return VBlock.claim(HtmlTags.script, body, base); }
94
+ export function Section(body, base) { return VBlock.claim(HtmlTags.section, body, base); }
95
+ export function Select(body, base) { return VBlock.claim(HtmlTags.select, body, base); }
96
+ export function Small(body, base) { return VBlock.claim(HtmlTags.small, body, base); }
97
+ export function Source(body, base) { return VBlock.claim(HtmlTags.source, body, base); }
98
+ export function Span(body, base) { return VBlock.claim(HtmlTags.span, body, base); }
99
+ export function Strong(body, base) { return VBlock.claim(HtmlTags.strong, body, base); }
100
+ export function Style(body, base) { return VBlock.claim(HtmlTags.style, body, base); }
101
+ export function Sub(body, base) { return VBlock.claim(HtmlTags.sub, body, base); }
102
+ export function Summary(body, base) { return VBlock.claim(HtmlTags.summary, body, base); }
103
+ export function Sup(body, base) { return VBlock.claim(HtmlTags.sup, body, base); }
104
+ export function Table(body, base) { return VBlock.claim(HtmlTags.table, body, base); }
105
+ export function Template(body, base) { return VBlock.claim(HtmlTags.template, body, base); }
106
+ export function TBody(body, base) { return VBlock.claim(HtmlTags.tbody, body, base); }
107
+ export function TD(body, base) { return VBlock.claim(HtmlTags.td, body, base); }
108
+ export function TextArea(body, base) { return VBlock.claim(HtmlTags.textarea, body, base); }
109
+ export function TFoot(body, base) { return VBlock.claim(HtmlTags.tfoot, body, base); }
110
+ export function TH(body, base) { return VBlock.claim(HtmlTags.th, body, base); }
111
+ export function THead(body, base) { return VBlock.claim(HtmlTags.thead, body, base); }
112
+ export function Time(body, base) { return VBlock.claim(HtmlTags.time, body, base); }
113
+ export function Title(body, base) { return VBlock.claim(HtmlTags.title, body, base); }
114
+ export function TR(body, base) { return VBlock.claim(HtmlTags.tr, body, base); }
115
+ export function Track(body, base) { return VBlock.claim(HtmlTags.track, body, base); }
116
+ export function U(body, base) { return VBlock.claim(HtmlTags.u, body, base); }
117
+ export function UL(body, base) { return VBlock.claim(HtmlTags.ul, body, base); }
118
+ export function Var(body, base) { return VBlock.claim(HtmlTags.var, body, base); }
119
+ export function Video(body, base) { return VBlock.claim(HtmlTags.video, body, base); }
120
+ export function Wbr(body, base) { return VBlock.claim(HtmlTags.wbr, body, base); }
121
+ export function Svg(body, base) { return VBlock.claim(SvgTags.svg, body, base); }
122
+ export function SvgA(body, base) { return VBlock.claim(SvgTags.a, body, base); }
123
+ export function Animate(body, base) { return VBlock.claim(SvgTags.animate, body, base); }
124
+ export function AnimateMotion(body, base) { return VBlock.claim(SvgTags.animateMotion, body, base); }
125
+ export function AnimateTransform(body, base) { return VBlock.claim(SvgTags.animateTransform, body, base); }
126
+ export function Circle(body, base) { return VBlock.claim(SvgTags.circle, body, base); }
127
+ export function ClipPath(body, base) { return VBlock.claim(SvgTags.clipPath, body, base); }
128
+ export function Defs(body, base) { return VBlock.claim(SvgTags.defs, body, base); }
129
+ export function Desc(body, base) { return VBlock.claim(SvgTags.desc, body, base); }
130
+ export function Ellipse(body, base) { return VBlock.claim(SvgTags.ellipse, body, base); }
131
+ export function FeBlend(body, base) { return VBlock.claim(SvgTags.feBlend, body, base); }
132
+ export function FeColorMatrix(body, base) { return VBlock.claim(SvgTags.feColorMatrix, body, base); }
133
+ export function FeComponentTransfer(body, base) { return VBlock.claim(SvgTags.feComponentTransfer, body, base); }
134
+ export function FeComposite(body, base) { return VBlock.claim(SvgTags.feComposite, body, base); }
135
+ export function FeConvolveMatrix(body, base) { return VBlock.claim(SvgTags.feConvolveMatrix, body, base); }
136
+ export function FeDiffuseLighting(body, base) { return VBlock.claim(SvgTags.feDiffuseLighting, body, base); }
137
+ export function FeDisplacementMap(body, base) { return VBlock.claim(SvgTags.feDisplacementMap, body, base); }
138
+ export function FeDistantLight(body, base) { return VBlock.claim(SvgTags.feDistantLight, body, base); }
139
+ export function FeDropShadow(body, base) { return VBlock.claim(SvgTags.feDropShadow, body, base); }
140
+ export function FeFlood(body, base) { return VBlock.claim(SvgTags.feFlood, body, base); }
141
+ export function FeFuncA(body, base) { return VBlock.claim(SvgTags.feFuncA, body, base); }
142
+ export function FeFuncB(body, base) { return VBlock.claim(SvgTags.feFuncB, body, base); }
143
+ export function FeFuncG(body, base) { return VBlock.claim(SvgTags.feFuncG, body, base); }
144
+ export function FeFuncR(body, base) { return VBlock.claim(SvgTags.feFuncR, body, base); }
145
+ export function FeGaussianBlur(body, base) { return VBlock.claim(SvgTags.feGaussianBlur, body, base); }
146
+ export function FeImage(body, base) { return VBlock.claim(SvgTags.feImage, body, base); }
147
+ export function FeMerge(body, base) { return VBlock.claim(SvgTags.feMerge, body, base); }
148
+ export function FeMergeNode(body, base) { return VBlock.claim(SvgTags.feMergeNode, body, base); }
149
+ export function FeMorphology(body, base) { return VBlock.claim(SvgTags.feMorphology, body, base); }
150
+ export function FeOffset(body, base) { return VBlock.claim(SvgTags.feOffset, body, base); }
151
+ export function FePointLight(body, base) { return VBlock.claim(SvgTags.fePointLight, body, base); }
152
+ export function FeSpecularLighting(body, base) { return VBlock.claim(SvgTags.feSpecularLighting, body, base); }
153
+ export function FeSpotLight(body, base) { return VBlock.claim(SvgTags.feSpotLight, body, base); }
154
+ export function FeTile(body, base) { return VBlock.claim(SvgTags.feTile, body, base); }
155
+ export function FeTurbulence(body, base) { return VBlock.claim(SvgTags.feTurbulence, body, base); }
156
+ export function Filter(body, base) { return VBlock.claim(SvgTags.filter, body, base); }
157
+ export function ForeignObject(body, base) { return VBlock.claim(SvgTags.foreignObject, body, base); }
158
+ export function G(body, base) { return VBlock.claim(SvgTags.g, body, base); }
159
+ export function SvgImage(body, base) { return VBlock.claim(SvgTags.image, body, base); }
160
+ export function SvgLine(body, base) { return VBlock.claim(SvgTags.line, body, base); }
161
+ export function LinearGradient(body, base) { return VBlock.claim(SvgTags.linearGradient, body, base); }
162
+ export function Marker(body, base) { return VBlock.claim(SvgTags.marker, body, base); }
163
+ export function Mask(body, base) { return VBlock.claim(SvgTags.mask, body, base); }
164
+ export function MetaData(body, base) { return VBlock.claim(SvgTags.metadata, body, base); }
165
+ export function MPath(body, base) { return VBlock.claim(SvgTags.mpath, body, base); }
166
+ export function Path(body, base) { return VBlock.claim(SvgTags.path, body, base); }
167
+ export function Pattern(body, base) { return VBlock.claim(SvgTags.pattern, body, base); }
168
+ export function Polygon(body, base) { return VBlock.claim(SvgTags.polygon, body, base); }
169
+ export function PolyLine(body, base) { return VBlock.claim(SvgTags.polyline, body, base); }
170
+ export function RadialGradient(body, base) { return VBlock.claim(SvgTags.radialGradient, body, base); }
171
+ export function Rect(body, base) { return VBlock.claim(SvgTags.rect, body, base); }
172
+ export function Stop(body, base) { return VBlock.claim(SvgTags.stop, body, base); }
173
+ export function SvgSwitch(body, base) { return VBlock.claim(SvgTags.switch, body, base); }
174
+ export function Symbol(body, base) { return VBlock.claim(SvgTags.symbol, body, base); }
175
+ export function Text(body, base) { return VBlock.claim(SvgTags.text, body, base); }
176
+ export function TextPath(body, base) { return VBlock.claim(SvgTags.textPath, body, base); }
177
+ export function TSpan(body, base) { return VBlock.claim(SvgTags.tspan, body, base); }
178
+ export function Use(body, base) { return VBlock.claim(SvgTags.use, body, base); }
179
+ export function View(body, base) { return VBlock.claim(SvgTags.view, body, base); }
180
180
  const HtmlTags = {
181
181
  a: new HtmlDriver("a", LayoutKind.Block),
182
182
  abbr: new HtmlDriver("abbr", LayoutKind.Block),
@@ -1,7 +1,7 @@
1
- import { VBlock } from "../core/api";
1
+ import { Fragment } from "./Blocks";
2
2
  export function ReactingFocuser(target, model, switchEditMode = undefined) {
3
- VBlock.claim(undefined, {
4
- autonomous: true,
3
+ Fragment({
4
+ reaction: true,
5
5
  triggers: { target, model },
6
6
  initialize(b) {
7
7
  b.configureReactronic({ throttling: 0 });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "verstak",
3
- "version": "0.23.100",
3
+ "version": "0.23.102",
4
4
  "description": "Verstak - Front-End Library",
5
5
  "publisher": "Nezaboodka Software",
6
6
  "license": "Apache-2.0",