react 15.4.0-rc.1 → 15.4.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 (56) hide show
  1. package/dist/react-with-addons.js +11 -52
  2. package/dist/react-with-addons.min.js +3 -3
  3. package/dist/react.js +10 -35
  4. package/dist/react.min.js +2 -2
  5. package/lib/KeyEscapeUtils.js +0 -1
  6. package/lib/LinkedStateMixin.js +0 -1
  7. package/lib/PooledClass.js +0 -1
  8. package/lib/React.js +0 -1
  9. package/lib/ReactAddonsDOMDependencies.js +0 -1
  10. package/lib/ReactAddonsDOMDependenciesUMDShim.js +0 -1
  11. package/lib/ReactCSSTransitionGroup.js +0 -1
  12. package/lib/ReactCSSTransitionGroupChild.js +0 -1
  13. package/lib/ReactChildren.js +6 -7
  14. package/lib/ReactClass.js +0 -1
  15. package/lib/ReactComponent.js +0 -1
  16. package/lib/ReactComponentTreeDevtool.js +0 -1
  17. package/lib/ReactComponentTreeHook.js +2 -3
  18. package/lib/ReactComponentTreeHookUMDShim.js +0 -1
  19. package/lib/ReactComponentWithPureRenderMixin.js +0 -1
  20. package/lib/ReactCurrentOwner.js +0 -1
  21. package/lib/ReactCurrentOwnerUMDShim.js +0 -1
  22. package/lib/ReactDOMFactories.js +0 -1
  23. package/lib/ReactElement.js +0 -1
  24. package/lib/ReactElementSymbol.js +0 -1
  25. package/lib/ReactElementType.js +0 -1
  26. package/lib/ReactElementValidator.js +0 -1
  27. package/lib/ReactFragment.js +0 -1
  28. package/lib/ReactLink.js +0 -1
  29. package/lib/ReactNoopUpdateQueue.js +0 -1
  30. package/lib/ReactPropTypeLocationNames.js +0 -1
  31. package/lib/ReactPropTypeLocations.js +0 -1
  32. package/lib/ReactPropTypes.js +0 -1
  33. package/lib/ReactPropTypesSecret.js +0 -1
  34. package/lib/ReactPureComponent.js +0 -1
  35. package/lib/ReactStateSetters.js +0 -1
  36. package/lib/ReactTransitionChildMapping.js +0 -1
  37. package/lib/ReactTransitionEvents.js +0 -1
  38. package/lib/ReactTransitionGroup.js +0 -1
  39. package/lib/ReactUMDEntry.js +0 -1
  40. package/lib/ReactUMDShim.js +0 -1
  41. package/lib/ReactVersion.js +1 -2
  42. package/lib/ReactWithAddons.js +0 -1
  43. package/lib/ReactWithAddonsUMDEntry.js +0 -1
  44. package/lib/canDefineProperty.js +0 -1
  45. package/lib/checkReactTypeSpec.js +0 -1
  46. package/lib/deprecated.js +0 -1
  47. package/lib/flattenChildren.js +0 -1
  48. package/lib/getIteratorFn.js +0 -1
  49. package/lib/getNextDebugID.js +20 -0
  50. package/lib/onlyChild.js +0 -1
  51. package/lib/reactProdInvariant.js +0 -1
  52. package/lib/shallowCompare.js +1 -2
  53. package/lib/sliceChildren.js +0 -1
  54. package/lib/traverseAllChildren.js +0 -1
  55. package/lib/update.js +0 -1
  56. package/package.json +1 -1
@@ -6,7 +6,6 @@
6
6
  * LICENSE file in the root directory of this source tree. An additional grant
7
7
  * of patent rights can be found in the PATENTS file in the same directory.
8
8
  *
9
- * @providesModule flattenChildren
10
9
  *
11
10
  */
12
11
 
@@ -6,7 +6,6 @@
6
6
  * LICENSE file in the root directory of this source tree. An additional grant
7
7
  * of patent rights can be found in the PATENTS file in the same directory.
8
8
  *
9
- * @providesModule getIteratorFn
10
9
  *
11
10
  */
12
11
 
@@ -0,0 +1,20 @@
1
+ /**
2
+ * Copyright 2013-present, Facebook, Inc.
3
+ * All rights reserved.
4
+ *
5
+ * This source code is licensed under the BSD-style license found in the
6
+ * LICENSE file in the root directory of this source tree. An additional grant
7
+ * of patent rights can be found in the PATENTS file in the same directory.
8
+ *
9
+ *
10
+ */
11
+
12
+ 'use strict';
13
+
14
+ var nextDebugID = 1;
15
+
16
+ function getNextDebugID() {
17
+ return nextDebugID++;
18
+ }
19
+
20
+ module.exports = getNextDebugID;
package/lib/onlyChild.js CHANGED
@@ -6,7 +6,6 @@
6
6
  * LICENSE file in the root directory of this source tree. An additional grant
7
7
  * of patent rights can be found in the PATENTS file in the same directory.
8
8
  *
9
- * @providesModule onlyChild
10
9
  */
11
10
  'use strict';
12
11
 
@@ -6,7 +6,6 @@
6
6
  * LICENSE file in the root directory of this source tree. An additional grant
7
7
  * of patent rights can be found in the PATENTS file in the same directory.
8
8
  *
9
- * @providesModule reactProdInvariant
10
9
  *
11
10
  */
12
11
  'use strict';
@@ -6,8 +6,7 @@
6
6
  * LICENSE file in the root directory of this source tree. An additional grant
7
7
  * of patent rights can be found in the PATENTS file in the same directory.
8
8
  *
9
- * @providesModule shallowCompare
10
- */
9
+ */
11
10
 
12
11
  'use strict';
13
12
 
@@ -6,7 +6,6 @@
6
6
  * LICENSE file in the root directory of this source tree. An additional grant
7
7
  * of patent rights can be found in the PATENTS file in the same directory.
8
8
  *
9
- * @providesModule sliceChildren
10
9
  */
11
10
 
12
11
  'use strict';
@@ -6,7 +6,6 @@
6
6
  * LICENSE file in the root directory of this source tree. An additional grant
7
7
  * of patent rights can be found in the PATENTS file in the same directory.
8
8
  *
9
- * @providesModule traverseAllChildren
10
9
  */
11
10
 
12
11
  'use strict';
package/lib/update.js CHANGED
@@ -6,7 +6,6 @@
6
6
  * LICENSE file in the root directory of this source tree. An additional grant
7
7
  * of patent rights can be found in the PATENTS file in the same directory.
8
8
  *
9
- * @providesModule update
10
9
  */
11
10
 
12
11
  /* global hasOwnProperty:true */
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "react",
3
3
  "description": "React is a JavaScript library for building user interfaces.",
4
- "version": "15.4.0-rc.1",
4
+ "version": "15.4.0",
5
5
  "keywords": [
6
6
  "react"
7
7
  ],