@vxrn/vendor 1.1.145
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/package.json +13 -0
- package/react/LICENSE +21 -0
- package/react/README.md +37 -0
- package/react/cjs/react-compiler-runtime.development.js +41 -0
- package/react/cjs/react-compiler-runtime.production.js +16 -0
- package/react/cjs/react-compiler-runtime.profiling.js +16 -0
- package/react/cjs/react-jsx-dev-runtime.development.js +677 -0
- package/react/cjs/react-jsx-dev-runtime.production.js +14 -0
- package/react/cjs/react-jsx-dev-runtime.profiling.js +14 -0
- package/react/cjs/react-jsx-dev-runtime.react-server.development.js +687 -0
- package/react/cjs/react-jsx-dev-runtime.react-server.production.js +40 -0
- package/react/cjs/react-jsx-runtime.development.js +673 -0
- package/react/cjs/react-jsx-runtime.production.js +34 -0
- package/react/cjs/react-jsx-runtime.profiling.js +34 -0
- package/react/cjs/react-jsx-runtime.react-server.development.js +687 -0
- package/react/cjs/react-jsx-runtime.react-server.production.js +40 -0
- package/react/cjs/react.development.js +1547 -0
- package/react/cjs/react.production.js +539 -0
- package/react/cjs/react.react-server.development.js +1141 -0
- package/react/cjs/react.react-server.production.js +427 -0
- package/react/compiler-runtime.js +14 -0
- package/react/index.js +7 -0
- package/react/jsx-dev-runtime.js +7 -0
- package/react/jsx-dev-runtime.react-server.js +7 -0
- package/react/jsx-runtime.js +7 -0
- package/react/jsx-runtime.react-server.js +7 -0
- package/react/package.json +51 -0
- package/react/react.react-server.js +7 -0
- package/react-dom/LICENSE +21 -0
- package/react-dom/README.md +60 -0
- package/react-dom/cjs/react-dom-client.development.js +24359 -0
- package/react-dom/cjs/react-dom-client.production.js +14810 -0
- package/react-dom/cjs/react-dom-profiling.development.js +24746 -0
- package/react-dom/cjs/react-dom-profiling.profiling.js +15685 -0
- package/react-dom/cjs/react-dom-server-legacy.browser.development.js +8370 -0
- package/react-dom/cjs/react-dom-server-legacy.browser.production.js +5496 -0
- package/react-dom/cjs/react-dom-server-legacy.node.development.js +8370 -0
- package/react-dom/cjs/react-dom-server-legacy.node.production.js +5578 -0
- package/react-dom/cjs/react-dom-server.browser.development.js +8636 -0
- package/react-dom/cjs/react-dom-server.browser.production.js +5861 -0
- package/react-dom/cjs/react-dom-server.bun.development.js +8083 -0
- package/react-dom/cjs/react-dom-server.bun.production.js +5562 -0
- package/react-dom/cjs/react-dom-server.edge.development.js +8651 -0
- package/react-dom/cjs/react-dom-server.edge.production.js +5953 -0
- package/react-dom/cjs/react-dom-server.node.development.js +8479 -0
- package/react-dom/cjs/react-dom-server.node.production.js +5808 -0
- package/react-dom/cjs/react-dom-test-utils.development.js +43 -0
- package/react-dom/cjs/react-dom-test-utils.production.js +21 -0
- package/react-dom/cjs/react-dom.development.js +440 -0
- package/react-dom/cjs/react-dom.production.js +209 -0
- package/react-dom/cjs/react-dom.react-server.development.js +358 -0
- package/react-dom/cjs/react-dom.react-server.production.js +154 -0
- package/react-dom/client.js +38 -0
- package/react-dom/client.react-server.js +5 -0
- package/react-dom/index.js +38 -0
- package/react-dom/package.json +117 -0
- package/react-dom/profiling.js +38 -0
- package/react-dom/profiling.react-server.js +5 -0
- package/react-dom/react-dom.react-server.js +7 -0
- package/react-dom/server.browser.js +18 -0
- package/react-dom/server.bun.js +19 -0
- package/react-dom/server.edge.js +19 -0
- package/react-dom/server.js +3 -0
- package/react-dom/server.node.js +18 -0
- package/react-dom/server.react-server.js +5 -0
- package/react-dom/static.browser.js +11 -0
- package/react-dom/static.edge.js +11 -0
- package/react-dom/static.js +3 -0
- package/react-dom/static.node.js +11 -0
- package/react-dom/static.react-server.js +5 -0
- package/react-dom/test-utils.js +7 -0
|
@@ -0,0 +1,154 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license React
|
|
3
|
+
* react-dom.react-server.production.js
|
|
4
|
+
*
|
|
5
|
+
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
6
|
+
*
|
|
7
|
+
* This source code is licensed under the MIT license found in the
|
|
8
|
+
* LICENSE file in the root directory of this source tree.
|
|
9
|
+
*/
|
|
10
|
+
|
|
11
|
+
"use strict";
|
|
12
|
+
if (
|
|
13
|
+
!require("react")
|
|
14
|
+
.__SERVER_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE
|
|
15
|
+
)
|
|
16
|
+
throw Error(
|
|
17
|
+
'The "react" package in this environment is not configured correctly. The "react-server" condition must be enabled in any environment that runs React Server Components.'
|
|
18
|
+
);
|
|
19
|
+
function noop() {}
|
|
20
|
+
var Internals = {
|
|
21
|
+
d: {
|
|
22
|
+
f: noop,
|
|
23
|
+
r: function () {
|
|
24
|
+
throw Error(
|
|
25
|
+
"Invalid form element. requestFormReset must be passed a form that was rendered by React."
|
|
26
|
+
);
|
|
27
|
+
},
|
|
28
|
+
D: noop,
|
|
29
|
+
C: noop,
|
|
30
|
+
L: noop,
|
|
31
|
+
m: noop,
|
|
32
|
+
X: noop,
|
|
33
|
+
S: noop,
|
|
34
|
+
M: noop
|
|
35
|
+
},
|
|
36
|
+
p: 0,
|
|
37
|
+
findDOMNode: null
|
|
38
|
+
};
|
|
39
|
+
function getCrossOriginStringAs(as, input) {
|
|
40
|
+
if ("font" === as) return "";
|
|
41
|
+
if ("string" === typeof input)
|
|
42
|
+
return "use-credentials" === input ? input : "";
|
|
43
|
+
}
|
|
44
|
+
exports.__DOM_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE =
|
|
45
|
+
Internals;
|
|
46
|
+
exports.preconnect = function (href, options) {
|
|
47
|
+
"string" === typeof href &&
|
|
48
|
+
(options
|
|
49
|
+
? ((options = options.crossOrigin),
|
|
50
|
+
(options =
|
|
51
|
+
"string" === typeof options
|
|
52
|
+
? "use-credentials" === options
|
|
53
|
+
? options
|
|
54
|
+
: ""
|
|
55
|
+
: void 0))
|
|
56
|
+
: (options = null),
|
|
57
|
+
Internals.d.C(href, options));
|
|
58
|
+
};
|
|
59
|
+
exports.prefetchDNS = function (href) {
|
|
60
|
+
"string" === typeof href && Internals.d.D(href);
|
|
61
|
+
};
|
|
62
|
+
exports.preinit = function (href, options) {
|
|
63
|
+
if ("string" === typeof href && options && "string" === typeof options.as) {
|
|
64
|
+
var as = options.as,
|
|
65
|
+
crossOrigin = getCrossOriginStringAs(as, options.crossOrigin),
|
|
66
|
+
integrity =
|
|
67
|
+
"string" === typeof options.integrity ? options.integrity : void 0,
|
|
68
|
+
fetchPriority =
|
|
69
|
+
"string" === typeof options.fetchPriority
|
|
70
|
+
? options.fetchPriority
|
|
71
|
+
: void 0;
|
|
72
|
+
"style" === as
|
|
73
|
+
? Internals.d.S(
|
|
74
|
+
href,
|
|
75
|
+
"string" === typeof options.precedence ? options.precedence : void 0,
|
|
76
|
+
{
|
|
77
|
+
crossOrigin: crossOrigin,
|
|
78
|
+
integrity: integrity,
|
|
79
|
+
fetchPriority: fetchPriority
|
|
80
|
+
}
|
|
81
|
+
)
|
|
82
|
+
: "script" === as &&
|
|
83
|
+
Internals.d.X(href, {
|
|
84
|
+
crossOrigin: crossOrigin,
|
|
85
|
+
integrity: integrity,
|
|
86
|
+
fetchPriority: fetchPriority,
|
|
87
|
+
nonce: "string" === typeof options.nonce ? options.nonce : void 0
|
|
88
|
+
});
|
|
89
|
+
}
|
|
90
|
+
};
|
|
91
|
+
exports.preinitModule = function (href, options) {
|
|
92
|
+
if ("string" === typeof href)
|
|
93
|
+
if ("object" === typeof options && null !== options) {
|
|
94
|
+
if (null == options.as || "script" === options.as) {
|
|
95
|
+
var crossOrigin = getCrossOriginStringAs(
|
|
96
|
+
options.as,
|
|
97
|
+
options.crossOrigin
|
|
98
|
+
);
|
|
99
|
+
Internals.d.M(href, {
|
|
100
|
+
crossOrigin: crossOrigin,
|
|
101
|
+
integrity:
|
|
102
|
+
"string" === typeof options.integrity ? options.integrity : void 0,
|
|
103
|
+
nonce: "string" === typeof options.nonce ? options.nonce : void 0
|
|
104
|
+
});
|
|
105
|
+
}
|
|
106
|
+
} else null == options && Internals.d.M(href);
|
|
107
|
+
};
|
|
108
|
+
exports.preload = function (href, options) {
|
|
109
|
+
if (
|
|
110
|
+
"string" === typeof href &&
|
|
111
|
+
"object" === typeof options &&
|
|
112
|
+
null !== options &&
|
|
113
|
+
"string" === typeof options.as
|
|
114
|
+
) {
|
|
115
|
+
var as = options.as,
|
|
116
|
+
crossOrigin = getCrossOriginStringAs(as, options.crossOrigin);
|
|
117
|
+
Internals.d.L(href, as, {
|
|
118
|
+
crossOrigin: crossOrigin,
|
|
119
|
+
integrity:
|
|
120
|
+
"string" === typeof options.integrity ? options.integrity : void 0,
|
|
121
|
+
nonce: "string" === typeof options.nonce ? options.nonce : void 0,
|
|
122
|
+
type: "string" === typeof options.type ? options.type : void 0,
|
|
123
|
+
fetchPriority:
|
|
124
|
+
"string" === typeof options.fetchPriority
|
|
125
|
+
? options.fetchPriority
|
|
126
|
+
: void 0,
|
|
127
|
+
referrerPolicy:
|
|
128
|
+
"string" === typeof options.referrerPolicy
|
|
129
|
+
? options.referrerPolicy
|
|
130
|
+
: void 0,
|
|
131
|
+
imageSrcSet:
|
|
132
|
+
"string" === typeof options.imageSrcSet ? options.imageSrcSet : void 0,
|
|
133
|
+
imageSizes:
|
|
134
|
+
"string" === typeof options.imageSizes ? options.imageSizes : void 0,
|
|
135
|
+
media: "string" === typeof options.media ? options.media : void 0
|
|
136
|
+
});
|
|
137
|
+
}
|
|
138
|
+
};
|
|
139
|
+
exports.preloadModule = function (href, options) {
|
|
140
|
+
if ("string" === typeof href)
|
|
141
|
+
if (options) {
|
|
142
|
+
var crossOrigin = getCrossOriginStringAs(options.as, options.crossOrigin);
|
|
143
|
+
Internals.d.m(href, {
|
|
144
|
+
as:
|
|
145
|
+
"string" === typeof options.as && "script" !== options.as
|
|
146
|
+
? options.as
|
|
147
|
+
: void 0,
|
|
148
|
+
crossOrigin: crossOrigin,
|
|
149
|
+
integrity:
|
|
150
|
+
"string" === typeof options.integrity ? options.integrity : void 0
|
|
151
|
+
});
|
|
152
|
+
} else Internals.d.m(href);
|
|
153
|
+
};
|
|
154
|
+
exports.version = "19.0.0-rc-fb9a90fa48-20240614";
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
function checkDCE() {
|
|
4
|
+
/* global __REACT_DEVTOOLS_GLOBAL_HOOK__ */
|
|
5
|
+
if (
|
|
6
|
+
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ === 'undefined' ||
|
|
7
|
+
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE !== 'function'
|
|
8
|
+
) {
|
|
9
|
+
return;
|
|
10
|
+
}
|
|
11
|
+
if (process.env.NODE_ENV !== 'production') {
|
|
12
|
+
// This branch is unreachable because this function is only called
|
|
13
|
+
// in production, but the condition is true only in development.
|
|
14
|
+
// Therefore if the branch is still here, dead code elimination wasn't
|
|
15
|
+
// properly applied.
|
|
16
|
+
// Don't change the message. React DevTools relies on it. Also make sure
|
|
17
|
+
// this message doesn't occur elsewhere in this function, or it will cause
|
|
18
|
+
// a false positive.
|
|
19
|
+
throw new Error('^_^');
|
|
20
|
+
}
|
|
21
|
+
try {
|
|
22
|
+
// Verify that the code above has been dead code eliminated (DCE'd).
|
|
23
|
+
__REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE(checkDCE);
|
|
24
|
+
} catch (err) {
|
|
25
|
+
// DevTools shouldn't crash React, no matter what.
|
|
26
|
+
// We should still report in case we break this code.
|
|
27
|
+
console.error(err);
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
if (process.env.NODE_ENV === 'production') {
|
|
32
|
+
// DCE check should happen before ReactDOM bundle executes so that
|
|
33
|
+
// DevTools can report bad minification during injection.
|
|
34
|
+
checkDCE();
|
|
35
|
+
module.exports = require('./cjs/react-dom-client.production.js');
|
|
36
|
+
} else {
|
|
37
|
+
module.exports = require('./cjs/react-dom-client.development.js');
|
|
38
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
function checkDCE() {
|
|
4
|
+
/* global __REACT_DEVTOOLS_GLOBAL_HOOK__ */
|
|
5
|
+
if (
|
|
6
|
+
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ === 'undefined' ||
|
|
7
|
+
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE !== 'function'
|
|
8
|
+
) {
|
|
9
|
+
return;
|
|
10
|
+
}
|
|
11
|
+
if (process.env.NODE_ENV !== 'production') {
|
|
12
|
+
// This branch is unreachable because this function is only called
|
|
13
|
+
// in production, but the condition is true only in development.
|
|
14
|
+
// Therefore if the branch is still here, dead code elimination wasn't
|
|
15
|
+
// properly applied.
|
|
16
|
+
// Don't change the message. React DevTools relies on it. Also make sure
|
|
17
|
+
// this message doesn't occur elsewhere in this function, or it will cause
|
|
18
|
+
// a false positive.
|
|
19
|
+
throw new Error('^_^');
|
|
20
|
+
}
|
|
21
|
+
try {
|
|
22
|
+
// Verify that the code above has been dead code eliminated (DCE'd).
|
|
23
|
+
__REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE(checkDCE);
|
|
24
|
+
} catch (err) {
|
|
25
|
+
// DevTools shouldn't crash React, no matter what.
|
|
26
|
+
// We should still report in case we break this code.
|
|
27
|
+
console.error(err);
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
if (process.env.NODE_ENV === 'production') {
|
|
32
|
+
// DCE check should happen before ReactDOM bundle executes so that
|
|
33
|
+
// DevTools can report bad minification during injection.
|
|
34
|
+
checkDCE();
|
|
35
|
+
module.exports = require('./cjs/react-dom.production.js');
|
|
36
|
+
} else {
|
|
37
|
+
module.exports = require('./cjs/react-dom.development.js');
|
|
38
|
+
}
|
|
@@ -0,0 +1,117 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "react-dom",
|
|
3
|
+
"version": "19.0.0-rc-fb9a90fa48-20240614",
|
|
4
|
+
"description": "React package for working with the DOM.",
|
|
5
|
+
"main": "index.js",
|
|
6
|
+
"repository": {
|
|
7
|
+
"type": "git",
|
|
8
|
+
"url": "https://github.com/facebook/react.git",
|
|
9
|
+
"directory": "packages/react-dom"
|
|
10
|
+
},
|
|
11
|
+
"keywords": [
|
|
12
|
+
"react"
|
|
13
|
+
],
|
|
14
|
+
"license": "MIT",
|
|
15
|
+
"bugs": {
|
|
16
|
+
"url": "https://github.com/facebook/react/issues"
|
|
17
|
+
},
|
|
18
|
+
"homepage": "https://react.dev/",
|
|
19
|
+
"dependencies": {
|
|
20
|
+
"scheduler": "0.25.0-rc-fb9a90fa48-20240614"
|
|
21
|
+
},
|
|
22
|
+
"peerDependencies": {
|
|
23
|
+
"react": "19.0.0-rc-fb9a90fa48-20240614"
|
|
24
|
+
},
|
|
25
|
+
"files": [
|
|
26
|
+
"LICENSE",
|
|
27
|
+
"README.md",
|
|
28
|
+
"client.js",
|
|
29
|
+
"client.react-server.js",
|
|
30
|
+
"index.js",
|
|
31
|
+
"profiling.js",
|
|
32
|
+
"profiling.react-server.js",
|
|
33
|
+
"react-dom.react-server.js",
|
|
34
|
+
"server.browser.js",
|
|
35
|
+
"server.bun.js",
|
|
36
|
+
"server.edge.js",
|
|
37
|
+
"server.js",
|
|
38
|
+
"server.node.js",
|
|
39
|
+
"server.react-server.js",
|
|
40
|
+
"static.browser.js",
|
|
41
|
+
"static.edge.js",
|
|
42
|
+
"static.js",
|
|
43
|
+
"static.node.js",
|
|
44
|
+
"static.react-server.js",
|
|
45
|
+
"test-utils.js",
|
|
46
|
+
"cjs/"
|
|
47
|
+
],
|
|
48
|
+
"exports": {
|
|
49
|
+
".": {
|
|
50
|
+
"react-server": "./react-dom.react-server.js",
|
|
51
|
+
"default": "./index.js"
|
|
52
|
+
},
|
|
53
|
+
"./client": {
|
|
54
|
+
"react-server": "./client.react-server.js",
|
|
55
|
+
"default": "./client.js"
|
|
56
|
+
},
|
|
57
|
+
"./server": {
|
|
58
|
+
"react-server": "./server.react-server.js",
|
|
59
|
+
"workerd": "./server.edge.js",
|
|
60
|
+
"bun": "./server.bun.js",
|
|
61
|
+
"deno": "./server.browser.js",
|
|
62
|
+
"worker": "./server.browser.js",
|
|
63
|
+
"node": "./server.node.js",
|
|
64
|
+
"edge-light": "./server.edge.js",
|
|
65
|
+
"browser": "./server.browser.js",
|
|
66
|
+
"default": "./server.node.js"
|
|
67
|
+
},
|
|
68
|
+
"./server.browser": {
|
|
69
|
+
"react-server": "./server.react-server.js",
|
|
70
|
+
"default": "./server.browser.js"
|
|
71
|
+
},
|
|
72
|
+
"./server.bun": {
|
|
73
|
+
"react-server": "./server.react-server.js",
|
|
74
|
+
"default": "./server.bun.js"
|
|
75
|
+
},
|
|
76
|
+
"./server.edge": {
|
|
77
|
+
"react-server": "./server.react-server.js",
|
|
78
|
+
"default": "./server.edge.js"
|
|
79
|
+
},
|
|
80
|
+
"./server.node": {
|
|
81
|
+
"react-server": "./server.react-server.js",
|
|
82
|
+
"default": "./server.node.js"
|
|
83
|
+
},
|
|
84
|
+
"./static": {
|
|
85
|
+
"react-server": "./static.react-server.js",
|
|
86
|
+
"workerd": "./static.edge.js",
|
|
87
|
+
"deno": "./static.browser.js",
|
|
88
|
+
"worker": "./static.browser.js",
|
|
89
|
+
"node": "./static.node.js",
|
|
90
|
+
"edge-light": "./static.edge.js",
|
|
91
|
+
"browser": "./static.browser.js",
|
|
92
|
+
"default": "./static.node.js"
|
|
93
|
+
},
|
|
94
|
+
"./static.browser": {
|
|
95
|
+
"react-server": "./static.react-server.js",
|
|
96
|
+
"default": "./static.browser.js"
|
|
97
|
+
},
|
|
98
|
+
"./static.edge": {
|
|
99
|
+
"react-server": "./static.react-server.js",
|
|
100
|
+
"default": "./static.edge.js"
|
|
101
|
+
},
|
|
102
|
+
"./static.node": {
|
|
103
|
+
"react-server": "./static.react-server.js",
|
|
104
|
+
"default": "./static.node.js"
|
|
105
|
+
},
|
|
106
|
+
"./profiling": {
|
|
107
|
+
"react-server": "./profiling.react-server.js",
|
|
108
|
+
"default": "./profiling.js"
|
|
109
|
+
},
|
|
110
|
+
"./test-utils": "./test-utils.js",
|
|
111
|
+
"./package.json": "./package.json"
|
|
112
|
+
},
|
|
113
|
+
"browser": {
|
|
114
|
+
"./server.js": "./server.browser.js",
|
|
115
|
+
"./static.js": "./static.browser.js"
|
|
116
|
+
}
|
|
117
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
function checkDCE() {
|
|
4
|
+
/* global __REACT_DEVTOOLS_GLOBAL_HOOK__ */
|
|
5
|
+
if (
|
|
6
|
+
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ === 'undefined' ||
|
|
7
|
+
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE !== 'function'
|
|
8
|
+
) {
|
|
9
|
+
return;
|
|
10
|
+
}
|
|
11
|
+
if (process.env.NODE_ENV !== 'production') {
|
|
12
|
+
// This branch is unreachable because this function is only called
|
|
13
|
+
// in production, but the condition is true only in development.
|
|
14
|
+
// Therefore if the branch is still here, dead code elimination wasn't
|
|
15
|
+
// properly applied.
|
|
16
|
+
// Don't change the message. React DevTools relies on it. Also make sure
|
|
17
|
+
// this message doesn't occur elsewhere in this function, or it will cause
|
|
18
|
+
// a false positive.
|
|
19
|
+
throw new Error('^_^');
|
|
20
|
+
}
|
|
21
|
+
try {
|
|
22
|
+
// Verify that the code above has been dead code eliminated (DCE'd).
|
|
23
|
+
__REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE(checkDCE);
|
|
24
|
+
} catch (err) {
|
|
25
|
+
// DevTools shouldn't crash React, no matter what.
|
|
26
|
+
// We should still report in case we break this code.
|
|
27
|
+
console.error(err);
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
if (process.env.NODE_ENV === 'production') {
|
|
32
|
+
// DCE check should happen before ReactDOM bundle executes so that
|
|
33
|
+
// DevTools can report bad minification during injection.
|
|
34
|
+
checkDCE();
|
|
35
|
+
module.exports = require('./cjs/react-dom-profiling.profiling.js');
|
|
36
|
+
} else {
|
|
37
|
+
module.exports = require('./cjs/react-dom-profiling.development.js');
|
|
38
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
var l, s;
|
|
4
|
+
if (process.env.NODE_ENV === 'production') {
|
|
5
|
+
l = require('./cjs/react-dom-server-legacy.browser.production.js');
|
|
6
|
+
s = require('./cjs/react-dom-server.browser.production.js');
|
|
7
|
+
} else {
|
|
8
|
+
l = require('./cjs/react-dom-server-legacy.browser.development.js');
|
|
9
|
+
s = require('./cjs/react-dom-server.browser.development.js');
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
exports.version = l.version;
|
|
13
|
+
exports.renderToString = l.renderToString;
|
|
14
|
+
exports.renderToStaticMarkup = l.renderToStaticMarkup;
|
|
15
|
+
exports.renderToReadableStream = s.renderToReadableStream;
|
|
16
|
+
if (s.resume) {
|
|
17
|
+
exports.resume = s.resume;
|
|
18
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
var b;
|
|
4
|
+
var l;
|
|
5
|
+
if (process.env.NODE_ENV === 'production') {
|
|
6
|
+
b = require('./cjs/react-dom-server.bun.production.js');
|
|
7
|
+
l = require('./cjs/react-dom-server-legacy.browser.production.js');
|
|
8
|
+
} else {
|
|
9
|
+
b = require('./cjs/react-dom-server.bun.development.js');
|
|
10
|
+
l = require('./cjs/react-dom-server-legacy.browser.development.js');
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
exports.version = b.version;
|
|
14
|
+
exports.renderToReadableStream = b.renderToReadableStream;
|
|
15
|
+
if (b.resume) {
|
|
16
|
+
exports.resume = b.resume;
|
|
17
|
+
}
|
|
18
|
+
exports.renderToString = l.renderToString;
|
|
19
|
+
exports.renderToStaticMarkup = l.renderToStaticMarkup;
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
var b;
|
|
4
|
+
var l;
|
|
5
|
+
if (process.env.NODE_ENV === 'production') {
|
|
6
|
+
b = require('./cjs/react-dom-server.edge.production.js');
|
|
7
|
+
l = require('./cjs/react-dom-server-legacy.browser.production.js');
|
|
8
|
+
} else {
|
|
9
|
+
b = require('./cjs/react-dom-server.edge.development.js');
|
|
10
|
+
l = require('./cjs/react-dom-server-legacy.browser.development.js');
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
exports.version = b.version;
|
|
14
|
+
exports.renderToReadableStream = b.renderToReadableStream;
|
|
15
|
+
exports.renderToString = l.renderToString;
|
|
16
|
+
exports.renderToStaticMarkup = l.renderToStaticMarkup;
|
|
17
|
+
if (b.resume) {
|
|
18
|
+
exports.resume = b.resume;
|
|
19
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
var l, s;
|
|
4
|
+
if (process.env.NODE_ENV === 'production') {
|
|
5
|
+
l = require('./cjs/react-dom-server-legacy.node.production.js');
|
|
6
|
+
s = require('./cjs/react-dom-server.node.production.js');
|
|
7
|
+
} else {
|
|
8
|
+
l = require('./cjs/react-dom-server-legacy.node.development.js');
|
|
9
|
+
s = require('./cjs/react-dom-server.node.development.js');
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
exports.version = l.version;
|
|
13
|
+
exports.renderToString = l.renderToString;
|
|
14
|
+
exports.renderToStaticMarkup = l.renderToStaticMarkup;
|
|
15
|
+
exports.renderToPipeableStream = s.renderToPipeableStream;
|
|
16
|
+
if (s.resumeToPipeableStream) {
|
|
17
|
+
exports.resumeToPipeableStream = s.resumeToPipeableStream;
|
|
18
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
var s;
|
|
4
|
+
if (process.env.NODE_ENV === 'production') {
|
|
5
|
+
s = require('./cjs/react-dom-server.browser.production.js');
|
|
6
|
+
} else {
|
|
7
|
+
s = require('./cjs/react-dom-server.browser.development.js');
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
exports.version = s.version;
|
|
11
|
+
exports.prerender = s.prerender;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
var s;
|
|
4
|
+
if (process.env.NODE_ENV === 'production') {
|
|
5
|
+
s = require('./cjs/react-dom-server.edge.production.js');
|
|
6
|
+
} else {
|
|
7
|
+
s = require('./cjs/react-dom-server.edge.development.js');
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
exports.version = s.version;
|
|
11
|
+
exports.prerender = s.prerender;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
var s;
|
|
4
|
+
if (process.env.NODE_ENV === 'production') {
|
|
5
|
+
s = require('./cjs/react-dom-server.node.production.js');
|
|
6
|
+
} else {
|
|
7
|
+
s = require('./cjs/react-dom-server.node.development.js');
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
exports.version = s.version;
|
|
11
|
+
exports.prerenderToNodeStream = s.prerenderToNodeStream;
|