verstak 0.22.515 → 0.23.100

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.
@@ -1,32 +1,31 @@
1
- import { VBlock, LayoutKind, Align, GridCursor, asBaseFor } from "../core/api";
1
+ import { VBlock, LayoutKind, Align, GridCursor, vmt } from "../core/api";
2
2
  import { HtmlDriver } from "./HtmlDriver";
3
3
  export function Block(body) {
4
4
  return VBlock.claim(VerstakTags.block, body);
5
5
  }
6
6
  export function PlainText(content, body) {
7
- return VBlock.claim(VerstakTags.text, asBaseFor(body, {
8
- render(b) {
9
- b.native.innerText = content;
10
- },
11
- }));
7
+ return VBlock.claim(VerstakTags.text, Object.assign(Object.assign({}, vmt(body)), { base: {
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, asBaseFor(body, {
15
- render(b) {
16
- b.native.innerHTML = content;
17
- },
18
- }));
14
+ return VBlock.claim(VerstakTags.text, Object.assign(Object.assign({}, vmt(body)), { base: {
15
+ render(b) {
16
+ b.native.innerHTML = content;
17
+ }
18
+ } }));
19
19
  }
20
20
  export function Grid(body) {
21
21
  return VBlock.claim(VerstakTags.grid, body);
22
22
  }
23
- export function Line(body) {
23
+ export function line(body) {
24
24
  lineFeed();
25
25
  body();
26
- lineFeed();
27
26
  }
28
27
  export function lineFeed(noCoalescing, key) {
29
- return VBlock.claim(VerstakTags.row, { key });
28
+ return VBlock.claim(VerstakTags.line, { key });
30
29
  }
31
30
  export function Group(body) {
32
31
  return VBlock.claim(VerstakTags.group, body);
@@ -63,14 +62,14 @@ export class VerstakDriver extends HtmlDriver {
63
62
  block.native.style.maxWidth = `${maxWidth}`;
64
63
  }
65
64
  applyHeightGrowth(block, heightGrowth) {
66
- if (block.driver.isRow) {
65
+ if (block.driver.isLine) {
67
66
  const css = block.native.style;
68
67
  if (heightGrowth > 0)
69
68
  css.flexGrow = `${heightGrowth}`;
70
69
  else
71
70
  css.flexGrow = "";
72
71
  }
73
- else if (block.host.driver.isRow) {
72
+ else if (block.host.driver.isLine) {
74
73
  block.driver.applyFrameAlignment(block, Align.Stretch);
75
74
  block.host.driver.applyHeightGrowth(block.host, heightGrowth);
76
75
  }
@@ -111,15 +110,36 @@ export class VerstakDriver extends HtmlDriver {
111
110
  else
112
111
  block.native.removeAttribute("wrapping");
113
112
  }
114
- applyFloating(block, floating) {
115
- if (floating)
116
- block.native.setAttribute("floating", "true");
113
+ applyOverlayVisible(block, overlayVisible) {
114
+ const e = block.native;
115
+ const parent = HtmlDriver.findNearestParentHtmlBlock(block).native;
116
+ if (overlayVisible === true) {
117
+ const doc = document.body;
118
+ const rect = parent.getBoundingClientRect();
119
+ const h = doc.offsetWidth - rect.left > rect.right ? "rightward" : "leftward";
120
+ const v = doc.clientHeight - rect.top > rect.bottom ? "downward" : "upward";
121
+ e.setAttribute("overlay", `${h}-${v}`);
122
+ parent.setAttribute("stacking", "true");
123
+ }
124
+ else {
125
+ parent.removeAttribute("stacking");
126
+ if (overlayVisible === false)
127
+ e.setAttribute("overlay", "hidden");
128
+ else
129
+ e.removeAttribute("overlay");
130
+ }
131
+ }
132
+ applyStyling(block, secondary, styleName, enabled) {
133
+ const e = block.native;
134
+ enabled !== null && enabled !== void 0 ? enabled : (enabled = true);
135
+ if (secondary)
136
+ e.classList.toggle(styleName, enabled);
117
137
  else
118
- block.native.removeAttribute("floating");
138
+ e.className = enabled ? styleName : "";
119
139
  }
120
140
  render(block) {
121
- if (block.driver.layout < LayoutKind.Row)
122
- VBlock.claim(VerstakTags.row, {});
141
+ if (block.driver.layout < LayoutKind.Line)
142
+ lineFeed();
123
143
  return super.render(block);
124
144
  }
125
145
  }
@@ -127,7 +147,7 @@ const VerstakTags = {
127
147
  block: new VerstakDriver("v-block", LayoutKind.Block),
128
148
  text: new VerstakDriver("v-text", LayoutKind.Text),
129
149
  grid: new VerstakDriver("v-grid", LayoutKind.Grid, () => new GridCursor()),
130
- row: new VerstakDriver("v-row", LayoutKind.Row),
150
+ line: new VerstakDriver("v-line", LayoutKind.Line),
131
151
  group: new VerstakDriver("v-group", LayoutKind.Group),
132
152
  };
133
153
  const AlignToCss = ["stretch", "start", "center", "end"];
@@ -1,175 +1,175 @@
1
- import { VBlock, Render, BlockBody } from "../core/api";
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> | Render<HTMLAnchorElement, M, R>): VBlock<HTMLAnchorElement, M, R>;
4
- export declare function Abbr<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
5
- export declare function Address<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
6
- export declare function Area<M = unknown, R = void>(body: BlockBody<HTMLAreaElement, M, R> | Render<HTMLAreaElement, M, R>): VBlock<HTMLAreaElement, M, R>;
7
- export declare function Article<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
8
- export declare function Aside<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
9
- export declare function Audio<M = unknown, R = void>(body: BlockBody<HTMLAudioElement, M, R> | Render<HTMLAudioElement, M, R>): VBlock<HTMLAudioElement, M, R>;
10
- export declare function B<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
11
- export declare function Base<M = unknown, R = void>(body: BlockBody<HTMLBaseElement, M, R> | Render<HTMLBaseElement, M, R>): VBlock<HTMLBaseElement, M, R>;
12
- export declare function Bdi<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
13
- export declare function Bdo<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
14
- export declare function Big<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
15
- export declare function BlockQuote<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
16
- export declare function Body<M = unknown, R = void>(body: BlockBody<HTMLBodyElement, M, R> | Render<HTMLBodyElement, M, R>): VBlock<HTMLBodyElement, M, R>;
17
- export declare function BR<M = unknown, R = void>(body: BlockBody<HTMLBRElement, M, R> | Render<HTMLBRElement, M, R>): VBlock<HTMLBRElement, M, R>;
18
- export declare function Button<M = unknown, R = void>(body: BlockBody<HTMLButtonElement, M, R> | Render<HTMLButtonElement, M, R>): VBlock<HTMLButtonElement, M, R>;
19
- export declare function Canvas<M = unknown, R = void>(body: BlockBody<HTMLCanvasElement, M, R> | Render<HTMLCanvasElement, M, R>): VBlock<HTMLCanvasElement, M, R>;
20
- export declare function Caption<M = unknown, R = void>(body: BlockBody<HTMLTableCaptionElement, M, R> | Render<HTMLTableCaptionElement, M, R>): VBlock<HTMLTableCaptionElement, M, R>;
21
- export declare function Cite<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
22
- export declare function Code<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
23
- export declare function Col<M = unknown, R = void>(body: BlockBody<HTMLTableColElement, M, R> | Render<HTMLTableColElement, M, R>): VBlock<HTMLTableColElement, M, R>;
24
- export declare function ColGroup<M = unknown, R = void>(body: BlockBody<HTMLTableColElement, M, R> | Render<HTMLTableColElement, M, R>): VBlock<HTMLTableColElement, M, R>;
25
- export declare function Data<M = unknown, R = void>(body: BlockBody<HTMLDataElement, M, R> | Render<HTMLDataElement, M, R>): VBlock<HTMLDataElement, M, R>;
26
- export declare function DataList<M = unknown, R = void>(body: BlockBody<HTMLDataListElement, M, R> | Render<HTMLDataListElement, M, R>): VBlock<HTMLDataListElement, M, R>;
27
- export declare function DD<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
28
- export declare function Del<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
29
- export declare function Details<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
30
- export declare function Dfn<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
31
- export declare function Div<M = unknown, R = void>(body: BlockBody<HTMLDivElement, M, R> | Render<HTMLDivElement, M, R>): VBlock<HTMLDivElement, M, R>;
32
- export declare function DL<M = unknown, R = void>(body: BlockBody<HTMLDListElement, M, R> | Render<HTMLDListElement, M, R>): VBlock<HTMLDListElement, M, R>;
33
- export declare function DT<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
34
- export declare function EM<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
35
- export declare function Embed<M = unknown, R = void>(body: BlockBody<HTMLEmbedElement, M, R> | Render<HTMLEmbedElement, M, R>): VBlock<HTMLEmbedElement, M, R>;
36
- export declare function FieldSet<M = unknown, R = void>(body: BlockBody<HTMLFieldSetElement, M, R> | Render<HTMLFieldSetElement, M, R>): VBlock<HTMLFieldSetElement, M, R>;
37
- export declare function FigCaption<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
38
- export declare function Figure<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
39
- export declare function Footer<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
40
- export declare function Form<M = unknown, R = void>(body: BlockBody<HTMLFormElement, M, R> | Render<HTMLFormElement, M, R>): VBlock<HTMLFormElement, M, R>;
41
- export declare function H1<M = unknown, R = void>(body: BlockBody<HTMLHeadingElement, M, R> | Render<HTMLHeadingElement, M, R>): VBlock<HTMLHeadingElement, M, R>;
42
- export declare function H2<M = unknown, R = void>(body: BlockBody<HTMLHeadingElement, M, R> | Render<HTMLHeadingElement, M, R>): VBlock<HTMLHeadingElement, M, R>;
43
- export declare function H3<M = unknown, R = void>(body: BlockBody<HTMLHeadingElement, M, R> | Render<HTMLHeadingElement, M, R>): VBlock<HTMLHeadingElement, M, R>;
44
- export declare function H4<M = unknown, R = void>(body: BlockBody<HTMLHeadingElement, M, R> | Render<HTMLHeadingElement, M, R>): VBlock<HTMLHeadingElement, M, R>;
45
- export declare function H5<M = unknown, R = void>(body: BlockBody<HTMLHeadingElement, M, R> | Render<HTMLHeadingElement, M, R>): VBlock<HTMLHeadingElement, M, R>;
46
- export declare function H6<M = unknown, R = void>(body: BlockBody<HTMLHeadingElement, M, R> | Render<HTMLHeadingElement, M, R>): VBlock<HTMLHeadingElement, M, R>;
47
- export declare function Head<M = unknown, R = void>(body: BlockBody<HTMLHeadElement, M, R> | Render<HTMLHeadElement, M, R>): VBlock<HTMLHeadElement, M, R>;
48
- export declare function Header<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
49
- export declare function HGroup<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
50
- export declare function HR<M = unknown, R = void>(body: BlockBody<HTMLHRElement, M, R> | Render<HTMLHRElement, M, R>): VBlock<HTMLHRElement, M, R>;
51
- export declare function Html<M = unknown, R = void>(body: BlockBody<HTMLHtmlElement, M, R> | Render<HTMLHtmlElement, M, R>): VBlock<HTMLHtmlElement, M, R>;
52
- export declare function I<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
53
- export declare function IFrame<M = unknown, R = void>(body: BlockBody<HTMLIFrameElement, M, R> | Render<HTMLIFrameElement, M, R>): VBlock<HTMLIFrameElement, M, R>;
54
- export declare function Img<M = unknown, R = void>(body: BlockBody<HTMLImageElement, M, R> | Render<HTMLImageElement, M, R>): VBlock<HTMLImageElement, M, R>;
55
- export declare function Input<M = unknown, R = void>(body: BlockBody<HTMLInputElement, M, R> | Render<HTMLInputElement, M, R>): VBlock<HTMLInputElement, M, R>;
56
- export declare function Ins<M = unknown, R = void>(body: BlockBody<HTMLModElement, M, R> | Render<HTMLModElement, M, R>): VBlock<HTMLModElement, M, R>;
57
- export declare function Kbd<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
58
- export declare function KeyGen<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
59
- export declare function Label<M = unknown, R = void>(body: BlockBody<HTMLLabelElement, M, R> | Render<HTMLLabelElement, M, R>): VBlock<HTMLLabelElement, M, R>;
60
- export declare function Legend<M = unknown, R = void>(body: BlockBody<HTMLLegendElement, M, R> | Render<HTMLLegendElement, M, R>): VBlock<HTMLLegendElement, M, R>;
61
- export declare function LI<M = unknown, R = void>(body: BlockBody<HTMLLIElement, M, R> | Render<HTMLLIElement, M, R>): VBlock<HTMLLIElement, M, R>;
62
- export declare function Link<M = unknown, R = void>(body: BlockBody<HTMLLinkElement, M, R> | Render<HTMLLinkElement, M, R>): VBlock<HTMLLinkElement, M, R>;
63
- export declare function Main<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
64
- export declare function Map<M = unknown, R = void>(body: BlockBody<HTMLMapElement, M, R> | Render<HTMLMapElement, M, R>): VBlock<HTMLMapElement, M, R>;
65
- export declare function Mark<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
66
- export declare function Menu<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
67
- export declare function MenuItem<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
68
- export declare function Meta<M = unknown, R = void>(body: BlockBody<HTMLMetaElement, M, R> | Render<HTMLMetaElement, M, R>, renderer: Render<HTMLMetaElement, M, R>): VBlock<HTMLMetaElement, M, R>;
69
- export declare function Meter<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
70
- export declare function Nav<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
71
- export declare function NoIndex<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
72
- export declare function NoScript<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
73
- export declare function Obj<M = unknown, R = void>(body: BlockBody<HTMLObjectElement, M, R> | Render<HTMLObjectElement, M, R>): VBlock<HTMLObjectElement, M, R>;
74
- export declare function OL<M = unknown, R = void>(body: BlockBody<HTMLOListElement, M, R> | Render<HTMLOListElement, M, R>): VBlock<HTMLOListElement, M, R>;
75
- export declare function OptGroup<M = unknown, R = void>(body: BlockBody<HTMLOptGroupElement, M, R> | Render<HTMLOptGroupElement, M, R>): VBlock<HTMLOptGroupElement, M, R>;
76
- export declare function Option<M = unknown, R = void>(body: BlockBody<HTMLOptionElement, M, R> | Render<HTMLOptionElement, M, R>): VBlock<HTMLOptionElement, M, R>;
77
- export declare function Output<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
78
- export declare function P<M = unknown, R = void>(body: BlockBody<HTMLParagraphElement, M, R> | Render<HTMLParagraphElement, M, R>): VBlock<HTMLParagraphElement, M, R>;
79
- export declare function Param<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
80
- export declare function Picture<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
81
- export declare function Pre<M = unknown, R = void>(body: BlockBody<HTMLPreElement, M, R> | Render<HTMLPreElement, M, R>): VBlock<HTMLPreElement, M, R>;
82
- export declare function Progress<M = unknown, R = void>(body: BlockBody<HTMLProgressElement, M, R> | Render<HTMLProgressElement, M, R>): VBlock<HTMLProgressElement, M, R>;
83
- export declare function Q<M = unknown, R = void>(body: BlockBody<HTMLQuoteElement, M, R> | Render<HTMLQuoteElement, M, R>): VBlock<HTMLQuoteElement, M, R>;
84
- export declare function RP<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
85
- export declare function RT<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
86
- export declare function Ruby<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
87
- export declare function S<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
88
- export declare function Samp<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
89
- export declare function Script<M = unknown, R = void>(body: BlockBody<HTMLScriptElement, M, R> | Render<HTMLScriptElement, M, R>): VBlock<HTMLScriptElement, M, R>;
90
- export declare function Section<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
91
- export declare function Select<M = unknown, R = void>(body: BlockBody<HTMLSelectElement, M, R> | Render<HTMLSelectElement, M, R>): VBlock<HTMLSelectElement, M, R>;
92
- export declare function Small<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
93
- export declare function Source<M = unknown, R = void>(body: BlockBody<HTMLSourceElement, M, R> | Render<HTMLSourceElement, M, R>): VBlock<HTMLSourceElement, M, R>;
94
- export declare function Span<M = unknown, R = void>(body: BlockBody<HTMLSpanElement, M, R> | Render<HTMLSpanElement, M, R>): VBlock<HTMLSpanElement, M, R>;
95
- export declare function Strong<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
96
- export declare function Style<M = unknown, R = void>(body: BlockBody<HTMLStyleElement, M, R> | Render<HTMLStyleElement, M, R>): VBlock<HTMLStyleElement, M, R>;
97
- export declare function Sub<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
98
- export declare function Summary<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
99
- export declare function Sup<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
100
- export declare function Table<M = unknown, R = void>(body: BlockBody<HTMLTableElement, M, R> | Render<HTMLTableElement, M, R>): VBlock<HTMLTableElement, M, R>;
101
- export declare function Template<M = unknown, R = void>(body: BlockBody<HTMLTemplateElement, M, R> | Render<HTMLTemplateElement, M, R>): VBlock<HTMLTemplateElement, M, R>;
102
- export declare function TBody<M = unknown, R = void>(body: BlockBody<HTMLTableSectionElement, M, R> | Render<HTMLTableSectionElement, M, R>): VBlock<HTMLTableSectionElement, M, R>;
103
- export declare function TD<M = unknown, R = void>(body: BlockBody<HTMLTableCellElement, M, R> | Render<HTMLTableCellElement, M, R>): VBlock<HTMLTableCellElement, M, R>;
104
- export declare function TextArea<M = unknown, R = void>(body: BlockBody<HTMLTextAreaElement, M, R> | Render<HTMLTextAreaElement, M, R>): VBlock<HTMLTextAreaElement, M, R>;
105
- export declare function TFoot<M = unknown, R = void>(body: BlockBody<HTMLTableSectionElement, M, R> | Render<HTMLTableSectionElement, M, R>): VBlock<HTMLTableSectionElement, M, R>;
106
- export declare function TH<M = unknown, R = void>(body: BlockBody<HTMLTableCellElement, M, R> | Render<HTMLTableCellElement, M, R>): VBlock<HTMLTableCellElement, M, R>;
107
- export declare function THead<M = unknown, R = void>(body: BlockBody<HTMLTableSectionElement, M, R> | Render<HTMLTableSectionElement, M, R>): VBlock<HTMLTableSectionElement, M, R>;
108
- export declare function Time<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
109
- export declare function Title<M = unknown, R = void>(body: BlockBody<HTMLTitleElement, M, R> | Render<HTMLTitleElement, M, R>): VBlock<HTMLTitleElement, M, R>;
110
- export declare function TR<M = unknown, R = void>(body: BlockBody<HTMLTableRowElement, M, R> | Render<HTMLTableRowElement, M, R>): VBlock<HTMLTableRowElement, M, R>;
111
- export declare function Track<M = unknown, R = void>(body: BlockBody<HTMLTrackElement, M, R> | Render<HTMLTrackElement, M, R>): VBlock<HTMLTrackElement, M, R>;
112
- export declare function U<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
113
- export declare function UL<M = unknown, R = void>(body: BlockBody<HTMLUListElement, M, R> | Render<HTMLUListElement, M, R>): VBlock<HTMLUListElement, M, R>;
114
- export declare function Var<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
115
- export declare function Video<M = unknown, R = void>(body: BlockBody<HTMLVideoElement, M, R> | Render<HTMLVideoElement, M, R>): VBlock<HTMLVideoElement, M, R>;
116
- export declare function Wbr<M = unknown, R = void>(body: BlockBody<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
117
- export declare function Svg<M = unknown, R = void>(body: BlockBody<SVGSVGElement, M, R> | Render<SVGSVGElement, M, R>): VBlock<SVGSVGElement, M, R>;
118
- export declare function SvgA<M = unknown, R = void>(body: BlockBody<SVGAElement, M, R> | Render<SVGAElement, M, R>): VBlock<SVGAElement, M, R>;
119
- export declare function Animate<M = unknown, R = void>(body: BlockBody<SVGAnimateElement, M, R> | Render<SVGAnimateElement, M, R>): VBlock<SVGAnimateElement, M, R>;
120
- export declare function AnimateMotion<M = unknown, R = void>(body: BlockBody<SVGAnimateMotionElement, M, R> | Render<SVGAnimateMotionElement, M, R>): VBlock<SVGAnimateMotionElement, M, R>;
121
- export declare function AnimateTransform<M = unknown, R = void>(body: BlockBody<SVGAnimateTransformElement, M, R> | Render<SVGAnimateTransformElement, M, R>): VBlock<SVGAnimateTransformElement, M, R>;
122
- export declare function Circle<M = unknown, R = void>(body: BlockBody<SVGCircleElement, M, R> | Render<SVGCircleElement, M, R>): VBlock<SVGCircleElement, M, R>;
123
- export declare function ClipPath<M = unknown, R = void>(body: BlockBody<SVGClipPathElement, M, R> | Render<SVGClipPathElement, M, R>): VBlock<SVGClipPathElement, M, R>;
124
- export declare function Defs<M = unknown, R = void>(body: BlockBody<SVGDefsElement, M, R> | Render<SVGDefsElement, M, R>): VBlock<SVGDefsElement, M, R>;
125
- export declare function Desc<M = unknown, R = void>(body: BlockBody<SVGDescElement, M, R> | Render<SVGDescElement, M, R>): VBlock<SVGDescElement, M, R>;
126
- export declare function Ellipse<M = unknown, R = void>(body: BlockBody<SVGEllipseElement, M, R> | Render<SVGEllipseElement, M, R>): VBlock<SVGEllipseElement, M, R>;
127
- export declare function FeBlend<M = unknown, R = void>(body: BlockBody<SVGFEBlendElement, M, R> | Render<SVGFEBlendElement, M, R>): VBlock<SVGFEBlendElement, M, R>;
128
- export declare function FeColorMatrix<M = unknown, R = void>(body: BlockBody<SVGFEColorMatrixElement, M, R> | Render<SVGFEColorMatrixElement, M, R>): VBlock<SVGFEColorMatrixElement, M, R>;
129
- export declare function FeComponentTransfer<M = unknown, R = void>(body: BlockBody<SVGFEComponentTransferElement, M, R> | Render<SVGFEComponentTransferElement, M, R>): VBlock<SVGFEComponentTransferElement, M, R>;
130
- export declare function FeComposite<M = unknown, R = void>(body: BlockBody<SVGFECompositeElement, M, R> | Render<SVGFECompositeElement, M, R>): VBlock<SVGFECompositeElement, M, R>;
131
- export declare function FeConvolveMatrix<M = unknown, R = void>(body: BlockBody<SVGFEConvolveMatrixElement, M, R> | Render<SVGFEConvolveMatrixElement, M, R>): VBlock<SVGFEConvolveMatrixElement, M, R>;
132
- export declare function FeDiffuseLighting<M = unknown, R = void>(body: BlockBody<SVGFEDiffuseLightingElement, M, R> | Render<SVGFEDiffuseLightingElement, M, R>): VBlock<SVGFEDiffuseLightingElement, M, R>;
133
- export declare function FeDisplacementMap<M = unknown, R = void>(body: BlockBody<SVGFEDisplacementMapElement, M, R> | Render<SVGFEDisplacementMapElement, M, R>): VBlock<SVGFEDisplacementMapElement, M, R>;
134
- export declare function FeDistantLight<M = unknown, R = void>(body: BlockBody<SVGFEDistantLightElement, M, R> | Render<SVGFEDistantLightElement, M, R>): VBlock<SVGFEDistantLightElement, M, R>;
135
- export declare function FeDropShadow<M = unknown, R = void>(body: BlockBody<SVGFEDropShadowElement, M, R> | Render<SVGFEDropShadowElement, M, R>): VBlock<SVGFEDropShadowElement, M, R>;
136
- export declare function FeFlood<M = unknown, R = void>(body: BlockBody<SVGFEFloodElement, M, R> | Render<SVGFEFloodElement, M, R>): VBlock<SVGFEFloodElement, M, R>;
137
- export declare function FeFuncA<M = unknown, R = void>(body: BlockBody<SVGFEFuncAElement, M, R> | Render<SVGFEFuncAElement, M, R>): VBlock<SVGFEFuncAElement, M, R>;
138
- export declare function FeFuncB<M = unknown, R = void>(body: BlockBody<SVGFEFuncBElement, M, R> | Render<SVGFEFuncBElement, M, R>): VBlock<SVGFEFuncBElement, M, R>;
139
- export declare function FeFuncG<M = unknown, R = void>(body: BlockBody<SVGFEFuncGElement, M, R> | Render<SVGFEFuncGElement, M, R>): VBlock<SVGFEFuncGElement, M, R>;
140
- export declare function FeFuncR<M = unknown, R = void>(body: BlockBody<SVGFEFuncRElement, M, R> | Render<SVGFEFuncRElement, M, R>): VBlock<SVGFEFuncRElement, M, R>;
141
- export declare function FeGaussianBlur<M = unknown, R = void>(body: BlockBody<SVGFEGaussianBlurElement, M, R> | Render<SVGFEGaussianBlurElement, M, R>): VBlock<SVGFEGaussianBlurElement, M, R>;
142
- export declare function FeImage<M = unknown, R = void>(body: BlockBody<SVGFEImageElement, M, R> | Render<SVGFEImageElement, M, R>): VBlock<SVGFEImageElement, M, R>;
143
- export declare function FeMerge<M = unknown, R = void>(body: BlockBody<SVGFEMergeElement, M, R> | Render<SVGFEMergeElement, M, R>): VBlock<SVGFEMergeElement, M, R>;
144
- export declare function FeMergeNode<M = unknown, R = void>(body: BlockBody<SVGFEMergeNodeElement, M, R> | Render<SVGFEMergeNodeElement, M, R>): VBlock<SVGFEMergeNodeElement, M, R>;
145
- export declare function FeMorphology<M = unknown, R = void>(body: BlockBody<SVGFEMorphologyElement, M, R> | Render<SVGFEMorphologyElement, M, R>): VBlock<SVGFEMorphologyElement, M, R>;
146
- export declare function FeOffset<M = unknown, R = void>(body: BlockBody<SVGFEOffsetElement, M, R> | Render<SVGFEOffsetElement, M, R>): VBlock<SVGFEOffsetElement, M, R>;
147
- export declare function FePointLight<M = unknown, R = void>(body: BlockBody<SVGFEPointLightElement, M, R> | Render<SVGFEPointLightElement, M, R>): VBlock<SVGFEPointLightElement, M, R>;
148
- export declare function FeSpecularLighting<M = unknown, R = void>(body: BlockBody<SVGFESpecularLightingElement, M, R> | Render<SVGFESpecularLightingElement, M, R>): VBlock<SVGFESpecularLightingElement, M, R>;
149
- export declare function FeSpotLight<M = unknown, R = void>(body: BlockBody<SVGFESpotLightElement, M, R> | Render<SVGFESpotLightElement, M, R>): VBlock<SVGFESpotLightElement, M, R>;
150
- export declare function FeTile<M = unknown, R = void>(body: BlockBody<SVGFETileElement, M, R> | Render<SVGFETileElement, M, R>): VBlock<SVGFETileElement, M, R>;
151
- export declare function FeTurbulence<M = unknown, R = void>(body: BlockBody<SVGFETurbulenceElement, M, R> | Render<SVGFETurbulenceElement, M, R>): VBlock<SVGFETurbulenceElement, M, R>;
152
- export declare function Filter<M = unknown, R = void>(body: BlockBody<SVGFilterElement, M, R> | Render<SVGFilterElement, M, R>): VBlock<SVGFilterElement, M, R>;
153
- export declare function ForeignObject<M = unknown, R = void>(body: BlockBody<SVGForeignObjectElement, M, R> | Render<SVGForeignObjectElement, M, R>): VBlock<SVGForeignObjectElement, M, R>;
154
- export declare function G<M = unknown, R = void>(body: BlockBody<SVGGElement, M, R> | Render<SVGGElement, M, R>): VBlock<SVGGElement, M, R>;
155
- export declare function SvgImage<M = unknown, R = void>(body: BlockBody<SVGImageElement, M, R> | Render<SVGImageElement, M, R>): VBlock<SVGImageElement, M, R>;
156
- export declare function SvgLine<M = unknown, R = void>(body: BlockBody<SVGLineElement, M, R> | Render<SVGLineElement, M, R>): VBlock<SVGLineElement, M, R>;
157
- export declare function LinearGradient<M = unknown, R = void>(body: BlockBody<SVGLinearGradientElement, M, R> | Render<SVGLinearGradientElement, M, R>): VBlock<SVGLinearGradientElement, M, R>;
158
- export declare function Marker<M = unknown, R = void>(body: BlockBody<SVGMarkerElement, M, R> | Render<SVGMarkerElement, M, R>): VBlock<SVGMarkerElement, M, R>;
159
- export declare function Mask<M = unknown, R = void>(body: BlockBody<SVGMaskElement, M, R> | Render<SVGMaskElement, M, R>): VBlock<SVGMaskElement, M, R>;
160
- export declare function MetaData<M = unknown, R = void>(body: BlockBody<SVGMetadataElement, M, R> | Render<SVGMetadataElement, M, R>): VBlock<SVGMetadataElement, M, R>;
161
- export declare function MPath<M = unknown, R = void>(body: BlockBody<SVGElement, M, R> | Render<SVGElement, M, R>): VBlock<SVGElement, M, R>;
162
- export declare function Path<M = unknown, R = void>(body: BlockBody<SVGPathElement, M, R> | Render<SVGPathElement, M, R>): VBlock<SVGPathElement, M, R>;
163
- export declare function Pattern<M = unknown, R = void>(body: BlockBody<SVGPatternElement, M, R> | Render<SVGPatternElement, M, R>): VBlock<SVGPatternElement, M, R>;
164
- export declare function Polygon<M = unknown, R = void>(body: BlockBody<SVGPolygonElement, M, R> | Render<SVGPolygonElement, M, R>): VBlock<SVGPolygonElement, M, R>;
165
- export declare function PolyLine<M = unknown, R = void>(body: BlockBody<SVGPolylineElement, M, R> | Render<SVGPolylineElement, M, R>): VBlock<SVGPolylineElement, M, R>;
166
- export declare function RadialGradient<M = unknown, R = void>(body: BlockBody<SVGRadialGradientElement, M, R> | Render<SVGRadialGradientElement, M, R>): VBlock<SVGRadialGradientElement, M, R>;
167
- export declare function Rect<M = unknown, R = void>(body: BlockBody<SVGRectElement, M, R> | Render<SVGRectElement, M, R>): VBlock<SVGRectElement, M, R>;
168
- export declare function Stop<M = unknown, R = void>(body: BlockBody<SVGStopElement, M, R> | Render<SVGStopElement, M, R>): VBlock<SVGStopElement, M, R>;
169
- export declare function SvgSwitch<M = unknown, R = void>(body: BlockBody<SVGSwitchElement, M, R> | Render<SVGSwitchElement, M, R>): VBlock<SVGSwitchElement, M, R>;
170
- export declare function Symbol<M = unknown, R = void>(body: BlockBody<SVGSymbolElement, M, R> | Render<SVGSymbolElement, M, R>): VBlock<SVGSymbolElement, M, R>;
171
- export declare function Text<M = unknown, R = void>(body: BlockBody<SVGTextElement, M, R> | Render<SVGTextElement, M, R>): VBlock<SVGTextElement, M, R>;
172
- export declare function TextPath<M = unknown, R = void>(body: BlockBody<SVGTextPathElement, M, R> | Render<SVGTextPathElement, M, R>): VBlock<SVGTextPathElement, M, R>;
173
- export declare function TSpan<M = unknown, R = void>(body: BlockBody<SVGTSpanElement, M, R> | Render<SVGTSpanElement, M, R>): VBlock<SVGTSpanElement, M, R>;
174
- export declare function Use<M = unknown, R = void>(body: BlockBody<SVGUseElement, M, R> | Render<SVGUseElement, M, R>): VBlock<SVGUseElement, M, R>;
175
- export declare function View<M = unknown, R = void>(body: BlockBody<SVGViewElement, M, R> | Render<SVGViewElement, M, R>): VBlock<SVGViewElement, M, R>;
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>;
@@ -69,7 +69,7 @@ export function Map(body) { return VBlock.claim(HtmlTags.map, body); }
69
69
  export function Mark(body) { return VBlock.claim(HtmlTags.mark, body); }
70
70
  export function Menu(body) { return VBlock.claim(HtmlTags.menu, body); }
71
71
  export function MenuItem(body) { return VBlock.claim(HtmlTags.menuitem, body); }
72
- export function Meta(body, renderer) { return VBlock.claim(HtmlTags.meta, body); }
72
+ export function Meta(body) { return VBlock.claim(HtmlTags.meta, body); }
73
73
  export function Meter(body) { return VBlock.claim(HtmlTags.meter, body); }
74
74
  export function Nav(body) { return VBlock.claim(HtmlTags.nav, body); }
75
75
  export function NoIndex(body) { return VBlock.claim(HtmlTags.noindex, body); }
@@ -3,13 +3,13 @@ import { VBlock, AbstractDriver } from "../core/api";
3
3
  export declare abstract class BaseHtmlDriver<T extends Element> extends AbstractDriver<T> {
4
4
  initialize(block: VBlock<T>, element: T): void;
5
5
  finalize(block: VBlock<T>, isLeader: boolean): boolean;
6
- deploy(block: VBlock<T>, sequential: boolean): void;
6
+ deploy(block: VBlock<T>): void;
7
7
  relocate(block: VBlock<T>): void;
8
8
  render(block: VBlock<T>): void | Promise<void>;
9
9
  static get blinkingEffect(): string | undefined;
10
10
  static set blinkingEffect(value: string | undefined);
11
- static findNearestParentHtmlBlock(block: VBlock<any>): VBlock<Element>;
12
- static findPrevSiblingHtmlBlock(item: Item<VBlock<any>>): Item<VBlock<Element>> | undefined;
11
+ static findNearestParentHtmlBlock(block: VBlock<any>): VBlock<HTMLElement>;
12
+ static findPrevSiblingHtmlBlock(item: Item<VBlock<any>>): Item<VBlock<HTMLElement>> | undefined;
13
13
  protected abstract createElement(block: VBlock<T>): T;
14
14
  }
15
15
  export declare class HtmlDriver<T extends HTMLElement> extends BaseHtmlDriver<T> {
@@ -3,8 +3,8 @@ import { VBlock, AbstractDriver } from "../core/api";
3
3
  export class BaseHtmlDriver extends AbstractDriver {
4
4
  initialize(block, element) {
5
5
  element = this.createElement(block);
6
- if (Rx.isLogging && this.name)
7
- element.setAttribute("n", block.key);
6
+ if (Rx.isLogging && !block.driver.isLine)
7
+ element.setAttribute("key", block.key);
8
8
  super.initialize(block, element);
9
9
  }
10
10
  finalize(block, isLeader) {
@@ -18,14 +18,15 @@ export class BaseHtmlDriver extends AbstractDriver {
18
18
  super.finalize(block, isLeader);
19
19
  return false;
20
20
  }
21
- deploy(block, sequential) {
21
+ deploy(block) {
22
22
  const e = block.native;
23
23
  if (e) {
24
+ const sequential = block.host.children.strict;
24
25
  const nativeParent = BaseHtmlDriver.findNearestParentHtmlBlock(block).native;
25
26
  if (nativeParent) {
26
- if (sequential) {
27
+ if (sequential && !block.driver.isLine) {
27
28
  const after = BaseHtmlDriver.findPrevSiblingHtmlBlock(block.item);
28
- if (after === undefined) {
29
+ if (after === undefined || after.instance.driver.isLine) {
29
30
  if (nativeParent !== e.parentNode || !e.previousSibling)
30
31
  nativeParent.prepend(e);
31
32
  }
@@ -68,13 +69,13 @@ export class BaseHtmlDriver extends AbstractDriver {
68
69
  }
69
70
  static findNearestParentHtmlBlock(block) {
70
71
  let p = block.host;
71
- while (p.native instanceof Element === false && p !== block)
72
+ while (p.native instanceof HTMLElement === false && p !== block)
72
73
  p = p.host;
73
74
  return p;
74
75
  }
75
76
  static findPrevSiblingHtmlBlock(item) {
76
77
  let p = item.prev;
77
- while (p && !(p.instance.native instanceof Element))
78
+ while (p && !(p.instance.native instanceof HTMLElement))
78
79
  p = p.prev;
79
80
  return p;
80
81
  }
@@ -1,7 +1,7 @@
1
1
  import { VBlock } from "../core/api";
2
2
  export function ReactingFocuser(target, model, switchEditMode = undefined) {
3
3
  VBlock.claim(undefined, {
4
- reacting: true,
4
+ autonomous: true,
5
5
  triggers: { target, model },
6
6
  initialize(b) {
7
7
  b.configureReactronic({ throttling: 0 });