marko 5.29.2 → 5.30.0

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 (167) hide show
  1. package/README.md +1 -1
  2. package/bin/markoc.js +18 -18
  3. package/dist/core-tags/core/await/renderer.js +5 -1
  4. package/dist/node_modules/@internal/components-beginComponent/index.js +13 -3
  5. package/dist/node_modules/@internal/components-define-widget-legacy/index-browser.js +331 -0
  6. package/dist/node_modules/@internal/components-define-widget-legacy/index.js +18 -0
  7. package/dist/node_modules/@internal/components-define-widget-legacy/package.json +11 -0
  8. package/dist/node_modules/@internal/components-entry/index-browser.js +2 -2
  9. package/dist/node_modules/@internal/components-entry/index.js +73 -45
  10. package/dist/node_modules/@internal/components-entry-legacy/index-browser.js +74 -0
  11. package/dist/node_modules/@internal/components-entry-legacy/index.js +15 -0
  12. package/dist/node_modules/@internal/components-entry-legacy/package.json +11 -0
  13. package/dist/node_modules/@internal/components-registry/index-browser.js +70 -43
  14. package/dist/node_modules/@internal/components-registry/index.js +2 -2
  15. package/dist/node_modules/@internal/components-util/index-browser.js +17 -17
  16. package/dist/node_modules/@internal/components-util/index.js +18 -8
  17. package/dist/node_modules/@internal/create-readable/index-browser.js +1 -1
  18. package/dist/node_modules/@internal/create-readable/index.js +9 -9
  19. package/dist/node_modules/@internal/set-immediate/index-browser.js +1 -1
  20. package/dist/node_modules/@internal/set-immediate/index-worker.js +2 -2
  21. package/dist/node_modules/@internal/set-immediate/index.js +2 -2
  22. package/dist/runtime/RenderResult.js +3 -3
  23. package/dist/runtime/components/Component.js +146 -148
  24. package/dist/runtime/components/ComponentDef.js +41 -27
  25. package/dist/runtime/components/ComponentsContext.js +6 -6
  26. package/dist/runtime/components/GlobalComponentsContext.js +3 -3
  27. package/dist/runtime/components/KeySequence.js +3 -3
  28. package/dist/runtime/components/ServerComponent.js +13 -13
  29. package/dist/runtime/components/State.js +27 -27
  30. package/dist/runtime/components/attach-detach.js +7 -7
  31. package/dist/runtime/components/defineComponent.js +5 -5
  32. package/dist/runtime/components/dom-data.js +6 -6
  33. package/dist/runtime/components/event-delegation.js +10 -10
  34. package/dist/runtime/components/legacy/browser.json +9 -0
  35. package/dist/runtime/components/legacy/defineComponent-legacy.js +32 -0
  36. package/dist/runtime/components/legacy/defineRenderer-legacy.js +171 -0
  37. package/dist/runtime/components/legacy/defineWidget-legacy.js +1 -0
  38. package/dist/runtime/components/legacy/dependencies/html.js +3 -0
  39. package/dist/runtime/components/legacy/dependencies/index.js +178 -0
  40. package/dist/runtime/components/legacy/dependencies/vdom.js +3 -0
  41. package/dist/runtime/components/legacy/index.js +1 -0
  42. package/dist/runtime/components/legacy/jquery.js +51 -0
  43. package/dist/runtime/components/legacy/ready.js +152 -0
  44. package/dist/runtime/components/legacy/renderer-legacy.js +230 -0
  45. package/dist/runtime/components/renderer.js +30 -26
  46. package/dist/runtime/components/update-manager.js +10 -10
  47. package/dist/runtime/createOut.js +1 -1
  48. package/dist/runtime/dom-insert.js +5 -5
  49. package/dist/runtime/helpers/_change-case.js +2 -2
  50. package/dist/runtime/helpers/dynamic-tag.js +7 -9
  51. package/dist/runtime/helpers/style-value.js +7 -2
  52. package/dist/runtime/html/AsyncStream.js +20 -20
  53. package/dist/runtime/html/BufferedWriter.js +2 -2
  54. package/dist/runtime/html/helpers/_dynamic-attr.js +2 -2
  55. package/dist/runtime/html/helpers/attr.js +19 -6
  56. package/dist/runtime/html/helpers/attrs.js +7 -0
  57. package/dist/runtime/html/helpers/data-marko.js +2 -2
  58. package/dist/runtime/html/helpers/escape-quotes.js +1 -1
  59. package/dist/runtime/html/helpers/escape-xml.js +1 -1
  60. package/dist/runtime/html/helpers/merge-attrs.js +38 -7
  61. package/dist/runtime/html/index.js +2 -2
  62. package/dist/runtime/renderable.js +9 -6
  63. package/dist/runtime/vdom/AsyncVDOMBuilder.js +86 -86
  64. package/dist/runtime/vdom/VComponent.js +3 -3
  65. package/dist/runtime/vdom/VDocumentFragment.js +7 -7
  66. package/dist/runtime/vdom/VElement.js +61 -50
  67. package/dist/runtime/vdom/VFragment.js +8 -8
  68. package/dist/runtime/vdom/VNode.js +36 -36
  69. package/dist/runtime/vdom/VText.js +8 -8
  70. package/dist/runtime/vdom/helpers/attrs.js +24 -4
  71. package/dist/runtime/vdom/helpers/merge-attrs.js +16 -0
  72. package/dist/runtime/vdom/helpers/v-element.js +1 -1
  73. package/dist/runtime/vdom/helpers/v-text.js +1 -1
  74. package/dist/runtime/vdom/hot-reload.js +19 -19
  75. package/dist/runtime/vdom/index.js +2 -2
  76. package/dist/runtime/vdom/morphdom/fragment.js +5 -5
  77. package/dist/runtime/vdom/morphdom/helpers.js +5 -5
  78. package/dist/runtime/vdom/morphdom/index.js +56 -56
  79. package/dist/runtime/vdom/morphdom/specialElHandlers.js +7 -7
  80. package/dist/runtime/vdom/preserve-attrs.js +1 -1
  81. package/dist/runtime/vdom/vdom.js +14 -14
  82. package/docs/10-awesome-marko-features.md +1 -1
  83. package/docs/body-content.md +3 -3
  84. package/docs/class-components.md +6 -6
  85. package/docs/cloudflare-workers.md +3 -3
  86. package/docs/compiler.md +5 -5
  87. package/docs/express.md +2 -2
  88. package/docs/http.md +1 -1
  89. package/docs/koa.md +1 -1
  90. package/docs/lasso.md +1 -1
  91. package/docs/marko-vs-react.md +2 -2
  92. package/docs/rendering.md +6 -6
  93. package/docs/rollup.md +30 -30
  94. package/docs/troubleshooting-streaming.md +1 -1
  95. package/docs/typescript.md +1 -1
  96. package/docs/vite.md +3 -3
  97. package/docs/webpack.md +25 -25
  98. package/docs/why-is-marko-fast.md +2 -2
  99. package/index.d.ts +1 -0
  100. package/legacy-components-browser.marko +15 -0
  101. package/legacy-components.js +7 -0
  102. package/package.json +51 -45
  103. package/src/compiler/config.js +1 -1
  104. package/src/compiler/index.js +5 -5
  105. package/src/core-tags/core/__flush_here_and_after__.js +1 -1
  106. package/src/core-tags/core/await/AsyncValue.js +1 -1
  107. package/src/core-tags/core/await/renderer.js +8 -4
  108. package/src/core-tags/core/await/reorderer-renderer.js +1 -1
  109. package/src/node-require/browser-refresh.js +2 -2
  110. package/src/node-require/index.js +2 -2
  111. package/src/node_modules/@internal/components-beginComponent/index.js +16 -6
  112. package/src/node_modules/@internal/components-define-widget-legacy/index-browser.js +331 -0
  113. package/src/node_modules/@internal/components-define-widget-legacy/index.js +18 -0
  114. package/src/node_modules/@internal/components-define-widget-legacy/package.json +11 -0
  115. package/src/node_modules/@internal/components-entry/index.js +65 -37
  116. package/src/node_modules/@internal/components-entry-legacy/index-browser.js +74 -0
  117. package/src/node_modules/@internal/components-entry-legacy/index.js +15 -0
  118. package/src/node_modules/@internal/components-entry-legacy/package.json +11 -0
  119. package/src/node_modules/@internal/components-registry/index-browser.js +33 -6
  120. package/src/node_modules/@internal/components-util/index.js +10 -0
  121. package/src/runtime/RenderResult.js +3 -3
  122. package/src/runtime/components/Component.js +16 -18
  123. package/src/runtime/components/ComponentDef.js +22 -8
  124. package/src/runtime/components/ComponentsContext.js +1 -1
  125. package/src/runtime/components/State.js +2 -2
  126. package/src/runtime/components/attach-detach.js +1 -1
  127. package/src/runtime/components/dom-data.js +1 -1
  128. package/src/runtime/components/legacy/browser.json +9 -0
  129. package/src/runtime/components/legacy/defineComponent-legacy.js +32 -0
  130. package/src/runtime/components/legacy/defineRenderer-legacy.js +171 -0
  131. package/src/runtime/components/legacy/defineWidget-legacy.js +1 -0
  132. package/src/runtime/components/legacy/dependencies/html.js +3 -0
  133. package/src/runtime/components/legacy/dependencies/index.js +178 -0
  134. package/src/runtime/components/legacy/dependencies/vdom.js +3 -0
  135. package/src/runtime/components/legacy/index.js +1 -0
  136. package/src/runtime/components/legacy/jquery.js +51 -0
  137. package/src/runtime/components/legacy/ready.js +152 -0
  138. package/src/runtime/components/legacy/renderer-legacy.js +230 -0
  139. package/src/runtime/components/renderer.js +4 -0
  140. package/src/runtime/components/update-manager.js +1 -1
  141. package/src/runtime/dom-insert.js +1 -1
  142. package/src/runtime/helpers/dynamic-tag.js +2 -4
  143. package/src/runtime/helpers/style-value.js +7 -2
  144. package/src/runtime/html/AsyncStream.js +5 -5
  145. package/src/runtime/html/BufferedWriter.js +1 -1
  146. package/src/runtime/html/StringWriter.js +1 -1
  147. package/src/runtime/html/helpers/attr.js +15 -2
  148. package/src/runtime/html/helpers/attrs.js +7 -0
  149. package/src/runtime/html/helpers/merge-attrs.js +38 -7
  150. package/src/runtime/html/hot-reload.js +1 -1
  151. package/src/runtime/html/index.js +2 -2
  152. package/src/runtime/renderable.js +5 -2
  153. package/src/runtime/vdom/AsyncVDOMBuilder.js +2 -2
  154. package/src/runtime/vdom/VComponent.js +1 -1
  155. package/src/runtime/vdom/VDocumentFragment.js +1 -1
  156. package/src/runtime/vdom/VElement.js +17 -6
  157. package/src/runtime/vdom/VFragment.js +1 -1
  158. package/src/runtime/vdom/VNode.js +1 -1
  159. package/src/runtime/vdom/VText.js +1 -1
  160. package/src/runtime/vdom/helpers/attrs.js +26 -6
  161. package/src/runtime/vdom/helpers/merge-attrs.js +16 -0
  162. package/src/runtime/vdom/hot-reload.js +1 -1
  163. package/src/runtime/vdom/index.js +2 -2
  164. package/src/runtime/vdom/morphdom/fragment.js +1 -1
  165. package/src/runtime/vdom/morphdom/specialElHandlers.js +1 -1
  166. package/src/taglib/index.js +1 -1
  167. package/tags-html.d.ts +9 -0
@@ -1,21 +1,21 @@
1
1
  "use strict";var domData = require("../components/dom-data");
2
- var keysByDOMNode = domData._s_;
3
- var vElementByDOMNode = domData._t_;
2
+ var keysByDOMNode = domData._M_;
3
+ var vElementByDOMNode = domData._N_;
4
4
  var VNode = require("./VNode");
5
5
  var inherit = require("raptor-util/inherit");
6
- var createFragmentNode = require("./morphdom/fragment").S_;
6
+ var createFragmentNode = require("./morphdom/fragment")._n_;
7
7
 
8
8
  function VFragment(key, ownerComponent, preserve) {
9
- this.bx_(null /* childCount */, ownerComponent);
10
- this.by_ = key;
9
+ this.bR_(null /* childCount */, ownerComponent);
10
+ this.bS_ = key;
11
11
  this.o_ = preserve;
12
12
  }
13
13
 
14
14
  VFragment.prototype = {
15
- bz_: 12,
16
- bw_: function () {
15
+ bT_: 12,
16
+ bQ_: function () {
17
17
  var fragment = createFragmentNode();
18
- keysByDOMNode.set(fragment, this.by_);
18
+ keysByDOMNode.set(fragment, this.bS_);
19
19
  vElementByDOMNode.set(fragment, this);
20
20
  return fragment;
21
21
  }
@@ -2,81 +2,81 @@
2
2
  function VNode() {}
3
3
 
4
4
  VNode.prototype = {
5
- bx_: function (finalChildCount, ownerComponent) {
6
- this.bN_ = finalChildCount;
7
- this.bO_ = 0;
8
- this.bD_ = null;
9
- this.bP_ = null;
10
- this.bA_ = null;
11
- this.bB_ = null;
12
- this._v_ = ownerComponent;
5
+ bR_: function (finalChildCount, ownerComponent) {
6
+ this.cg_ = finalChildCount;
7
+ this.ch_ = 0;
8
+ this.bX_ = null;
9
+ this.ci_ = null;
10
+ this.bU_ = null;
11
+ this.bV_ = null;
12
+ this._P_ = ownerComponent;
13
13
  },
14
14
 
15
- get ai_() {
16
- var firstChild = this.bD_;
15
+ get ay_() {
16
+ var firstChild = this.bX_;
17
17
 
18
- if (firstChild && firstChild.bC_) {
19
- var nestedFirstChild = firstChild.ai_;
18
+ if (firstChild && firstChild.bW_) {
19
+ var nestedFirstChild = firstChild.ay_;
20
20
  // The first child is a DocumentFragment node.
21
21
  // If the DocumentFragment node has a first child then we will return that.
22
22
  // Otherwise, the DocumentFragment node is not *really* the first child and
23
23
  // we need to skip to its next sibling
24
- return nestedFirstChild || firstChild.bQ_;
24
+ return nestedFirstChild || firstChild.cj_;
25
25
  }
26
26
 
27
27
  return firstChild;
28
28
  },
29
29
 
30
- get bQ_() {
31
- var nextSibling = this.bB_;
30
+ get cj_() {
31
+ var nextSibling = this.bV_;
32
32
 
33
33
  if (nextSibling) {
34
- if (nextSibling.bC_) {
35
- var firstChild = nextSibling.ai_;
36
- return firstChild || nextSibling.bQ_;
34
+ if (nextSibling.bW_) {
35
+ var firstChild = nextSibling.ay_;
36
+ return firstChild || nextSibling.cj_;
37
37
  }
38
38
  } else {
39
- var parentNode = this.bA_;
40
- if (parentNode && parentNode.bC_) {
41
- return parentNode.bQ_;
39
+ var parentNode = this.bU_;
40
+ if (parentNode && parentNode.bW_) {
41
+ return parentNode.cj_;
42
42
  }
43
43
  }
44
44
 
45
45
  return nextSibling;
46
46
  },
47
47
 
48
- bp_: function (child) {
49
- this.bO_++;
48
+ bJ_: function (child) {
49
+ this.ch_++;
50
50
 
51
- if (this.bF_ === "textarea") {
52
- if (child.bR_) {
53
- var childValue = child.bS_;
54
- this.bG_ = (this.bG_ || "") + childValue;
51
+ if (this.bZ_ === "textarea") {
52
+ if (child.ck_) {
53
+ var childValue = child.cl_;
54
+ this.c__ = (this.c__ || "") + childValue;
55
55
  } else if (child.o_ || child.n_) {
56
- this.bT_ = true;
56
+ this.cm_ = true;
57
57
  } else {
58
58
  throw TypeError();
59
59
  }
60
60
  } else {
61
- var lastChild = this.bP_;
61
+ var lastChild = this.ci_;
62
62
 
63
- child.bA_ = this;
63
+ child.bU_ = this;
64
64
 
65
65
  if (lastChild) {
66
- lastChild.bB_ = child;
66
+ lastChild.bV_ = child;
67
67
  } else {
68
- this.bD_ = child;
68
+ this.bX_ = child;
69
69
  }
70
70
 
71
- this.bP_ = child;
71
+ this.ci_ = child;
72
72
  }
73
73
 
74
74
  return child;
75
75
  },
76
76
 
77
- bI_: function finishChild() {
78
- if (this.bO_ === this.bN_ && this.bA_) {
79
- return this.bA_.bI_();
77
+ cb_: function finishChild() {
78
+ if (this.ch_ === this.cg_ && this.bU_) {
79
+ return this.bU_.cb_();
80
80
  } else {
81
81
  return this;
82
82
  }
@@ -2,21 +2,21 @@
2
2
  var inherit = require("raptor-util/inherit");
3
3
 
4
4
  function VText(value, ownerComponent) {
5
- this.bx_(-1 /* no children */, ownerComponent);
6
- this.bS_ = value;
5
+ this.bR_(-1 /* no children */, ownerComponent);
6
+ this.cl_ = value;
7
7
  }
8
8
 
9
9
  VText.prototype = {
10
- bR_: true,
10
+ ck_: true,
11
11
 
12
- bz_: 3,
12
+ bT_: 3,
13
13
 
14
- bw_: function (host) {
15
- return (host.ownerDocument || host).createTextNode(this.bS_);
14
+ bQ_: function (host) {
15
+ return (host.ownerDocument || host).createTextNode(this.cl_);
16
16
  },
17
17
 
18
- bq_: function () {
19
- return new VText(this.bS_);
18
+ bK_: function () {
19
+ return new VText(this.cl_);
20
20
  }
21
21
  };
22
22
 
@@ -1,22 +1,25 @@
1
1
  "use strict";
2
2
 
3
+
3
4
  var classHelper = require("../../helpers/class-value");
4
5
  var styleHelper = require("../../helpers/style-value");
6
+ var parseHTML = require("../parse-html");
5
7
 
6
8
  /**
7
9
  * Helper for processing dynamic attributes
8
10
  */
9
11
  module.exports = function (attributes) {
10
- if (attributes != null) {
12
+ if (typeof attributes === "string") {
11
13
  // eslint-disable-next-line no-constant-condition
12
14
 
13
15
 
14
16
 
15
17
 
16
18
 
19
+ return parseAttrs(attributes);
20
+ }
17
21
 
18
-
19
-
22
+ if (attributes) {
20
23
  var newAttributes = {};
21
24
 
22
25
  for (var attrName in attributes) {
@@ -38,4 +41,21 @@ module.exports = function (attributes) {
38
41
  }
39
42
 
40
43
  return attributes;
41
- };
44
+ };
45
+
46
+ function parseAttrs(str) {
47
+ if (str === "") {
48
+ return {};
49
+ }
50
+
51
+ var attrs = parseHTML("<a " + str + ">").attributes;
52
+ var result = {};
53
+ var attr;
54
+
55
+ for (var len = attrs.length, i = 0; i < len; i++) {
56
+ attr = attrs[i];
57
+ result[attr.name] = attr.value;
58
+ }
59
+
60
+ return result;
61
+ }
@@ -0,0 +1,16 @@
1
+ "use strict";
2
+
3
+ var attrs = require("./attrs");
4
+
5
+ /**
6
+ * Merges attribute objects into a object.
7
+ */
8
+ module.exports = function mergeAttrs() {
9
+ var len = arguments.length;
10
+ var result = {};
11
+ for (var i = 0; i < len; i++) {
12
+ Object.assign(result, attrs(arguments[i]));
13
+ }
14
+
15
+ return result;
16
+ };
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
 
3
- var VElement = require("../vdom").aZ_;
3
+ var VElement = require("../vdom").bs_;
4
4
 
5
5
  module.exports = function (
6
6
  tagName,
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
 
3
- var VText = require("../vdom").ba_;
3
+ var VText = require("../vdom").bu_;
4
4
 
5
5
  module.exports = function (value) {
6
6
  return new VText(value);
@@ -4,7 +4,7 @@ var registry = require("@internal/components-registry");
4
4
  var updateManager = require("../components/update-manager");
5
5
 
6
6
  var createTemplate = runtime.t;
7
- var createComponent = registry._o_;
7
+ var createComponent = registry._I_;
8
8
  var registered = {};
9
9
  var instancesByType = {};
10
10
  var queue;
@@ -31,33 +31,33 @@ runtime.t = function (typeName) {
31
31
  }
32
32
 
33
33
  queue.push(function () {
34
- var newProto = registry._p_(typeName).prototype;
34
+ var newProto = registry._J_(typeName).prototype;
35
35
  instances.forEach(function (instance) {
36
36
  if (hasLifecycleChanged(instance.__proto__, newProto)) {
37
- var renderer = instance.af_;
38
- instance.af_ = (input, out) => {
39
- instance.ao_(input, out);
37
+ var renderer = instance.W_;
38
+ instance.W_ = (input, out) => {
39
+ instance.aD_(input, out);
40
40
  if (instance.onInput) {
41
41
  input = instance.onInput(input, out) || input;
42
42
  }
43
- instance.af_ = renderer;
44
- instance.af_(input, out);
43
+ instance.W_ = renderer;
44
+ instance.W_(input, out);
45
45
  };
46
46
 
47
- instance.bU_ = true;
48
- instance._U_();
49
- instance._f_ = false;
47
+ instance.cn_ = true;
48
+ instance.am_();
49
+ instance._z_ = false;
50
50
 
51
- if (instance._N_) {
52
- instance._N_.removeAllListeners();
53
- instance._N_ = null;
51
+ if (instance.ag_) {
52
+ instance.ag_.removeAllListeners();
53
+ instance.ag_ = null;
54
54
  }
55
55
  }
56
56
 
57
57
  instance.__proto__ = newProto;
58
- instance._n_(
59
- instance.K_, false).
60
- afterInsert(instance._b_);
58
+ instance._H_(
59
+ instance.U_, false).
60
+ afterInsert(instance.I_);
61
61
  });
62
62
  });
63
63
  }
@@ -71,14 +71,14 @@ runtime.t = function (typeName) {
71
71
  }
72
72
  };
73
73
 
74
- registry._o_ = function (typeName, id) {
74
+ registry._I_ = function (typeName, id) {
75
75
  var instances = instancesByType[typeName];
76
76
  var instance = createComponent(typeName, id);
77
77
 
78
78
  if (instances) {
79
79
  instances.add(instance);
80
80
  instance.once("destroy", function () {
81
- if (!instance.bU_) {
81
+ if (!instance.cn_) {
82
82
  instances.delete(instance);
83
83
  }
84
84
  });
@@ -104,7 +104,7 @@ function hasLifecycleChanged(oldProto, newProto) {
104
104
  }
105
105
 
106
106
  function batchUpdate() {
107
- updateManager.ag_(function () {
107
+ updateManager.aw_(function () {
108
108
  var pending = queue;
109
109
  queue = undefined;
110
110
 
@@ -15,11 +15,11 @@ exports.t = function createTemplate(typeName) {
15
15
  };
16
16
 
17
17
  function Template(typeName) {
18
- this.aY_ = typeName;
18
+ this.path = this.X_ = typeName;
19
19
  }
20
20
 
21
21
  var AsyncVDOMBuilder = require("./AsyncVDOMBuilder");
22
- require("../createOut").aI_(
22
+ require("../createOut").bc_(
23
23
  Template.prototype.createOut = function createOut(
24
24
  globalData,
25
25
  parent,
@@ -1,5 +1,5 @@
1
1
  "use strict";var helpers = require("./helpers");
2
- var insertBefore = helpers.aJ_;
2
+ var insertBefore = helpers.bd_;
3
3
 
4
4
  var fragmentPrototype = {
5
5
  nodeType: 12,
@@ -80,8 +80,8 @@ function createFragmentNode(startNode, nextNode, parentNode) {
80
80
 
81
81
  function beginFragmentNode(startNode, parentNode) {
82
82
  var fragment = createFragmentNode(startNode, null, parentNode);
83
- fragment.bV_ = function (nextNode) {
84
- fragment.bV_ = null;
83
+ fragment.co_ = function (nextNode) {
84
+ fragment.co_ = null;
85
85
  insertBefore(
86
86
  fragment.endNode,
87
87
  nextNode,
@@ -91,5 +91,5 @@ function beginFragmentNode(startNode, parentNode) {
91
91
  return fragment;
92
92
  }
93
93
 
94
- exports.S_ = createFragmentNode;
95
- exports.bW_ = beginFragmentNode;
94
+ exports._n_ = createFragmentNode;
95
+ exports.cp_ = beginFragmentNode;
@@ -35,8 +35,8 @@ function removeChild(node) {
35
35
  node.parentNode.removeChild(node);
36
36
  }
37
37
 
38
- exports.aJ_ = insertBefore;
39
- exports.aK_ = insertAfter;
40
- exports.bQ_ = nextSibling;
41
- exports.ai_ = firstChild;
42
- exports.aL_ = removeChild;
38
+ exports.bd_ = insertBefore;
39
+ exports.be_ = insertAfter;
40
+ exports.cj_ = nextSibling;
41
+ exports.ay_ = firstChild;
42
+ exports.bf_ = removeChild;