verstak 0.24.260 → 0.24.261

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.
@@ -63,7 +63,7 @@ export declare class ElImpl<T extends Element = any, M = any> implements El<T, M
63
63
  readonly node: RxNode<El<T, M>>;
64
64
  maxColumnCount: number;
65
65
  maxRowCount: number;
66
- cursorPosition?: CursorPosition;
66
+ layoutInfo?: ElLayoutInfo;
67
67
  native: T;
68
68
  model: M;
69
69
  private _kind;
@@ -109,15 +109,15 @@ export declare class ElImpl<T extends Element = any, M = any> implements El<T, M
109
109
  useStylingPreset(stylingPresetName: string, enabled?: boolean): void;
110
110
  private rowBreak;
111
111
  }
112
- declare class CursorPosition {
112
+ declare class ElLayoutInfo {
113
113
  x: number;
114
114
  y: number;
115
115
  runningMaxX: number;
116
116
  runningMaxY: number;
117
- flags: CursorFlags;
118
- constructor(prev: CursorPosition);
117
+ flags: ElLayoutInfoFlags;
118
+ constructor(prev: ElLayoutInfo);
119
119
  }
120
- declare enum CursorFlags {
120
+ declare enum ElLayoutInfoFlags {
121
121
  none = 0,
122
122
  ownCursorPosition = 1,
123
123
  usesRunningColumnCount = 2,
@@ -32,7 +32,7 @@ export class ElImpl {
32
32
  this.node = node;
33
33
  this.maxColumnCount = 0;
34
34
  this.maxRowCount = 0;
35
- this.cursorPosition = undefined;
35
+ this.layoutInfo = undefined;
36
36
  this.native = undefined;
37
37
  this.model = undefined;
38
38
  this._kind = ElKind.part;
@@ -70,10 +70,10 @@ export class ElImpl {
70
70
  const owner = node.owner;
71
71
  const ownerEl = owner.element;
72
72
  const prevEl = (_a = node.seat.prev) === null || _a === void 0 ? void 0 : _a.instance.element;
73
- const cursorPosition = (_b = prevEl === null || prevEl === void 0 ? void 0 : prevEl.cursorPosition) !== null && _b !== void 0 ? _b : InitialCursorPosition;
74
- const newCursorPosition = this.cursorPosition = owner.children.isStrict ? new CursorPosition(cursorPosition) : undefined;
73
+ const prevElLayoutInfo = (_b = prevEl === null || prevEl === void 0 ? void 0 : prevEl.layoutInfo) !== null && _b !== void 0 ? _b : InitialElLayoutInfo;
74
+ const layoutInfo = this.layoutInfo = owner.children.isStrict ? new ElLayoutInfo(prevElLayoutInfo) : undefined;
75
75
  const isCursorElement = driver instanceof CursorCommandDriver;
76
- const coords = getEffectiveElCoords(!isCursorElement, value, ownerEl.maxColumnCount, ownerEl.maxRowCount, cursorPosition, newCursorPosition);
76
+ const coords = getElCoordsAndAdjustLayoutInfo(!isCursorElement, value, ownerEl.maxColumnCount, ownerEl.maxRowCount, prevElLayoutInfo, layoutInfo);
77
77
  if (!equalElCoords(coords, this._coords)) {
78
78
  if (this.native !== undefined)
79
79
  Apply.coords(this, coords);
@@ -169,43 +169,43 @@ export class ElImpl {
169
169
  var _a, _b;
170
170
  const node = this.node;
171
171
  const prevEl = (_a = node.seat.prev) === null || _a === void 0 ? void 0 : _a.instance.element;
172
- const cursorPosition = (_b = prevEl === null || prevEl === void 0 ? void 0 : prevEl.cursorPosition) !== null && _b !== void 0 ? _b : InitialCursorPosition;
173
- const newCursorPosition = this.cursorPosition = new CursorPosition(cursorPosition);
174
- newCursorPosition.x = 1;
175
- newCursorPosition.y = newCursorPosition.runningMaxY + 1;
172
+ const prevElLayoutInfo = (_b = prevEl === null || prevEl === void 0 ? void 0 : prevEl.layoutInfo) !== null && _b !== void 0 ? _b : InitialElLayoutInfo;
173
+ const layoutInfo = this.layoutInfo = new ElLayoutInfo(prevElLayoutInfo);
174
+ layoutInfo.x = 1;
175
+ layoutInfo.y = layoutInfo.runningMaxY + 1;
176
176
  }
177
177
  }
178
- class CursorPosition {
178
+ class ElLayoutInfo {
179
179
  constructor(prev) {
180
180
  this.x = prev.x;
181
181
  this.y = prev.y;
182
182
  this.runningMaxX = prev.runningMaxX;
183
183
  this.runningMaxY = prev.runningMaxY;
184
- this.flags = prev.flags & ~CursorFlags.ownCursorPosition;
184
+ this.flags = prev.flags & ~ElLayoutInfoFlags.ownCursorPosition;
185
185
  }
186
186
  }
187
- var CursorFlags;
188
- (function (CursorFlags) {
189
- CursorFlags[CursorFlags["none"] = 0] = "none";
190
- CursorFlags[CursorFlags["ownCursorPosition"] = 1] = "ownCursorPosition";
191
- CursorFlags[CursorFlags["usesRunningColumnCount"] = 2] = "usesRunningColumnCount";
192
- CursorFlags[CursorFlags["usesRunningRowCount"] = 4] = "usesRunningRowCount";
193
- })(CursorFlags || (CursorFlags = {}));
187
+ var ElLayoutInfoFlags;
188
+ (function (ElLayoutInfoFlags) {
189
+ ElLayoutInfoFlags[ElLayoutInfoFlags["none"] = 0] = "none";
190
+ ElLayoutInfoFlags[ElLayoutInfoFlags["ownCursorPosition"] = 1] = "ownCursorPosition";
191
+ ElLayoutInfoFlags[ElLayoutInfoFlags["usesRunningColumnCount"] = 2] = "usesRunningColumnCount";
192
+ ElLayoutInfoFlags[ElLayoutInfoFlags["usesRunningRowCount"] = 4] = "usesRunningRowCount";
193
+ })(ElLayoutInfoFlags || (ElLayoutInfoFlags = {}));
194
194
  const UndefinedElCoords = Object.freeze({ x1: 0, y1: 0, x2: 0, y2: 0 });
195
- const InitialCursorPosition = Object.freeze(new CursorPosition({ x: 1, y: 1, runningMaxX: 0, runningMaxY: 0, flags: CursorFlags.none }));
196
- function getEffectiveElCoords(isRegularElement, area, maxX, maxY, cursorPosition, newCursorPosition) {
195
+ const InitialElLayoutInfo = Object.freeze(new ElLayoutInfo({ x: 1, y: 1, runningMaxX: 0, runningMaxY: 0, flags: ElLayoutInfoFlags.none }));
196
+ function getElCoordsAndAdjustLayoutInfo(isRegularElement, area, maxX, maxY, prevElLayoutInfo, layoutInfo) {
197
197
  var _a, _b;
198
198
  let result;
199
199
  if (typeof (area) === "string") {
200
200
  result = parseElCoords(area, { x1: 0, y1: 0, x2: 0, y2: 0 });
201
- absolutizeElCoords(result, cursorPosition.x, cursorPosition.y, maxX || Infinity, maxY || Infinity, result);
202
- if (newCursorPosition) {
203
- newCursorPosition.x = isRegularElement ? result.x2 + 1 : result.x1;
204
- newCursorPosition.y = result.y1;
205
- newCursorPosition.flags = CursorFlags.ownCursorPosition;
201
+ absolutizeElCoords(result, prevElLayoutInfo.x, prevElLayoutInfo.y, maxX || Infinity, maxY || Infinity, result);
202
+ if (layoutInfo) {
203
+ layoutInfo.x = isRegularElement ? result.x2 + 1 : result.x1;
204
+ layoutInfo.y = result.y1;
205
+ layoutInfo.flags = ElLayoutInfoFlags.ownCursorPosition;
206
206
  }
207
207
  }
208
- else if (newCursorPosition) {
208
+ else if (layoutInfo) {
209
209
  let dx;
210
210
  let dy;
211
211
  if (area) {
@@ -214,56 +214,56 @@ function getEffectiveElCoords(isRegularElement, area, maxX, maxY, cursorPosition
214
214
  }
215
215
  else
216
216
  dx = dy = 1;
217
- const runningX = maxX !== 0 ? maxX : cursorPosition.runningMaxX;
218
- const runningY = maxY !== 0 ? maxY : cursorPosition.runningMaxY;
217
+ const runningX = maxX !== 0 ? maxX : prevElLayoutInfo.runningMaxX;
218
+ const runningY = maxY !== 0 ? maxY : prevElLayoutInfo.runningMaxY;
219
219
  result = { x1: 0, y1: 0, x2: 0, y2: 0 };
220
220
  if (dx === 0 && isRegularElement) {
221
221
  dx = runningX || 1;
222
- newCursorPosition.flags = CursorFlags.usesRunningColumnCount;
222
+ layoutInfo.flags = ElLayoutInfoFlags.usesRunningColumnCount;
223
223
  }
224
224
  if (dx >= 0) {
225
225
  if (isRegularElement) {
226
- result.x1 = cursorPosition.x;
226
+ result.x1 = prevElLayoutInfo.x;
227
227
  result.x2 = absolutizePosition(result.x1 + dx - 1, 0, maxX || Infinity);
228
- newCursorPosition.x = result.x2 + 1;
228
+ layoutInfo.x = result.x2 + 1;
229
229
  }
230
230
  else {
231
- result.x1 = result.x2 = cursorPosition.x + dx;
232
- newCursorPosition.x = result.x2;
231
+ result.x1 = result.x2 = prevElLayoutInfo.x + dx;
232
+ layoutInfo.x = result.x2;
233
233
  }
234
234
  }
235
235
  else {
236
236
  if (isRegularElement) {
237
- result.x1 = Math.max(cursorPosition.x + dx, 1);
238
- result.x2 = cursorPosition.x;
239
- newCursorPosition.x = result.x2 + 1;
237
+ result.x1 = Math.max(prevElLayoutInfo.x + dx, 1);
238
+ result.x2 = prevElLayoutInfo.x;
239
+ layoutInfo.x = result.x2 + 1;
240
240
  }
241
241
  else {
242
- result.x1 = result.x2 = cursorPosition.x + dx;
243
- newCursorPosition.x = result.x2;
242
+ result.x1 = result.x2 = prevElLayoutInfo.x + dx;
243
+ layoutInfo.x = result.x2;
244
244
  }
245
245
  }
246
246
  if (dy === 0 && isRegularElement) {
247
247
  dy = runningY || 1;
248
- newCursorPosition.flags |= CursorFlags.usesRunningRowCount;
248
+ layoutInfo.flags |= ElLayoutInfoFlags.usesRunningRowCount;
249
249
  }
250
250
  if (dy >= 0) {
251
251
  if (isRegularElement) {
252
- result.y1 = cursorPosition.y;
252
+ result.y1 = prevElLayoutInfo.y;
253
253
  result.y2 = absolutizePosition(result.y1 + dy - 1, 0, maxY || Infinity);
254
- if (result.y2 > newCursorPosition.runningMaxY)
255
- newCursorPosition.runningMaxY = result.y2;
254
+ if (result.y2 > layoutInfo.runningMaxY)
255
+ layoutInfo.runningMaxY = result.y2;
256
256
  }
257
257
  else
258
- result.y1 = result.y2 = cursorPosition.y + dy;
258
+ result.y1 = result.y2 = prevElLayoutInfo.y + dy;
259
259
  }
260
260
  else {
261
261
  if (isRegularElement) {
262
- result.y1 = Math.max(cursorPosition.y + dy, 1);
263
- result.y2 = cursorPosition.y;
262
+ result.y1 = Math.max(prevElLayoutInfo.y + dy, 1);
263
+ result.y2 = prevElLayoutInfo.y;
264
264
  }
265
265
  else
266
- result.y1 = result.y2 = cursorPosition.y + dy;
266
+ result.y1 = result.y2 = prevElLayoutInfo.y + dy;
267
267
  }
268
268
  }
269
269
  else
@@ -2,27 +2,27 @@ import { RxNode, Mode } from "reactronic";
2
2
  import { Constants, CursorCommandDriver, ElKind, ElDriver } from "./El.js";
3
3
  import { HtmlElementDriver } from "./HtmlDriver.js";
4
4
  export function Section(declaration, preset) {
5
- return RxNode.declare(Drivers.section, declaration, preset);
5
+ return RxNode.child(Drivers.section, declaration, preset);
6
6
  }
7
7
  export function Table(declaration, preset) {
8
- return RxNode.declare(Drivers.table, declaration, preset);
8
+ return RxNode.child(Drivers.table, declaration, preset);
9
9
  }
10
10
  export function row(builder, shiftCursorDown) {
11
11
  startNewRow(shiftCursorDown);
12
12
  builder === null || builder === void 0 ? void 0 : builder();
13
13
  }
14
14
  export function startNewRow(shiftCursorDown) {
15
- RxNode.declare(Drivers.partition);
15
+ RxNode.child(Drivers.partition);
16
16
  }
17
17
  export function cursor(areaParams) {
18
- RxNode.declare(Drivers.cursor, {
18
+ RxNode.child(Drivers.cursor, {
19
19
  onChange: el => {
20
20
  el.area = areaParams;
21
21
  },
22
22
  });
23
23
  }
24
24
  export function Note(content, formatted, declaration) {
25
- return RxNode.declare(Drivers.note, declaration, {
25
+ return RxNode.child(Drivers.note, declaration, {
26
26
  onChange: el => {
27
27
  if (formatted)
28
28
  el.native.innerHTML = content;
@@ -32,13 +32,13 @@ export function Note(content, formatted, declaration) {
32
32
  });
33
33
  }
34
34
  export function Group(declaration, preset) {
35
- return RxNode.declare(Drivers.group, declaration, preset);
35
+ return RxNode.child(Drivers.group, declaration, preset);
36
36
  }
37
37
  export function Handling(onChange) {
38
38
  return SyntheticElement({ mode: Mode.independentUpdate, onChange });
39
39
  }
40
40
  export function SyntheticElement(declaration, preset) {
41
- return RxNode.declare(Drivers.synthetic, declaration, preset);
41
+ return RxNode.child(Drivers.synthetic, declaration, preset);
42
42
  }
43
43
  export class VerstakElementDriver extends HtmlElementDriver {
44
44
  update(node) {
@@ -3,181 +3,181 @@ import { ElKind } from "./El.js";
3
3
  import { HtmlElementDriver, StaticDriver, SvgElementDriver } from "./HtmlDriver.js";
4
4
  export function Page(declaration, preset) {
5
5
  const driver = new StaticDriver(global.document.body, "Page", false, el => el.kind = ElKind.section);
6
- return RxNode.declare(driver, declaration, preset);
6
+ return RxNode.child(driver, declaration, preset);
7
7
  }
8
- export function A(declaration, preset) { return RxNode.declare(HtmlTags.a, declaration, preset); }
9
- export function Abbr(declaration, preset) { return RxNode.declare(HtmlTags.abbr, declaration, preset); }
10
- export function Address(declaration, preset) { return RxNode.declare(HtmlTags.address, declaration, preset); }
11
- export function Area(declaration, preset) { return RxNode.declare(HtmlTags.area, declaration, preset); }
12
- export function Article(declaration, preset) { return RxNode.declare(HtmlTags.article, declaration, preset); }
13
- export function Aside(declaration, preset) { return RxNode.declare(HtmlTags.aside, declaration, preset); }
14
- export function Audio(declaration, preset) { return RxNode.declare(HtmlTags.audio, declaration, preset); }
15
- export function B(declaration, preset) { return RxNode.declare(HtmlTags.b, declaration, preset); }
16
- export function Base(declaration, preset) { return RxNode.declare(HtmlTags.base, declaration, preset); }
17
- export function Bdi(declaration, preset) { return RxNode.declare(HtmlTags.bdi, declaration, preset); }
18
- export function Bdo(declaration, preset) { return RxNode.declare(HtmlTags.bdo, declaration, preset); }
19
- export function Big(declaration, preset) { return RxNode.declare(HtmlTags.big, declaration, preset); }
20
- export function BlockQuote(declaration, preset) { return RxNode.declare(HtmlTags.blockquote, declaration, preset); }
21
- export function Body(declaration, preset) { return RxNode.declare(HtmlTags.body, declaration, preset); }
22
- export function BR(declaration, preset) { return RxNode.declare(HtmlTags.br, declaration, preset); }
23
- export function Button(declaration, preset) { return RxNode.declare(HtmlTags.button, declaration, preset); }
24
- export function Canvas(declaration, preset) { return RxNode.declare(HtmlTags.canvas, declaration, preset); }
25
- export function Caption(declaration, preset) { return RxNode.declare(HtmlTags.caption, declaration, preset); }
26
- export function Cite(declaration, preset) { return RxNode.declare(HtmlTags.cite, declaration, preset); }
27
- export function Code(declaration, preset) { return RxNode.declare(HtmlTags.code, declaration, preset); }
28
- export function Col(declaration, preset) { return RxNode.declare(HtmlTags.col, declaration, preset); }
29
- export function ColGroup(declaration, preset) { return RxNode.declare(HtmlTags.colgroup, declaration, preset); }
30
- export function Data(declaration, preset) { return RxNode.declare(HtmlTags.data, declaration, preset); }
31
- export function DataList(declaration, preset) { return RxNode.declare(HtmlTags.datalist, declaration, preset); }
32
- export function DD(declaration, preset) { return RxNode.declare(HtmlTags.dd, declaration, preset); }
33
- export function Del(declaration, preset) { return RxNode.declare(HtmlTags.del, declaration, preset); }
34
- export function Details(declaration, preset) { return RxNode.declare(HtmlTags.details, declaration, preset); }
35
- export function Dfn(declaration, preset) { return RxNode.declare(HtmlTags.dfn, declaration, preset); }
36
- export function Div(declaration, preset) { return RxNode.declare(HtmlTags.div, declaration, preset); }
37
- export function DL(declaration, preset) { return RxNode.declare(HtmlTags.dl, declaration, preset); }
38
- export function DT(declaration, preset) { return RxNode.declare(HtmlTags.dt, declaration, preset); }
39
- export function EM(declaration, preset) { return RxNode.declare(HtmlTags.em, declaration, preset); }
40
- export function Embed(declaration, preset) { return RxNode.declare(HtmlTags.embed, declaration, preset); }
41
- export function FieldSet(declaration, preset) { return RxNode.declare(HtmlTags.fieldset, declaration, preset); }
42
- export function FigCaption(declaration, preset) { return RxNode.declare(HtmlTags.figcaption, declaration, preset); }
43
- export function Figure(declaration, preset) { return RxNode.declare(HtmlTags.figure, declaration, preset); }
44
- export function Footer(declaration, preset) { return RxNode.declare(HtmlTags.footer, declaration, preset); }
45
- export function Form(declaration, preset) { return RxNode.declare(HtmlTags.form, declaration, preset); }
46
- export function H1(declaration, preset) { return RxNode.declare(HtmlTags.h1, declaration, preset); }
47
- export function H2(declaration, preset) { return RxNode.declare(HtmlTags.h2, declaration, preset); }
48
- export function H3(declaration, preset) { return RxNode.declare(HtmlTags.h3, declaration, preset); }
49
- export function H4(declaration, preset) { return RxNode.declare(HtmlTags.h4, declaration, preset); }
50
- export function H5(declaration, preset) { return RxNode.declare(HtmlTags.h5, declaration, preset); }
51
- export function H6(declaration, preset) { return RxNode.declare(HtmlTags.h6, declaration, preset); }
52
- export function Head(declaration, preset) { return RxNode.declare(HtmlTags.head, declaration, preset); }
53
- export function Header(declaration, preset) { return RxNode.declare(HtmlTags.header, declaration, preset); }
54
- export function HGroup(declaration, preset) { return RxNode.declare(HtmlTags.hgroup, declaration, preset); }
55
- export function HR(declaration, preset) { return RxNode.declare(HtmlTags.hr, declaration, preset); }
56
- export function Html(declaration, preset) { return RxNode.declare(HtmlTags.html, declaration, preset); }
57
- export function I(declaration, preset) { return RxNode.declare(HtmlTags.i, declaration, preset); }
58
- export function IFrame(declaration, preset) { return RxNode.declare(HtmlTags.iframe, declaration, preset); }
59
- export function Img(declaration, preset) { return RxNode.declare(HtmlTags.img, declaration, preset); }
60
- export function Input(declaration, preset) { return RxNode.declare(HtmlTags.input, declaration, preset); }
61
- export function Ins(declaration, preset) { return RxNode.declare(HtmlTags.ins, declaration, preset); }
62
- export function Kbd(declaration, preset) { return RxNode.declare(HtmlTags.kbd, declaration, preset); }
63
- export function KeyGen(declaration, preset) { return RxNode.declare(HtmlTags.keygen, declaration, preset); }
64
- export function Label(declaration, preset) { return RxNode.declare(HtmlTags.label, declaration, preset); }
65
- export function Legend(declaration, preset) { return RxNode.declare(HtmlTags.legend, declaration, preset); }
66
- export function LI(declaration, preset) { return RxNode.declare(HtmlTags.li, declaration, preset); }
67
- export function Link(declaration, preset) { return RxNode.declare(HtmlTags.link, declaration, preset); }
68
- export function Main(declaration, preset) { return RxNode.declare(HtmlTags.main, declaration, preset); }
69
- export function Map(declaration, preset) { return RxNode.declare(HtmlTags.map, declaration, preset); }
70
- export function Mark(declaration, preset) { return RxNode.declare(HtmlTags.mark, declaration, preset); }
71
- export function Menu(declaration, preset) { return RxNode.declare(HtmlTags.menu, declaration, preset); }
72
- export function MenuItem(declaration, preset) { return RxNode.declare(HtmlTags.menuitem, declaration, preset); }
73
- export function Meta(declaration, preset) { return RxNode.declare(HtmlTags.meta, declaration, preset); }
74
- export function Meter(declaration, preset) { return RxNode.declare(HtmlTags.meter, declaration, preset); }
75
- export function Nav(declaration, preset) { return RxNode.declare(HtmlTags.nav, declaration, preset); }
76
- export function NoIndex(declaration, preset) { return RxNode.declare(HtmlTags.noindex, declaration, preset); }
77
- export function NoScript(declaration, preset) { return RxNode.declare(HtmlTags.noscript, declaration, preset); }
78
- export function Obj(declaration, preset) { return RxNode.declare(HtmlTags.object, declaration, preset); }
79
- export function OL(declaration, preset) { return RxNode.declare(HtmlTags.ol, declaration, preset); }
80
- export function OptGroup(declaration, preset) { return RxNode.declare(HtmlTags.optgroup, declaration, preset); }
81
- export function Option(declaration, preset) { return RxNode.declare(HtmlTags.option, declaration, preset); }
82
- export function Output(declaration, preset) { return RxNode.declare(HtmlTags.output, declaration, preset); }
83
- export function P(declaration, preset) { return RxNode.declare(HtmlTags.p, declaration, preset); }
84
- export function Param(declaration, preset) { return RxNode.declare(HtmlTags.param, declaration, preset); }
85
- export function Picture(declaration, preset) { return RxNode.declare(HtmlTags.picture, declaration, preset); }
86
- export function Pre(declaration, preset) { return RxNode.declare(HtmlTags.pre, declaration, preset); }
87
- export function Progress(declaration, preset) { return RxNode.declare(HtmlTags.progress, declaration, preset); }
88
- export function Q(declaration, preset) { return RxNode.declare(HtmlTags.q, declaration, preset); }
89
- export function RP(declaration, preset) { return RxNode.declare(HtmlTags.rp, declaration, preset); }
90
- export function RT(declaration, preset) { return RxNode.declare(HtmlTags.rt, declaration, preset); }
91
- export function Ruby(declaration, preset) { return RxNode.declare(HtmlTags.ruby, declaration, preset); }
92
- export function S(declaration, preset) { return RxNode.declare(HtmlTags.s, declaration, preset); }
93
- export function Samp(declaration, preset) { return RxNode.declare(HtmlTags.samp, declaration, preset); }
94
- export function Script(declaration, preset) { return RxNode.declare(HtmlTags.script, declaration, preset); }
95
- export function Sctn(declaration, preset) { return RxNode.declare(HtmlTags.section, declaration, preset); }
96
- export function Select(declaration, preset) { return RxNode.declare(HtmlTags.select, declaration, preset); }
97
- export function Small(declaration, preset) { return RxNode.declare(HtmlTags.small, declaration, preset); }
98
- export function Source(declaration, preset) { return RxNode.declare(HtmlTags.source, declaration, preset); }
99
- export function Span(declaration, preset) { return RxNode.declare(HtmlTags.span, declaration, preset); }
100
- export function Strong(declaration, preset) { return RxNode.declare(HtmlTags.strong, declaration, preset); }
101
- export function Style(declaration, preset) { return RxNode.declare(HtmlTags.style, declaration, preset); }
102
- export function Sub(declaration, preset) { return RxNode.declare(HtmlTags.sub, declaration, preset); }
103
- export function Summary(declaration, preset) { return RxNode.declare(HtmlTags.summary, declaration, preset); }
104
- export function Sup(declaration, preset) { return RxNode.declare(HtmlTags.sup, declaration, preset); }
105
- export function Tbl(declaration, preset) { return RxNode.declare(HtmlTags.table, declaration, preset); }
106
- export function Template(declaration, preset) { return RxNode.declare(HtmlTags.template, declaration, preset); }
107
- export function TBody(declaration, preset) { return RxNode.declare(HtmlTags.tbody, declaration, preset); }
108
- export function TD(declaration, preset) { return RxNode.declare(HtmlTags.td, declaration, preset); }
109
- export function TextArea(declaration, preset) { return RxNode.declare(HtmlTags.textarea, declaration, preset); }
110
- export function TFoot(declaration, preset) { return RxNode.declare(HtmlTags.tfoot, declaration, preset); }
111
- export function TH(declaration, preset) { return RxNode.declare(HtmlTags.th, declaration, preset); }
112
- export function THead(declaration, preset) { return RxNode.declare(HtmlTags.thead, declaration, preset); }
113
- export function Time(declaration, preset) { return RxNode.declare(HtmlTags.time, declaration, preset); }
114
- export function Title(declaration, preset) { return RxNode.declare(HtmlTags.title, declaration, preset); }
115
- export function TR(declaration, preset) { return RxNode.declare(HtmlTags.tr, declaration, preset); }
116
- export function Track(declaration, preset) { return RxNode.declare(HtmlTags.track, declaration, preset); }
117
- export function U(declaration, preset) { return RxNode.declare(HtmlTags.u, declaration, preset); }
118
- export function UL(declaration, preset) { return RxNode.declare(HtmlTags.ul, declaration, preset); }
119
- export function Var(declaration, preset) { return RxNode.declare(HtmlTags.var, declaration, preset); }
120
- export function Video(declaration, preset) { return RxNode.declare(HtmlTags.video, declaration, preset); }
121
- export function Wbr(declaration, preset) { return RxNode.declare(HtmlTags.wbr, declaration, preset); }
122
- export function Svg(declaration, preset) { return RxNode.declare(SvgTags.svg, declaration, preset); }
123
- export function SvgA(declaration, preset) { return RxNode.declare(SvgTags.a, declaration, preset); }
124
- export function Animate(declaration, preset) { return RxNode.declare(SvgTags.animate, declaration, preset); }
125
- export function AnimateMotion(declaration, preset) { return RxNode.declare(SvgTags.animateMotion, declaration, preset); }
126
- export function AnimateTransform(declaration, preset) { return RxNode.declare(SvgTags.animateTransform, declaration, preset); }
127
- export function Circle(declaration, preset) { return RxNode.declare(SvgTags.circle, declaration, preset); }
128
- export function ClipPath(declaration, preset) { return RxNode.declare(SvgTags.clipPath, declaration, preset); }
129
- export function Defs(declaration, preset) { return RxNode.declare(SvgTags.defs, declaration, preset); }
130
- export function Desc(declaration, preset) { return RxNode.declare(SvgTags.desc, declaration, preset); }
131
- export function Ellipse(declaration, preset) { return RxNode.declare(SvgTags.ellipse, declaration, preset); }
132
- export function FeBlend(declaration, preset) { return RxNode.declare(SvgTags.feBlend, declaration, preset); }
133
- export function FeColorMatrix(declaration, preset) { return RxNode.declare(SvgTags.feColorMatrix, declaration, preset); }
134
- export function FeComponentTransfer(declaration, preset) { return RxNode.declare(SvgTags.feComponentTransfer, declaration, preset); }
135
- export function FeComposite(declaration, preset) { return RxNode.declare(SvgTags.feComposite, declaration, preset); }
136
- export function FeConvolveMatrix(declaration, preset) { return RxNode.declare(SvgTags.feConvolveMatrix, declaration, preset); }
137
- export function FeDiffuseLighting(declaration, preset) { return RxNode.declare(SvgTags.feDiffuseLighting, declaration, preset); }
138
- export function FeDisplacementMap(declaration, preset) { return RxNode.declare(SvgTags.feDisplacementMap, declaration, preset); }
139
- export function FeDistantLight(declaration, preset) { return RxNode.declare(SvgTags.feDistantLight, declaration, preset); }
140
- export function FeDropShadow(declaration, preset) { return RxNode.declare(SvgTags.feDropShadow, declaration, preset); }
141
- export function FeFlood(declaration, preset) { return RxNode.declare(SvgTags.feFlood, declaration, preset); }
142
- export function FeFuncA(declaration, preset) { return RxNode.declare(SvgTags.feFuncA, declaration, preset); }
143
- export function FeFuncB(declaration, preset) { return RxNode.declare(SvgTags.feFuncB, declaration, preset); }
144
- export function FeFuncG(declaration, preset) { return RxNode.declare(SvgTags.feFuncG, declaration, preset); }
145
- export function FeFuncR(declaration, preset) { return RxNode.declare(SvgTags.feFuncR, declaration, preset); }
146
- export function FeGaussianBlur(declaration, preset) { return RxNode.declare(SvgTags.feGaussianBlur, declaration, preset); }
147
- export function FeImage(declaration, preset) { return RxNode.declare(SvgTags.feImage, declaration, preset); }
148
- export function FeMerge(declaration, preset) { return RxNode.declare(SvgTags.feMerge, declaration, preset); }
149
- export function FeMergeNode(declaration, preset) { return RxNode.declare(SvgTags.feMergeNode, declaration, preset); }
150
- export function FeMorphology(declaration, preset) { return RxNode.declare(SvgTags.feMorphology, declaration, preset); }
151
- export function FeOffset(declaration, preset) { return RxNode.declare(SvgTags.feOffset, declaration, preset); }
152
- export function FePointLight(declaration, preset) { return RxNode.declare(SvgTags.fePointLight, declaration, preset); }
153
- export function FeSpecularLighting(declaration, preset) { return RxNode.declare(SvgTags.feSpecularLighting, declaration, preset); }
154
- export function FeSpotLight(declaration, preset) { return RxNode.declare(SvgTags.feSpotLight, declaration, preset); }
155
- export function FeTile(declaration, preset) { return RxNode.declare(SvgTags.feTile, declaration, preset); }
156
- export function FeTurbulence(declaration, preset) { return RxNode.declare(SvgTags.feTurbulence, declaration, preset); }
157
- export function Filter(declaration, preset) { return RxNode.declare(SvgTags.filter, declaration, preset); }
158
- export function ForeignObject(declaration, preset) { return RxNode.declare(SvgTags.foreignObject, declaration, preset); }
159
- export function G(declaration, preset) { return RxNode.declare(SvgTags.g, declaration, preset); }
160
- export function SvgImage(declaration, preset) { return RxNode.declare(SvgTags.image, declaration, preset); }
161
- export function SvgLine(declaration, preset) { return RxNode.declare(SvgTags.line, declaration, preset); }
162
- export function LinearGradient(declaration, preset) { return RxNode.declare(SvgTags.linearGradient, declaration, preset); }
163
- export function Marker(declaration, preset) { return RxNode.declare(SvgTags.marker, declaration, preset); }
164
- export function Mask(declaration, preset) { return RxNode.declare(SvgTags.mask, declaration, preset); }
165
- export function MetaData(declaration, preset) { return RxNode.declare(SvgTags.metadata, declaration, preset); }
166
- export function MPath(declaration, preset) { return RxNode.declare(SvgTags.mpath, declaration, preset); }
167
- export function Path(declaration, preset) { return RxNode.declare(SvgTags.path, declaration, preset); }
168
- export function Pattern(declaration, preset) { return RxNode.declare(SvgTags.pattern, declaration, preset); }
169
- export function Polygon(declaration, preset) { return RxNode.declare(SvgTags.polygon, declaration, preset); }
170
- export function PolyLine(declaration, preset) { return RxNode.declare(SvgTags.polyline, declaration, preset); }
171
- export function RadialGradient(declaration, preset) { return RxNode.declare(SvgTags.radialGradient, declaration, preset); }
172
- export function Rect(declaration, preset) { return RxNode.declare(SvgTags.rect, declaration, preset); }
173
- export function Stop(declaration, preset) { return RxNode.declare(SvgTags.stop, declaration, preset); }
174
- export function SvgSwitch(declaration, preset) { return RxNode.declare(SvgTags.switch, declaration, preset); }
175
- export function Symbol(declaration, preset) { return RxNode.declare(SvgTags.symbol, declaration, preset); }
176
- export function Text(declaration, preset) { return RxNode.declare(SvgTags.text, declaration, preset); }
177
- export function TextPath(declaration, preset) { return RxNode.declare(SvgTags.textPath, declaration, preset); }
178
- export function TSpan(declaration, preset) { return RxNode.declare(SvgTags.tspan, declaration, preset); }
179
- export function Use(declaration, preset) { return RxNode.declare(SvgTags.use, declaration, preset); }
180
- export function View(declaration, preset) { return RxNode.declare(SvgTags.view, declaration, preset); }
8
+ export function A(declaration, preset) { return RxNode.child(HtmlTags.a, declaration, preset); }
9
+ export function Abbr(declaration, preset) { return RxNode.child(HtmlTags.abbr, declaration, preset); }
10
+ export function Address(declaration, preset) { return RxNode.child(HtmlTags.address, declaration, preset); }
11
+ export function Area(declaration, preset) { return RxNode.child(HtmlTags.area, declaration, preset); }
12
+ export function Article(declaration, preset) { return RxNode.child(HtmlTags.article, declaration, preset); }
13
+ export function Aside(declaration, preset) { return RxNode.child(HtmlTags.aside, declaration, preset); }
14
+ export function Audio(declaration, preset) { return RxNode.child(HtmlTags.audio, declaration, preset); }
15
+ export function B(declaration, preset) { return RxNode.child(HtmlTags.b, declaration, preset); }
16
+ export function Base(declaration, preset) { return RxNode.child(HtmlTags.base, declaration, preset); }
17
+ export function Bdi(declaration, preset) { return RxNode.child(HtmlTags.bdi, declaration, preset); }
18
+ export function Bdo(declaration, preset) { return RxNode.child(HtmlTags.bdo, declaration, preset); }
19
+ export function Big(declaration, preset) { return RxNode.child(HtmlTags.big, declaration, preset); }
20
+ export function BlockQuote(declaration, preset) { return RxNode.child(HtmlTags.blockquote, declaration, preset); }
21
+ export function Body(declaration, preset) { return RxNode.child(HtmlTags.body, declaration, preset); }
22
+ export function BR(declaration, preset) { return RxNode.child(HtmlTags.br, declaration, preset); }
23
+ export function Button(declaration, preset) { return RxNode.child(HtmlTags.button, declaration, preset); }
24
+ export function Canvas(declaration, preset) { return RxNode.child(HtmlTags.canvas, declaration, preset); }
25
+ export function Caption(declaration, preset) { return RxNode.child(HtmlTags.caption, declaration, preset); }
26
+ export function Cite(declaration, preset) { return RxNode.child(HtmlTags.cite, declaration, preset); }
27
+ export function Code(declaration, preset) { return RxNode.child(HtmlTags.code, declaration, preset); }
28
+ export function Col(declaration, preset) { return RxNode.child(HtmlTags.col, declaration, preset); }
29
+ export function ColGroup(declaration, preset) { return RxNode.child(HtmlTags.colgroup, declaration, preset); }
30
+ export function Data(declaration, preset) { return RxNode.child(HtmlTags.data, declaration, preset); }
31
+ export function DataList(declaration, preset) { return RxNode.child(HtmlTags.datalist, declaration, preset); }
32
+ export function DD(declaration, preset) { return RxNode.child(HtmlTags.dd, declaration, preset); }
33
+ export function Del(declaration, preset) { return RxNode.child(HtmlTags.del, declaration, preset); }
34
+ export function Details(declaration, preset) { return RxNode.child(HtmlTags.details, declaration, preset); }
35
+ export function Dfn(declaration, preset) { return RxNode.child(HtmlTags.dfn, declaration, preset); }
36
+ export function Div(declaration, preset) { return RxNode.child(HtmlTags.div, declaration, preset); }
37
+ export function DL(declaration, preset) { return RxNode.child(HtmlTags.dl, declaration, preset); }
38
+ export function DT(declaration, preset) { return RxNode.child(HtmlTags.dt, declaration, preset); }
39
+ export function EM(declaration, preset) { return RxNode.child(HtmlTags.em, declaration, preset); }
40
+ export function Embed(declaration, preset) { return RxNode.child(HtmlTags.embed, declaration, preset); }
41
+ export function FieldSet(declaration, preset) { return RxNode.child(HtmlTags.fieldset, declaration, preset); }
42
+ export function FigCaption(declaration, preset) { return RxNode.child(HtmlTags.figcaption, declaration, preset); }
43
+ export function Figure(declaration, preset) { return RxNode.child(HtmlTags.figure, declaration, preset); }
44
+ export function Footer(declaration, preset) { return RxNode.child(HtmlTags.footer, declaration, preset); }
45
+ export function Form(declaration, preset) { return RxNode.child(HtmlTags.form, declaration, preset); }
46
+ export function H1(declaration, preset) { return RxNode.child(HtmlTags.h1, declaration, preset); }
47
+ export function H2(declaration, preset) { return RxNode.child(HtmlTags.h2, declaration, preset); }
48
+ export function H3(declaration, preset) { return RxNode.child(HtmlTags.h3, declaration, preset); }
49
+ export function H4(declaration, preset) { return RxNode.child(HtmlTags.h4, declaration, preset); }
50
+ export function H5(declaration, preset) { return RxNode.child(HtmlTags.h5, declaration, preset); }
51
+ export function H6(declaration, preset) { return RxNode.child(HtmlTags.h6, declaration, preset); }
52
+ export function Head(declaration, preset) { return RxNode.child(HtmlTags.head, declaration, preset); }
53
+ export function Header(declaration, preset) { return RxNode.child(HtmlTags.header, declaration, preset); }
54
+ export function HGroup(declaration, preset) { return RxNode.child(HtmlTags.hgroup, declaration, preset); }
55
+ export function HR(declaration, preset) { return RxNode.child(HtmlTags.hr, declaration, preset); }
56
+ export function Html(declaration, preset) { return RxNode.child(HtmlTags.html, declaration, preset); }
57
+ export function I(declaration, preset) { return RxNode.child(HtmlTags.i, declaration, preset); }
58
+ export function IFrame(declaration, preset) { return RxNode.child(HtmlTags.iframe, declaration, preset); }
59
+ export function Img(declaration, preset) { return RxNode.child(HtmlTags.img, declaration, preset); }
60
+ export function Input(declaration, preset) { return RxNode.child(HtmlTags.input, declaration, preset); }
61
+ export function Ins(declaration, preset) { return RxNode.child(HtmlTags.ins, declaration, preset); }
62
+ export function Kbd(declaration, preset) { return RxNode.child(HtmlTags.kbd, declaration, preset); }
63
+ export function KeyGen(declaration, preset) { return RxNode.child(HtmlTags.keygen, declaration, preset); }
64
+ export function Label(declaration, preset) { return RxNode.child(HtmlTags.label, declaration, preset); }
65
+ export function Legend(declaration, preset) { return RxNode.child(HtmlTags.legend, declaration, preset); }
66
+ export function LI(declaration, preset) { return RxNode.child(HtmlTags.li, declaration, preset); }
67
+ export function Link(declaration, preset) { return RxNode.child(HtmlTags.link, declaration, preset); }
68
+ export function Main(declaration, preset) { return RxNode.child(HtmlTags.main, declaration, preset); }
69
+ export function Map(declaration, preset) { return RxNode.child(HtmlTags.map, declaration, preset); }
70
+ export function Mark(declaration, preset) { return RxNode.child(HtmlTags.mark, declaration, preset); }
71
+ export function Menu(declaration, preset) { return RxNode.child(HtmlTags.menu, declaration, preset); }
72
+ export function MenuItem(declaration, preset) { return RxNode.child(HtmlTags.menuitem, declaration, preset); }
73
+ export function Meta(declaration, preset) { return RxNode.child(HtmlTags.meta, declaration, preset); }
74
+ export function Meter(declaration, preset) { return RxNode.child(HtmlTags.meter, declaration, preset); }
75
+ export function Nav(declaration, preset) { return RxNode.child(HtmlTags.nav, declaration, preset); }
76
+ export function NoIndex(declaration, preset) { return RxNode.child(HtmlTags.noindex, declaration, preset); }
77
+ export function NoScript(declaration, preset) { return RxNode.child(HtmlTags.noscript, declaration, preset); }
78
+ export function Obj(declaration, preset) { return RxNode.child(HtmlTags.object, declaration, preset); }
79
+ export function OL(declaration, preset) { return RxNode.child(HtmlTags.ol, declaration, preset); }
80
+ export function OptGroup(declaration, preset) { return RxNode.child(HtmlTags.optgroup, declaration, preset); }
81
+ export function Option(declaration, preset) { return RxNode.child(HtmlTags.option, declaration, preset); }
82
+ export function Output(declaration, preset) { return RxNode.child(HtmlTags.output, declaration, preset); }
83
+ export function P(declaration, preset) { return RxNode.child(HtmlTags.p, declaration, preset); }
84
+ export function Param(declaration, preset) { return RxNode.child(HtmlTags.param, declaration, preset); }
85
+ export function Picture(declaration, preset) { return RxNode.child(HtmlTags.picture, declaration, preset); }
86
+ export function Pre(declaration, preset) { return RxNode.child(HtmlTags.pre, declaration, preset); }
87
+ export function Progress(declaration, preset) { return RxNode.child(HtmlTags.progress, declaration, preset); }
88
+ export function Q(declaration, preset) { return RxNode.child(HtmlTags.q, declaration, preset); }
89
+ export function RP(declaration, preset) { return RxNode.child(HtmlTags.rp, declaration, preset); }
90
+ export function RT(declaration, preset) { return RxNode.child(HtmlTags.rt, declaration, preset); }
91
+ export function Ruby(declaration, preset) { return RxNode.child(HtmlTags.ruby, declaration, preset); }
92
+ export function S(declaration, preset) { return RxNode.child(HtmlTags.s, declaration, preset); }
93
+ export function Samp(declaration, preset) { return RxNode.child(HtmlTags.samp, declaration, preset); }
94
+ export function Script(declaration, preset) { return RxNode.child(HtmlTags.script, declaration, preset); }
95
+ export function Sctn(declaration, preset) { return RxNode.child(HtmlTags.section, declaration, preset); }
96
+ export function Select(declaration, preset) { return RxNode.child(HtmlTags.select, declaration, preset); }
97
+ export function Small(declaration, preset) { return RxNode.child(HtmlTags.small, declaration, preset); }
98
+ export function Source(declaration, preset) { return RxNode.child(HtmlTags.source, declaration, preset); }
99
+ export function Span(declaration, preset) { return RxNode.child(HtmlTags.span, declaration, preset); }
100
+ export function Strong(declaration, preset) { return RxNode.child(HtmlTags.strong, declaration, preset); }
101
+ export function Style(declaration, preset) { return RxNode.child(HtmlTags.style, declaration, preset); }
102
+ export function Sub(declaration, preset) { return RxNode.child(HtmlTags.sub, declaration, preset); }
103
+ export function Summary(declaration, preset) { return RxNode.child(HtmlTags.summary, declaration, preset); }
104
+ export function Sup(declaration, preset) { return RxNode.child(HtmlTags.sup, declaration, preset); }
105
+ export function Tbl(declaration, preset) { return RxNode.child(HtmlTags.table, declaration, preset); }
106
+ export function Template(declaration, preset) { return RxNode.child(HtmlTags.template, declaration, preset); }
107
+ export function TBody(declaration, preset) { return RxNode.child(HtmlTags.tbody, declaration, preset); }
108
+ export function TD(declaration, preset) { return RxNode.child(HtmlTags.td, declaration, preset); }
109
+ export function TextArea(declaration, preset) { return RxNode.child(HtmlTags.textarea, declaration, preset); }
110
+ export function TFoot(declaration, preset) { return RxNode.child(HtmlTags.tfoot, declaration, preset); }
111
+ export function TH(declaration, preset) { return RxNode.child(HtmlTags.th, declaration, preset); }
112
+ export function THead(declaration, preset) { return RxNode.child(HtmlTags.thead, declaration, preset); }
113
+ export function Time(declaration, preset) { return RxNode.child(HtmlTags.time, declaration, preset); }
114
+ export function Title(declaration, preset) { return RxNode.child(HtmlTags.title, declaration, preset); }
115
+ export function TR(declaration, preset) { return RxNode.child(HtmlTags.tr, declaration, preset); }
116
+ export function Track(declaration, preset) { return RxNode.child(HtmlTags.track, declaration, preset); }
117
+ export function U(declaration, preset) { return RxNode.child(HtmlTags.u, declaration, preset); }
118
+ export function UL(declaration, preset) { return RxNode.child(HtmlTags.ul, declaration, preset); }
119
+ export function Var(declaration, preset) { return RxNode.child(HtmlTags.var, declaration, preset); }
120
+ export function Video(declaration, preset) { return RxNode.child(HtmlTags.video, declaration, preset); }
121
+ export function Wbr(declaration, preset) { return RxNode.child(HtmlTags.wbr, declaration, preset); }
122
+ export function Svg(declaration, preset) { return RxNode.child(SvgTags.svg, declaration, preset); }
123
+ export function SvgA(declaration, preset) { return RxNode.child(SvgTags.a, declaration, preset); }
124
+ export function Animate(declaration, preset) { return RxNode.child(SvgTags.animate, declaration, preset); }
125
+ export function AnimateMotion(declaration, preset) { return RxNode.child(SvgTags.animateMotion, declaration, preset); }
126
+ export function AnimateTransform(declaration, preset) { return RxNode.child(SvgTags.animateTransform, declaration, preset); }
127
+ export function Circle(declaration, preset) { return RxNode.child(SvgTags.circle, declaration, preset); }
128
+ export function ClipPath(declaration, preset) { return RxNode.child(SvgTags.clipPath, declaration, preset); }
129
+ export function Defs(declaration, preset) { return RxNode.child(SvgTags.defs, declaration, preset); }
130
+ export function Desc(declaration, preset) { return RxNode.child(SvgTags.desc, declaration, preset); }
131
+ export function Ellipse(declaration, preset) { return RxNode.child(SvgTags.ellipse, declaration, preset); }
132
+ export function FeBlend(declaration, preset) { return RxNode.child(SvgTags.feBlend, declaration, preset); }
133
+ export function FeColorMatrix(declaration, preset) { return RxNode.child(SvgTags.feColorMatrix, declaration, preset); }
134
+ export function FeComponentTransfer(declaration, preset) { return RxNode.child(SvgTags.feComponentTransfer, declaration, preset); }
135
+ export function FeComposite(declaration, preset) { return RxNode.child(SvgTags.feComposite, declaration, preset); }
136
+ export function FeConvolveMatrix(declaration, preset) { return RxNode.child(SvgTags.feConvolveMatrix, declaration, preset); }
137
+ export function FeDiffuseLighting(declaration, preset) { return RxNode.child(SvgTags.feDiffuseLighting, declaration, preset); }
138
+ export function FeDisplacementMap(declaration, preset) { return RxNode.child(SvgTags.feDisplacementMap, declaration, preset); }
139
+ export function FeDistantLight(declaration, preset) { return RxNode.child(SvgTags.feDistantLight, declaration, preset); }
140
+ export function FeDropShadow(declaration, preset) { return RxNode.child(SvgTags.feDropShadow, declaration, preset); }
141
+ export function FeFlood(declaration, preset) { return RxNode.child(SvgTags.feFlood, declaration, preset); }
142
+ export function FeFuncA(declaration, preset) { return RxNode.child(SvgTags.feFuncA, declaration, preset); }
143
+ export function FeFuncB(declaration, preset) { return RxNode.child(SvgTags.feFuncB, declaration, preset); }
144
+ export function FeFuncG(declaration, preset) { return RxNode.child(SvgTags.feFuncG, declaration, preset); }
145
+ export function FeFuncR(declaration, preset) { return RxNode.child(SvgTags.feFuncR, declaration, preset); }
146
+ export function FeGaussianBlur(declaration, preset) { return RxNode.child(SvgTags.feGaussianBlur, declaration, preset); }
147
+ export function FeImage(declaration, preset) { return RxNode.child(SvgTags.feImage, declaration, preset); }
148
+ export function FeMerge(declaration, preset) { return RxNode.child(SvgTags.feMerge, declaration, preset); }
149
+ export function FeMergeNode(declaration, preset) { return RxNode.child(SvgTags.feMergeNode, declaration, preset); }
150
+ export function FeMorphology(declaration, preset) { return RxNode.child(SvgTags.feMorphology, declaration, preset); }
151
+ export function FeOffset(declaration, preset) { return RxNode.child(SvgTags.feOffset, declaration, preset); }
152
+ export function FePointLight(declaration, preset) { return RxNode.child(SvgTags.fePointLight, declaration, preset); }
153
+ export function FeSpecularLighting(declaration, preset) { return RxNode.child(SvgTags.feSpecularLighting, declaration, preset); }
154
+ export function FeSpotLight(declaration, preset) { return RxNode.child(SvgTags.feSpotLight, declaration, preset); }
155
+ export function FeTile(declaration, preset) { return RxNode.child(SvgTags.feTile, declaration, preset); }
156
+ export function FeTurbulence(declaration, preset) { return RxNode.child(SvgTags.feTurbulence, declaration, preset); }
157
+ export function Filter(declaration, preset) { return RxNode.child(SvgTags.filter, declaration, preset); }
158
+ export function ForeignObject(declaration, preset) { return RxNode.child(SvgTags.foreignObject, declaration, preset); }
159
+ export function G(declaration, preset) { return RxNode.child(SvgTags.g, declaration, preset); }
160
+ export function SvgImage(declaration, preset) { return RxNode.child(SvgTags.image, declaration, preset); }
161
+ export function SvgLine(declaration, preset) { return RxNode.child(SvgTags.line, declaration, preset); }
162
+ export function LinearGradient(declaration, preset) { return RxNode.child(SvgTags.linearGradient, declaration, preset); }
163
+ export function Marker(declaration, preset) { return RxNode.child(SvgTags.marker, declaration, preset); }
164
+ export function Mask(declaration, preset) { return RxNode.child(SvgTags.mask, declaration, preset); }
165
+ export function MetaData(declaration, preset) { return RxNode.child(SvgTags.metadata, declaration, preset); }
166
+ export function MPath(declaration, preset) { return RxNode.child(SvgTags.mpath, declaration, preset); }
167
+ export function Path(declaration, preset) { return RxNode.child(SvgTags.path, declaration, preset); }
168
+ export function Pattern(declaration, preset) { return RxNode.child(SvgTags.pattern, declaration, preset); }
169
+ export function Polygon(declaration, preset) { return RxNode.child(SvgTags.polygon, declaration, preset); }
170
+ export function PolyLine(declaration, preset) { return RxNode.child(SvgTags.polyline, declaration, preset); }
171
+ export function RadialGradient(declaration, preset) { return RxNode.child(SvgTags.radialGradient, declaration, preset); }
172
+ export function Rect(declaration, preset) { return RxNode.child(SvgTags.rect, declaration, preset); }
173
+ export function Stop(declaration, preset) { return RxNode.child(SvgTags.stop, declaration, preset); }
174
+ export function SvgSwitch(declaration, preset) { return RxNode.child(SvgTags.switch, declaration, preset); }
175
+ export function Symbol(declaration, preset) { return RxNode.child(SvgTags.symbol, declaration, preset); }
176
+ export function Text(declaration, preset) { return RxNode.child(SvgTags.text, declaration, preset); }
177
+ export function TextPath(declaration, preset) { return RxNode.child(SvgTags.textPath, declaration, preset); }
178
+ export function TSpan(declaration, preset) { return RxNode.child(SvgTags.tspan, declaration, preset); }
179
+ export function Use(declaration, preset) { return RxNode.child(SvgTags.use, declaration, preset); }
180
+ export function View(declaration, preset) { return RxNode.child(SvgTags.view, declaration, preset); }
181
181
  const HtmlTags = {
182
182
  a: new HtmlElementDriver("a", false, el => el.kind = ElKind.native),
183
183
  abbr: new HtmlElementDriver("abbr", false, el => el.kind = ElKind.native),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "verstak",
3
- "version": "0.24.260",
3
+ "version": "0.24.261",
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.24.260"
34
+ "reactronic": "^0.24.261"
35
35
  },
36
36
  "devDependencies": {
37
37
  "@types/node": "20.11.17",