verstak 0.22.507 → 0.22.509

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.
@@ -33,6 +33,7 @@ export interface Bounds {
33
33
  alignContent?: To;
34
34
  alignFrame?: To;
35
35
  wrapping?: boolean;
36
+ floating?: boolean;
36
37
  }
37
38
  export interface Place {
38
39
  exact: CellRange | undefined;
@@ -45,6 +46,7 @@ export interface Place {
45
46
  alignContent: To;
46
47
  alignFrame: To;
47
48
  wrapping: boolean;
49
+ floating: boolean;
48
50
  }
49
51
  export declare class Allocator {
50
52
  reset(): void;
@@ -16,7 +16,7 @@ export class Allocator {
16
16
  lineFeed() {
17
17
  }
18
18
  allocate(bounds) {
19
- var _a, _b, _c, _d, _e, _f, _g, _h, _j;
19
+ var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k;
20
20
  return !bounds ? undefined : {
21
21
  exact: bounds.place ? parseCellRange(bounds.place, { x1: 0, y1: 0, x2: 0, y2: 0 }) : undefined,
22
22
  widthMin: (_a = bounds.widthMin) !== null && _a !== void 0 ? _a : "",
@@ -28,6 +28,7 @@ export class Allocator {
28
28
  alignContent: (_g = bounds.alignContent) !== null && _g !== void 0 ? _g : To.Default,
29
29
  alignFrame: (_h = bounds.alignFrame) !== null && _h !== void 0 ? _h : To.Default,
30
30
  wrapping: (_j = bounds.wrapping) !== null && _j !== void 0 ? _j : false,
31
+ floating: (_k = bounds.floating) !== null && _k !== void 0 ? _k : false,
31
32
  };
32
33
  }
33
34
  }
@@ -55,7 +56,7 @@ export class GridBasedAllocator {
55
56
  this.rowCursor = this.newRowCursor;
56
57
  }
57
58
  allocate(bounds) {
58
- var _a, _b, _c, _d, _e;
59
+ var _a, _b, _c, _d, _e, _f;
59
60
  const result = {
60
61
  exact: undefined,
61
62
  widthMin: "", widthMax: "", widthGrowth: 0,
@@ -63,6 +64,7 @@ export class GridBasedAllocator {
63
64
  alignContent: (_a = bounds === null || bounds === void 0 ? void 0 : bounds.alignContent) !== null && _a !== void 0 ? _a : To.Default,
64
65
  alignFrame: (_b = bounds === null || bounds === void 0 ? void 0 : bounds.alignFrame) !== null && _b !== void 0 ? _b : To.Default,
65
66
  wrapping: (_c = bounds === null || bounds === void 0 ? void 0 : bounds.wrapping) !== null && _c !== void 0 ? _c : false,
67
+ floating: (_d = bounds === null || bounds === void 0 ? void 0 : bounds.floating) !== null && _d !== void 0 ? _d : false,
66
68
  };
67
69
  if (bounds === null || bounds === void 0 ? void 0 : bounds.place) {
68
70
  result.exact = parseCellRange(bounds.place, { x1: 0, y1: 0, x2: 0, y2: 0 });
@@ -72,7 +74,7 @@ export class GridBasedAllocator {
72
74
  const totalColumnCount = this.maxColumnCount !== 0 ? this.maxColumnCount : this.actualColumnCount;
73
75
  const totalRowCount = this.maxRowCount !== 0 ? this.maxRowCount : this.actualRowCount;
74
76
  const cr = result.exact = { x1: 0, y1: 0, x2: 0, y2: 0 };
75
- let w = (_d = bounds === null || bounds === void 0 ? void 0 : bounds.widthSpan) !== null && _d !== void 0 ? _d : 1;
77
+ let w = (_e = bounds === null || bounds === void 0 ? void 0 : bounds.widthSpan) !== null && _e !== void 0 ? _e : 1;
76
78
  if (w === 0)
77
79
  w = totalColumnCount || 1;
78
80
  if (w >= 0) {
@@ -85,7 +87,7 @@ export class GridBasedAllocator {
85
87
  cr.x1 = Math.max(this.columnCursor + w, 1);
86
88
  cr.x2 = this.columnCursor;
87
89
  }
88
- let h = (_e = bounds === null || bounds === void 0 ? void 0 : bounds.heightSpan) !== null && _e !== void 0 ? _e : 1;
90
+ let h = (_f = bounds === null || bounds === void 0 ? void 0 : bounds.heightSpan) !== null && _f !== void 0 ? _f : 1;
89
91
  if (h === 0)
90
92
  h = totalRowCount || 1;
91
93
  if (h >= 0) {
@@ -1,13 +1,14 @@
1
1
  import { Monitor, LoggingOptions, Item, CollectionReader } from "reactronic";
2
2
  import { Bounds, Place, Allocator } from "./Allocator";
3
3
  export declare type Callback<T = unknown> = (native: T) => void;
4
- export declare type Render<T = unknown, M = unknown, R = void> = (native: T, block: VBlock<T, M, R>) => R;
4
+ export declare type Render<T = unknown, M = unknown, R = void> = (native: T, block: VBlock<T, M, R>, base: () => R) => R;
5
5
  export declare type AsyncRender<T = unknown, M = unknown> = (native: T, block: VBlock<T, M, Promise<void>>) => Promise<void>;
6
6
  export declare const enum Priority {
7
7
  SyncP0 = 0,
8
8
  AsyncP1 = 1,
9
9
  AsyncP2 = 2
10
10
  }
11
+ export declare type Type<T> = new (...args: any[]) => T;
11
12
  export interface BlockArgs<T = unknown, M = unknown, R = void> extends Bounds {
12
13
  reacting?: boolean;
13
14
  triggers?: unknown;
@@ -16,13 +17,14 @@ export interface BlockArgs<T = unknown, M = unknown, R = void> extends Bounds {
16
17
  throttling?: number;
17
18
  logging?: Partial<LoggingOptions>;
18
19
  shuffle?: boolean;
19
- initialize?: Render<T, M, R> | Array<Render<T, M, R>>;
20
+ initialize?: Render<T, M, R>;
20
21
  override?: Render<T, M, R>;
21
- render: Render<T, M, R>;
22
- finalize?: Render<T, M, R> | Array<Render<T, M, R>>;
22
+ render?: Render<T, M, R>;
23
+ finalize?: Render<T, M, R>;
23
24
  }
24
- export declare function setContext<T extends Object>(type: new (...args: any[]) => T, context: T): void;
25
- export declare function use<T extends Object>(type: new (...args: any[]) => T): T;
25
+ export declare function asComponent<T, M, R>(outer: BlockArgs<T, M, R> | undefined, base: BlockArgs<T, M, R>): BlockArgs<T, M, R>;
26
+ export declare function setContext<T extends Object>(type: Type<T>, context: T): void;
27
+ export declare function use<T extends Object>(type: Type<T>): T;
26
28
  export declare abstract class VBlock<T = unknown, M = unknown, R = void> {
27
29
  static readonly shortFrameDuration = 16;
28
30
  static readonly longFrameDuration = 300;
@@ -45,14 +47,14 @@ export declare abstract class VBlock<T = unknown, M = unknown, R = void> {
45
47
  static get current(): VBlock;
46
48
  static renderNestedTreesThenDo(action: (error: unknown) => void): void;
47
49
  static runForAllBlocks<T>(action: (e: T) => void): void;
48
- static claim<T = undefined, M = unknown, R = void, C = void>(name: string, args: BlockArgs<T, M, R>, driver?: AbstractDriver<T>): VBlock<T, M, R>;
50
+ static claim<T = undefined, M = unknown, R = void>(name: string, driver: AbstractDriver<T> | undefined, args: BlockArgs<T, M, R>): VBlock<T, M, R>;
49
51
  static getDefaultLoggingOptions(): LoggingOptions | undefined;
50
52
  static setDefaultLoggingOptions(logging?: LoggingOptions): void;
51
53
  }
52
54
  export declare enum LayoutKind {
53
55
  Block = 0,
54
56
  Grid = 1,
55
- Line = 2,
57
+ Row = 2,
56
58
  Group = 3,
57
59
  Text = 4
58
60
  }
@@ -65,7 +67,7 @@ export declare class AbstractDriver<T> {
65
67
  get isAuxiliary(): boolean;
66
68
  get isBlock(): boolean;
67
69
  get isGrid(): boolean;
68
- get isLine(): boolean;
70
+ get isPart(): boolean;
69
71
  constructor(name: string, layout: LayoutKind, createAllocator?: () => Allocator);
70
72
  initialize(block: VBlock<T>, native: T | undefined): void;
71
73
  finalize(block: VBlock<T>, isLeader: boolean): boolean;
@@ -24,6 +24,14 @@ export var Priority;
24
24
  Priority[Priority["AsyncP1"] = 1] = "AsyncP1";
25
25
  Priority[Priority["AsyncP2"] = 2] = "AsyncP2";
26
26
  })(Priority || (Priority = {}));
27
+ export function asComponent(outer, base) {
28
+ const result = Object.assign(Object.assign(Object.assign({}, base), outer), { initialize: via(outer === null || outer === void 0 ? void 0 : outer.initialize, base.initialize), render: via(outer === null || outer === void 0 ? void 0 : outer.render, base.render), finalize: via(outer === null || outer === void 0 ? void 0 : outer.finalize, base.finalize) });
29
+ return result;
30
+ }
31
+ function via(outer, base) {
32
+ const inherited = base !== null && base !== void 0 ? base : NOP;
33
+ return outer ? (e, b) => outer(e, b, () => inherited(e, b)) : inherited;
34
+ }
27
35
  export function setContext(type, context) {
28
36
  return VBlockImpl.setContext(type, context);
29
37
  }
@@ -50,7 +58,7 @@ export class VBlock {
50
58
  static runForAllBlocks(action) {
51
59
  forEachChildRecursively(gSysRoot, action);
52
60
  }
53
- static claim(name, args, driver) {
61
+ static claim(name, driver, args) {
54
62
  var _a, _b;
55
63
  let result;
56
64
  const owner = gCurrent.instance;
@@ -58,7 +66,7 @@ export class VBlock {
58
66
  let ex = undefined;
59
67
  driver !== null && driver !== void 0 ? driver : (driver = AbstractDriver.group);
60
68
  name || (name = `${++owner.numerator}`);
61
- if (driver.isLine) {
69
+ if (driver.isPart) {
62
70
  const last = children.lastClaimedItem();
63
71
  if (((_a = last === null || last === void 0 ? void 0 : last.instance) === null || _a === void 0 ? void 0 : _a.driver) === driver)
64
72
  ex = last;
@@ -97,7 +105,7 @@ export var LayoutKind;
97
105
  (function (LayoutKind) {
98
106
  LayoutKind[LayoutKind["Block"] = 0] = "Block";
99
107
  LayoutKind[LayoutKind["Grid"] = 1] = "Grid";
100
- LayoutKind[LayoutKind["Line"] = 2] = "Line";
108
+ LayoutKind[LayoutKind["Row"] = 2] = "Row";
101
109
  LayoutKind[LayoutKind["Group"] = 3] = "Group";
102
110
  LayoutKind[LayoutKind["Text"] = 4] = "Text";
103
111
  })(LayoutKind || (LayoutKind = {}));
@@ -112,7 +120,7 @@ export class AbstractDriver {
112
120
  get isAuxiliary() { return (this.layout & 2) === 2; }
113
121
  get isBlock() { return this.layout === LayoutKind.Block; }
114
122
  get isGrid() { return this.layout === LayoutKind.Grid; }
115
- get isLine() { return this.layout === LayoutKind.Line; }
123
+ get isPart() { return this.layout === LayoutKind.Row; }
116
124
  initialize(block, native) {
117
125
  var _a;
118
126
  const b = block;
@@ -121,9 +129,9 @@ export class AbstractDriver {
121
129
  if (initialize) {
122
130
  if (Array.isArray(initialize))
123
131
  for (const init of initialize)
124
- init(native, block);
132
+ init(native, block, NOP);
125
133
  else
126
- initialize(native, block);
134
+ initialize(native, block, NOP);
127
135
  }
128
136
  }
129
137
  finalize(block, isLeader) {
@@ -134,9 +142,9 @@ export class AbstractDriver {
134
142
  const native = block.native;
135
143
  if (Array.isArray(finalize))
136
144
  for (const fin of finalize)
137
- fin(native, block);
145
+ fin(native, block, NOP);
138
146
  else
139
- finalize(native, block);
147
+ finalize(native, block, NOP);
140
148
  }
141
149
  b.native = undefined;
142
150
  return isLeader;
@@ -149,7 +157,7 @@ export class AbstractDriver {
149
157
  if (heightGrowth === undefined) {
150
158
  b.place = place;
151
159
  const host = b.host;
152
- if (host.driver.isLine) {
160
+ if (host.driver.isPart) {
153
161
  const growth = (_a = place === null || place === void 0 ? void 0 : place.heightGrowth) !== null && _a !== void 0 ? _a : 0;
154
162
  if (growth > 0 && ((_c = (_b = host.place) === null || _b === void 0 ? void 0 : _b.heightGrowth) !== null && _c !== void 0 ? _c : 0) < growth)
155
163
  host.driver.arrange(host, undefined, growth);
@@ -164,6 +172,7 @@ export class AbstractDriver {
164
172
  alignContent: To.Default,
165
173
  alignFrame: To.Default,
166
174
  wrapping: false,
175
+ floating: false,
167
176
  };
168
177
  else
169
178
  b.place.heightGrowth = heightGrowth;
@@ -174,7 +183,7 @@ export class AbstractDriver {
174
183
  let result;
175
184
  const override = (_a = block.args) === null || _a === void 0 ? void 0 : _a.override;
176
185
  if (override)
177
- result = override(block.native, block);
186
+ result = override(block.native, block, NOP);
178
187
  else
179
188
  result = invokeRenderFunction(block);
180
189
  return result;
@@ -182,7 +191,9 @@ export class AbstractDriver {
182
191
  }
183
192
  AbstractDriver.group = new AbstractDriver("group", LayoutKind.Group);
184
193
  function invokeRenderFunction(block) {
185
- return block.args.render(block.native, block);
194
+ var _a;
195
+ const r = (_a = block.args.render) !== null && _a !== void 0 ? _a : NOP;
196
+ return r(block.native, block, NOP);
186
197
  }
187
198
  export class StaticDriver extends AbstractDriver {
188
199
  constructor(element, name, layout, createAllocator) {
@@ -205,7 +216,7 @@ class VBlockContext extends ObservableObject {
205
216
  }
206
217
  __decorate([
207
218
  raw,
208
- __metadata("design:type", Function)
219
+ __metadata("design:type", Object)
209
220
  ], VBlockContext.prototype, "type", void 0);
210
221
  class VBlockImpl extends VBlock {
211
222
  constructor(name, driver, owner, args) {
@@ -296,20 +307,20 @@ function runRenderNestedTreesThenDo(error, action) {
296
307
  let p1 = undefined;
297
308
  let p2 = undefined;
298
309
  let redeploy = false;
299
- let lineHost = owner;
310
+ let partHost = owner;
300
311
  for (const item of children.items()) {
301
312
  if (Transaction.isCanceled)
302
313
  break;
303
314
  const block = item.instance;
304
315
  const driver = block.driver;
305
316
  const opt = block.args;
306
- if (!driver.isLine) {
317
+ if (!driver.isPart) {
307
318
  const place = allocator.allocate(opt);
308
319
  driver.arrange(block, place, undefined);
309
320
  }
310
321
  else
311
322
  allocator.lineFeed();
312
- const host = driver.isLine ? owner : lineHost;
323
+ const host = driver.isPart ? owner : partHost;
313
324
  redeploy = markToRedeployIfNecessary(redeploy, host, item, children, sequential);
314
325
  const priority = (_a = opt === null || opt === void 0 ? void 0 : opt.priority) !== null && _a !== void 0 ? _a : Priority.SyncP0;
315
326
  if (priority === Priority.SyncP0)
@@ -318,8 +329,8 @@ function runRenderNestedTreesThenDo(error, action) {
318
329
  p1 = push(item, p1);
319
330
  else
320
331
  p2 = push(item, p2);
321
- if (ownerIsBlock && driver.isLine)
322
- lineHost = block;
332
+ if (ownerIsBlock && driver.isPart)
333
+ partHost = block;
323
334
  }
324
335
  if (!Transaction.isCanceled && (p1 !== undefined || p2 !== undefined))
325
336
  promised = startIncrementalRendering(current, children, p1, p2).then(() => action(error), e => action(e));
@@ -560,7 +571,7 @@ function defaultReject(error) {
560
571
  throw error;
561
572
  }
562
573
  Promise.prototype.then = reactronicDomHookedThen;
563
- const NOP = () => { };
574
+ const NOP = (...args) => { };
564
575
  const gSysDriver = new StaticDriver(null, "SYSTEM", LayoutKind.Group);
565
576
  const gSysRoot = Collection.createItem(new VBlockImpl("SYSTEM", gSysDriver, { level: 0 }, { reacting: true, render: NOP }));
566
577
  gSysRoot.instance.item = gSysRoot;
@@ -1,8 +1,8 @@
1
1
  import { VBlock, Place, BlockArgs } from "../core/api";
2
2
  import { HtmlDriver } from "./HtmlDriver";
3
3
  export declare function Block<M = unknown, R = void>(name: string, args: BlockArgs<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
4
- export declare function PlainText(content: string, name?: string, args?: Partial<BlockArgs<HTMLElement, void, void>>): VBlock<HTMLElement, void, void>;
5
- export declare function HtmlText(content: string, name?: string, args?: Partial<BlockArgs<HTMLElement, void, void>>): VBlock<HTMLElement, void, void>;
4
+ export declare function PlainText(content: string, name?: string, args?: BlockArgs<HTMLElement, void, void>): VBlock<HTMLElement, void, void>;
5
+ export declare function HtmlText(content: string, name?: string, args?: BlockArgs<HTMLElement, void, void>): VBlock<HTMLElement, void, void>;
6
6
  export declare function Grid<M = unknown, R = void>(name: string, args: BlockArgs<HTMLElement, M, R>): VBlock<HTMLElement, M, R>;
7
7
  export declare function Line<T = void>(claim: (x: void) => T): VBlock<HTMLElement>;
8
8
  export declare function lineFeed(args?: BlockArgs<HTMLElement, void, void>, noCoalescing?: boolean): VBlock<HTMLElement>;
@@ -1,32 +1,40 @@
1
- import { VBlock, LayoutKind, To, GridBasedAllocator } from "../core/api";
1
+ import { VBlock, LayoutKind, To, GridBasedAllocator, asComponent } from "../core/api";
2
2
  import { HtmlDriver } from "./HtmlDriver";
3
3
  export function Block(name, args) {
4
- return VBlock.claim(name, args, VerstakTags.block);
4
+ return VBlock.claim(name, VerstakTags.block, args);
5
5
  }
6
6
  export function PlainText(content, name, args) {
7
- return VBlock.claim(name !== null && name !== void 0 ? name : "", Object.assign(Object.assign({}, args), { render(e) { e.innerText = content; } }), VerstakTags.text);
7
+ return VBlock.claim(name !== null && name !== void 0 ? name : "", VerstakTags.text, asComponent(args, {
8
+ render(e) {
9
+ e.innerText = content;
10
+ },
11
+ }));
8
12
  }
9
13
  export function HtmlText(content, name, args) {
10
- return VBlock.claim(name !== null && name !== void 0 ? name : "", Object.assign(Object.assign({}, args), { render(e) { e.innerHTML = content; } }), VerstakTags.text);
14
+ return VBlock.claim(name !== null && name !== void 0 ? name : "", VerstakTags.text, asComponent(args, {
15
+ render(e) {
16
+ e.innerHTML = content;
17
+ },
18
+ }));
11
19
  }
12
20
  export function Grid(name, args) {
13
- return VBlock.claim(name, args, VerstakTags.grid);
21
+ return VBlock.claim(name, VerstakTags.grid, args);
14
22
  }
15
23
  export function Line(claim) {
16
- const result = VBlock.claim("", EMPTY_RENDER, VerstakTags.line);
24
+ const result = VBlock.claim("", VerstakTags.row, EMPTY_RENDER);
17
25
  claim();
18
- VBlock.claim("", EMPTY_RENDER, VerstakTags.line);
26
+ VBlock.claim("", VerstakTags.row, EMPTY_RENDER);
19
27
  return result;
20
28
  }
21
29
  export function lineFeed(args, noCoalescing) {
22
- return VBlock.claim("", args !== null && args !== void 0 ? args : EMPTY_RENDER, VerstakTags.line);
30
+ return VBlock.claim("", VerstakTags.row, args !== null && args !== void 0 ? args : EMPTY_RENDER);
23
31
  }
24
32
  export function Group(name, args) {
25
- return VBlock.claim(name, args, VerstakTags.group);
33
+ return VBlock.claim(name, VerstakTags.group, args);
26
34
  }
27
35
  export class VerstakDriver extends HtmlDriver {
28
36
  arrange(block, place, heightGrowth) {
29
- var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r, _s, _t;
37
+ var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r, _s, _t, _u, _v;
30
38
  const native = block.native;
31
39
  if (native) {
32
40
  if (heightGrowth === undefined) {
@@ -79,7 +87,7 @@ export class VerstakDriver extends HtmlDriver {
79
87
  css.textAlign = t;
80
88
  }
81
89
  else
82
- css.justifyContent = css.alignItems = css.textAlign = "";
90
+ css.justifyContent = css.alignContent = css.textAlign = "";
83
91
  }
84
92
  const heightGrowth = (_o = place === null || place === void 0 ? void 0 : place.heightGrowth) !== null && _o !== void 0 ? _o : 0;
85
93
  const alignFrame = (_p = place === null || place === void 0 ? void 0 : place.alignFrame) !== null && _p !== void 0 ? _p : To.Default;
@@ -104,6 +112,13 @@ export class VerstakDriver extends HtmlDriver {
104
112
  else
105
113
  native.removeAttribute("wrapping");
106
114
  }
115
+ const floating = (_u = place === null || place === void 0 ? void 0 : place.floating) !== null && _u !== void 0 ? _u : false;
116
+ if (floating !== ((_v = ex === null || ex === void 0 ? void 0 : ex.floating) !== null && _v !== void 0 ? _v : false)) {
117
+ if (floating)
118
+ native.setAttribute("floating", "true");
119
+ else
120
+ native.removeAttribute("floating");
121
+ }
107
122
  }
108
123
  }
109
124
  else {
@@ -116,8 +131,8 @@ export class VerstakDriver extends HtmlDriver {
116
131
  super.arrange(block, place, heightGrowth);
117
132
  }
118
133
  render(block) {
119
- if (!block.driver.isLine)
120
- VBlock.claim("", EMPTY_RENDER, VerstakTags.line);
134
+ if (block.driver.layout < LayoutKind.Row)
135
+ VBlock.claim("", VerstakTags.row, EMPTY_RENDER);
121
136
  return super.render(block);
122
137
  }
123
138
  }
@@ -125,7 +140,7 @@ const VerstakTags = {
125
140
  block: new VerstakDriver("v-block", LayoutKind.Block),
126
141
  text: new VerstakDriver("v-text", LayoutKind.Text),
127
142
  grid: new VerstakDriver("v-grid", LayoutKind.Grid, () => new GridBasedAllocator()),
128
- line: new VerstakDriver("v-line", LayoutKind.Line),
143
+ row: new VerstakDriver("v-row", LayoutKind.Row),
129
144
  group: new VerstakDriver("v-group", LayoutKind.Group),
130
145
  };
131
146
  const EMPTY_RENDER = { render() { } };
@@ -2,181 +2,181 @@ import { VBlock, StaticDriver, LayoutKind } from "../core/api";
2
2
  import { HtmlDriver, SvgDriver } from "./HtmlDriver";
3
3
  export function HtmlBody(name, args) {
4
4
  const driver = new StaticDriver(global.document.body, name, LayoutKind.Block);
5
- return VBlock.claim(name, args, driver);
5
+ return VBlock.claim(name, driver, args);
6
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); }
7
+ export function A(name, args) { return VBlock.claim(name, HtmlTags.a, args instanceof Function ? { render: args } : args); }
8
+ export function Abbr(name, args) { return VBlock.claim(name, HtmlTags.abbr, args instanceof Function ? { render: args } : args); }
9
+ export function Address(name, args) { return VBlock.claim(name, HtmlTags.address, args instanceof Function ? { render: args } : args); }
10
+ export function Area(name, args) { return VBlock.claim(name, HtmlTags.area, args instanceof Function ? { render: args } : args); }
11
+ export function Article(name, args) { return VBlock.claim(name, HtmlTags.article, args instanceof Function ? { render: args } : args); }
12
+ export function Aside(name, args) { return VBlock.claim(name, HtmlTags.aside, args instanceof Function ? { render: args } : args); }
13
+ export function Audio(name, args) { return VBlock.claim(name, HtmlTags.audio, args instanceof Function ? { render: args } : args); }
14
+ export function B(name, args) { return VBlock.claim(name, HtmlTags.b, args instanceof Function ? { render: args } : args); }
15
+ export function Base(name, args) { return VBlock.claim(name, HtmlTags.base, args instanceof Function ? { render: args } : args); }
16
+ export function Bdi(name, args) { return VBlock.claim(name, HtmlTags.bdi, args instanceof Function ? { render: args } : args); }
17
+ export function Bdo(name, args) { return VBlock.claim(name, HtmlTags.bdo, args instanceof Function ? { render: args } : args); }
18
+ export function Big(name, args) { return VBlock.claim(name, HtmlTags.big, args instanceof Function ? { render: args } : args); }
19
+ export function BlockQuote(name, args) { return VBlock.claim(name, HtmlTags.blockquote, args instanceof Function ? { render: args } : args); }
20
+ export function Body(name, args) { return VBlock.claim(name, HtmlTags.body, args instanceof Function ? { render: args } : args); }
21
+ export function BR(name, args) { return VBlock.claim(name, HtmlTags.br, args instanceof Function ? { render: args } : args); }
22
+ export function Button(name, args) { return VBlock.claim(name, HtmlTags.button, args instanceof Function ? { render: args } : args); }
23
+ export function Canvas(name, args) { return VBlock.claim(name, HtmlTags.canvas, args instanceof Function ? { render: args } : args); }
24
+ export function Caption(name, args) { return VBlock.claim(name, HtmlTags.caption, args instanceof Function ? { render: args } : args); }
25
+ export function Cite(name, args) { return VBlock.claim(name, HtmlTags.cite, args instanceof Function ? { render: args } : args); }
26
+ export function Code(name, args) { return VBlock.claim(name, HtmlTags.code, args instanceof Function ? { render: args } : args); }
27
+ export function Col(name, args) { return VBlock.claim(name, HtmlTags.col, args instanceof Function ? { render: args } : args); }
28
+ export function ColGroup(name, args) { return VBlock.claim(name, HtmlTags.colgroup, args instanceof Function ? { render: args } : args); }
29
+ export function Data(name, args) { return VBlock.claim(name, HtmlTags.data, args instanceof Function ? { render: args } : args); }
30
+ export function DataList(name, args) { return VBlock.claim(name, HtmlTags.datalist, args instanceof Function ? { render: args } : args); }
31
+ export function DD(name, args) { return VBlock.claim(name, HtmlTags.dd, args instanceof Function ? { render: args } : args); }
32
+ export function Del(name, args) { return VBlock.claim(name, HtmlTags.del, args instanceof Function ? { render: args } : args); }
33
+ export function Details(name, args) { return VBlock.claim(name, HtmlTags.details, args instanceof Function ? { render: args } : args); }
34
+ export function Dfn(name, args) { return VBlock.claim(name, HtmlTags.dfn, args instanceof Function ? { render: args } : args); }
35
+ export function Div(name, args) { return VBlock.claim(name, HtmlTags.div, args instanceof Function ? { render: args } : args); }
36
+ export function DL(name, args) { return VBlock.claim(name, HtmlTags.dl, args instanceof Function ? { render: args } : args); }
37
+ export function DT(name, args) { return VBlock.claim(name, HtmlTags.dt, args instanceof Function ? { render: args } : args); }
38
+ export function EM(name, args) { return VBlock.claim(name, HtmlTags.em, args instanceof Function ? { render: args } : args); }
39
+ export function Embed(name, args) { return VBlock.claim(name, HtmlTags.embed, args instanceof Function ? { render: args } : args); }
40
+ export function FieldSet(name, args) { return VBlock.claim(name, HtmlTags.fieldset, args instanceof Function ? { render: args } : args); }
41
+ export function FigCaption(name, args) { return VBlock.claim(name, HtmlTags.figcaption, args instanceof Function ? { render: args } : args); }
42
+ export function Figure(name, args) { return VBlock.claim(name, HtmlTags.figure, args instanceof Function ? { render: args } : args); }
43
+ export function Footer(name, args) { return VBlock.claim(name, HtmlTags.footer, args instanceof Function ? { render: args } : args); }
44
+ export function Form(name, args) { return VBlock.claim(name, HtmlTags.form, args instanceof Function ? { render: args } : args); }
45
+ export function H1(name, args) { return VBlock.claim(name, HtmlTags.h1, args instanceof Function ? { render: args } : args); }
46
+ export function H2(name, args) { return VBlock.claim(name, HtmlTags.h2, args instanceof Function ? { render: args } : args); }
47
+ export function H3(name, args) { return VBlock.claim(name, HtmlTags.h3, args instanceof Function ? { render: args } : args); }
48
+ export function H4(name, args) { return VBlock.claim(name, HtmlTags.h4, args instanceof Function ? { render: args } : args); }
49
+ export function H5(name, args) { return VBlock.claim(name, HtmlTags.h5, args instanceof Function ? { render: args } : args); }
50
+ export function H6(name, args) { return VBlock.claim(name, HtmlTags.h6, args instanceof Function ? { render: args } : args); }
51
+ export function Head(name, args) { return VBlock.claim(name, HtmlTags.head, args instanceof Function ? { render: args } : args); }
52
+ export function Header(name, args) { return VBlock.claim(name, HtmlTags.header, args instanceof Function ? { render: args } : args); }
53
+ export function HGroup(name, args) { return VBlock.claim(name, HtmlTags.hgroup, args instanceof Function ? { render: args } : args); }
54
+ export function HR(name, args) { return VBlock.claim(name, HtmlTags.hr, args instanceof Function ? { render: args } : args); }
55
+ export function Html(name, args) { return VBlock.claim(name, HtmlTags.html, args instanceof Function ? { render: args } : args); }
56
+ export function I(name, args) { return VBlock.claim(name, HtmlTags.i, args instanceof Function ? { render: args } : args); }
57
+ export function IFrame(name, args) { return VBlock.claim(name, HtmlTags.iframe, args instanceof Function ? { render: args } : args); }
58
+ export function Img(name, args) { return VBlock.claim(name, HtmlTags.img, args instanceof Function ? { render: args } : args); }
59
+ export function Input(name, args) { return VBlock.claim(name, HtmlTags.input, args instanceof Function ? { render: args } : args); }
60
+ export function Ins(name, args) { return VBlock.claim(name, HtmlTags.ins, args instanceof Function ? { render: args } : args); }
61
+ export function Kbd(name, args) { return VBlock.claim(name, HtmlTags.kbd, args instanceof Function ? { render: args } : args); }
62
+ export function KeyGen(name, args) { return VBlock.claim(name, HtmlTags.keygen, args instanceof Function ? { render: args } : args); }
63
+ export function Label(name, args) { return VBlock.claim(name, HtmlTags.label, args instanceof Function ? { render: args } : args); }
64
+ export function Legend(name, args) { return VBlock.claim(name, HtmlTags.legend, args instanceof Function ? { render: args } : args); }
65
+ export function LI(name, args) { return VBlock.claim(name, HtmlTags.li, args instanceof Function ? { render: args } : args); }
66
+ export function Link(name, args) { return VBlock.claim(name, HtmlTags.link, args instanceof Function ? { render: args } : args); }
67
+ export function Main(name, args) { return VBlock.claim(name, HtmlTags.main, args instanceof Function ? { render: args } : args); }
68
+ export function Map(name, args) { return VBlock.claim(name, HtmlTags.map, args instanceof Function ? { render: args } : args); }
69
+ export function Mark(name, args) { return VBlock.claim(name, HtmlTags.mark, args instanceof Function ? { render: args } : args); }
70
+ export function Menu(name, args) { return VBlock.claim(name, HtmlTags.menu, args instanceof Function ? { render: args } : args); }
71
+ export function MenuItem(name, args) { return VBlock.claim(name, HtmlTags.menuitem, args instanceof Function ? { render: args } : args); }
72
+ export function Meta(name, args, renderer) { return VBlock.claim(name, HtmlTags.meta, args instanceof Function ? { render: args } : args); }
73
+ export function Meter(name, args) { return VBlock.claim(name, HtmlTags.meter, args instanceof Function ? { render: args } : args); }
74
+ export function Nav(name, args) { return VBlock.claim(name, HtmlTags.nav, args instanceof Function ? { render: args } : args); }
75
+ export function NoIndex(name, args) { return VBlock.claim(name, HtmlTags.noindex, args instanceof Function ? { render: args } : args); }
76
+ export function NoScript(name, args) { return VBlock.claim(name, HtmlTags.noscript, args instanceof Function ? { render: args } : args); }
77
+ export function Obj(name, args) { return VBlock.claim(name, HtmlTags.object, args instanceof Function ? { render: args } : args); }
78
+ export function OL(name, args) { return VBlock.claim(name, HtmlTags.ol, args instanceof Function ? { render: args } : args); }
79
+ export function OptGroup(name, args) { return VBlock.claim(name, HtmlTags.optgroup, args instanceof Function ? { render: args } : args); }
80
+ export function Option(name, args) { return VBlock.claim(name, HtmlTags.option, args instanceof Function ? { render: args } : args); }
81
+ export function Output(name, args) { return VBlock.claim(name, HtmlTags.output, args instanceof Function ? { render: args } : args); }
82
+ export function P(name, args) { return VBlock.claim(name, HtmlTags.p, args instanceof Function ? { render: args } : args); }
83
+ export function Param(name, args) { return VBlock.claim(name, HtmlTags.param, args instanceof Function ? { render: args } : args); }
84
+ export function Picture(name, args) { return VBlock.claim(name, HtmlTags.picture, args instanceof Function ? { render: args } : args); }
85
+ export function Pre(name, args) { return VBlock.claim(name, HtmlTags.pre, args instanceof Function ? { render: args } : args); }
86
+ export function Progress(name, args) { return VBlock.claim(name, HtmlTags.progress, args instanceof Function ? { render: args } : args); }
87
+ export function Q(name, args) { return VBlock.claim(name, HtmlTags.q, args instanceof Function ? { render: args } : args); }
88
+ export function RP(name, args) { return VBlock.claim(name, HtmlTags.rp, args instanceof Function ? { render: args } : args); }
89
+ export function RT(name, args) { return VBlock.claim(name, HtmlTags.rt, args instanceof Function ? { render: args } : args); }
90
+ export function Ruby(name, args) { return VBlock.claim(name, HtmlTags.ruby, args instanceof Function ? { render: args } : args); }
91
+ export function S(name, args) { return VBlock.claim(name, HtmlTags.s, args instanceof Function ? { render: args } : args); }
92
+ export function Samp(name, args) { return VBlock.claim(name, HtmlTags.samp, args instanceof Function ? { render: args } : args); }
93
+ export function Script(name, args) { return VBlock.claim(name, HtmlTags.script, args instanceof Function ? { render: args } : args); }
94
+ export function Section(name, args) { return VBlock.claim(name, HtmlTags.section, args instanceof Function ? { render: args } : args); }
95
+ export function Select(name, args) { return VBlock.claim(name, HtmlTags.select, args instanceof Function ? { render: args } : args); }
96
+ export function Small(name, args) { return VBlock.claim(name, HtmlTags.small, args instanceof Function ? { render: args } : args); }
97
+ export function Source(name, args) { return VBlock.claim(name, HtmlTags.source, args instanceof Function ? { render: args } : args); }
98
+ export function Span(name, args) { return VBlock.claim(name, HtmlTags.span, args instanceof Function ? { render: args } : args); }
99
+ export function Strong(name, args) { return VBlock.claim(name, HtmlTags.strong, args instanceof Function ? { render: args } : args); }
100
+ export function Style(name, args) { return VBlock.claim(name, HtmlTags.style, args instanceof Function ? { render: args } : args); }
101
+ export function Sub(name, args) { return VBlock.claim(name, HtmlTags.sub, args instanceof Function ? { render: args } : args); }
102
+ export function Summary(name, args) { return VBlock.claim(name, HtmlTags.summary, args instanceof Function ? { render: args } : args); }
103
+ export function Sup(name, args) { return VBlock.claim(name, HtmlTags.sup, args instanceof Function ? { render: args } : args); }
104
+ export function Table(name, args) { return VBlock.claim(name, HtmlTags.table, args instanceof Function ? { render: args } : args); }
105
+ export function Template(name, args) { return VBlock.claim(name, HtmlTags.template, args instanceof Function ? { render: args } : args); }
106
+ export function TBody(name, args) { return VBlock.claim(name, HtmlTags.tbody, args instanceof Function ? { render: args } : args); }
107
+ export function TD(name, args) { return VBlock.claim(name, HtmlTags.td, args instanceof Function ? { render: args } : args); }
108
+ export function TextArea(name, args) { return VBlock.claim(name, HtmlTags.textarea, args instanceof Function ? { render: args } : args); }
109
+ export function TFoot(name, args) { return VBlock.claim(name, HtmlTags.tfoot, args instanceof Function ? { render: args } : args); }
110
+ export function TH(name, args) { return VBlock.claim(name, HtmlTags.th, args instanceof Function ? { render: args } : args); }
111
+ export function THead(name, args) { return VBlock.claim(name, HtmlTags.thead, args instanceof Function ? { render: args } : args); }
112
+ export function Time(name, args) { return VBlock.claim(name, HtmlTags.time, args instanceof Function ? { render: args } : args); }
113
+ export function Title(name, args) { return VBlock.claim(name, HtmlTags.title, args instanceof Function ? { render: args } : args); }
114
+ export function TR(name, args) { return VBlock.claim(name, HtmlTags.tr, args instanceof Function ? { render: args } : args); }
115
+ export function Track(name, args) { return VBlock.claim(name, HtmlTags.track, args instanceof Function ? { render: args } : args); }
116
+ export function U(name, args) { return VBlock.claim(name, HtmlTags.u, args instanceof Function ? { render: args } : args); }
117
+ export function UL(name, args) { return VBlock.claim(name, HtmlTags.ul, args instanceof Function ? { render: args } : args); }
118
+ export function Var(name, args) { return VBlock.claim(name, HtmlTags.var, args instanceof Function ? { render: args } : args); }
119
+ export function Video(name, args) { return VBlock.claim(name, HtmlTags.video, args instanceof Function ? { render: args } : args); }
120
+ export function Wbr(name, args) { return VBlock.claim(name, HtmlTags.wbr, args instanceof Function ? { render: args } : args); }
121
+ export function Svg(name, args) { return VBlock.claim(name, SvgTags.svg, args instanceof Function ? { render: args } : args); }
122
+ export function SvgA(name, args) { return VBlock.claim(name, SvgTags.a, args instanceof Function ? { render: args } : args); }
123
+ export function Animate(name, args) { return VBlock.claim(name, SvgTags.animate, args instanceof Function ? { render: args } : args); }
124
+ export function AnimateMotion(name, args) { return VBlock.claim(name, SvgTags.animateMotion, args instanceof Function ? { render: args } : args); }
125
+ export function AnimateTransform(name, args) { return VBlock.claim(name, SvgTags.animateTransform, args instanceof Function ? { render: args } : args); }
126
+ export function Circle(name, args) { return VBlock.claim(name, SvgTags.circle, args instanceof Function ? { render: args } : args); }
127
+ export function ClipPath(name, args) { return VBlock.claim(name, SvgTags.clipPath, args instanceof Function ? { render: args } : args); }
128
+ export function Defs(name, args) { return VBlock.claim(name, SvgTags.defs, args instanceof Function ? { render: args } : args); }
129
+ export function Desc(name, args) { return VBlock.claim(name, SvgTags.desc, args instanceof Function ? { render: args } : args); }
130
+ export function Ellipse(name, args) { return VBlock.claim(name, SvgTags.ellipse, args instanceof Function ? { render: args } : args); }
131
+ export function FeBlend(name, args) { return VBlock.claim(name, SvgTags.feBlend, args instanceof Function ? { render: args } : args); }
132
+ export function FeColorMatrix(name, args) { return VBlock.claim(name, SvgTags.feColorMatrix, args instanceof Function ? { render: args } : args); }
133
+ export function FeComponentTransfer(name, args) { return VBlock.claim(name, SvgTags.feComponentTransfer, args instanceof Function ? { render: args } : args); }
134
+ export function FeComposite(name, args) { return VBlock.claim(name, SvgTags.feComposite, args instanceof Function ? { render: args } : args); }
135
+ export function FeConvolveMatrix(name, args) { return VBlock.claim(name, SvgTags.feConvolveMatrix, args instanceof Function ? { render: args } : args); }
136
+ export function FeDiffuseLighting(name, args) { return VBlock.claim(name, SvgTags.feDiffuseLighting, args instanceof Function ? { render: args } : args); }
137
+ export function FeDisplacementMap(name, args) { return VBlock.claim(name, SvgTags.feDisplacementMap, args instanceof Function ? { render: args } : args); }
138
+ export function FeDistantLight(name, args) { return VBlock.claim(name, SvgTags.feDistantLight, args instanceof Function ? { render: args } : args); }
139
+ export function FeDropShadow(name, args) { return VBlock.claim(name, SvgTags.feDropShadow, args instanceof Function ? { render: args } : args); }
140
+ export function FeFlood(name, args) { return VBlock.claim(name, SvgTags.feFlood, args instanceof Function ? { render: args } : args); }
141
+ export function FeFuncA(name, args) { return VBlock.claim(name, SvgTags.feFuncA, args instanceof Function ? { render: args } : args); }
142
+ export function FeFuncB(name, args) { return VBlock.claim(name, SvgTags.feFuncB, args instanceof Function ? { render: args } : args); }
143
+ export function FeFuncG(name, args) { return VBlock.claim(name, SvgTags.feFuncG, args instanceof Function ? { render: args } : args); }
144
+ export function FeFuncR(name, args) { return VBlock.claim(name, SvgTags.feFuncR, args instanceof Function ? { render: args } : args); }
145
+ export function FeGaussianBlur(name, args) { return VBlock.claim(name, SvgTags.feGaussianBlur, args instanceof Function ? { render: args } : args); }
146
+ export function FeImage(name, args) { return VBlock.claim(name, SvgTags.feImage, args instanceof Function ? { render: args } : args); }
147
+ export function FeMerge(name, args) { return VBlock.claim(name, SvgTags.feMerge, args instanceof Function ? { render: args } : args); }
148
+ export function FeMergeNode(name, args) { return VBlock.claim(name, SvgTags.feMergeNode, args instanceof Function ? { render: args } : args); }
149
+ export function FeMorphology(name, args) { return VBlock.claim(name, SvgTags.feMorphology, args instanceof Function ? { render: args } : args); }
150
+ export function FeOffset(name, args) { return VBlock.claim(name, SvgTags.feOffset, args instanceof Function ? { render: args } : args); }
151
+ export function FePointLight(name, args) { return VBlock.claim(name, SvgTags.fePointLight, args instanceof Function ? { render: args } : args); }
152
+ export function FeSpecularLighting(name, args) { return VBlock.claim(name, SvgTags.feSpecularLighting, args instanceof Function ? { render: args } : args); }
153
+ export function FeSpotLight(name, args) { return VBlock.claim(name, SvgTags.feSpotLight, args instanceof Function ? { render: args } : args); }
154
+ export function FeTile(name, args) { return VBlock.claim(name, SvgTags.feTile, args instanceof Function ? { render: args } : args); }
155
+ export function FeTurbulence(name, args) { return VBlock.claim(name, SvgTags.feTurbulence, args instanceof Function ? { render: args } : args); }
156
+ export function Filter(name, args) { return VBlock.claim(name, SvgTags.filter, args instanceof Function ? { render: args } : args); }
157
+ export function ForeignObject(name, args) { return VBlock.claim(name, SvgTags.foreignObject, args instanceof Function ? { render: args } : args); }
158
+ export function G(name, args) { return VBlock.claim(name, SvgTags.g, args instanceof Function ? { render: args } : args); }
159
+ export function SvgImage(name, args) { return VBlock.claim(name, SvgTags.image, args instanceof Function ? { render: args } : args); }
160
+ export function SvgLine(name, args) { return VBlock.claim(name, SvgTags.line, args instanceof Function ? { render: args } : args); }
161
+ export function LinearGradient(name, args) { return VBlock.claim(name, SvgTags.linearGradient, args instanceof Function ? { render: args } : args); }
162
+ export function Marker(name, args) { return VBlock.claim(name, SvgTags.marker, args instanceof Function ? { render: args } : args); }
163
+ export function Mask(name, args) { return VBlock.claim(name, SvgTags.mask, args instanceof Function ? { render: args } : args); }
164
+ export function MetaData(name, args) { return VBlock.claim(name, SvgTags.metadata, args instanceof Function ? { render: args } : args); }
165
+ export function MPath(name, args) { return VBlock.claim(name, SvgTags.mpath, args instanceof Function ? { render: args } : args); }
166
+ export function Path(name, args) { return VBlock.claim(name, SvgTags.path, args instanceof Function ? { render: args } : args); }
167
+ export function Pattern(name, args) { return VBlock.claim(name, SvgTags.pattern, args instanceof Function ? { render: args } : args); }
168
+ export function Polygon(name, args) { return VBlock.claim(name, SvgTags.polygon, args instanceof Function ? { render: args } : args); }
169
+ export function PolyLine(name, args) { return VBlock.claim(name, SvgTags.polyline, args instanceof Function ? { render: args } : args); }
170
+ export function RadialGradient(name, args) { return VBlock.claim(name, SvgTags.radialGradient, args instanceof Function ? { render: args } : args); }
171
+ export function Rect(name, args) { return VBlock.claim(name, SvgTags.rect, args instanceof Function ? { render: args } : args); }
172
+ export function Stop(name, args) { return VBlock.claim(name, SvgTags.stop, args instanceof Function ? { render: args } : args); }
173
+ export function SvgSwitch(name, args) { return VBlock.claim(name, SvgTags.switch, args instanceof Function ? { render: args } : args); }
174
+ export function Symbol(name, args) { return VBlock.claim(name, SvgTags.symbol, args instanceof Function ? { render: args } : args); }
175
+ export function Text(name, args) { return VBlock.claim(name, SvgTags.text, args instanceof Function ? { render: args } : args); }
176
+ export function TextPath(name, args) { return VBlock.claim(name, SvgTags.textPath, args instanceof Function ? { render: args } : args); }
177
+ export function TSpan(name, args) { return VBlock.claim(name, SvgTags.tspan, args instanceof Function ? { render: args } : args); }
178
+ export function Use(name, args) { return VBlock.claim(name, SvgTags.use, args instanceof Function ? { render: args } : args); }
179
+ export function View(name, args) { return VBlock.claim(name, SvgTags.view, args instanceof Function ? { render: args } : args); }
180
180
  const HtmlTags = {
181
181
  a: new HtmlDriver("a", LayoutKind.Block),
182
182
  abbr: new HtmlDriver("abbr", LayoutKind.Block),
@@ -1,6 +1,6 @@
1
1
  import { VBlock } from "../core/api";
2
2
  export function ReactingFocuser(name, target, model, switchEditMode = undefined) {
3
- VBlock.claim(name, {
3
+ VBlock.claim(name, undefined, {
4
4
  reacting: true,
5
5
  triggers: { target, model },
6
6
  throttling: 0,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "verstak",
3
- "version": "0.22.507",
3
+ "version": "0.22.509",
4
4
  "description": "Verstak - Front-End Library",
5
5
  "publisher": "Nezaboodka Software",
6
6
  "license": "Apache-2.0",
@@ -31,7 +31,7 @@
31
31
  },
32
32
  "homepage": "https://github.com/nezaboodka/verstak/blob/master/README.md#readme",
33
33
  "dependencies": {
34
- "reactronic": "^0.22.505"
34
+ "reactronic": "^0.22.509"
35
35
  },
36
36
  "devDependencies": {
37
37
  "@types/node": "18.11.9",