marko 5.37.50 → 5.37.52

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (74) hide show
  1. package/dist/node_modules/@internal/components-beginComponent/index.js +6 -3
  2. package/dist/node_modules/@internal/components-define-widget-legacy/index-browser.js +45 -45
  3. package/dist/node_modules/@internal/components-define-widget-legacy/index.js +3 -3
  4. package/dist/node_modules/@internal/components-endComponent/index.js +2 -2
  5. package/dist/node_modules/@internal/components-entry/index-browser.js +2 -2
  6. package/dist/node_modules/@internal/components-entry/index.js +16 -16
  7. package/dist/node_modules/@internal/components-entry-legacy/index-browser.js +6 -6
  8. package/dist/node_modules/@internal/components-registry/index-browser.js +42 -42
  9. package/dist/node_modules/@internal/components-registry/index.js +2 -2
  10. package/dist/node_modules/@internal/components-util/index-browser.js +20 -20
  11. package/dist/node_modules/@internal/components-util/index.js +7 -7
  12. package/dist/node_modules/@internal/create-readable/index-browser.js +1 -1
  13. package/dist/node_modules/@internal/create-readable/index.js +9 -9
  14. package/dist/node_modules/@internal/preserve-tag/index-browser.js +6 -6
  15. package/dist/node_modules/@internal/preserve-tag/index.js +2 -2
  16. package/dist/node_modules/@internal/set-immediate/index-browser.js +1 -1
  17. package/dist/node_modules/@internal/set-immediate/index-worker.js +2 -2
  18. package/dist/node_modules/@internal/set-immediate/index.js +2 -2
  19. package/dist/runtime/RenderResult.js +3 -3
  20. package/dist/runtime/components/Component.js +144 -144
  21. package/dist/runtime/components/ComponentDef.js +24 -24
  22. package/dist/runtime/components/ComponentsContext.js +7 -7
  23. package/dist/runtime/components/GlobalComponentsContext.js +3 -3
  24. package/dist/runtime/components/KeySequence.js +3 -3
  25. package/dist/runtime/components/ServerComponent.js +22 -22
  26. package/dist/runtime/components/State.js +25 -25
  27. package/dist/runtime/components/attach-detach.js +7 -7
  28. package/dist/runtime/components/defineComponent.js +5 -5
  29. package/dist/runtime/components/dom-data.js +5 -5
  30. package/dist/runtime/components/event-delegation.js +10 -10
  31. package/dist/runtime/components/legacy/defineComponent-legacy.js +1 -1
  32. package/dist/runtime/components/legacy/defineRenderer-legacy.js +14 -14
  33. package/dist/runtime/components/legacy/dependencies/index.js +7 -7
  34. package/dist/runtime/components/legacy/renderer-legacy.js +36 -36
  35. package/dist/runtime/components/renderer.js +31 -31
  36. package/dist/runtime/components/update-manager.js +4 -4
  37. package/dist/runtime/createOut.js +1 -1
  38. package/dist/runtime/dom-insert.js +5 -5
  39. package/dist/runtime/helpers/_change-case.js +2 -2
  40. package/dist/runtime/helpers/dynamic-tag.js +11 -11
  41. package/dist/runtime/helpers/render-tag.js +1 -1
  42. package/dist/runtime/helpers/serialize-noop.js +2 -2
  43. package/dist/runtime/helpers/skip-serialize.js +2 -0
  44. package/dist/runtime/helpers/style-value.js +1 -1
  45. package/dist/runtime/helpers/tags-compat/runtime-dom.js +24 -24
  46. package/dist/runtime/helpers/tags-compat/runtime-html.js +24 -19
  47. package/dist/runtime/html/AsyncStream.js +22 -22
  48. package/dist/runtime/html/BufferedWriter.js +2 -2
  49. package/dist/runtime/html/helpers/_dynamic-attr.js +2 -2
  50. package/dist/runtime/html/helpers/attr.js +2 -2
  51. package/dist/runtime/html/helpers/data-marko.js +1 -1
  52. package/dist/runtime/html/helpers/escape-xml.js +1 -1
  53. package/dist/runtime/html/index.js +2 -2
  54. package/dist/runtime/renderable.js +3 -3
  55. package/dist/runtime/vdom/AsyncVDOMBuilder.js +91 -91
  56. package/dist/runtime/vdom/VComment.js +7 -7
  57. package/dist/runtime/vdom/VComponent.js +4 -4
  58. package/dist/runtime/vdom/VDocumentFragment.js +6 -6
  59. package/dist/runtime/vdom/VElement.js +36 -36
  60. package/dist/runtime/vdom/VFragment.js +9 -9
  61. package/dist/runtime/vdom/VNode.js +33 -33
  62. package/dist/runtime/vdom/VText.js +8 -8
  63. package/dist/runtime/vdom/helpers/const-element.js +3 -3
  64. package/dist/runtime/vdom/hot-reload.js +20 -20
  65. package/dist/runtime/vdom/index.js +2 -2
  66. package/dist/runtime/vdom/morphdom/fragment.js +5 -5
  67. package/dist/runtime/vdom/morphdom/helpers.js +5 -5
  68. package/dist/runtime/vdom/morphdom/index.js +74 -74
  69. package/dist/runtime/vdom/vdom.js +15 -15
  70. package/dist/translator/util/get-component-files.js +1 -1
  71. package/package.json +1 -1
  72. package/src/node_modules/@internal/components-beginComponent/index.js +5 -2
  73. package/src/runtime/helpers/skip-serialize.js +2 -0
  74. package/src/runtime/helpers/tags-compat/runtime-html.js +20 -15
@@ -3,21 +3,21 @@ var RenderResult = require("../RenderResult");
3
3
  var attrsHelper = require("./helpers/attrs");
4
4
  var morphdom = require("./morphdom");
5
5
  var vdom = require("./vdom");
6
- var VElement = vdom.by_;
7
- var VComment = vdom.bz_;
8
- var VDocumentFragment = vdom.bA_;
9
- var VText = vdom.bB_;
10
- var VComponent = vdom.bC_;
11
- var VFragment = vdom.bD_;
12
- var virtualizeHTML = vdom.bE_;
6
+ var VElement = vdom.bz_;
7
+ var VComment = vdom.bA_;
8
+ var VDocumentFragment = vdom.bB_;
9
+ var VText = vdom.bC_;
10
+ var VComponent = vdom.bD_;
11
+ var VFragment = vdom.bE_;
12
+ var virtualizeHTML = vdom.bF_;
13
13
 
14
14
  var EVENT_UPDATE = "update";
15
15
  var EVENT_FINISH = "finish";
16
16
 
17
17
  function State(tree) {
18
- this.bF_ = new EventEmitter();
19
- this.bG_ = tree;
20
- this.bH_ = false;
18
+ this.bG_ = new EventEmitter();
19
+ this.bH_ = tree;
20
+ this.bI_ = false;
21
21
  }
22
22
 
23
23
  function AsyncVDOMBuilder(globalData, parentNode, parentOut) {
@@ -28,49 +28,49 @@ function AsyncVDOMBuilder(globalData, parentNode, parentOut) {
28
28
  var state;
29
29
 
30
30
  if (parentOut) {
31
- state = parentOut.z_;
31
+ state = parentOut.A_;
32
32
  } else {
33
33
  state = new State(parentNode);
34
34
  }
35
35
 
36
- this.bI_ = 1;
37
- this.bJ_ = 0;
38
- this.bK_ = null;
39
- this.bL_ = parentOut;
36
+ this.bJ_ = 1;
37
+ this.bK_ = 0;
38
+ this.bL_ = null;
39
+ this.bM_ = parentOut;
40
40
 
41
41
  this.data = {};
42
- this.z_ = state;
43
- this.ac_ = parentNode;
42
+ this.A_ = state;
43
+ this.ad_ = parentNode;
44
44
  this.global = globalData || {};
45
- this.bM_ = [parentNode];
46
- this.bN_ = false;
47
- this.bO_ = undefined;
45
+ this.bN_ = [parentNode];
46
+ this.bO_ = false;
47
+ this.bP_ = undefined;
48
48
  this.b_ = null;
49
49
 
50
- this.aa_ = null;
51
50
  this.ab_ = null;
52
- this.bd_ = null;
51
+ this.ac_ = null;
52
+ this.be_ = null;
53
53
  }
54
54
 
55
55
  var proto = AsyncVDOMBuilder.prototype = {
56
- bu_: true,
57
- B_: typeof document === "object" && document,
56
+ bv_: true,
57
+ C_: typeof document === "object" && document,
58
58
 
59
59
  bc: function (component, key, ownerComponent) {
60
60
  var vComponent = new VComponent(component, key, ownerComponent);
61
- return this.bP_(vComponent, 0, true);
61
+ return this.bQ_(vComponent, 0, true);
62
62
  },
63
63
 
64
- be_: function (component, key, ownerComponent) {
64
+ bf_: function (component, key, ownerComponent) {
65
65
  var vComponent = new VComponent(component, key, ownerComponent, true);
66
- this.bP_(vComponent, 0);
66
+ this.bQ_(vComponent, 0);
67
67
  },
68
68
 
69
- bP_: function (child, childCount, pushToStack) {
70
- this.ac_.bQ_(child);
69
+ bQ_: function (child, childCount, pushToStack) {
70
+ this.ad_.bR_(child);
71
71
  if (pushToStack === true) {
72
- this.bM_.push(child);
73
- this.ac_ = child;
72
+ this.bN_.push(child);
73
+ this.ad_ = child;
74
74
  }
75
75
  return childCount === 0 ? this : child;
76
76
  },
@@ -85,10 +85,10 @@ var proto = AsyncVDOMBuilder.prototype = {
85
85
  flags,
86
86
  props
87
87
  );
88
- return this.bP_(element, childCount);
88
+ return this.bQ_(element, childCount);
89
89
  },
90
90
 
91
- bn_: function (tagName, attrs, key, componentDef, props) {
91
+ bo_: function (tagName, attrs, key, componentDef, props) {
92
92
  return this.element(
93
93
  tagName,
94
94
  attrsHelper(attrs),
@@ -103,15 +103,15 @@ var proto = AsyncVDOMBuilder.prototype = {
103
103
  n: function (node, component) {
104
104
  // NOTE: We do a shallow clone since we assume the node is being reused
105
105
  // and a node can only have one parent node.
106
- var clone = node.bR_();
106
+ var clone = node.bS_();
107
107
  this.node(clone);
108
- clone._N_ = component;
108
+ clone._O_ = component;
109
109
 
110
110
  return this;
111
111
  },
112
112
 
113
113
  node: function (node) {
114
- this.ac_.bQ_(node);
114
+ this.ad_.bR_(node);
115
115
  return this;
116
116
  },
117
117
 
@@ -130,7 +130,7 @@ var proto = AsyncVDOMBuilder.prototype = {
130
130
  text = text.toString();
131
131
  }
132
132
 
133
- this.ac_.bQ_(new VText(text, ownerComponent));
133
+ this.ad_.bR_(new VText(text, ownerComponent));
134
134
  return this;
135
135
  },
136
136
 
@@ -165,11 +165,11 @@ var proto = AsyncVDOMBuilder.prototype = {
165
165
  flags,
166
166
  props
167
167
  );
168
- this.bP_(element, childCount, true);
168
+ this.bQ_(element, childCount, true);
169
169
  return this;
170
170
  },
171
171
 
172
- bl_: function (tagName, attrs, key, componentDef, props) {
172
+ bm_: function (tagName, attrs, key, componentDef, props) {
173
173
  return this.beginElement(
174
174
  tagName,
175
175
  attrsHelper(attrs),
@@ -183,7 +183,7 @@ var proto = AsyncVDOMBuilder.prototype = {
183
183
 
184
184
  bf: function (key, component, preserve) {
185
185
  var fragment = new VFragment(key, component, preserve);
186
- this.bP_(fragment, null, true);
186
+ this.bQ_(fragment, null, true);
187
187
  return this;
188
188
  },
189
189
 
@@ -192,52 +192,52 @@ var proto = AsyncVDOMBuilder.prototype = {
192
192
  },
193
193
 
194
194
  endElement: function () {
195
- var stack = this.bM_;
195
+ var stack = this.bN_;
196
196
  stack.pop();
197
- this.ac_ = stack[stack.length - 1];
197
+ this.ad_ = stack[stack.length - 1];
198
198
  },
199
199
 
200
200
  end: function () {
201
- this.ac_ = undefined;
201
+ this.ad_ = undefined;
202
202
 
203
- var remaining = --this.bI_;
204
- var parentOut = this.bL_;
203
+ var remaining = --this.bJ_;
204
+ var parentOut = this.bM_;
205
205
 
206
206
  if (remaining === 0) {
207
207
  if (parentOut) {
208
- parentOut.bS_();
208
+ parentOut.bT_();
209
209
  } else {
210
- this.bT_();
210
+ this.bU_();
211
211
  }
212
- } else if (remaining - this.bJ_ === 0) {
213
- this.bU_();
212
+ } else if (remaining - this.bK_ === 0) {
213
+ this.bV_();
214
214
  }
215
215
 
216
216
  return this;
217
217
  },
218
218
 
219
- bS_: function () {
220
- var remaining = --this.bI_;
219
+ bT_: function () {
220
+ var remaining = --this.bJ_;
221
221
 
222
222
  if (remaining === 0) {
223
- var parentOut = this.bL_;
223
+ var parentOut = this.bM_;
224
224
  if (parentOut) {
225
- parentOut.bS_();
225
+ parentOut.bT_();
226
226
  } else {
227
- this.bT_();
227
+ this.bU_();
228
228
  }
229
- } else if (remaining - this.bJ_ === 0) {
230
- this.bU_();
229
+ } else if (remaining - this.bK_ === 0) {
230
+ this.bV_();
231
231
  }
232
232
  },
233
233
 
234
- bT_: function () {
235
- var state = this.z_;
236
- state.bH_ = true;
237
- state.bF_.emit(EVENT_FINISH, this.n_());
234
+ bU_: function () {
235
+ var state = this.A_;
236
+ state.bI_ = true;
237
+ state.bG_.emit(EVENT_FINISH, this.n_());
238
238
  },
239
239
 
240
- bU_: function () {
240
+ bV_: function () {
241
241
  var lastArray = this._last;
242
242
 
243
243
  var i = 0;
@@ -272,26 +272,26 @@ var proto = AsyncVDOMBuilder.prototype = {
272
272
  },
273
273
 
274
274
  beginAsync: function (options) {
275
- if (this.bN_) {
275
+ if (this.bO_) {
276
276
  throw Error(
277
277
  "Tried to render async while in sync mode. Note: Client side await is not currently supported in re-renders (Issue: #942)."
278
278
  );
279
279
  }
280
280
 
281
- var state = this.z_;
281
+ var state = this.A_;
282
282
 
283
283
  if (options) {
284
284
  if (options.last) {
285
- this.bJ_++;
285
+ this.bK_++;
286
286
  }
287
287
  }
288
288
 
289
- this.bI_++;
289
+ this.bJ_++;
290
290
 
291
- var documentFragment = this.ac_.bV_();
291
+ var documentFragment = this.ad_.bW_();
292
292
  var asyncOut = new AsyncVDOMBuilder(this.global, documentFragment, this);
293
293
 
294
- state.bF_.emit("beginAsync", {
294
+ state.bG_.emit("beginAsync", {
295
295
  out: asyncOut,
296
296
  parentOut: this
297
297
  });
@@ -304,51 +304,51 @@ var proto = AsyncVDOMBuilder.prototype = {
304
304
  },
305
305
 
306
306
  flush: function () {
307
- var events = this.z_.bF_;
307
+ var events = this.A_.bG_;
308
308
 
309
309
  if (events.listenerCount(EVENT_UPDATE)) {
310
310
  events.emit(EVENT_UPDATE, new RenderResult(this));
311
311
  }
312
312
  },
313
313
 
314
- ai_: function () {
315
- return this.z_.bG_;
314
+ aj_: function () {
315
+ return this.A_.bH_;
316
316
  },
317
317
 
318
318
  n_: function () {
319
- return this.bW_ || (this.bW_ = new RenderResult(this));
319
+ return this.bX_ || (this.bX_ = new RenderResult(this));
320
320
  },
321
321
 
322
322
  on: function (event, callback) {
323
- var state = this.z_;
323
+ var state = this.A_;
324
324
 
325
- if (event === EVENT_FINISH && state.bH_) {
325
+ if (event === EVENT_FINISH && state.bI_) {
326
326
  callback(this.n_());
327
327
  } else if (event === "last") {
328
328
  this.onLast(callback);
329
329
  } else {
330
- state.bF_.on(event, callback);
330
+ state.bG_.on(event, callback);
331
331
  }
332
332
 
333
333
  return this;
334
334
  },
335
335
 
336
336
  once: function (event, callback) {
337
- var state = this.z_;
337
+ var state = this.A_;
338
338
 
339
- if (event === EVENT_FINISH && state.bH_) {
339
+ if (event === EVENT_FINISH && state.bI_) {
340
340
  callback(this.n_());
341
341
  } else if (event === "last") {
342
342
  this.onLast(callback);
343
343
  } else {
344
- state.bF_.once(event, callback);
344
+ state.bG_.once(event, callback);
345
345
  }
346
346
 
347
347
  return this;
348
348
  },
349
349
 
350
350
  emit: function (type, arg) {
351
- var events = this.z_.bF_;
351
+ var events = this.A_.bG_;
352
352
  switch (arguments.length) {
353
353
  case 1:
354
354
  events.emit(type);
@@ -364,17 +364,17 @@ var proto = AsyncVDOMBuilder.prototype = {
364
364
  },
365
365
 
366
366
  removeListener: function () {
367
- var events = this.z_.bF_;
367
+ var events = this.A_.bG_;
368
368
  events.removeListener.apply(events, arguments);
369
369
  return this;
370
370
  },
371
371
 
372
372
  sync: function () {
373
- this.bN_ = true;
373
+ this.bO_ = true;
374
374
  },
375
375
 
376
376
  isSync: function () {
377
- return this.bN_;
377
+ return this.bO_;
378
378
  },
379
379
 
380
380
  onLast: function (callback) {
@@ -389,20 +389,20 @@ var proto = AsyncVDOMBuilder.prototype = {
389
389
  return this;
390
390
  },
391
391
 
392
- ah_: function (host) {
393
- var node = this.bO_;
392
+ ai_: function (host) {
393
+ var node = this.bP_;
394
394
  if (!node) {
395
- var vdomTree = this.ai_();
395
+ var vdomTree = this.aj_();
396
396
 
397
- if (!host) host = this.B_;
398
- this.bO_ = node = vdomTree.bq_(host, null);
397
+ if (!host) host = this.C_;
398
+ this.bP_ = node = vdomTree.br_(host, null);
399
399
  morphdom(node, vdomTree, host, this.b_);
400
400
  }
401
401
  return node;
402
402
  },
403
403
 
404
404
  toString: function (host) {
405
- var docFragment = this.ah_(host);
405
+ var docFragment = this.ai_(host);
406
406
  var html = "";
407
407
 
408
408
  var child = docFragment.firstChild;
@@ -441,15 +441,15 @@ var proto = AsyncVDOMBuilder.prototype = {
441
441
  isVDOM: true,
442
442
 
443
443
  c: function (componentDef, key, customEvents) {
444
- this.aa_ = componentDef;
445
- this.ab_ = key;
446
- this.bd_ = customEvents;
444
+ this.ab_ = componentDef;
445
+ this.ac_ = key;
446
+ this.be_ = customEvents;
447
447
  }
448
448
  };
449
449
 
450
450
  proto.e = proto.element;
451
451
  proto.be = proto.beginElement;
452
- proto.ee = proto.bm_ = proto.endElement;
452
+ proto.ee = proto.bn_ = proto.endElement;
453
453
  proto.t = proto.text;
454
454
  proto.h = proto.w = proto.write = proto.html;
455
455
 
@@ -2,20 +2,20 @@
2
2
  var inherit = require("raptor-util/inherit");
3
3
 
4
4
  function VComment(value, ownerComponent) {
5
- this.bX_(-1 /* no children */, ownerComponent);
6
- this.bY_ = value;
5
+ this.bY_(-1 /* no children */, ownerComponent);
6
+ this.bZ_ = value;
7
7
  }
8
8
 
9
9
  VComment.prototype = {
10
- bZ_: 8,
10
+ c__: 8,
11
11
 
12
- bq_: function (host) {
13
- var nodeValue = this.bY_;
12
+ br_: function (host) {
13
+ var nodeValue = this.bZ_;
14
14
  return (host.ownerDocument || host).createComment(nodeValue);
15
15
  },
16
16
 
17
- bR_: function () {
18
- return new VComment(this.bY_);
17
+ bS_: function () {
18
+ return new VComment(this.bZ_);
19
19
  }
20
20
  };
21
21
 
@@ -2,14 +2,14 @@
2
2
  var VNode = require("./VNode");
3
3
 
4
4
  function VComponent(component, key, ownerComponent, preserve) {
5
- this.bX_(null /* childCount */, ownerComponent);
6
- this.c__ = key;
5
+ this.bY_(null /* childCount */, ownerComponent);
6
+ this.ca_ = key;
7
7
  this.s_ = component;
8
- this.ae_ = preserve;
8
+ this.af_ = preserve;
9
9
  }
10
10
 
11
11
  VComponent.prototype = {
12
- bZ_: 2
12
+ c__: 2
13
13
  };
14
14
 
15
15
  inherit(VComponent, VNode);
@@ -4,25 +4,25 @@ var VNode = require("./VNode");
4
4
 
5
5
  function VDocumentFragmentClone(other) {
6
6
  extend(this, other);
7
- this.ca_ = null;
8
7
  this.cb_ = null;
8
+ this.cc_ = null;
9
9
  }
10
10
 
11
11
  function VDocumentFragment(out) {
12
- this.bX_(null /* childCount */);
12
+ this.bY_(null /* childCount */);
13
13
  this.r_ = out;
14
14
  }
15
15
 
16
16
  VDocumentFragment.prototype = {
17
- bZ_: 11,
17
+ c__: 11,
18
18
 
19
- cc_: true,
19
+ cd_: true,
20
20
 
21
- bR_: function () {
21
+ bS_: function () {
22
22
  return new VDocumentFragmentClone(this);
23
23
  },
24
24
 
25
- bq_: function (host) {
25
+ br_: function (host) {
26
26
  return (host.ownerDocument || host).createDocumentFragment();
27
27
  }
28
28
  };
@@ -3,7 +3,7 @@
3
3
  var inherit = require("raptor-util/inherit");
4
4
  var componentsUtil = require("@internal/components-util");
5
5
  var domData = require("../components/dom-data");
6
- var vElementByDOMNode = domData._L_;
6
+ var vElementByDOMNode = domData._M_;
7
7
  var VNode = require("./VNode");
8
8
  var isTextOnly = require("./is-text-only");
9
9
  var ATTR_XLINK_HREF = "xlink:href";
@@ -81,17 +81,17 @@ function assign(a, b) {
81
81
  }
82
82
 
83
83
  function VElementClone(other) {
84
- this.cd_ = other.cd_;
85
- this.ca_ = null;
84
+ this.ce_ = other.ce_;
86
85
  this.cb_ = null;
86
+ this.cc_ = null;
87
87
 
88
- this.c__ = other.c__;
89
- this.ce_ = other.ce_;
90
- this._P_ = other._P_;
88
+ this.ca_ = other.ca_;
91
89
  this.cf_ = other.cf_;
92
- this.u_ = other.u_;
90
+ this._Q_ = other._Q_;
93
91
  this.cg_ = other.cg_;
92
+ this.u_ = other.u_;
94
93
  this.ch_ = other.ch_;
94
+ this.ci_ = other.ci_;
95
95
  }
96
96
 
97
97
  function VElement(
@@ -103,7 +103,7 @@ childCount,
103
103
  flags,
104
104
  props)
105
105
  {
106
- this.bX_(childCount, ownerComponent);
106
+ this.bY_(childCount, ownerComponent);
107
107
 
108
108
  var constId;
109
109
 
@@ -111,21 +111,21 @@ props)
111
111
  constId = props.i;
112
112
  }
113
113
 
114
- this.c__ = key;
114
+ this.ca_ = key;
115
115
  this.u_ = flags || 0;
116
- this.ce_ = attrs || EMPTY_OBJECT;
117
- this._P_ = props || EMPTY_OBJECT;
118
- this.cf_ = tagName;
119
- this.cg_ = "";
120
- this.ch_ = constId;
116
+ this.cf_ = attrs || EMPTY_OBJECT;
117
+ this._Q_ = props || EMPTY_OBJECT;
118
+ this.cg_ = tagName;
119
+ this.ch_ = "";
120
+ this.ci_ = constId;
121
+ this.af_ = false;
121
122
  this.ae_ = false;
122
- this.ad_ = false;
123
123
  }
124
124
 
125
125
  VElement.prototype = {
126
- bZ_: 1,
126
+ c__: 1,
127
127
 
128
- bR_: function () {
128
+ bS_: function () {
129
129
  return new VElementClone(this);
130
130
  },
131
131
 
@@ -137,7 +137,7 @@ VElement.prototype = {
137
137
  * @param {int|null} childCount The number of child nodes (or `null` if not known)
138
138
  */
139
139
  e: function (tagName, attrs, key, ownerComponent, childCount, flags, props) {
140
- var child = this.bQ_(
140
+ var child = this.bR_(
141
141
  new VElement(
142
142
  tagName,
143
143
  attrs,
@@ -150,7 +150,7 @@ VElement.prototype = {
150
150
  );
151
151
 
152
152
  if (childCount === 0) {
153
- return this.ci_();
153
+ return this.cj_();
154
154
  } else {
155
155
  return child;
156
156
  }
@@ -163,15 +163,15 @@ VElement.prototype = {
163
163
  * @param {String} value The value for the new Comment node
164
164
  */
165
165
  n: function (node, ownerComponent) {
166
- node = node.bR_();
167
- node._N_ = ownerComponent;
168
- this.bQ_(node);
169
- return this.ci_();
166
+ node = node.bS_();
167
+ node._O_ = ownerComponent;
168
+ this.bR_(node);
169
+ return this.cj_();
170
170
  },
171
171
 
172
- bq_: function (host, parentNamespaceURI) {
173
- var tagName = this.cf_;
174
- var attributes = this.ce_;
172
+ br_: function (host, parentNamespaceURI) {
173
+ var tagName = this.cg_;
174
+ var attributes = this.cf_;
175
175
  var namespaceURI = DEFAULT_NS[tagName] || parentNamespaceURI || NS_HTML;
176
176
 
177
177
  var flags = this.u_;
@@ -196,7 +196,7 @@ VElement.prototype = {
196
196
  }
197
197
 
198
198
  if (isTextOnly(tagName)) {
199
- el.textContent = this.cg_;
199
+ el.textContent = this.ch_;
200
200
  }
201
201
  }
202
202
 
@@ -224,7 +224,7 @@ function virtualizeElement(node, virtualizeChildNodes, ownerComponent) {
224
224
  var attrName = attr.name;
225
225
  if (!xmlnsRegExp.test(attrName)) {
226
226
  if (attrName === "data-marko") {
227
- props = componentsUtil._s_(node);
227
+ props = componentsUtil._t_(node);
228
228
  } else if (attr.namespaceURI === NS_XLINK) {
229
229
  attrs[ATTR_XLINK_HREF] = attr.value;
230
230
  } else {
@@ -251,7 +251,7 @@ function virtualizeElement(node, virtualizeChildNodes, ownerComponent) {
251
251
  );
252
252
 
253
253
  if (isTextOnly(tagName)) {
254
- vdomEl.cg_ = node.textContent;
254
+ vdomEl.ch_ = node.textContent;
255
255
  } else if (virtualizeChildNodes) {
256
256
  virtualizeChildNodes(node, vdomEl, ownerComponent);
257
257
  }
@@ -259,18 +259,18 @@ function virtualizeElement(node, virtualizeChildNodes, ownerComponent) {
259
259
  return vdomEl;
260
260
  }
261
261
 
262
- VElement.cj_ = virtualizeElement;
262
+ VElement.ck_ = virtualizeElement;
263
263
 
264
- VElement.ck_ = function (fromEl, vFromEl, toEl) {
264
+ VElement.cl_ = function (fromEl, vFromEl, toEl) {
265
265
  var fromFlags = vFromEl.u_;
266
266
  var toFlags = toEl.u_;
267
- var attrs = toEl.ce_;
267
+ var attrs = toEl.cf_;
268
268
 
269
269
  if (toFlags & FLAG_CUSTOM_ELEMENT) {
270
270
  return assign(fromEl, attrs);
271
271
  }
272
272
 
273
- var props = toEl._P_;
273
+ var props = toEl._Q_;
274
274
  var attrName;
275
275
 
276
276
  // We use expando properties to associate the previous HTML
@@ -281,7 +281,7 @@ VElement.ck_ = function (fromEl, vFromEl, toEl) {
281
281
  // real VElement node will not have the expando property
282
282
  // so we build the attribute map from the expando property
283
283
 
284
- var oldAttrs = vFromEl.ce_;
284
+ var oldAttrs = vFromEl.cf_;
285
285
 
286
286
  if (oldAttrs === attrs) {
287
287
  // For constant attributes the same object will be provided
@@ -319,7 +319,7 @@ VElement.ck_ = function (fromEl, vFromEl, toEl) {
319
319
  }
320
320
 
321
321
  var preserve = props && props.pa || EMPTY_OBJECT;
322
- var specialAttrs = specialElHandlers[toEl.cf_] || EMPTY_OBJECT;
322
+ var specialAttrs = specialElHandlers[toEl.cg_] || EMPTY_OBJECT;
323
323
  var specialAttr;
324
324
 
325
325
  // Loop over all of the attributes in the attribute map and compare
@@ -356,7 +356,7 @@ VElement.ck_ = function (fromEl, vFromEl, toEl) {
356
356
  // was not a virtualized node (i.e., a node that was not rendered by a
357
357
  // Marko template, but rather a node that was created from an HTML
358
358
  // string or a real DOM node).
359
- if (toEl.c__ === null || fromFlags & FLAG_SPREAD_ATTRS) {
359
+ if (toEl.ca_ === null || fromFlags & FLAG_SPREAD_ATTRS) {
360
360
  for (attrName in oldAttrs) {
361
361
  if (!(attrName in attrs)) {
362
362
  if (specialAttr = specialAttrs[attrName]) {