react-dom 0.14.6 → 0.14.10
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/dist/react-dom-server.js +2 -2
- package/dist/react-dom-server.min.js +2 -2
- package/dist/react-dom.js +2 -2
- package/dist/react-dom.min.js +2 -2
- package/package.json +19 -10
package/dist/react-dom-server.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* ReactDOMServer v0.14.
|
|
2
|
+
* ReactDOMServer v0.14.10
|
|
3
3
|
*
|
|
4
4
|
* Copyright 2013-2015, Facebook, Inc.
|
|
5
5
|
* All rights reserved.
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
|
|
22
22
|
// <script>
|
|
23
23
|
} else {
|
|
24
|
-
var g
|
|
24
|
+
var g;
|
|
25
25
|
if (typeof window !== "undefined") {
|
|
26
26
|
g = window;
|
|
27
27
|
} else if (typeof global !== "undefined") {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* ReactDOMServer v0.14.
|
|
2
|
+
* ReactDOMServer v0.14.10
|
|
3
3
|
*
|
|
4
4
|
* Copyright 2013-2015, Facebook, Inc.
|
|
5
5
|
* All rights reserved.
|
|
@@ -9,4 +9,4 @@
|
|
|
9
9
|
* of patent rights can be found in the PATENTS file in the same directory.
|
|
10
10
|
*
|
|
11
11
|
*/
|
|
12
|
-
!function(e){if("object"==typeof exports&&"undefined"!=typeof module)module.exports=e(require("react"));else if("function"==typeof define&&define.amd)define(["react"],e);else{var f;f="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:this,f.ReactDOMServer=e(f.React)}}(function(e){return e.__SECRET_DOM_SERVER_DO_NOT_USE_OR_YOU_WILL_BE_FIRED});
|
|
12
|
+
!function(e){if("object"==typeof exports&&"undefined"!=typeof module)module.exports=e(require("react"));else if("function"==typeof define&&define.amd)define(["react"],e);else{var f;f="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:this,f.ReactDOMServer=e(f.React)}}(function(e){return e.__SECRET_DOM_SERVER_DO_NOT_USE_OR_YOU_WILL_BE_FIRED});
|
package/dist/react-dom.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* ReactDOM v0.14.
|
|
2
|
+
* ReactDOM v0.14.10
|
|
3
3
|
*
|
|
4
4
|
* Copyright 2013-2015, Facebook, Inc.
|
|
5
5
|
* All rights reserved.
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
|
|
22
22
|
// <script>
|
|
23
23
|
} else {
|
|
24
|
-
var g
|
|
24
|
+
var g;
|
|
25
25
|
if (typeof window !== "undefined") {
|
|
26
26
|
g = window;
|
|
27
27
|
} else if (typeof global !== "undefined") {
|
package/dist/react-dom.min.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* ReactDOM v0.14.
|
|
2
|
+
* ReactDOM v0.14.10
|
|
3
3
|
*
|
|
4
4
|
* Copyright 2013-2015, Facebook, Inc.
|
|
5
5
|
* All rights reserved.
|
|
@@ -9,4 +9,4 @@
|
|
|
9
9
|
* of patent rights can be found in the PATENTS file in the same directory.
|
|
10
10
|
*
|
|
11
11
|
*/
|
|
12
|
-
!function(e){if("object"==typeof exports&&"undefined"!=typeof module)module.exports=e(require("react"));else if("function"==typeof define&&define.amd)define(["react"],e);else{var f;f="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:this,f.ReactDOM=e(f.React)}}(function(e){return e.__SECRET_DOM_DO_NOT_USE_OR_YOU_WILL_BE_FIRED});
|
|
12
|
+
!function(e){if("object"==typeof exports&&"undefined"!=typeof module)module.exports=e(require("react"));else if("function"==typeof define&&define.amd)define(["react"],e);else{var f;f="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:this,f.ReactDOM=e(f.React)}}(function(e){return e.__SECRET_DOM_DO_NOT_USE_OR_YOU_WILL_BE_FIRED});
|
package/package.json
CHANGED
|
@@ -1,18 +1,27 @@
|
|
|
1
1
|
{
|
|
2
|
-
"
|
|
3
|
-
|
|
2
|
+
"bugs": {
|
|
3
|
+
"url": "https://github.com/facebook/react/issues"
|
|
4
|
+
},
|
|
5
|
+
"bundleDependencies": false,
|
|
6
|
+
"dependencies": {},
|
|
7
|
+
"deprecated": false,
|
|
4
8
|
"description": "React package for working with the DOM.",
|
|
5
|
-
"
|
|
6
|
-
"repository": "facebook/react",
|
|
9
|
+
"homepage": "https://facebook.github.io/react/",
|
|
7
10
|
"keywords": [
|
|
8
11
|
"react"
|
|
9
12
|
],
|
|
10
13
|
"license": "BSD-3-Clause",
|
|
11
|
-
"
|
|
12
|
-
|
|
13
|
-
},
|
|
14
|
-
"homepage": "https://github.com/facebook/react/tree/master/npm-react-dom",
|
|
14
|
+
"main": "index.js",
|
|
15
|
+
"name": "react-dom",
|
|
15
16
|
"peerDependencies": {
|
|
16
|
-
"react": "^0.14.
|
|
17
|
-
}
|
|
17
|
+
"react": "^0.14.10"
|
|
18
|
+
},
|
|
19
|
+
"repository": {
|
|
20
|
+
"type": "git",
|
|
21
|
+
"url": "git+https://github.com/facebook/react.git"
|
|
22
|
+
},
|
|
23
|
+
"scripts": {
|
|
24
|
+
"start": "node server.js"
|
|
25
|
+
},
|
|
26
|
+
"version": "0.14.10"
|
|
18
27
|
}
|