scheduler 0.13.6 → 0.15.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/build-info.json +5 -5
- package/cjs/scheduler-tracing.development.js +44 -1
- package/cjs/scheduler-tracing.production.min.js +1 -1
- package/cjs/scheduler-tracing.profiling.min.js +1 -1
- package/cjs/scheduler-unstable_mock.development.js +724 -0
- package/cjs/scheduler-unstable_mock.production.min.js +21 -0
- package/cjs/scheduler.development.js +658 -456
- package/cjs/scheduler.production.min.js +15 -13
- package/package.json +2 -1
- package/umd/scheduler-unstable_mock.development.js +724 -0
- package/umd/scheduler-unstable_mock.production.min.js +18 -0
- package/umd/scheduler.development.js +16 -0
- package/umd/scheduler.production.min.js +16 -0
- package/umd/scheduler.profiling.min.js +16 -0
- package/unstable_mock.js +7 -0
package/build-info.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
|
-
"branch": "
|
|
3
|
-
"buildNumber": "
|
|
4
|
-
"checksum": "
|
|
5
|
-
"commit": "
|
|
2
|
+
"branch": "master",
|
|
3
|
+
"buildNumber": "33869",
|
|
4
|
+
"checksum": "2fe1c5c",
|
|
5
|
+
"commit": "a1dbb852c",
|
|
6
6
|
"environment": "ci",
|
|
7
|
-
"reactVersion": "16.8.
|
|
7
|
+
"reactVersion": "16.8.6-canary-a1dbb852c"
|
|
8
8
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/** @license React v0.
|
|
1
|
+
/** @license React v0.15.0
|
|
2
2
|
* scheduler-tracing.development.js
|
|
3
3
|
*
|
|
4
4
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
@@ -48,6 +48,9 @@ var enableSchedulerTracing = true;
|
|
|
48
48
|
// Only used in www builds.
|
|
49
49
|
|
|
50
50
|
|
|
51
|
+
// Disable javascript: URL strings in href for XSS protection.
|
|
52
|
+
|
|
53
|
+
|
|
51
54
|
// React Fire: prevent the value and checked attributes from syncing
|
|
52
55
|
// with their related DOM properties
|
|
53
56
|
|
|
@@ -55,6 +58,46 @@ var enableSchedulerTracing = true;
|
|
|
55
58
|
// These APIs will no longer be "unstable" in the upcoming 16.7 release,
|
|
56
59
|
// Control this behavior with a flag to support 16.6 minor releases in the meanwhile.
|
|
57
60
|
|
|
61
|
+
|
|
62
|
+
|
|
63
|
+
|
|
64
|
+
// See https://github.com/react-native-community/discussions-and-proposals/issues/72 for more information
|
|
65
|
+
// This is a flag so we can fix warnings in RN core before turning it on
|
|
66
|
+
|
|
67
|
+
|
|
68
|
+
// Experimental React Flare event system and event components support.
|
|
69
|
+
|
|
70
|
+
|
|
71
|
+
// Experimental Host Component support.
|
|
72
|
+
|
|
73
|
+
|
|
74
|
+
// New API for JSX transforms to target - https://github.com/reactjs/rfcs/pull/107
|
|
75
|
+
|
|
76
|
+
|
|
77
|
+
// We will enforce mocking scheduler with scheduler/unstable_mock at some point. (v17?)
|
|
78
|
+
// Till then, we warn about the missing mock, but still fallback to a sync mode compatible version
|
|
79
|
+
|
|
80
|
+
// Temporary flag to revert the fix in #15650
|
|
81
|
+
|
|
82
|
+
|
|
83
|
+
// For tests, we flush suspense fallbacks in an act scope;
|
|
84
|
+
// *except* in some of our own tests, where we test incremental loading states.
|
|
85
|
+
|
|
86
|
+
|
|
87
|
+
// Changes priority of some events like mousemove to user-blocking priority,
|
|
88
|
+
// but without making them discrete. The flag exists in case it causes
|
|
89
|
+
// starvation problems.
|
|
90
|
+
|
|
91
|
+
|
|
92
|
+
// Add a callback property to suspense to notify which promises are currently
|
|
93
|
+
// in the update queue. This allows reporting and tracing of what is causing
|
|
94
|
+
// the user to see a loading state.
|
|
95
|
+
|
|
96
|
+
|
|
97
|
+
// Part of the simplification of React.createElement so we can eventually move
|
|
98
|
+
// from React.createElement to React.jsx
|
|
99
|
+
// https://github.com/reactjs/rfcs/blob/createlement-rfc/text/0000-create-element-changes.md
|
|
100
|
+
|
|
58
101
|
var DEFAULT_THREAD_ID = 0;
|
|
59
102
|
|
|
60
103
|
// Counters used to generate unique IDs.
|