marko 5.32.15 → 5.33.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (34) hide show
  1. package/bin/markoc +1 -1
  2. package/dist/node_modules/@internal/components-entry/index.js +5 -7
  3. package/dist/runtime/helpers/dynamic-tag.js +5 -1
  4. package/dist/runtime/helpers/tags-compat-dom.js +265 -0
  5. package/dist/runtime/helpers/tags-compat-html.js +167 -0
  6. package/dist/runtime/html/AsyncStream.js +96 -13
  7. package/dist/runtime/html/helpers/_dynamic-attr.js +2 -2
  8. package/dist/runtime/html/helpers/attr.js +3 -3
  9. package/dist/runtime/html/helpers/data-marko.js +1 -1
  10. package/dist/runtime/html/helpers/escape-quotes.js +1 -1
  11. package/dist/runtime/html/helpers/escape-xml.js +1 -1
  12. package/dist/runtime/renderable.js +52 -3
  13. package/dist/runtime/vdom/AsyncVDOMBuilder.js +67 -67
  14. package/dist/runtime/vdom/VComponent.js +3 -3
  15. package/dist/runtime/vdom/VDocumentFragment.js +7 -7
  16. package/dist/runtime/vdom/VElement.js +35 -35
  17. package/dist/runtime/vdom/VFragment.js +5 -5
  18. package/dist/runtime/vdom/VNode.js +31 -31
  19. package/dist/runtime/vdom/VText.js +8 -8
  20. package/dist/runtime/vdom/helpers/const-element.js +3 -3
  21. package/dist/runtime/vdom/hot-reload.js +2 -2
  22. package/dist/runtime/vdom/morphdom/fragment.js +3 -3
  23. package/dist/runtime/vdom/morphdom/helpers.js +1 -1
  24. package/dist/runtime/vdom/morphdom/index.js +31 -31
  25. package/dist/runtime/vdom/vdom.js +14 -14
  26. package/docs/compiler.md +1 -1
  27. package/index.d.ts +4 -6
  28. package/package.json +83 -83
  29. package/src/node_modules/@internal/components-entry/index.js +5 -7
  30. package/src/runtime/helpers/dynamic-tag.js +5 -1
  31. package/src/runtime/helpers/tags-compat-dom.js +265 -0
  32. package/src/runtime/helpers/tags-compat-html.js +167 -0
  33. package/src/runtime/html/AsyncStream.js +87 -4
  34. package/src/runtime/renderable.js +49 -0
@@ -2,13 +2,13 @@
2
2
 
3
3
  var escapeQuoteHelpers = require("./escape-quotes");
4
4
  var escapeDoubleQuotes = escapeQuoteHelpers.m_;
5
- var escapeSingleQuotes = escapeQuoteHelpers.bq_;
5
+ var escapeSingleQuotes = escapeQuoteHelpers.bB_;
6
6
 
7
7
 
8
8
  module.exports = maybeEmptyAttr;
9
9
 
10
- maybeEmptyAttr.bo_ = notEmptyAttr;
11
- maybeEmptyAttr.bp_ = isEmpty;
10
+ maybeEmptyAttr.bz_ = notEmptyAttr;
11
+ maybeEmptyAttr.bA_ = isEmpty;
12
12
 
13
13
  function maybeEmptyAttr(name, value) {
14
14
  if (isEmpty(value)) {
@@ -1,7 +1,7 @@
1
1
  "use strict";
2
2
 
3
3
  var escapeQuoteHelpers = require("./escape-quotes");
4
- var escapeSingleQuotes = escapeQuoteHelpers.bq_;
4
+ var escapeSingleQuotes = escapeQuoteHelpers.bB_;
5
5
  var escapeDoubleQuotes = escapeQuoteHelpers.m_;
6
6
  var FLAG_WILL_RERENDER_IN_BROWSER = 1;
7
7
  // var FLAG_HAS_RENDER_BODY = 2;
@@ -6,7 +6,7 @@ exports.d = function (value) {
6
6
 
7
7
  exports.m_ = escapeDoubleQuotes;
8
8
 
9
- exports.bq_ = escapeSingleQuotes;
9
+ exports.bB_ = escapeSingleQuotes;
10
10
 
11
11
  function escapeSingleQuotes(value, startPos) {
12
12
  return escapeQuote(value, startPos, "'", "'");
@@ -12,7 +12,7 @@ module.exports.x = function (value) {
12
12
  return escapeXML(value + "");
13
13
  };
14
14
 
15
- exports.bk_ = escapeXML;
15
+ exports.bu_ = escapeXML;
16
16
 
17
17
  function escapeXML(str) {
18
18
  var len = str.length;
@@ -73,7 +73,56 @@ module.exports = function (target, renderer) {
73
73
  }
74
74
 
75
75
  render(localData, out);
76
- return out.bn_();
76
+ return out.by_();
77
+ },
78
+
79
+ /**
80
+ * Renders a template to nodes and inserts them into the DOM relative
81
+ * to the provided reference based on the optional position parameter.
82
+ *
83
+ * Supported signatures:
84
+ *
85
+ * mount(data, reference)
86
+ * mount(data, reference, position)
87
+ *
88
+ * @param {Object} data The view model data for the template
89
+ * @param {Node} reference DOM node to insert the rendered node(s) relative to
90
+ * @param {string} [position] A string representing the position relative to the `reference`; must match (case-insensitively) one of the following strings:
91
+ * 'beforebegin': Before the targetElement itself.
92
+ * 'afterbegin': Just inside the targetElement, before its first child.
93
+ * 'beforeend': Just inside the targetElement, after its last child.
94
+ * 'afterend': After the targetElement itself.
95
+ * @return {TemplateInstance} Object with `update` and `dispose` methods
96
+ */
97
+ mount: function (data, reference, position) {
98
+ const result = this.renderSync(data);
99
+
100
+ switch (position) {
101
+ case "afterbegin":
102
+ result.prependTo(reference);
103
+ break;
104
+ case "afterend":
105
+ result.insertAfter(reference);
106
+ break;
107
+ case "beforebegin":
108
+ result.insertBefore(reference);
109
+ break;
110
+ default:
111
+ result.appendTo(reference);
112
+ break;
113
+ }
114
+
115
+ const component = result.getComponent();
116
+
117
+ return {
118
+ update(input) {
119
+ component.input = input;
120
+ component.update();
121
+ },
122
+ destroy() {
123
+ component.destroy();
124
+ }
125
+ };
77
126
  },
78
127
 
79
128
  /**
@@ -111,7 +160,7 @@ module.exports = function (target, renderer) {
111
160
  finalData = {};
112
161
  }
113
162
 
114
- if (out && out.bm_) {
163
+ if (out && out.bw_) {
115
164
  finalOut = out;
116
165
  shouldEnd = false;
117
166
  extend(out.global, globalData);
@@ -130,7 +179,7 @@ module.exports = function (target, renderer) {
130
179
  if (callback) {
131
180
  finalOut.
132
181
  on("finish", function () {
133
- callback(null, finalOut.bn_(), finalOut);
182
+ callback(null, finalOut.by_(), finalOut);
134
183
  }).
135
184
  once("error", callback);
136
185
  }
@@ -3,20 +3,20 @@ 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.br_;
7
- var VDocumentFragment = vdom.bs_;
8
- var VText = vdom.bt_;
9
- var VComponent = vdom.bu_;
10
- var VFragment = vdom.bv_;
11
- var virtualizeHTML = vdom.bw_;
6
+ var VElement = vdom.bC_;
7
+ var VDocumentFragment = vdom.bD_;
8
+ var VText = vdom.bE_;
9
+ var VComponent = vdom.bF_;
10
+ var VFragment = vdom.bG_;
11
+ var virtualizeHTML = vdom.bH_;
12
12
 
13
13
  var EVENT_UPDATE = "update";
14
14
  var EVENT_FINISH = "finish";
15
15
 
16
16
  function State(tree) {
17
- this.bx_ = new EventEmitter();
18
- this.by_ = tree;
19
- this.bz_ = false;
17
+ this.bI_ = new EventEmitter();
18
+ this.bJ_ = tree;
19
+ this.bK_ = false;
20
20
  }
21
21
 
22
22
  function AsyncVDOMBuilder(globalData, parentNode, parentOut) {
@@ -32,18 +32,18 @@ function AsyncVDOMBuilder(globalData, parentNode, parentOut) {
32
32
  state = new State(parentNode);
33
33
  }
34
34
 
35
- this.bA_ = 1;
36
- this.bB_ = 0;
37
- this.bC_ = null;
38
- this.bD_ = parentOut;
35
+ this.bL_ = 1;
36
+ this.bM_ = 0;
37
+ this.bN_ = null;
38
+ this.bO_ = parentOut;
39
39
 
40
40
  this.data = {};
41
41
  this.y_ = state;
42
42
  this._Z_ = parentNode;
43
43
  this.global = globalData || {};
44
- this.bE_ = [parentNode];
45
- this.bF_ = false;
46
- this.bG_ = undefined;
44
+ this.bP_ = [parentNode];
45
+ this.bQ_ = false;
46
+ this.bR_ = undefined;
47
47
  this.b_ = null;
48
48
 
49
49
  this._X_ = null;
@@ -52,23 +52,23 @@ function AsyncVDOMBuilder(globalData, parentNode, parentOut) {
52
52
  }
53
53
 
54
54
  var proto = AsyncVDOMBuilder.prototype = {
55
- bm_: true,
55
+ bw_: true,
56
56
  A_: typeof document === "object" && document,
57
57
 
58
58
  bc: function (component, key, ownerComponent) {
59
59
  var vComponent = new VComponent(component, key, ownerComponent);
60
- return this.bH_(vComponent, 0, true);
60
+ return this.bS_(vComponent, 0, true);
61
61
  },
62
62
 
63
63
  ba_: function (component, key, ownerComponent) {
64
64
  var vComponent = new VComponent(component, key, ownerComponent, true);
65
- this.bH_(vComponent, 0);
65
+ this.bS_(vComponent, 0);
66
66
  },
67
67
 
68
- bH_: function (child, childCount, pushToStack) {
69
- this._Z_.bI_(child);
68
+ bS_: function (child, childCount, pushToStack) {
69
+ this._Z_.bT_(child);
70
70
  if (pushToStack === true) {
71
- this.bE_.push(child);
71
+ this.bP_.push(child);
72
72
  this._Z_ = child;
73
73
  }
74
74
  return childCount === 0 ? this : child;
@@ -84,7 +84,7 @@ var proto = AsyncVDOMBuilder.prototype = {
84
84
  flags,
85
85
  props
86
86
  );
87
- return this.bH_(element, childCount);
87
+ return this.bS_(element, childCount);
88
88
  },
89
89
 
90
90
  bj_: function (tagName, attrs, key, componentDef, props) {
@@ -102,7 +102,7 @@ var proto = AsyncVDOMBuilder.prototype = {
102
102
  n: function (node, component) {
103
103
  // NOTE: We do a shallow clone since we assume the node is being reused
104
104
  // and a node can only have one parent node.
105
- var clone = node.bJ_();
105
+ var clone = node.bU_();
106
106
  this.node(clone);
107
107
  clone._J_ = component;
108
108
 
@@ -110,7 +110,7 @@ var proto = AsyncVDOMBuilder.prototype = {
110
110
  },
111
111
 
112
112
  node: function (node) {
113
- this._Z_.bI_(node);
113
+ this._Z_.bT_(node);
114
114
  return this;
115
115
  },
116
116
 
@@ -129,7 +129,7 @@ var proto = AsyncVDOMBuilder.prototype = {
129
129
  text = text.toString();
130
130
  }
131
131
 
132
- this._Z_.bI_(new VText(text, ownerComponent));
132
+ this._Z_.bT_(new VText(text, ownerComponent));
133
133
  return this;
134
134
  },
135
135
 
@@ -160,7 +160,7 @@ var proto = AsyncVDOMBuilder.prototype = {
160
160
  flags,
161
161
  props
162
162
  );
163
- this.bH_(element, childCount, true);
163
+ this.bS_(element, childCount, true);
164
164
  return this;
165
165
  },
166
166
 
@@ -178,7 +178,7 @@ var proto = AsyncVDOMBuilder.prototype = {
178
178
 
179
179
  bf: function (key, component, preserve) {
180
180
  var fragment = new VFragment(key, component, preserve);
181
- this.bH_(fragment, null, true);
181
+ this.bS_(fragment, null, true);
182
182
  return this;
183
183
  },
184
184
 
@@ -187,7 +187,7 @@ var proto = AsyncVDOMBuilder.prototype = {
187
187
  },
188
188
 
189
189
  endElement: function () {
190
- var stack = this.bE_;
190
+ var stack = this.bP_;
191
191
  stack.pop();
192
192
  this._Z_ = stack[stack.length - 1];
193
193
  },
@@ -195,44 +195,44 @@ var proto = AsyncVDOMBuilder.prototype = {
195
195
  end: function () {
196
196
  this._Z_ = undefined;
197
197
 
198
- var remaining = --this.bA_;
199
- var parentOut = this.bD_;
198
+ var remaining = --this.bL_;
199
+ var parentOut = this.bO_;
200
200
 
201
201
  if (remaining === 0) {
202
202
  if (parentOut) {
203
- parentOut.bK_();
203
+ parentOut.bV_();
204
204
  } else {
205
- this.bL_();
205
+ this.bW_();
206
206
  }
207
- } else if (remaining - this.bB_ === 0) {
208
- this.bM_();
207
+ } else if (remaining - this.bM_ === 0) {
208
+ this.bX_();
209
209
  }
210
210
 
211
211
  return this;
212
212
  },
213
213
 
214
- bK_: function () {
215
- var remaining = --this.bA_;
214
+ bV_: function () {
215
+ var remaining = --this.bL_;
216
216
 
217
217
  if (remaining === 0) {
218
- var parentOut = this.bD_;
218
+ var parentOut = this.bO_;
219
219
  if (parentOut) {
220
- parentOut.bK_();
220
+ parentOut.bV_();
221
221
  } else {
222
- this.bL_();
222
+ this.bW_();
223
223
  }
224
- } else if (remaining - this.bB_ === 0) {
225
- this.bM_();
224
+ } else if (remaining - this.bM_ === 0) {
225
+ this.bX_();
226
226
  }
227
227
  },
228
228
 
229
- bL_: function () {
229
+ bW_: function () {
230
230
  var state = this.y_;
231
- state.bz_ = true;
232
- state.bx_.emit(EVENT_FINISH, this.bn_());
231
+ state.bK_ = true;
232
+ state.bI_.emit(EVENT_FINISH, this.by_());
233
233
  },
234
234
 
235
- bM_: function () {
235
+ bX_: function () {
236
236
  var lastArray = this._last;
237
237
 
238
238
  var i = 0;
@@ -267,7 +267,7 @@ var proto = AsyncVDOMBuilder.prototype = {
267
267
  },
268
268
 
269
269
  beginAsync: function (options) {
270
- if (this.bF_) {
270
+ if (this.bQ_) {
271
271
  throw Error(
272
272
  "Tried to render async while in sync mode. Note: Client side await is not currently supported in re-renders (Issue: #942)."
273
273
  );
@@ -277,16 +277,16 @@ var proto = AsyncVDOMBuilder.prototype = {
277
277
 
278
278
  if (options) {
279
279
  if (options.last) {
280
- this.bB_++;
280
+ this.bM_++;
281
281
  }
282
282
  }
283
283
 
284
- this.bA_++;
284
+ this.bL_++;
285
285
 
286
- var documentFragment = this._Z_.bN_();
286
+ var documentFragment = this._Z_.bY_();
287
287
  var asyncOut = new AsyncVDOMBuilder(this.global, documentFragment, this);
288
288
 
289
- state.bx_.emit("beginAsync", {
289
+ state.bI_.emit("beginAsync", {
290
290
  out: asyncOut,
291
291
  parentOut: this
292
292
  });
@@ -299,7 +299,7 @@ var proto = AsyncVDOMBuilder.prototype = {
299
299
  },
300
300
 
301
301
  flush: function () {
302
- var events = this.y_.bx_;
302
+ var events = this.y_.bI_;
303
303
 
304
304
  if (events.listenerCount(EVENT_UPDATE)) {
305
305
  events.emit(EVENT_UPDATE, new RenderResult(this));
@@ -307,22 +307,22 @@ var proto = AsyncVDOMBuilder.prototype = {
307
307
  },
308
308
 
309
309
  af_: function () {
310
- return this.y_.by_;
310
+ return this.y_.bJ_;
311
311
  },
312
312
 
313
- bn_: function () {
314
- return this.bO_ || (this.bO_ = new RenderResult(this));
313
+ by_: function () {
314
+ return this.bZ_ || (this.bZ_ = new RenderResult(this));
315
315
  },
316
316
 
317
317
  on: function (event, callback) {
318
318
  var state = this.y_;
319
319
 
320
- if (event === EVENT_FINISH && state.bz_) {
321
- callback(this.bn_());
320
+ if (event === EVENT_FINISH && state.bK_) {
321
+ callback(this.by_());
322
322
  } else if (event === "last") {
323
323
  this.onLast(callback);
324
324
  } else {
325
- state.bx_.on(event, callback);
325
+ state.bI_.on(event, callback);
326
326
  }
327
327
 
328
328
  return this;
@@ -331,19 +331,19 @@ var proto = AsyncVDOMBuilder.prototype = {
331
331
  once: function (event, callback) {
332
332
  var state = this.y_;
333
333
 
334
- if (event === EVENT_FINISH && state.bz_) {
335
- callback(this.bn_());
334
+ if (event === EVENT_FINISH && state.bK_) {
335
+ callback(this.by_());
336
336
  } else if (event === "last") {
337
337
  this.onLast(callback);
338
338
  } else {
339
- state.bx_.once(event, callback);
339
+ state.bI_.once(event, callback);
340
340
  }
341
341
 
342
342
  return this;
343
343
  },
344
344
 
345
345
  emit: function (type, arg) {
346
- var events = this.y_.bx_;
346
+ var events = this.y_.bI_;
347
347
  switch (arguments.length) {
348
348
  case 1:
349
349
  events.emit(type);
@@ -359,17 +359,17 @@ var proto = AsyncVDOMBuilder.prototype = {
359
359
  },
360
360
 
361
361
  removeListener: function () {
362
- var events = this.y_.bx_;
362
+ var events = this.y_.bI_;
363
363
  events.removeListener.apply(events, arguments);
364
364
  return this;
365
365
  },
366
366
 
367
367
  sync: function () {
368
- this.bF_ = true;
368
+ this.bQ_ = true;
369
369
  },
370
370
 
371
371
  isSync: function () {
372
- return this.bF_;
372
+ return this.bQ_;
373
373
  },
374
374
 
375
375
  onLast: function (callback) {
@@ -385,12 +385,12 @@ var proto = AsyncVDOMBuilder.prototype = {
385
385
  },
386
386
 
387
387
  ae_: function (host) {
388
- var node = this.bG_;
388
+ var node = this.bR_;
389
389
  if (!node) {
390
390
  var vdomTree = this.af_();
391
391
 
392
392
  if (!host) host = this.A_;
393
- this.bG_ = node = vdomTree.bP_(host, null);
393
+ this.bR_ = node = vdomTree.bo_(host, null);
394
394
  morphdom(node, vdomTree, host, this.b_);
395
395
  }
396
396
  return node;
@@ -2,14 +2,14 @@
2
2
  var VNode = require("./VNode");
3
3
 
4
4
  function VComponent(component, key, ownerComponent, preserve) {
5
- this.bQ_(null /* childCount */, ownerComponent);
6
- this.bR_ = key;
5
+ this.c__(null /* childCount */, ownerComponent);
6
+ this.ca_ = key;
7
7
  this.r_ = component;
8
8
  this.aa_ = preserve;
9
9
  }
10
10
 
11
11
  VComponent.prototype = {
12
- bS_: 2
12
+ cb_: 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.bT_ = null;
8
- this.bU_ = null;
7
+ this.cc_ = null;
8
+ this.cd_ = null;
9
9
  }
10
10
 
11
11
  function VDocumentFragment(out) {
12
- this.bQ_(null /* childCount */);
12
+ this.c__(null /* childCount */);
13
13
  this.q_ = out;
14
14
  }
15
15
 
16
16
  VDocumentFragment.prototype = {
17
- bS_: 11,
17
+ cb_: 11,
18
18
 
19
- bV_: true,
19
+ ce_: true,
20
20
 
21
- bJ_: function () {
21
+ bU_: function () {
22
22
  return new VDocumentFragmentClone(this);
23
23
  },
24
24
 
25
- bP_: function (host) {
25
+ bo_: function (host) {
26
26
  return (host.ownerDocument || host).createDocumentFragment();
27
27
  }
28
28
  };
@@ -81,17 +81,17 @@ function assign(a, b) {
81
81
  }
82
82
 
83
83
  function VElementClone(other) {
84
- this.bW_ = other.bW_;
85
- this.bT_ = null;
86
- this.bU_ = null;
84
+ this.cf_ = other.cf_;
85
+ this.cc_ = null;
86
+ this.cd_ = null;
87
87
 
88
- this.bR_ = other.bR_;
89
- this.bX_ = other.bX_;
88
+ this.ca_ = other.ca_;
89
+ this.cg_ = other.cg_;
90
90
  this._L_ = other._L_;
91
- this.bY_ = other.bY_;
91
+ this.ch_ = other.ch_;
92
92
  this.t_ = other.t_;
93
- this.bZ_ = other.bZ_;
94
- this.c__ = other.c__;
93
+ this.ci_ = other.ci_;
94
+ this.cj_ = other.cj_;
95
95
  }
96
96
 
97
97
  function VElement(
@@ -103,7 +103,7 @@ childCount,
103
103
  flags,
104
104
  props)
105
105
  {
106
- this.bQ_(childCount, ownerComponent);
106
+ this.c__(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.bR_ = key;
114
+ this.ca_ = key;
115
115
  this.t_ = flags || 0;
116
- this.bX_ = attrs || EMPTY_OBJECT;
116
+ this.cg_ = attrs || EMPTY_OBJECT;
117
117
  this._L_ = props || EMPTY_OBJECT;
118
- this.bY_ = tagName;
119
- this.bZ_ = null;
120
- this.c__ = constId;
118
+ this.ch_ = tagName;
119
+ this.ci_ = null;
120
+ this.cj_ = constId;
121
121
  this.aa_ = false;
122
122
  this.a__ = false;
123
123
  }
124
124
 
125
125
  VElement.prototype = {
126
- bS_: 1,
126
+ cb_: 1,
127
127
 
128
- bJ_: function () {
128
+ bU_: 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.bI_(
140
+ var child = this.bT_(
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.ca_();
153
+ return this.ck_();
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.bJ_();
166
+ node = node.bU_();
167
167
  node._J_ = ownerComponent;
168
- this.bI_(node);
169
- return this.ca_();
168
+ this.bT_(node);
169
+ return this.ck_();
170
170
  },
171
171
 
172
- bP_: function (host, parentNamespaceURI) {
173
- var tagName = this.bY_;
174
- var attributes = this.bX_;
172
+ bo_: function (host, parentNamespaceURI) {
173
+ var tagName = this.ch_;
174
+ var attributes = this.cg_;
175
175
  var namespaceURI = DEFAULT_NS[tagName] || parentNamespaceURI || NS_HTML;
176
176
 
177
177
  var flags = this.t_;
@@ -196,7 +196,7 @@ VElement.prototype = {
196
196
  }
197
197
 
198
198
  if (tagName === "textarea") {
199
- el.defaultValue = this.bZ_;
199
+ el.defaultValue = this.ci_;
200
200
  }
201
201
  }
202
202
 
@@ -205,11 +205,11 @@ VElement.prototype = {
205
205
  return el;
206
206
  },
207
207
 
208
- cb_: function (name) {
208
+ cl_: function (name) {
209
209
  // We don't care about the namespaces since the there
210
210
  // is no chance that attributes with the same name will have
211
211
  // different namespaces
212
- var value = this.bX_[name];
212
+ var value = this.cg_[name];
213
213
  return value != null && value !== false;
214
214
  }
215
215
  };
@@ -258,8 +258,8 @@ function virtualizeElement(node, virtualizeChildNodes, ownerComponent) {
258
258
  props
259
259
  );
260
260
 
261
- if (vdomEl.bY_ === "textarea") {
262
- vdomEl.bZ_ = node.value;
261
+ if (vdomEl.ch_ === "textarea") {
262
+ vdomEl.ci_ = node.value;
263
263
  } else if (virtualizeChildNodes) {
264
264
  virtualizeChildNodes(node, vdomEl, ownerComponent);
265
265
  }
@@ -267,12 +267,12 @@ function virtualizeElement(node, virtualizeChildNodes, ownerComponent) {
267
267
  return vdomEl;
268
268
  }
269
269
 
270
- VElement.cc_ = virtualizeElement;
270
+ VElement.cm_ = virtualizeElement;
271
271
 
272
- VElement.cd_ = function (fromEl, vFromEl, toEl) {
272
+ VElement.cn_ = function (fromEl, vFromEl, toEl) {
273
273
  var fromFlags = vFromEl.t_;
274
274
  var toFlags = toEl.t_;
275
- var attrs = toEl.bX_;
275
+ var attrs = toEl.cg_;
276
276
 
277
277
  if (toFlags & FLAG_CUSTOM_ELEMENT) {
278
278
  return assign(fromEl, attrs);
@@ -289,7 +289,7 @@ VElement.cd_ = function (fromEl, vFromEl, toEl) {
289
289
  // real VElement node will not have the expando property
290
290
  // so we build the attribute map from the expando property
291
291
 
292
- var oldAttrs = vFromEl.bX_;
292
+ var oldAttrs = vFromEl.cg_;
293
293
 
294
294
  if (oldAttrs === attrs) {
295
295
  // For constant attributes the same object will be provided
@@ -315,7 +315,7 @@ VElement.cd_ = function (fromEl, vFromEl, toEl) {
315
315
  }
316
316
 
317
317
  var preserve = props && props.pa || EMPTY_OBJECT;
318
- var specialAttrs = specialElHandlers[toEl.bY_] || EMPTY_OBJECT;
318
+ var specialAttrs = specialElHandlers[toEl.ch_] || EMPTY_OBJECT;
319
319
  var specialAttr;
320
320
 
321
321
  // Loop over all of the attributes in the attribute map and compare
@@ -353,7 +353,7 @@ VElement.cd_ = function (fromEl, vFromEl, toEl) {
353
353
  // was not a virtualized node (i.e., a node that was not rendered by a
354
354
  // Marko template, but rather a node that was created from an HTML
355
355
  // string or a real DOM node).
356
- if (toEl.bR_ === null || fromFlags & FLAG_SPREAD_ATTRS) {
356
+ if (toEl.ca_ === null || fromFlags & FLAG_SPREAD_ATTRS) {
357
357
  for (attrName in oldAttrs) {
358
358
  if (!(attrName in attrs)) {
359
359
  if (specialAttr = specialAttrs[attrName]) {