ywana-core8 0.0.838 → 0.0.839
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/index.cjs +14 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.modern.js +14 -1
- package/dist/index.modern.js.map +1 -1
- package/dist/index.umd.js +14 -0
- package/dist/index.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/incubator/index.js +1 -1
- package/src/incubator/task-test.js +95 -5
- package/src/incubator/task.js +5 -2
package/dist/index.umd.js
CHANGED
@@ -5127,6 +5127,7 @@
|
|
5127
5127
|
React.useEffect(function () {
|
5128
5128
|
var _interval = setInterval(function () {
|
5129
5129
|
try {
|
5130
|
+
console.log("TASKS INTERVAL", listeners);
|
5130
5131
|
var taskIDs = Object.keys(listeners);
|
5131
5132
|
|
5132
5133
|
var _temp2 = _forTo(taskIDs, function (i) {
|
@@ -5177,6 +5178,18 @@
|
|
5177
5178
|
value: value
|
5178
5179
|
}, children);
|
5179
5180
|
};
|
5181
|
+
/**
|
5182
|
+
* Task States
|
5183
|
+
*/
|
5184
|
+
|
5185
|
+
var TASK_STATES = {
|
5186
|
+
"CREATED": "CREATED",
|
5187
|
+
"RUNNING": "RUNNING",
|
5188
|
+
"COMPLETED": "COMPLETED",
|
5189
|
+
"FAULTED": "FAULTED",
|
5190
|
+
"CANCELED": "CANCELED",
|
5191
|
+
"QUEUED": "QUEUED"
|
5192
|
+
};
|
5180
5193
|
/**
|
5181
5194
|
* TaskProgress
|
5182
5195
|
*/
|
@@ -11893,6 +11906,7 @@
|
|
11893
11906
|
exports.SiteProvider = SiteProvider;
|
11894
11907
|
exports.Stack = Stack;
|
11895
11908
|
exports.Switch = Switch;
|
11909
|
+
exports.TASK_STATES = TASK_STATES;
|
11896
11910
|
exports.TEXTFORMATS = TEXTFORMATS;
|
11897
11911
|
exports.TYPES = TYPES$1;
|
11898
11912
|
exports.Tab = Tab;
|