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.
- package/README.md +1 -1
- package/bin/markoc.js +18 -18
- package/dist/core-tags/core/await/renderer.js +5 -1
- package/dist/node_modules/@internal/components-beginComponent/index.js +13 -3
- package/dist/node_modules/@internal/components-define-widget-legacy/index-browser.js +331 -0
- package/dist/node_modules/@internal/components-define-widget-legacy/index.js +18 -0
- package/dist/node_modules/@internal/components-define-widget-legacy/package.json +11 -0
- package/dist/node_modules/@internal/components-entry/index-browser.js +2 -2
- package/dist/node_modules/@internal/components-entry/index.js +73 -45
- package/dist/node_modules/@internal/components-entry-legacy/index-browser.js +74 -0
- package/dist/node_modules/@internal/components-entry-legacy/index.js +15 -0
- package/dist/node_modules/@internal/components-entry-legacy/package.json +11 -0
- package/dist/node_modules/@internal/components-registry/index-browser.js +70 -43
- package/dist/node_modules/@internal/components-registry/index.js +2 -2
- package/dist/node_modules/@internal/components-util/index-browser.js +17 -17
- package/dist/node_modules/@internal/components-util/index.js +18 -8
- package/dist/node_modules/@internal/create-readable/index-browser.js +1 -1
- package/dist/node_modules/@internal/create-readable/index.js +9 -9
- package/dist/node_modules/@internal/set-immediate/index-browser.js +1 -1
- package/dist/node_modules/@internal/set-immediate/index-worker.js +2 -2
- package/dist/node_modules/@internal/set-immediate/index.js +2 -2
- package/dist/runtime/RenderResult.js +3 -3
- package/dist/runtime/components/Component.js +146 -148
- package/dist/runtime/components/ComponentDef.js +41 -27
- package/dist/runtime/components/ComponentsContext.js +6 -6
- package/dist/runtime/components/GlobalComponentsContext.js +3 -3
- package/dist/runtime/components/KeySequence.js +3 -3
- package/dist/runtime/components/ServerComponent.js +13 -13
- package/dist/runtime/components/State.js +27 -27
- package/dist/runtime/components/attach-detach.js +7 -7
- package/dist/runtime/components/defineComponent.js +5 -5
- package/dist/runtime/components/dom-data.js +6 -6
- package/dist/runtime/components/event-delegation.js +10 -10
- package/dist/runtime/components/legacy/browser.json +9 -0
- package/dist/runtime/components/legacy/defineComponent-legacy.js +32 -0
- package/dist/runtime/components/legacy/defineRenderer-legacy.js +171 -0
- package/dist/runtime/components/legacy/defineWidget-legacy.js +1 -0
- package/dist/runtime/components/legacy/dependencies/html.js +3 -0
- package/dist/runtime/components/legacy/dependencies/index.js +178 -0
- package/dist/runtime/components/legacy/dependencies/vdom.js +3 -0
- package/dist/runtime/components/legacy/index.js +1 -0
- package/dist/runtime/components/legacy/jquery.js +51 -0
- package/dist/runtime/components/legacy/ready.js +152 -0
- package/dist/runtime/components/legacy/renderer-legacy.js +230 -0
- package/dist/runtime/components/renderer.js +30 -26
- package/dist/runtime/components/update-manager.js +10 -10
- package/dist/runtime/createOut.js +1 -1
- package/dist/runtime/dom-insert.js +5 -5
- package/dist/runtime/helpers/_change-case.js +2 -2
- package/dist/runtime/helpers/dynamic-tag.js +7 -9
- package/dist/runtime/helpers/style-value.js +7 -2
- package/dist/runtime/html/AsyncStream.js +20 -20
- package/dist/runtime/html/BufferedWriter.js +2 -2
- package/dist/runtime/html/helpers/_dynamic-attr.js +2 -2
- package/dist/runtime/html/helpers/attr.js +19 -6
- package/dist/runtime/html/helpers/attrs.js +7 -0
- package/dist/runtime/html/helpers/data-marko.js +2 -2
- package/dist/runtime/html/helpers/escape-quotes.js +1 -1
- package/dist/runtime/html/helpers/escape-xml.js +1 -1
- package/dist/runtime/html/helpers/merge-attrs.js +38 -7
- package/dist/runtime/html/index.js +2 -2
- package/dist/runtime/renderable.js +9 -6
- package/dist/runtime/vdom/AsyncVDOMBuilder.js +86 -86
- package/dist/runtime/vdom/VComponent.js +3 -3
- package/dist/runtime/vdom/VDocumentFragment.js +7 -7
- package/dist/runtime/vdom/VElement.js +61 -50
- package/dist/runtime/vdom/VFragment.js +8 -8
- package/dist/runtime/vdom/VNode.js +36 -36
- package/dist/runtime/vdom/VText.js +8 -8
- package/dist/runtime/vdom/helpers/attrs.js +24 -4
- package/dist/runtime/vdom/helpers/merge-attrs.js +16 -0
- package/dist/runtime/vdom/helpers/v-element.js +1 -1
- package/dist/runtime/vdom/helpers/v-text.js +1 -1
- package/dist/runtime/vdom/hot-reload.js +19 -19
- package/dist/runtime/vdom/index.js +2 -2
- package/dist/runtime/vdom/morphdom/fragment.js +5 -5
- package/dist/runtime/vdom/morphdom/helpers.js +5 -5
- package/dist/runtime/vdom/morphdom/index.js +56 -56
- package/dist/runtime/vdom/morphdom/specialElHandlers.js +7 -7
- package/dist/runtime/vdom/preserve-attrs.js +1 -1
- package/dist/runtime/vdom/vdom.js +14 -14
- package/docs/10-awesome-marko-features.md +1 -1
- package/docs/body-content.md +3 -3
- package/docs/class-components.md +6 -6
- package/docs/cloudflare-workers.md +3 -3
- package/docs/compiler.md +5 -5
- package/docs/express.md +2 -2
- package/docs/http.md +1 -1
- package/docs/koa.md +1 -1
- package/docs/lasso.md +1 -1
- package/docs/marko-vs-react.md +2 -2
- package/docs/rendering.md +6 -6
- package/docs/rollup.md +30 -30
- package/docs/troubleshooting-streaming.md +1 -1
- package/docs/typescript.md +1 -1
- package/docs/vite.md +3 -3
- package/docs/webpack.md +25 -25
- package/docs/why-is-marko-fast.md +2 -2
- package/index.d.ts +1 -0
- package/legacy-components-browser.marko +15 -0
- package/legacy-components.js +7 -0
- package/package.json +51 -45
- package/src/compiler/config.js +1 -1
- package/src/compiler/index.js +5 -5
- package/src/core-tags/core/__flush_here_and_after__.js +1 -1
- package/src/core-tags/core/await/AsyncValue.js +1 -1
- package/src/core-tags/core/await/renderer.js +8 -4
- package/src/core-tags/core/await/reorderer-renderer.js +1 -1
- package/src/node-require/browser-refresh.js +2 -2
- package/src/node-require/index.js +2 -2
- package/src/node_modules/@internal/components-beginComponent/index.js +16 -6
- package/src/node_modules/@internal/components-define-widget-legacy/index-browser.js +331 -0
- package/src/node_modules/@internal/components-define-widget-legacy/index.js +18 -0
- package/src/node_modules/@internal/components-define-widget-legacy/package.json +11 -0
- package/src/node_modules/@internal/components-entry/index.js +65 -37
- package/src/node_modules/@internal/components-entry-legacy/index-browser.js +74 -0
- package/src/node_modules/@internal/components-entry-legacy/index.js +15 -0
- package/src/node_modules/@internal/components-entry-legacy/package.json +11 -0
- package/src/node_modules/@internal/components-registry/index-browser.js +33 -6
- package/src/node_modules/@internal/components-util/index.js +10 -0
- package/src/runtime/RenderResult.js +3 -3
- package/src/runtime/components/Component.js +16 -18
- package/src/runtime/components/ComponentDef.js +22 -8
- package/src/runtime/components/ComponentsContext.js +1 -1
- package/src/runtime/components/State.js +2 -2
- package/src/runtime/components/attach-detach.js +1 -1
- package/src/runtime/components/dom-data.js +1 -1
- package/src/runtime/components/legacy/browser.json +9 -0
- package/src/runtime/components/legacy/defineComponent-legacy.js +32 -0
- package/src/runtime/components/legacy/defineRenderer-legacy.js +171 -0
- package/src/runtime/components/legacy/defineWidget-legacy.js +1 -0
- package/src/runtime/components/legacy/dependencies/html.js +3 -0
- package/src/runtime/components/legacy/dependencies/index.js +178 -0
- package/src/runtime/components/legacy/dependencies/vdom.js +3 -0
- package/src/runtime/components/legacy/index.js +1 -0
- package/src/runtime/components/legacy/jquery.js +51 -0
- package/src/runtime/components/legacy/ready.js +152 -0
- package/src/runtime/components/legacy/renderer-legacy.js +230 -0
- package/src/runtime/components/renderer.js +4 -0
- package/src/runtime/components/update-manager.js +1 -1
- package/src/runtime/dom-insert.js +1 -1
- package/src/runtime/helpers/dynamic-tag.js +2 -4
- package/src/runtime/helpers/style-value.js +7 -2
- package/src/runtime/html/AsyncStream.js +5 -5
- package/src/runtime/html/BufferedWriter.js +1 -1
- package/src/runtime/html/StringWriter.js +1 -1
- package/src/runtime/html/helpers/attr.js +15 -2
- package/src/runtime/html/helpers/attrs.js +7 -0
- package/src/runtime/html/helpers/merge-attrs.js +38 -7
- package/src/runtime/html/hot-reload.js +1 -1
- package/src/runtime/html/index.js +2 -2
- package/src/runtime/renderable.js +5 -2
- package/src/runtime/vdom/AsyncVDOMBuilder.js +2 -2
- package/src/runtime/vdom/VComponent.js +1 -1
- package/src/runtime/vdom/VDocumentFragment.js +1 -1
- package/src/runtime/vdom/VElement.js +17 -6
- package/src/runtime/vdom/VFragment.js +1 -1
- package/src/runtime/vdom/VNode.js +1 -1
- package/src/runtime/vdom/VText.js +1 -1
- package/src/runtime/vdom/helpers/attrs.js +26 -6
- package/src/runtime/vdom/helpers/merge-attrs.js +16 -0
- package/src/runtime/vdom/hot-reload.js +1 -1
- package/src/runtime/vdom/index.js +2 -2
- package/src/runtime/vdom/morphdom/fragment.js +1 -1
- package/src/runtime/vdom/morphdom/specialElHandlers.js +1 -1
- package/src/taglib/index.js +1 -1
- 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.
|
|
3
|
-
var vElementByDOMNode = domData.
|
|
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").
|
|
6
|
+
var createFragmentNode = require("./morphdom/fragment")._n_;
|
|
7
7
|
|
|
8
8
|
function VFragment(key, ownerComponent, preserve) {
|
|
9
|
-
this.
|
|
10
|
-
this.
|
|
9
|
+
this.bR_(null /* childCount */, ownerComponent);
|
|
10
|
+
this.bS_ = key;
|
|
11
11
|
this.o_ = preserve;
|
|
12
12
|
}
|
|
13
13
|
|
|
14
14
|
VFragment.prototype = {
|
|
15
|
-
|
|
16
|
-
|
|
15
|
+
bT_: 12,
|
|
16
|
+
bQ_: function () {
|
|
17
17
|
var fragment = createFragmentNode();
|
|
18
|
-
keysByDOMNode.set(fragment, this.
|
|
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
|
-
|
|
6
|
-
this.
|
|
7
|
-
this.
|
|
8
|
-
this.
|
|
9
|
-
this.
|
|
10
|
-
this.
|
|
11
|
-
this.
|
|
12
|
-
this.
|
|
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
|
|
16
|
-
var firstChild = this.
|
|
15
|
+
get ay_() {
|
|
16
|
+
var firstChild = this.bX_;
|
|
17
17
|
|
|
18
|
-
if (firstChild && firstChild.
|
|
19
|
-
var nestedFirstChild = firstChild.
|
|
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.
|
|
24
|
+
return nestedFirstChild || firstChild.cj_;
|
|
25
25
|
}
|
|
26
26
|
|
|
27
27
|
return firstChild;
|
|
28
28
|
},
|
|
29
29
|
|
|
30
|
-
get
|
|
31
|
-
var nextSibling = this.
|
|
30
|
+
get cj_() {
|
|
31
|
+
var nextSibling = this.bV_;
|
|
32
32
|
|
|
33
33
|
if (nextSibling) {
|
|
34
|
-
if (nextSibling.
|
|
35
|
-
var firstChild = nextSibling.
|
|
36
|
-
return firstChild || nextSibling.
|
|
34
|
+
if (nextSibling.bW_) {
|
|
35
|
+
var firstChild = nextSibling.ay_;
|
|
36
|
+
return firstChild || nextSibling.cj_;
|
|
37
37
|
}
|
|
38
38
|
} else {
|
|
39
|
-
var parentNode = this.
|
|
40
|
-
if (parentNode && parentNode.
|
|
41
|
-
return parentNode.
|
|
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
|
-
|
|
49
|
-
this.
|
|
48
|
+
bJ_: function (child) {
|
|
49
|
+
this.ch_++;
|
|
50
50
|
|
|
51
|
-
if (this.
|
|
52
|
-
if (child.
|
|
53
|
-
var childValue = child.
|
|
54
|
-
this.
|
|
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.
|
|
56
|
+
this.cm_ = true;
|
|
57
57
|
} else {
|
|
58
58
|
throw TypeError();
|
|
59
59
|
}
|
|
60
60
|
} else {
|
|
61
|
-
var lastChild = this.
|
|
61
|
+
var lastChild = this.ci_;
|
|
62
62
|
|
|
63
|
-
child.
|
|
63
|
+
child.bU_ = this;
|
|
64
64
|
|
|
65
65
|
if (lastChild) {
|
|
66
|
-
lastChild.
|
|
66
|
+
lastChild.bV_ = child;
|
|
67
67
|
} else {
|
|
68
|
-
this.
|
|
68
|
+
this.bX_ = child;
|
|
69
69
|
}
|
|
70
70
|
|
|
71
|
-
this.
|
|
71
|
+
this.ci_ = child;
|
|
72
72
|
}
|
|
73
73
|
|
|
74
74
|
return child;
|
|
75
75
|
},
|
|
76
76
|
|
|
77
|
-
|
|
78
|
-
if (this.
|
|
79
|
-
return this.
|
|
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.
|
|
6
|
-
this.
|
|
5
|
+
this.bR_(-1 /* no children */, ownerComponent);
|
|
6
|
+
this.cl_ = value;
|
|
7
7
|
}
|
|
8
8
|
|
|
9
9
|
VText.prototype = {
|
|
10
|
-
|
|
10
|
+
ck_: true,
|
|
11
11
|
|
|
12
|
-
|
|
12
|
+
bT_: 3,
|
|
13
13
|
|
|
14
|
-
|
|
15
|
-
return (host.ownerDocument || host).createTextNode(this.
|
|
14
|
+
bQ_: function (host) {
|
|
15
|
+
return (host.ownerDocument || host).createTextNode(this.cl_);
|
|
16
16
|
},
|
|
17
17
|
|
|
18
|
-
|
|
19
|
-
return new VText(this.
|
|
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
|
|
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
|
+
};
|
|
@@ -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.
|
|
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.
|
|
34
|
+
var newProto = registry._J_(typeName).prototype;
|
|
35
35
|
instances.forEach(function (instance) {
|
|
36
36
|
if (hasLifecycleChanged(instance.__proto__, newProto)) {
|
|
37
|
-
var renderer = instance.
|
|
38
|
-
instance.
|
|
39
|
-
instance.
|
|
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.
|
|
44
|
-
instance.
|
|
43
|
+
instance.W_ = renderer;
|
|
44
|
+
instance.W_(input, out);
|
|
45
45
|
};
|
|
46
46
|
|
|
47
|
-
instance.
|
|
48
|
-
instance.
|
|
49
|
-
instance.
|
|
47
|
+
instance.cn_ = true;
|
|
48
|
+
instance.am_();
|
|
49
|
+
instance._z_ = false;
|
|
50
50
|
|
|
51
|
-
if (instance.
|
|
52
|
-
instance.
|
|
53
|
-
instance.
|
|
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.
|
|
59
|
-
instance.
|
|
60
|
-
afterInsert(instance.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
18
|
+
this.path = this.X_ = typeName;
|
|
19
19
|
}
|
|
20
20
|
|
|
21
21
|
var AsyncVDOMBuilder = require("./AsyncVDOMBuilder");
|
|
22
|
-
require("../createOut").
|
|
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.
|
|
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.
|
|
84
|
-
fragment.
|
|
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.
|
|
95
|
-
exports.
|
|
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.
|
|
39
|
-
exports.
|
|
40
|
-
exports.
|
|
41
|
-
exports.
|
|
42
|
-
exports.
|
|
38
|
+
exports.bd_ = insertBefore;
|
|
39
|
+
exports.be_ = insertAfter;
|
|
40
|
+
exports.cj_ = nextSibling;
|
|
41
|
+
exports.ay_ = firstChild;
|
|
42
|
+
exports.bf_ = removeChild;
|