verstak 0.22.500 → 0.22.503

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.
Files changed (66) hide show
  1. package/build/dist/source/api.d.ts +2 -2
  2. package/build/dist/source/api.js +2 -2
  3. package/build/dist/source/archive/RxDomV1.d.ts +1 -1
  4. package/build/dist/source/archive/RxDomV1.js +13 -13
  5. package/build/dist/source/core/Allocator.d.ts +64 -0
  6. package/build/dist/source/core/Allocator.js +141 -0
  7. package/build/dist/source/core/CellRange.d.ts +8 -0
  8. package/build/dist/source/core/CellRange.js +173 -0
  9. package/build/dist/source/core/Kernel.d.ts +77 -0
  10. package/build/dist/source/core/Kernel.js +504 -0
  11. package/build/dist/source/core/Restyler.js +1 -1
  12. package/build/dist/source/core/api.d.ts +5 -5
  13. package/build/dist/source/core/api.js +5 -5
  14. package/build/dist/source/html/Blocks.d.ts +14 -0
  15. package/build/dist/source/html/Blocks.js +124 -0
  16. package/build/dist/source/html/HtmlApiExt.d.ts +1 -1
  17. package/build/dist/source/html/HtmlApiExt.js +3 -3
  18. package/build/dist/source/html/HtmlBlocks.d.ts +175 -0
  19. package/build/dist/source/html/HtmlBlocks.js +356 -0
  20. package/build/dist/source/html/HtmlDriver.d.ts +20 -0
  21. package/build/dist/source/html/{HtmlNodeFactory.js → HtmlDriver.js} +25 -23
  22. package/build/dist/source/html/ReactingFocuser.d.ts +2 -0
  23. package/build/dist/source/html/ReactingFocuser.js +16 -0
  24. package/build/dist/source/html/api.d.ts +18 -17
  25. package/build/dist/source/html/api.js +18 -17
  26. package/build/dist/source/html/sensors/BasePointerSensor.d.ts +4 -4
  27. package/build/dist/source/html/sensors/BasePointerSensor.js +2 -2
  28. package/build/dist/source/html/sensors/ButtonSensor.d.ts +3 -3
  29. package/build/dist/source/html/sensors/ButtonSensor.js +17 -17
  30. package/build/dist/source/html/sensors/DataForSensor.js +6 -6
  31. package/build/dist/source/html/sensors/FocusSensor.d.ts +3 -3
  32. package/build/dist/source/html/sensors/FocusSensor.js +27 -27
  33. package/build/dist/source/html/sensors/HoverSensor.d.ts +1 -1
  34. package/build/dist/source/html/sensors/HoverSensor.js +9 -9
  35. package/build/dist/source/html/sensors/HtmlDragSensor.d.ts +6 -6
  36. package/build/dist/source/html/sensors/HtmlDragSensor.js +28 -28
  37. package/build/dist/source/html/sensors/HtmlElementSensor.d.ts +3 -3
  38. package/build/dist/source/html/sensors/HtmlElementSensor.js +4 -4
  39. package/build/dist/source/html/sensors/HtmlSensors.d.ts +9 -9
  40. package/build/dist/source/html/sensors/HtmlSensors.js +10 -10
  41. package/build/dist/source/html/sensors/KeyboardSensor.d.ts +1 -1
  42. package/build/dist/source/html/sensors/KeyboardSensor.js +18 -18
  43. package/build/dist/source/html/sensors/PointerSensor.d.ts +4 -4
  44. package/build/dist/source/html/sensors/PointerSensor.js +20 -20
  45. package/build/dist/source/html/sensors/ResizeSensor.d.ts +3 -3
  46. package/build/dist/source/html/sensors/ResizeSensor.js +13 -13
  47. package/build/dist/source/html/sensors/Sensor.d.ts +1 -1
  48. package/build/dist/source/html/sensors/Sensor.js +1 -1
  49. package/build/dist/source/html/sensors/WheelSensor.d.ts +1 -1
  50. package/build/dist/source/html/sensors/WheelSensor.js +7 -7
  51. package/build/dist/source/html/sensors/WindowSensor.d.ts +2 -2
  52. package/build/dist/source/html/sensors/WindowSensor.js +5 -5
  53. package/package.json +3 -3
  54. package/build/dist/source/core/Block.d.ts +0 -62
  55. package/build/dist/source/core/Block.js +0 -431
  56. package/build/dist/source/core/Elements.d.ts +0 -3
  57. package/build/dist/source/core/Elements.js +0 -7
  58. package/build/dist/source/core/Layout.d.ts +0 -27
  59. package/build/dist/source/core/Layout.js +0 -259
  60. package/build/dist/source/html/Cluster.d.ts +0 -11
  61. package/build/dist/source/html/Cluster.js +0 -14
  62. package/build/dist/source/html/HtmlElements.d.ts +0 -349
  63. package/build/dist/source/html/HtmlElements.js +0 -529
  64. package/build/dist/source/html/HtmlNodeFactory.d.ts +0 -19
  65. package/build/dist/source/html/RxFocuser.d.ts +0 -2
  66. package/build/dist/source/html/RxFocuser.js +0 -11
@@ -1,7 +1,7 @@
1
- import { SymDataForSensor, SymResizeObserver } from './sensors/DataForSensor';
1
+ import { SymDataForSensor, SymResizeObserver } from "./sensors/DataForSensor";
2
2
  const ElementType = global.Element;
3
3
  if (ElementType !== undefined) {
4
- Object.defineProperty(ElementType.prototype, 'dataForSensor', {
4
+ Object.defineProperty(ElementType.prototype, "dataForSensor", {
5
5
  configurable: false, enumerable: false,
6
6
  get() {
7
7
  let result = this[SymDataForSensor];
@@ -13,7 +13,7 @@ if (ElementType !== undefined) {
13
13
  this[SymDataForSensor] = value;
14
14
  },
15
15
  });
16
- Object.defineProperty(ElementType.prototype, 'resizeObserver', {
16
+ Object.defineProperty(ElementType.prototype, "resizeObserver", {
17
17
  configurable: false, enumerable: false,
18
18
  get() {
19
19
  return this[SymResizeObserver];
@@ -0,0 +1,175 @@
1
+ import { VBlock, Render, BlockArgs } from "../core/api";
2
+ export declare function HtmlBody(name: string, render: Render<HTMLElement>): VBlock<HTMLElement>;
3
+ export declare function A<M = unknown, R = void>(name: string, args: BlockArgs<HTMLAnchorElement, M, R> | Render<HTMLAnchorElement, M, R>): VBlock<HTMLAnchorElement, M, R>;
4
+ export declare function Abbr<M = unknown, R = void>(name: string, args: BlockArgs<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
5
+ export declare function Address<M = unknown, R = void>(name: string, args: BlockArgs<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
6
+ export declare function Area<M = unknown, R = void>(name: string, args: BlockArgs<HTMLAreaElement, M, R> | Render<HTMLAreaElement, M, R>): VBlock<HTMLAreaElement, M, R>;
7
+ export declare function Article<M = unknown, R = void>(name: string, args: BlockArgs<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
8
+ export declare function Aside<M = unknown, R = void>(name: string, args: BlockArgs<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
9
+ export declare function Audio<M = unknown, R = void>(name: string, args: BlockArgs<HTMLAudioElement, M, R> | Render<HTMLAudioElement, M, R>): VBlock<HTMLAudioElement, M, R>;
10
+ export declare function B<M = unknown, R = void>(name: string, args: BlockArgs<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
11
+ export declare function Base<M = unknown, R = void>(name: string, args: BlockArgs<HTMLBaseElement, M, R> | Render<HTMLBaseElement, M, R>): VBlock<HTMLBaseElement, M, R>;
12
+ export declare function Bdi<M = unknown, R = void>(name: string, args: BlockArgs<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
13
+ export declare function Bdo<M = unknown, R = void>(name: string, args: BlockArgs<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
14
+ export declare function Big<M = unknown, R = void>(name: string, args: BlockArgs<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
15
+ export declare function BlockQuote<M = unknown, R = void>(name: string, args: BlockArgs<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
16
+ export declare function Body<M = unknown, R = void>(name: string, args: BlockArgs<HTMLBodyElement, M, R> | Render<HTMLBodyElement, M, R>): VBlock<HTMLBodyElement, M, R>;
17
+ export declare function BR<M = unknown, R = void>(name: string, args: BlockArgs<HTMLBRElement, M, R> | Render<HTMLBRElement, M, R>): VBlock<HTMLBRElement, M, R>;
18
+ export declare function Button<M = unknown, R = void>(name: string, args: BlockArgs<HTMLButtonElement, M, R> | Render<HTMLButtonElement, M, R>): VBlock<HTMLButtonElement, M, R>;
19
+ export declare function Canvas<M = unknown, R = void>(name: string, args: BlockArgs<HTMLCanvasElement, M, R> | Render<HTMLCanvasElement, M, R>): VBlock<HTMLCanvasElement, M, R>;
20
+ export declare function Caption<M = unknown, R = void>(name: string, args: BlockArgs<HTMLTableCaptionElement, M, R> | Render<HTMLTableCaptionElement, M, R>): VBlock<HTMLTableCaptionElement, M, R>;
21
+ export declare function Cite<M = unknown, R = void>(name: string, args: BlockArgs<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
22
+ export declare function Code<M = unknown, R = void>(name: string, args: BlockArgs<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
23
+ export declare function Col<M = unknown, R = void>(name: string, args: BlockArgs<HTMLTableColElement, M, R> | Render<HTMLTableColElement, M, R>): VBlock<HTMLTableColElement, M, R>;
24
+ export declare function ColGroup<M = unknown, R = void>(name: string, args: BlockArgs<HTMLTableColElement, M, R> | Render<HTMLTableColElement, M, R>): VBlock<HTMLTableColElement, M, R>;
25
+ export declare function Data<M = unknown, R = void>(name: string, args: BlockArgs<HTMLDataElement, M, R> | Render<HTMLDataElement, M, R>): VBlock<HTMLDataElement, M, R>;
26
+ export declare function DataList<M = unknown, R = void>(name: string, args: BlockArgs<HTMLDataListElement, M, R> | Render<HTMLDataListElement, M, R>): VBlock<HTMLDataListElement, M, R>;
27
+ export declare function DD<M = unknown, R = void>(name: string, args: BlockArgs<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
28
+ export declare function Del<M = unknown, R = void>(name: string, args: BlockArgs<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
29
+ export declare function Details<M = unknown, R = void>(name: string, args: BlockArgs<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
30
+ export declare function Dfn<M = unknown, R = void>(name: string, args: BlockArgs<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
31
+ export declare function Div<M = unknown, R = void>(name: string, args: BlockArgs<HTMLDivElement, M, R> | Render<HTMLDivElement, M, R>): VBlock<HTMLDivElement, M, R>;
32
+ export declare function DL<M = unknown, R = void>(name: string, args: BlockArgs<HTMLDListElement, M, R> | Render<HTMLDListElement, M, R>): VBlock<HTMLDListElement, M, R>;
33
+ export declare function DT<M = unknown, R = void>(name: string, args: BlockArgs<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
34
+ export declare function EM<M = unknown, R = void>(name: string, args: BlockArgs<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
35
+ export declare function Embed<M = unknown, R = void>(name: string, args: BlockArgs<HTMLEmbedElement, M, R> | Render<HTMLEmbedElement, M, R>): VBlock<HTMLEmbedElement, M, R>;
36
+ export declare function FieldSet<M = unknown, R = void>(name: string, args: BlockArgs<HTMLFieldSetElement, M, R> | Render<HTMLFieldSetElement, M, R>): VBlock<HTMLFieldSetElement, M, R>;
37
+ export declare function FigCaption<M = unknown, R = void>(name: string, args: BlockArgs<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
38
+ export declare function Figure<M = unknown, R = void>(name: string, args: BlockArgs<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
39
+ export declare function Footer<M = unknown, R = void>(name: string, args: BlockArgs<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
40
+ export declare function Form<M = unknown, R = void>(name: string, args: BlockArgs<HTMLFormElement, M, R> | Render<HTMLFormElement, M, R>): VBlock<HTMLFormElement, M, R>;
41
+ export declare function H1<M = unknown, R = void>(name: string, args: BlockArgs<HTMLHeadingElement, M, R> | Render<HTMLHeadingElement, M, R>): VBlock<HTMLHeadingElement, M, R>;
42
+ export declare function H2<M = unknown, R = void>(name: string, args: BlockArgs<HTMLHeadingElement, M, R> | Render<HTMLHeadingElement, M, R>): VBlock<HTMLHeadingElement, M, R>;
43
+ export declare function H3<M = unknown, R = void>(name: string, args: BlockArgs<HTMLHeadingElement, M, R> | Render<HTMLHeadingElement, M, R>): VBlock<HTMLHeadingElement, M, R>;
44
+ export declare function H4<M = unknown, R = void>(name: string, args: BlockArgs<HTMLHeadingElement, M, R> | Render<HTMLHeadingElement, M, R>): VBlock<HTMLHeadingElement, M, R>;
45
+ export declare function H5<M = unknown, R = void>(name: string, args: BlockArgs<HTMLHeadingElement, M, R> | Render<HTMLHeadingElement, M, R>): VBlock<HTMLHeadingElement, M, R>;
46
+ export declare function H6<M = unknown, R = void>(name: string, args: BlockArgs<HTMLHeadingElement, M, R> | Render<HTMLHeadingElement, M, R>): VBlock<HTMLHeadingElement, M, R>;
47
+ export declare function Head<M = unknown, R = void>(name: string, args: BlockArgs<HTMLHeadElement, M, R> | Render<HTMLHeadElement, M, R>): VBlock<HTMLHeadElement, M, R>;
48
+ export declare function Header<M = unknown, R = void>(name: string, args: BlockArgs<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
49
+ export declare function HGroup<M = unknown, R = void>(name: string, args: BlockArgs<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
50
+ export declare function HR<M = unknown, R = void>(name: string, args: BlockArgs<HTMLHRElement, M, R> | Render<HTMLHRElement, M, R>): VBlock<HTMLHRElement, M, R>;
51
+ export declare function Html<M = unknown, R = void>(name: string, args: BlockArgs<HTMLHtmlElement, M, R> | Render<HTMLHtmlElement, M, R>): VBlock<HTMLHtmlElement, M, R>;
52
+ export declare function I<M = unknown, R = void>(name: string, args: BlockArgs<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
53
+ export declare function IFrame<M = unknown, R = void>(name: string, args: BlockArgs<HTMLIFrameElement, M, R> | Render<HTMLIFrameElement, M, R>): VBlock<HTMLIFrameElement, M, R>;
54
+ export declare function Img<M = unknown, R = void>(name: string, args: BlockArgs<HTMLImageElement, M, R> | Render<HTMLImageElement, M, R>): VBlock<HTMLImageElement, M, R>;
55
+ export declare function Input<M = unknown, R = void>(name: string, args: BlockArgs<HTMLInputElement, M, R> | Render<HTMLInputElement, M, R>): VBlock<HTMLInputElement, M, R>;
56
+ export declare function Ins<M = unknown, R = void>(name: string, args: BlockArgs<HTMLModElement, M, R> | Render<HTMLModElement, M, R>): VBlock<HTMLModElement, M, R>;
57
+ export declare function Kbd<M = unknown, R = void>(name: string, args: BlockArgs<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
58
+ export declare function KeyGen<M = unknown, R = void>(name: string, args: BlockArgs<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
59
+ export declare function Label<M = unknown, R = void>(name: string, args: BlockArgs<HTMLLabelElement, M, R> | Render<HTMLLabelElement, M, R>): VBlock<HTMLLabelElement, M, R>;
60
+ export declare function Legend<M = unknown, R = void>(name: string, args: BlockArgs<HTMLLegendElement, M, R> | Render<HTMLLegendElement, M, R>): VBlock<HTMLLegendElement, M, R>;
61
+ export declare function LI<M = unknown, R = void>(name: string, args: BlockArgs<HTMLLIElement, M, R> | Render<HTMLLIElement, M, R>): VBlock<HTMLLIElement, M, R>;
62
+ export declare function Link<M = unknown, R = void>(name: string, args: BlockArgs<HTMLLinkElement, M, R> | Render<HTMLLinkElement, M, R>): VBlock<HTMLLinkElement, M, R>;
63
+ export declare function Main<M = unknown, R = void>(name: string, args: BlockArgs<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
64
+ export declare function Map<M = unknown, R = void>(name: string, args: BlockArgs<HTMLMapElement, M, R> | Render<HTMLMapElement, M, R>): VBlock<HTMLMapElement, M, R>;
65
+ export declare function Mark<M = unknown, R = void>(name: string, args: BlockArgs<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
66
+ export declare function Menu<M = unknown, R = void>(name: string, args: BlockArgs<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
67
+ export declare function MenuItem<M = unknown, R = void>(name: string, args: BlockArgs<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
68
+ export declare function Meta<M = unknown, R = void>(name: string, args: BlockArgs<HTMLMetaElement, M, R> | Render<HTMLMetaElement, M, R>, renderer: Render<HTMLMetaElement, M, R>): VBlock<HTMLMetaElement, M, R>;
69
+ export declare function Meter<M = unknown, R = void>(name: string, args: BlockArgs<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
70
+ export declare function Nav<M = unknown, R = void>(name: string, args: BlockArgs<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
71
+ export declare function NoIndex<M = unknown, R = void>(name: string, args: BlockArgs<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
72
+ export declare function NoScript<M = unknown, R = void>(name: string, args: BlockArgs<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
73
+ export declare function Obj<M = unknown, R = void>(name: string, args: BlockArgs<HTMLObjectElement, M, R> | Render<HTMLObjectElement, M, R>): VBlock<HTMLObjectElement, M, R>;
74
+ export declare function OL<M = unknown, R = void>(name: string, args: BlockArgs<HTMLOListElement, M, R> | Render<HTMLOListElement, M, R>): VBlock<HTMLOListElement, M, R>;
75
+ export declare function OptGroup<M = unknown, R = void>(name: string, args: BlockArgs<HTMLOptGroupElement, M, R> | Render<HTMLOptGroupElement, M, R>): VBlock<HTMLOptGroupElement, M, R>;
76
+ export declare function Option<M = unknown, R = void>(name: string, args: BlockArgs<HTMLOptionElement, M, R> | Render<HTMLOptionElement, M, R>): VBlock<HTMLOptionElement, M, R>;
77
+ export declare function Output<M = unknown, R = void>(name: string, args: BlockArgs<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
78
+ export declare function P<M = unknown, R = void>(name: string, args: BlockArgs<HTMLParagraphElement, M, R> | Render<HTMLParagraphElement, M, R>): VBlock<HTMLParagraphElement, M, R>;
79
+ export declare function Param<M = unknown, R = void>(name: string, args: BlockArgs<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
80
+ export declare function Picture<M = unknown, R = void>(name: string, args: BlockArgs<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
81
+ export declare function Pre<M = unknown, R = void>(name: string, args: BlockArgs<HTMLPreElement, M, R> | Render<HTMLPreElement, M, R>): VBlock<HTMLPreElement, M, R>;
82
+ export declare function Progress<M = unknown, R = void>(name: string, args: BlockArgs<HTMLProgressElement, M, R> | Render<HTMLProgressElement, M, R>): VBlock<HTMLProgressElement, M, R>;
83
+ export declare function Q<M = unknown, R = void>(name: string, args: BlockArgs<HTMLQuoteElement, M, R> | Render<HTMLQuoteElement, M, R>): VBlock<HTMLQuoteElement, M, R>;
84
+ export declare function RP<M = unknown, R = void>(name: string, args: BlockArgs<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
85
+ export declare function RT<M = unknown, R = void>(name: string, args: BlockArgs<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
86
+ export declare function Ruby<M = unknown, R = void>(name: string, args: BlockArgs<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
87
+ export declare function S<M = unknown, R = void>(name: string, args: BlockArgs<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
88
+ export declare function Samp<M = unknown, R = void>(name: string, args: BlockArgs<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
89
+ export declare function Script<M = unknown, R = void>(name: string, args: BlockArgs<HTMLScriptElement, M, R> | Render<HTMLScriptElement, M, R>): VBlock<HTMLScriptElement, M, R>;
90
+ export declare function Section<M = unknown, R = void>(name: string, args: BlockArgs<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
91
+ export declare function Select<M = unknown, R = void>(name: string, args: BlockArgs<HTMLSelectElement, M, R> | Render<HTMLSelectElement, M, R>): VBlock<HTMLSelectElement, M, R>;
92
+ export declare function Small<M = unknown, R = void>(name: string, args: BlockArgs<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
93
+ export declare function Source<M = unknown, R = void>(name: string, args: BlockArgs<HTMLSourceElement, M, R> | Render<HTMLSourceElement, M, R>): VBlock<HTMLSourceElement, M, R>;
94
+ export declare function Span<M = unknown, R = void>(name: string, args: BlockArgs<HTMLSpanElement, M, R> | Render<HTMLSpanElement, M, R>): VBlock<HTMLSpanElement, M, R>;
95
+ export declare function Strong<M = unknown, R = void>(name: string, args: BlockArgs<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
96
+ export declare function Style<M = unknown, R = void>(name: string, args: BlockArgs<HTMLStyleElement, M, R> | Render<HTMLStyleElement, M, R>): VBlock<HTMLStyleElement, M, R>;
97
+ export declare function Sub<M = unknown, R = void>(name: string, args: BlockArgs<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
98
+ export declare function Summary<M = unknown, R = void>(name: string, args: BlockArgs<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
99
+ export declare function Sup<M = unknown, R = void>(name: string, args: BlockArgs<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
100
+ export declare function Table<M = unknown, R = void>(name: string, args: BlockArgs<HTMLTableElement, M, R> | Render<HTMLTableElement, M, R>): VBlock<HTMLTableElement, M, R>;
101
+ export declare function Template<M = unknown, R = void>(name: string, args: BlockArgs<HTMLTemplateElement, M, R> | Render<HTMLTemplateElement, M, R>): VBlock<HTMLTemplateElement, M, R>;
102
+ export declare function TBody<M = unknown, R = void>(name: string, args: BlockArgs<HTMLTableSectionElement, M, R> | Render<HTMLTableSectionElement, M, R>): VBlock<HTMLTableSectionElement, M, R>;
103
+ export declare function TD<M = unknown, R = void>(name: string, args: BlockArgs<HTMLTableCellElement, M, R> | Render<HTMLTableCellElement, M, R>): VBlock<HTMLTableCellElement, M, R>;
104
+ export declare function TextArea<M = unknown, R = void>(name: string, args: BlockArgs<HTMLTextAreaElement, M, R> | Render<HTMLTextAreaElement, M, R>): VBlock<HTMLTextAreaElement, M, R>;
105
+ export declare function TFoot<M = unknown, R = void>(name: string, args: BlockArgs<HTMLTableSectionElement, M, R> | Render<HTMLTableSectionElement, M, R>): VBlock<HTMLTableSectionElement, M, R>;
106
+ export declare function TH<M = unknown, R = void>(name: string, args: BlockArgs<HTMLTableCellElement, M, R> | Render<HTMLTableCellElement, M, R>): VBlock<HTMLTableCellElement, M, R>;
107
+ export declare function THead<M = unknown, R = void>(name: string, args: BlockArgs<HTMLTableSectionElement, M, R> | Render<HTMLTableSectionElement, M, R>): VBlock<HTMLTableSectionElement, M, R>;
108
+ export declare function Time<M = unknown, R = void>(name: string, args: BlockArgs<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
109
+ export declare function Title<M = unknown, R = void>(name: string, args: BlockArgs<HTMLTitleElement, M, R> | Render<HTMLTitleElement, M, R>): VBlock<HTMLTitleElement, M, R>;
110
+ export declare function TR<M = unknown, R = void>(name: string, args: BlockArgs<HTMLTableRowElement, M, R> | Render<HTMLTableRowElement, M, R>): VBlock<HTMLTableRowElement, M, R>;
111
+ export declare function Track<M = unknown, R = void>(name: string, args: BlockArgs<HTMLTrackElement, M, R> | Render<HTMLTrackElement, M, R>): VBlock<HTMLTrackElement, M, R>;
112
+ export declare function U<M = unknown, R = void>(name: string, args: BlockArgs<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
113
+ export declare function UL<M = unknown, R = void>(name: string, args: BlockArgs<HTMLUListElement, M, R> | Render<HTMLUListElement, M, R>): VBlock<HTMLUListElement, M, R>;
114
+ export declare function Var<M = unknown, R = void>(name: string, args: BlockArgs<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
115
+ export declare function Video<M = unknown, R = void>(name: string, args: BlockArgs<HTMLVideoElement, M, R> | Render<HTMLVideoElement, M, R>): VBlock<HTMLVideoElement, M, R>;
116
+ export declare function Wbr<M = unknown, R = void>(name: string, args: BlockArgs<HTMLElement, M, R> | Render<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
117
+ export declare function Svg<M = unknown, R = void>(name: string, args: BlockArgs<SVGSVGElement, M, R> | Render<SVGSVGElement, M, R>): VBlock<SVGSVGElement, M, R>;
118
+ export declare function SvgA<M = unknown, R = void>(name: string, args: BlockArgs<SVGAElement, M, R> | Render<SVGAElement, M, R>): VBlock<SVGAElement, M, R>;
119
+ export declare function Animate<M = unknown, R = void>(name: string, args: BlockArgs<SVGAnimateElement, M, R> | Render<SVGAnimateElement, M, R>): VBlock<SVGAnimateElement, M, R>;
120
+ export declare function AnimateMotion<M = unknown, R = void>(name: string, args: BlockArgs<SVGAnimateMotionElement, M, R> | Render<SVGAnimateMotionElement, M, R>): VBlock<SVGAnimateMotionElement, M, R>;
121
+ export declare function AnimateTransform<M = unknown, R = void>(name: string, args: BlockArgs<SVGAnimateTransformElement, M, R> | Render<SVGAnimateTransformElement, M, R>): VBlock<SVGAnimateTransformElement, M, R>;
122
+ export declare function Circle<M = unknown, R = void>(name: string, args: BlockArgs<SVGCircleElement, M, R> | Render<SVGCircleElement, M, R>): VBlock<SVGCircleElement, M, R>;
123
+ export declare function ClipPath<M = unknown, R = void>(name: string, args: BlockArgs<SVGClipPathElement, M, R> | Render<SVGClipPathElement, M, R>): VBlock<SVGClipPathElement, M, R>;
124
+ export declare function Defs<M = unknown, R = void>(name: string, args: BlockArgs<SVGDefsElement, M, R> | Render<SVGDefsElement, M, R>): VBlock<SVGDefsElement, M, R>;
125
+ export declare function Desc<M = unknown, R = void>(name: string, args: BlockArgs<SVGDescElement, M, R> | Render<SVGDescElement, M, R>): VBlock<SVGDescElement, M, R>;
126
+ export declare function Ellipse<M = unknown, R = void>(name: string, args: BlockArgs<SVGEllipseElement, M, R> | Render<SVGEllipseElement, M, R>): VBlock<SVGEllipseElement, M, R>;
127
+ export declare function FeBlend<M = unknown, R = void>(name: string, args: BlockArgs<SVGFEBlendElement, M, R> | Render<SVGFEBlendElement, M, R>): VBlock<SVGFEBlendElement, M, R>;
128
+ export declare function FeColorMatrix<M = unknown, R = void>(name: string, args: BlockArgs<SVGFEColorMatrixElement, M, R> | Render<SVGFEColorMatrixElement, M, R>): VBlock<SVGFEColorMatrixElement, M, R>;
129
+ export declare function FeComponentTransfer<M = unknown, R = void>(name: string, args: BlockArgs<SVGFEComponentTransferElement, M, R> | Render<SVGFEComponentTransferElement, M, R>): VBlock<SVGFEComponentTransferElement, M, R>;
130
+ export declare function FeComposite<M = unknown, R = void>(name: string, args: BlockArgs<SVGFECompositeElement, M, R> | Render<SVGFECompositeElement, M, R>): VBlock<SVGFECompositeElement, M, R>;
131
+ export declare function FeConvolveMatrix<M = unknown, R = void>(name: string, args: BlockArgs<SVGFEConvolveMatrixElement, M, R> | Render<SVGFEConvolveMatrixElement, M, R>): VBlock<SVGFEConvolveMatrixElement, M, R>;
132
+ export declare function FeDiffuseLighting<M = unknown, R = void>(name: string, args: BlockArgs<SVGFEDiffuseLightingElement, M, R> | Render<SVGFEDiffuseLightingElement, M, R>): VBlock<SVGFEDiffuseLightingElement, M, R>;
133
+ export declare function FeDisplacementMap<M = unknown, R = void>(name: string, args: BlockArgs<SVGFEDisplacementMapElement, M, R> | Render<SVGFEDisplacementMapElement, M, R>): VBlock<SVGFEDisplacementMapElement, M, R>;
134
+ export declare function FeDistantLight<M = unknown, R = void>(name: string, args: BlockArgs<SVGFEDistantLightElement, M, R> | Render<SVGFEDistantLightElement, M, R>): VBlock<SVGFEDistantLightElement, M, R>;
135
+ export declare function FeDropShadow<M = unknown, R = void>(name: string, args: BlockArgs<SVGFEDropShadowElement, M, R> | Render<SVGFEDropShadowElement, M, R>): VBlock<SVGFEDropShadowElement, M, R>;
136
+ export declare function FeFlood<M = unknown, R = void>(name: string, args: BlockArgs<SVGFEFloodElement, M, R> | Render<SVGFEFloodElement, M, R>): VBlock<SVGFEFloodElement, M, R>;
137
+ export declare function FeFuncA<M = unknown, R = void>(name: string, args: BlockArgs<SVGFEFuncAElement, M, R> | Render<SVGFEFuncAElement, M, R>): VBlock<SVGFEFuncAElement, M, R>;
138
+ export declare function FeFuncB<M = unknown, R = void>(name: string, args: BlockArgs<SVGFEFuncBElement, M, R> | Render<SVGFEFuncBElement, M, R>): VBlock<SVGFEFuncBElement, M, R>;
139
+ export declare function FeFuncG<M = unknown, R = void>(name: string, args: BlockArgs<SVGFEFuncGElement, M, R> | Render<SVGFEFuncGElement, M, R>): VBlock<SVGFEFuncGElement, M, R>;
140
+ export declare function FeFuncR<M = unknown, R = void>(name: string, args: BlockArgs<SVGFEFuncRElement, M, R> | Render<SVGFEFuncRElement, M, R>): VBlock<SVGFEFuncRElement, M, R>;
141
+ export declare function FeGaussianBlur<M = unknown, R = void>(name: string, args: BlockArgs<SVGFEGaussianBlurElement, M, R> | Render<SVGFEGaussianBlurElement, M, R>): VBlock<SVGFEGaussianBlurElement, M, R>;
142
+ export declare function FeImage<M = unknown, R = void>(name: string, args: BlockArgs<SVGFEImageElement, M, R> | Render<SVGFEImageElement, M, R>): VBlock<SVGFEImageElement, M, R>;
143
+ export declare function FeMerge<M = unknown, R = void>(name: string, args: BlockArgs<SVGFEMergeElement, M, R> | Render<SVGFEMergeElement, M, R>): VBlock<SVGFEMergeElement, M, R>;
144
+ export declare function FeMergeNode<M = unknown, R = void>(name: string, args: BlockArgs<SVGFEMergeNodeElement, M, R> | Render<SVGFEMergeNodeElement, M, R>): VBlock<SVGFEMergeNodeElement, M, R>;
145
+ export declare function FeMorphology<M = unknown, R = void>(name: string, args: BlockArgs<SVGFEMorphologyElement, M, R> | Render<SVGFEMorphologyElement, M, R>): VBlock<SVGFEMorphologyElement, M, R>;
146
+ export declare function FeOffset<M = unknown, R = void>(name: string, args: BlockArgs<SVGFEOffsetElement, M, R> | Render<SVGFEOffsetElement, M, R>): VBlock<SVGFEOffsetElement, M, R>;
147
+ export declare function FePointLight<M = unknown, R = void>(name: string, args: BlockArgs<SVGFEPointLightElement, M, R> | Render<SVGFEPointLightElement, M, R>): VBlock<SVGFEPointLightElement, M, R>;
148
+ export declare function FeSpecularLighting<M = unknown, R = void>(name: string, args: BlockArgs<SVGFESpecularLightingElement, M, R> | Render<SVGFESpecularLightingElement, M, R>): VBlock<SVGFESpecularLightingElement, M, R>;
149
+ export declare function FeSpotLight<M = unknown, R = void>(name: string, args: BlockArgs<SVGFESpotLightElement, M, R> | Render<SVGFESpotLightElement, M, R>): VBlock<SVGFESpotLightElement, M, R>;
150
+ export declare function FeTile<M = unknown, R = void>(name: string, args: BlockArgs<SVGFETileElement, M, R> | Render<SVGFETileElement, M, R>): VBlock<SVGFETileElement, M, R>;
151
+ export declare function FeTurbulence<M = unknown, R = void>(name: string, args: BlockArgs<SVGFETurbulenceElement, M, R> | Render<SVGFETurbulenceElement, M, R>): VBlock<SVGFETurbulenceElement, M, R>;
152
+ export declare function Filter<M = unknown, R = void>(name: string, args: BlockArgs<SVGFilterElement, M, R> | Render<SVGFilterElement, M, R>): VBlock<SVGFilterElement, M, R>;
153
+ export declare function ForeignObject<M = unknown, R = void>(name: string, args: BlockArgs<SVGForeignObjectElement, M, R> | Render<SVGForeignObjectElement, M, R>): VBlock<SVGForeignObjectElement, M, R>;
154
+ export declare function G<M = unknown, R = void>(name: string, args: BlockArgs<SVGGElement, M, R> | Render<SVGGElement, M, R>): VBlock<SVGGElement, M, R>;
155
+ export declare function SvgImage<M = unknown, R = void>(name: string, args: BlockArgs<SVGImageElement, M, R> | Render<SVGImageElement, M, R>): VBlock<SVGImageElement, M, R>;
156
+ export declare function SvgLine<M = unknown, R = void>(name: string, args: BlockArgs<SVGLineElement, M, R> | Render<SVGLineElement, M, R>): VBlock<SVGLineElement, M, R>;
157
+ export declare function LinearGradient<M = unknown, R = void>(name: string, args: BlockArgs<SVGLinearGradientElement, M, R> | Render<SVGLinearGradientElement, M, R>): VBlock<SVGLinearGradientElement, M, R>;
158
+ export declare function Marker<M = unknown, R = void>(name: string, args: BlockArgs<SVGMarkerElement, M, R> | Render<SVGMarkerElement, M, R>): VBlock<SVGMarkerElement, M, R>;
159
+ export declare function Mask<M = unknown, R = void>(name: string, args: BlockArgs<SVGMaskElement, M, R> | Render<SVGMaskElement, M, R>): VBlock<SVGMaskElement, M, R>;
160
+ export declare function MetaData<M = unknown, R = void>(name: string, args: BlockArgs<SVGMetadataElement, M, R> | Render<SVGMetadataElement, M, R>): VBlock<SVGMetadataElement, M, R>;
161
+ export declare function MPath<M = unknown, R = void>(name: string, args: BlockArgs<SVGElement, M, R> | Render<SVGElement, M, R>): VBlock<SVGElement, M, R>;
162
+ export declare function Path<M = unknown, R = void>(name: string, args: BlockArgs<SVGPathElement, M, R> | Render<SVGPathElement, M, R>): VBlock<SVGPathElement, M, R>;
163
+ export declare function Pattern<M = unknown, R = void>(name: string, args: BlockArgs<SVGPatternElement, M, R> | Render<SVGPatternElement, M, R>): VBlock<SVGPatternElement, M, R>;
164
+ export declare function Polygon<M = unknown, R = void>(name: string, args: BlockArgs<SVGPolygonElement, M, R> | Render<SVGPolygonElement, M, R>): VBlock<SVGPolygonElement, M, R>;
165
+ export declare function PolyLine<M = unknown, R = void>(name: string, args: BlockArgs<SVGPolylineElement, M, R> | Render<SVGPolylineElement, M, R>): VBlock<SVGPolylineElement, M, R>;
166
+ export declare function RadialGradient<M = unknown, R = void>(name: string, args: BlockArgs<SVGRadialGradientElement, M, R> | Render<SVGRadialGradientElement, M, R>): VBlock<SVGRadialGradientElement, M, R>;
167
+ export declare function Rect<M = unknown, R = void>(name: string, args: BlockArgs<SVGRectElement, M, R> | Render<SVGRectElement, M, R>): VBlock<SVGRectElement, M, R>;
168
+ export declare function Stop<M = unknown, R = void>(name: string, args: BlockArgs<SVGStopElement, M, R> | Render<SVGStopElement, M, R>): VBlock<SVGStopElement, M, R>;
169
+ export declare function SvgSwitch<M = unknown, R = void>(name: string, args: BlockArgs<SVGSwitchElement, M, R> | Render<SVGSwitchElement, M, R>): VBlock<SVGSwitchElement, M, R>;
170
+ export declare function Symbol<M = unknown, R = void>(name: string, args: BlockArgs<SVGSymbolElement, M, R> | Render<SVGSymbolElement, M, R>): VBlock<SVGSymbolElement, M, R>;
171
+ export declare function Text<M = unknown, R = void>(name: string, args: BlockArgs<SVGTextElement, M, R> | Render<SVGTextElement, M, R>): VBlock<SVGTextElement, M, R>;
172
+ export declare function TextPath<M = unknown, R = void>(name: string, args: BlockArgs<SVGTextPathElement, M, R> | Render<SVGTextPathElement, M, R>): VBlock<SVGTextPathElement, M, R>;
173
+ export declare function TSpan<M = unknown, R = void>(name: string, args: BlockArgs<SVGTSpanElement, M, R> | Render<SVGTSpanElement, M, R>): VBlock<SVGTSpanElement, M, R>;
174
+ export declare function Use<M = unknown, R = void>(name: string, args: BlockArgs<SVGUseElement, M, R> | Render<SVGUseElement, M, R>): VBlock<SVGUseElement, M, R>;
175
+ export declare function View<M = unknown, R = void>(name: string, args: BlockArgs<SVGViewElement, M, R> | Render<SVGViewElement, M, R>): VBlock<SVGViewElement, M, R>;
@@ -0,0 +1,356 @@
1
+ import { VBlock, StaticDriver, LayoutKind } from "../core/api";
2
+ import { HtmlDriver, SvgDriver } from "./HtmlDriver";
3
+ export function HtmlBody(name, render) {
4
+ const driver = new StaticDriver(global.document.body, name, LayoutKind.Block);
5
+ return VBlock.claim(name, { reacting: true, render }, driver);
6
+ }
7
+ export function A(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, HtmlTags.a); }
8
+ export function Abbr(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, HtmlTags.abbr); }
9
+ export function Address(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, HtmlTags.address); }
10
+ export function Area(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, HtmlTags.area); }
11
+ export function Article(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, HtmlTags.article); }
12
+ export function Aside(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, HtmlTags.aside); }
13
+ export function Audio(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, HtmlTags.audio); }
14
+ export function B(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, HtmlTags.b); }
15
+ export function Base(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, HtmlTags.base); }
16
+ export function Bdi(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, HtmlTags.bdi); }
17
+ export function Bdo(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, HtmlTags.bdo); }
18
+ export function Big(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, HtmlTags.big); }
19
+ export function BlockQuote(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, HtmlTags.blockquote); }
20
+ export function Body(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, HtmlTags.body); }
21
+ export function BR(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, HtmlTags.br); }
22
+ export function Button(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, HtmlTags.button); }
23
+ export function Canvas(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, HtmlTags.canvas); }
24
+ export function Caption(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, HtmlTags.caption); }
25
+ export function Cite(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, HtmlTags.cite); }
26
+ export function Code(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, HtmlTags.code); }
27
+ export function Col(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, HtmlTags.col); }
28
+ export function ColGroup(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, HtmlTags.colgroup); }
29
+ export function Data(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, HtmlTags.data); }
30
+ export function DataList(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, HtmlTags.datalist); }
31
+ export function DD(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, HtmlTags.dd); }
32
+ export function Del(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, HtmlTags.del); }
33
+ export function Details(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, HtmlTags.details); }
34
+ export function Dfn(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, HtmlTags.dfn); }
35
+ export function Div(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, HtmlTags.div); }
36
+ export function DL(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, HtmlTags.dl); }
37
+ export function DT(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, HtmlTags.dt); }
38
+ export function EM(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, HtmlTags.em); }
39
+ export function Embed(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, HtmlTags.embed); }
40
+ export function FieldSet(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, HtmlTags.fieldset); }
41
+ export function FigCaption(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, HtmlTags.figcaption); }
42
+ export function Figure(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, HtmlTags.figure); }
43
+ export function Footer(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, HtmlTags.footer); }
44
+ export function Form(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, HtmlTags.form); }
45
+ export function H1(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, HtmlTags.h1); }
46
+ export function H2(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, HtmlTags.h2); }
47
+ export function H3(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, HtmlTags.h3); }
48
+ export function H4(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, HtmlTags.h4); }
49
+ export function H5(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, HtmlTags.h5); }
50
+ export function H6(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, HtmlTags.h6); }
51
+ export function Head(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, HtmlTags.head); }
52
+ export function Header(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, HtmlTags.header); }
53
+ export function HGroup(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, HtmlTags.hgroup); }
54
+ export function HR(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, HtmlTags.hr); }
55
+ export function Html(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, HtmlTags.html); }
56
+ export function I(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, HtmlTags.i); }
57
+ export function IFrame(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, HtmlTags.iframe); }
58
+ export function Img(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, HtmlTags.img); }
59
+ export function Input(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, HtmlTags.input); }
60
+ export function Ins(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, HtmlTags.ins); }
61
+ export function Kbd(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, HtmlTags.kbd); }
62
+ export function KeyGen(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, HtmlTags.keygen); }
63
+ export function Label(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, HtmlTags.label); }
64
+ export function Legend(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, HtmlTags.legend); }
65
+ export function LI(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, HtmlTags.li); }
66
+ export function Link(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, HtmlTags.link); }
67
+ export function Main(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, HtmlTags.main); }
68
+ export function Map(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, HtmlTags.map); }
69
+ export function Mark(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, HtmlTags.mark); }
70
+ export function Menu(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, HtmlTags.menu); }
71
+ export function MenuItem(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, HtmlTags.menuitem); }
72
+ export function Meta(name, args, renderer) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, HtmlTags.meta); }
73
+ export function Meter(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, HtmlTags.meter); }
74
+ export function Nav(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, HtmlTags.nav); }
75
+ export function NoIndex(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, HtmlTags.noindex); }
76
+ export function NoScript(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, HtmlTags.noscript); }
77
+ export function Obj(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, HtmlTags.object); }
78
+ export function OL(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, HtmlTags.ol); }
79
+ export function OptGroup(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, HtmlTags.optgroup); }
80
+ export function Option(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, HtmlTags.option); }
81
+ export function Output(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, HtmlTags.output); }
82
+ export function P(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, HtmlTags.p); }
83
+ export function Param(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, HtmlTags.param); }
84
+ export function Picture(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, HtmlTags.picture); }
85
+ export function Pre(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, HtmlTags.pre); }
86
+ export function Progress(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, HtmlTags.progress); }
87
+ export function Q(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, HtmlTags.q); }
88
+ export function RP(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, HtmlTags.rp); }
89
+ export function RT(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, HtmlTags.rt); }
90
+ export function Ruby(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, HtmlTags.ruby); }
91
+ export function S(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, HtmlTags.s); }
92
+ export function Samp(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, HtmlTags.samp); }
93
+ export function Script(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, HtmlTags.script); }
94
+ export function Section(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, HtmlTags.section); }
95
+ export function Select(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, HtmlTags.select); }
96
+ export function Small(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, HtmlTags.small); }
97
+ export function Source(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, HtmlTags.source); }
98
+ export function Span(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, HtmlTags.span); }
99
+ export function Strong(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, HtmlTags.strong); }
100
+ export function Style(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, HtmlTags.style); }
101
+ export function Sub(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, HtmlTags.sub); }
102
+ export function Summary(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, HtmlTags.summary); }
103
+ export function Sup(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, HtmlTags.sup); }
104
+ export function Table(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, HtmlTags.table); }
105
+ export function Template(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, HtmlTags.template); }
106
+ export function TBody(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, HtmlTags.tbody); }
107
+ export function TD(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, HtmlTags.td); }
108
+ export function TextArea(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, HtmlTags.textarea); }
109
+ export function TFoot(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, HtmlTags.tfoot); }
110
+ export function TH(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, HtmlTags.th); }
111
+ export function THead(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, HtmlTags.thead); }
112
+ export function Time(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, HtmlTags.time); }
113
+ export function Title(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, HtmlTags.title); }
114
+ export function TR(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, HtmlTags.tr); }
115
+ export function Track(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, HtmlTags.track); }
116
+ export function U(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, HtmlTags.u); }
117
+ export function UL(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, HtmlTags.ul); }
118
+ export function Var(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, HtmlTags.var); }
119
+ export function Video(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, HtmlTags.video); }
120
+ export function Wbr(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, HtmlTags.wbr); }
121
+ export function Svg(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, SvgTags.svg); }
122
+ export function SvgA(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, SvgTags.a); }
123
+ export function Animate(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, SvgTags.animate); }
124
+ export function AnimateMotion(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, SvgTags.animateMotion); }
125
+ export function AnimateTransform(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, SvgTags.animateTransform); }
126
+ export function Circle(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, SvgTags.circle); }
127
+ export function ClipPath(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, SvgTags.clipPath); }
128
+ export function Defs(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, SvgTags.defs); }
129
+ export function Desc(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, SvgTags.desc); }
130
+ export function Ellipse(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, SvgTags.ellipse); }
131
+ export function FeBlend(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, SvgTags.feBlend); }
132
+ export function FeColorMatrix(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, SvgTags.feColorMatrix); }
133
+ export function FeComponentTransfer(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, SvgTags.feComponentTransfer); }
134
+ export function FeComposite(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, SvgTags.feComposite); }
135
+ export function FeConvolveMatrix(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, SvgTags.feConvolveMatrix); }
136
+ export function FeDiffuseLighting(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, SvgTags.feDiffuseLighting); }
137
+ export function FeDisplacementMap(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, SvgTags.feDisplacementMap); }
138
+ export function FeDistantLight(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, SvgTags.feDistantLight); }
139
+ export function FeDropShadow(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, SvgTags.feDropShadow); }
140
+ export function FeFlood(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, SvgTags.feFlood); }
141
+ export function FeFuncA(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, SvgTags.feFuncA); }
142
+ export function FeFuncB(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, SvgTags.feFuncB); }
143
+ export function FeFuncG(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, SvgTags.feFuncG); }
144
+ export function FeFuncR(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, SvgTags.feFuncR); }
145
+ export function FeGaussianBlur(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, SvgTags.feGaussianBlur); }
146
+ export function FeImage(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, SvgTags.feImage); }
147
+ export function FeMerge(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, SvgTags.feMerge); }
148
+ export function FeMergeNode(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, SvgTags.feMergeNode); }
149
+ export function FeMorphology(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, SvgTags.feMorphology); }
150
+ export function FeOffset(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, SvgTags.feOffset); }
151
+ export function FePointLight(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, SvgTags.fePointLight); }
152
+ export function FeSpecularLighting(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, SvgTags.feSpecularLighting); }
153
+ export function FeSpotLight(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, SvgTags.feSpotLight); }
154
+ export function FeTile(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, SvgTags.feTile); }
155
+ export function FeTurbulence(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, SvgTags.feTurbulence); }
156
+ export function Filter(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, SvgTags.filter); }
157
+ export function ForeignObject(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, SvgTags.foreignObject); }
158
+ export function G(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, SvgTags.g); }
159
+ export function SvgImage(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, SvgTags.image); }
160
+ export function SvgLine(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, SvgTags.line); }
161
+ export function LinearGradient(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, SvgTags.linearGradient); }
162
+ export function Marker(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, SvgTags.marker); }
163
+ export function Mask(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, SvgTags.mask); }
164
+ export function MetaData(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, SvgTags.metadata); }
165
+ export function MPath(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, SvgTags.mpath); }
166
+ export function Path(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, SvgTags.path); }
167
+ export function Pattern(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, SvgTags.pattern); }
168
+ export function Polygon(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, SvgTags.polygon); }
169
+ export function PolyLine(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, SvgTags.polyline); }
170
+ export function RadialGradient(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, SvgTags.radialGradient); }
171
+ export function Rect(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, SvgTags.rect); }
172
+ export function Stop(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, SvgTags.stop); }
173
+ export function SvgSwitch(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, SvgTags.switch); }
174
+ export function Symbol(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, SvgTags.symbol); }
175
+ export function Text(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, SvgTags.text); }
176
+ export function TextPath(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, SvgTags.textPath); }
177
+ export function TSpan(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, SvgTags.tspan); }
178
+ export function Use(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, SvgTags.use); }
179
+ export function View(name, args) { return VBlock.claim(name, args instanceof Function ? { render: args } : args, SvgTags.view); }
180
+ const HtmlTags = {
181
+ a: new HtmlDriver("a", LayoutKind.Block),
182
+ abbr: new HtmlDriver("abbr", LayoutKind.Block),
183
+ address: new HtmlDriver("address", LayoutKind.Block),
184
+ area: new HtmlDriver("area", LayoutKind.Block),
185
+ article: new HtmlDriver("article", LayoutKind.Block),
186
+ aside: new HtmlDriver("aside", LayoutKind.Block),
187
+ audio: new HtmlDriver("audio", LayoutKind.Block),
188
+ b: new HtmlDriver("b", LayoutKind.Block),
189
+ base: new HtmlDriver("base", LayoutKind.Block),
190
+ bdi: new HtmlDriver("bdi", LayoutKind.Block),
191
+ bdo: new HtmlDriver("bdo", LayoutKind.Block),
192
+ big: new HtmlDriver("big", LayoutKind.Block),
193
+ blockquote: new HtmlDriver("blockquote", LayoutKind.Block),
194
+ body: new HtmlDriver("body", LayoutKind.Block),
195
+ br: new HtmlDriver("br", LayoutKind.Block),
196
+ button: new HtmlDriver("button", LayoutKind.Block),
197
+ canvas: new HtmlDriver("canvas", LayoutKind.Block),
198
+ caption: new HtmlDriver("caption", LayoutKind.Block),
199
+ cite: new HtmlDriver("cite", LayoutKind.Block),
200
+ code: new HtmlDriver("code", LayoutKind.Block),
201
+ col: new HtmlDriver("col", LayoutKind.Block),
202
+ colgroup: new HtmlDriver("colgroup", LayoutKind.Block),
203
+ data: new HtmlDriver("data", LayoutKind.Block),
204
+ datalist: new HtmlDriver("datalist", LayoutKind.Block),
205
+ dd: new HtmlDriver("dd", LayoutKind.Block),
206
+ del: new HtmlDriver("del", LayoutKind.Block),
207
+ details: new HtmlDriver("details", LayoutKind.Block),
208
+ dfn: new HtmlDriver("dfn", LayoutKind.Block),
209
+ div: new HtmlDriver("div", LayoutKind.Block),
210
+ dl: new HtmlDriver("dl", LayoutKind.Block),
211
+ dt: new HtmlDriver("dt", LayoutKind.Block),
212
+ em: new HtmlDriver("em", LayoutKind.Block),
213
+ embed: new HtmlDriver("embed", LayoutKind.Block),
214
+ fieldset: new HtmlDriver("fieldset", LayoutKind.Block),
215
+ figcaption: new HtmlDriver("figcaption", LayoutKind.Block),
216
+ figure: new HtmlDriver("figure", LayoutKind.Block),
217
+ footer: new HtmlDriver("footer", LayoutKind.Block),
218
+ form: new HtmlDriver("form", LayoutKind.Block),
219
+ h1: new HtmlDriver("h1", LayoutKind.Block),
220
+ h2: new HtmlDriver("h2", LayoutKind.Block),
221
+ h3: new HtmlDriver("h3", LayoutKind.Block),
222
+ h4: new HtmlDriver("h4", LayoutKind.Block),
223
+ h5: new HtmlDriver("h5", LayoutKind.Block),
224
+ h6: new HtmlDriver("h6", LayoutKind.Block),
225
+ head: new HtmlDriver("head", LayoutKind.Block),
226
+ header: new HtmlDriver("header", LayoutKind.Block),
227
+ hgroup: new HtmlDriver("hgroup", LayoutKind.Block),
228
+ hr: new HtmlDriver("hr", LayoutKind.Block),
229
+ html: new HtmlDriver("html", LayoutKind.Block),
230
+ i: new HtmlDriver("i", LayoutKind.Block),
231
+ iframe: new HtmlDriver("iframe", LayoutKind.Block),
232
+ img: new HtmlDriver("img", LayoutKind.Block),
233
+ input: new HtmlDriver("input", LayoutKind.Block),
234
+ ins: new HtmlDriver("ins", LayoutKind.Block),
235
+ kbd: new HtmlDriver("kbd", LayoutKind.Block),
236
+ keygen: new HtmlDriver("keygen", LayoutKind.Block),
237
+ label: new HtmlDriver("label", LayoutKind.Block),
238
+ legend: new HtmlDriver("legend", LayoutKind.Block),
239
+ li: new HtmlDriver("li", LayoutKind.Block),
240
+ link: new HtmlDriver("link", LayoutKind.Block),
241
+ main: new HtmlDriver("main", LayoutKind.Block),
242
+ map: new HtmlDriver("map", LayoutKind.Block),
243
+ mark: new HtmlDriver("mark", LayoutKind.Block),
244
+ menu: new HtmlDriver("menu", LayoutKind.Block),
245
+ menuitem: new HtmlDriver("menuitem", LayoutKind.Block),
246
+ meta: new HtmlDriver("meta", LayoutKind.Block),
247
+ meter: new HtmlDriver("meter", LayoutKind.Block),
248
+ nav: new HtmlDriver("nav", LayoutKind.Block),
249
+ noindex: new HtmlDriver("noindex", LayoutKind.Block),
250
+ noscript: new HtmlDriver("noscript", LayoutKind.Block),
251
+ object: new HtmlDriver("object", LayoutKind.Block),
252
+ ol: new HtmlDriver("ol", LayoutKind.Block),
253
+ optgroup: new HtmlDriver("optgroup", LayoutKind.Block),
254
+ option: new HtmlDriver("option", LayoutKind.Block),
255
+ output: new HtmlDriver("output", LayoutKind.Block),
256
+ p: new HtmlDriver("p", LayoutKind.Block),
257
+ param: new HtmlDriver("param", LayoutKind.Block),
258
+ picture: new HtmlDriver("picture", LayoutKind.Block),
259
+ pre: new HtmlDriver("pre", LayoutKind.Block),
260
+ progress: new HtmlDriver("progress", LayoutKind.Block),
261
+ q: new HtmlDriver("q", LayoutKind.Block),
262
+ rp: new HtmlDriver("rp", LayoutKind.Block),
263
+ rt: new HtmlDriver("rt", LayoutKind.Block),
264
+ ruby: new HtmlDriver("ruby", LayoutKind.Block),
265
+ s: new HtmlDriver("s", LayoutKind.Block),
266
+ samp: new HtmlDriver("samp", LayoutKind.Block),
267
+ script: new HtmlDriver("script", LayoutKind.Block),
268
+ section: new HtmlDriver("section", LayoutKind.Block),
269
+ select: new HtmlDriver("select", LayoutKind.Block),
270
+ small: new HtmlDriver("small", LayoutKind.Block),
271
+ source: new HtmlDriver("source", LayoutKind.Block),
272
+ span: new HtmlDriver("span", LayoutKind.Block),
273
+ strong: new HtmlDriver("strong", LayoutKind.Block),
274
+ style: new HtmlDriver("style", LayoutKind.Block),
275
+ sub: new HtmlDriver("sub", LayoutKind.Block),
276
+ summary: new HtmlDriver("summary", LayoutKind.Block),
277
+ sup: new HtmlDriver("sup", LayoutKind.Block),
278
+ table: new HtmlDriver("table", LayoutKind.Block),
279
+ template: new HtmlDriver("template", LayoutKind.Block),
280
+ tbody: new HtmlDriver("tbody", LayoutKind.Block),
281
+ td: new HtmlDriver("td", LayoutKind.Block),
282
+ textarea: new HtmlDriver("textarea", LayoutKind.Block),
283
+ tfoot: new HtmlDriver("tfoot", LayoutKind.Block),
284
+ th: new HtmlDriver("th", LayoutKind.Block),
285
+ thead: new HtmlDriver("thead", LayoutKind.Block),
286
+ time: new HtmlDriver("time", LayoutKind.Block),
287
+ title: new HtmlDriver("title", LayoutKind.Block),
288
+ tr: new HtmlDriver("tr", LayoutKind.Block),
289
+ track: new HtmlDriver("track", LayoutKind.Block),
290
+ u: new HtmlDriver("u", LayoutKind.Block),
291
+ ul: new HtmlDriver("ul", LayoutKind.Block),
292
+ var: new HtmlDriver("var", LayoutKind.Block),
293
+ video: new HtmlDriver("video", LayoutKind.Block),
294
+ wbr: new HtmlDriver("wbr", LayoutKind.Block),
295
+ };
296
+ const SvgTags = {
297
+ svg: new SvgDriver("svg", LayoutKind.Block),
298
+ a: new SvgDriver("a", LayoutKind.Block),
299
+ animate: new SvgDriver("animate", LayoutKind.Block),
300
+ animateMotion: new SvgDriver("animateMotion", LayoutKind.Block),
301
+ animateTransform: new SvgDriver("animateTransform", LayoutKind.Block),
302
+ circle: new SvgDriver("circle", LayoutKind.Block),
303
+ clipPath: new SvgDriver("clipPath", LayoutKind.Block),
304
+ defs: new SvgDriver("defs", LayoutKind.Block),
305
+ desc: new SvgDriver("desc", LayoutKind.Block),
306
+ ellipse: new SvgDriver("ellipse", LayoutKind.Block),
307
+ feBlend: new SvgDriver("feBlend", LayoutKind.Block),
308
+ feColorMatrix: new SvgDriver("feColorMatrix", LayoutKind.Block),
309
+ feComponentTransfer: new SvgDriver("feComponentTransfer", LayoutKind.Block),
310
+ feComposite: new SvgDriver("feComposite", LayoutKind.Block),
311
+ feConvolveMatrix: new SvgDriver("feConvolveMatrix", LayoutKind.Block),
312
+ feDiffuseLighting: new SvgDriver("feDiffuseLighting", LayoutKind.Block),
313
+ feDisplacementMap: new SvgDriver("feDisplacementMap", LayoutKind.Block),
314
+ feDistantLight: new SvgDriver("feDistantLight", LayoutKind.Block),
315
+ feDropShadow: new SvgDriver("feDropShadow", LayoutKind.Block),
316
+ feFlood: new SvgDriver("feFlood", LayoutKind.Block),
317
+ feFuncA: new SvgDriver("feFuncA", LayoutKind.Block),
318
+ feFuncB: new SvgDriver("feFuncB", LayoutKind.Block),
319
+ feFuncG: new SvgDriver("feFuncG", LayoutKind.Block),
320
+ feFuncR: new SvgDriver("feFuncR", LayoutKind.Block),
321
+ feGaussianBlur: new SvgDriver("feGaussianBlur", LayoutKind.Block),
322
+ feImage: new SvgDriver("feImage", LayoutKind.Block),
323
+ feMerge: new SvgDriver("feMerge", LayoutKind.Block),
324
+ feMergeNode: new SvgDriver("feMergeNode", LayoutKind.Block),
325
+ feMorphology: new SvgDriver("feMorphology", LayoutKind.Block),
326
+ feOffset: new SvgDriver("feOffset", LayoutKind.Block),
327
+ fePointLight: new SvgDriver("fePointLight", LayoutKind.Block),
328
+ feSpecularLighting: new SvgDriver("feSpecularLighting", LayoutKind.Block),
329
+ feSpotLight: new SvgDriver("feSpotLight", LayoutKind.Block),
330
+ feTile: new SvgDriver("feTile", LayoutKind.Block),
331
+ feTurbulence: new SvgDriver("feTurbulence", LayoutKind.Block),
332
+ filter: new SvgDriver("filter", LayoutKind.Block),
333
+ foreignObject: new SvgDriver("foreignObject", LayoutKind.Block),
334
+ g: new SvgDriver("g", LayoutKind.Block),
335
+ image: new SvgDriver("image", LayoutKind.Block),
336
+ line: new SvgDriver("line", LayoutKind.Block),
337
+ linearGradient: new SvgDriver("linearGradient", LayoutKind.Block),
338
+ marker: new SvgDriver("marker", LayoutKind.Block),
339
+ mask: new SvgDriver("mask", LayoutKind.Block),
340
+ metadata: new SvgDriver("metadata", LayoutKind.Block),
341
+ mpath: new SvgDriver("mpath", LayoutKind.Block),
342
+ path: new SvgDriver("path", LayoutKind.Block),
343
+ pattern: new SvgDriver("pattern", LayoutKind.Block),
344
+ polygon: new SvgDriver("polygon", LayoutKind.Block),
345
+ polyline: new SvgDriver("polyline", LayoutKind.Block),
346
+ radialGradient: new SvgDriver("radialGradient", LayoutKind.Block),
347
+ rect: new SvgDriver("rect", LayoutKind.Block),
348
+ stop: new SvgDriver("stop", LayoutKind.Block),
349
+ switch: new SvgDriver("switch", LayoutKind.Block),
350
+ symbol: new SvgDriver("symbol", LayoutKind.Block),
351
+ text: new SvgDriver("text", LayoutKind.Block),
352
+ textPath: new SvgDriver("textPath", LayoutKind.Block),
353
+ tspan: new SvgDriver("tspan", LayoutKind.Block),
354
+ use: new SvgDriver("use", LayoutKind.Block),
355
+ view: new SvgDriver("view", LayoutKind.Block),
356
+ };
@@ -0,0 +1,20 @@
1
+ import { Item } from "reactronic";
2
+ import { VBlock, AbstractDriver } from "../core/api";
3
+ export declare abstract class BaseHtmlDriver<T extends Element> extends AbstractDriver<T> {
4
+ initialize(block: VBlock<T>, element: T | undefined): void;
5
+ finalize(block: VBlock<T>, isLeader: boolean): boolean;
6
+ deploy(block: VBlock<T>, sequential: boolean): void;
7
+ relocate(block: VBlock<T>): void;
8
+ render(block: VBlock<T>): void | Promise<void>;
9
+ static get blinkingEffect(): string | undefined;
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;
13
+ protected abstract createElement(block: VBlock<T>): T;
14
+ }
15
+ export declare class HtmlDriver<T extends HTMLElement> extends BaseHtmlDriver<T> {
16
+ protected createElement(block: VBlock<T>): T;
17
+ }
18
+ export declare class SvgDriver<T extends SVGElement> extends BaseHtmlDriver<T> {
19
+ protected createElement(block: VBlock<T>): T;
20
+ }