@workflow/web 5.0.0-beta.27 → 5.0.0-beta.28
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/client/assets/{entry.client-DOJDY_4b.js → entry.client-DQZ2hM2V.js} +24 -24
- package/build/client/assets/{highlighted-body-B3W2YXNL-B-EF8R0t.js → highlighted-body-B3W2YXNL-CQ-a-eYE.js} +1 -1
- package/build/client/assets/{home-DQkixJk4.js → home-DuZRFOMe.js} +1697 -233
- package/build/client/assets/{index-C7C6cDW5.js → index-HqNj_XIX.js} +10 -10
- package/build/client/assets/{manifest-ce6dd06d.js → manifest-bb838d97.js} +1 -1
- package/build/client/assets/{mermaid-3ZIDBTTL-aixonSAh.js → mermaid-3ZIDBTTL-QcES6x1o.js} +374 -71
- package/build/client/assets/root-BT69a3LD.css +1 -0
- package/build/client/assets/{root-CsCdj08f.js → root-BiHTsCtP.js} +1 -1
- package/build/client/assets/{run-detail-CCsVqid_.js → run-detail-DSpZ5dnN.js} +50 -99
- package/build/client/assets/server-build-BkKXPNcO.css +1 -0
- package/build/client/assets/{workflow-graph-viewer-BlPvo_5I.js → workflow-graph-viewer-CyKfZJOQ.js} +222 -197
- package/build/client/assets/{zstd-browser-decoder-RyHgsNO3.js → zstd-browser-decoder-BigjGoI1.js} +2 -2
- package/build/server/assets/{app-kYNGZFkW.js → app-Cl6-bhGd.js} +43 -43
- package/build/server/assets/{highlighted-body-B3W2YXNL-D1QWoqJB.js → highlighted-body-B3W2YXNL-Daljn6fi.js} +4 -4
- package/build/server/assets/{index-fWQcXKhC.js → index-B_N7SdQh.js} +5 -5
- package/build/server/assets/{index-BafExO0s.js → index-BfLBLRRi.js} +10 -10
- package/build/server/assets/{mermaid-3ZIDBTTL-BOh-zwwU.js → mermaid-3ZIDBTTL-xnUhfFrD.js} +4 -4
- package/build/server/assets/{server-build-B21fZEey.js → server-build-D5Nuwxaw.js} +39144 -37202
- package/build/server/assets/{token-DmIqmbeU.js → token-DDgfwjzz.js} +2 -2
- package/build/server/assets/{token-util-D4JYdrFc.js → token-util-CthtfGuG.js} +2 -2
- package/build/server/assets/{zstd-browser-decoder-DgO7NCG6.js → zstd-browser-decoder-zp5ZpR7T.js} +5 -5
- package/build/server/index.js +1 -1
- package/package.json +10 -8
- package/build/client/assets/root-BlaSucTH.css +0 -1
- package/build/client/assets/server-build-DPrKlhgf.css +0 -1
|
@@ -16,7 +16,7 @@ var hasRequiredScheduler_production;
|
|
|
16
16
|
function requireScheduler_production() {
|
|
17
17
|
if (hasRequiredScheduler_production) return scheduler_production;
|
|
18
18
|
hasRequiredScheduler_production = 1;
|
|
19
|
-
(function(exports
|
|
19
|
+
(function(exports) {
|
|
20
20
|
function push(heap, node) {
|
|
21
21
|
var index = heap.length;
|
|
22
22
|
heap.push(node);
|
|
@@ -50,15 +50,15 @@ function requireScheduler_production() {
|
|
|
50
50
|
var diff = a.sortIndex - b.sortIndex;
|
|
51
51
|
return 0 !== diff ? diff : a.id - b.id;
|
|
52
52
|
}
|
|
53
|
-
exports
|
|
53
|
+
exports.unstable_now = void 0;
|
|
54
54
|
if ("object" === typeof performance && "function" === typeof performance.now) {
|
|
55
55
|
var localPerformance = performance;
|
|
56
|
-
exports
|
|
56
|
+
exports.unstable_now = function() {
|
|
57
57
|
return localPerformance.now();
|
|
58
58
|
};
|
|
59
59
|
} else {
|
|
60
60
|
var localDate = Date, initialTime = localDate.now();
|
|
61
|
-
exports
|
|
61
|
+
exports.unstable_now = function() {
|
|
62
62
|
return localDate.now() - initialTime;
|
|
63
63
|
};
|
|
64
64
|
}
|
|
@@ -85,12 +85,12 @@ function requireScheduler_production() {
|
|
|
85
85
|
}
|
|
86
86
|
var isMessageLoopRunning = false, taskTimeoutID = -1, frameInterval = 5, startTime = -1;
|
|
87
87
|
function shouldYieldToHost() {
|
|
88
|
-
return needsPaint ? true : exports
|
|
88
|
+
return needsPaint ? true : exports.unstable_now() - startTime < frameInterval ? false : true;
|
|
89
89
|
}
|
|
90
90
|
function performWorkUntilDeadline() {
|
|
91
91
|
needsPaint = false;
|
|
92
92
|
if (isMessageLoopRunning) {
|
|
93
|
-
var currentTime = exports
|
|
93
|
+
var currentTime = exports.unstable_now();
|
|
94
94
|
startTime = currentTime;
|
|
95
95
|
var hasMoreWork = true;
|
|
96
96
|
try {
|
|
@@ -110,7 +110,7 @@ function requireScheduler_production() {
|
|
|
110
110
|
var continuationCallback = callback(
|
|
111
111
|
currentTask.expirationTime <= currentTime
|
|
112
112
|
);
|
|
113
|
-
currentTime = exports
|
|
113
|
+
currentTime = exports.unstable_now();
|
|
114
114
|
if ("function" === typeof continuationCallback) {
|
|
115
115
|
currentTask.callback = continuationCallback;
|
|
116
116
|
advanceTimers(currentTime);
|
|
@@ -160,27 +160,27 @@ function requireScheduler_production() {
|
|
|
160
160
|
};
|
|
161
161
|
function requestHostTimeout(callback, ms) {
|
|
162
162
|
taskTimeoutID = localSetTimeout(function() {
|
|
163
|
-
callback(exports
|
|
163
|
+
callback(exports.unstable_now());
|
|
164
164
|
}, ms);
|
|
165
165
|
}
|
|
166
|
-
exports
|
|
167
|
-
exports
|
|
168
|
-
exports
|
|
169
|
-
exports
|
|
170
|
-
exports
|
|
171
|
-
exports
|
|
172
|
-
exports
|
|
166
|
+
exports.unstable_IdlePriority = 5;
|
|
167
|
+
exports.unstable_ImmediatePriority = 1;
|
|
168
|
+
exports.unstable_LowPriority = 4;
|
|
169
|
+
exports.unstable_NormalPriority = 3;
|
|
170
|
+
exports.unstable_Profiling = null;
|
|
171
|
+
exports.unstable_UserBlockingPriority = 2;
|
|
172
|
+
exports.unstable_cancelCallback = function(task) {
|
|
173
173
|
task.callback = null;
|
|
174
174
|
};
|
|
175
|
-
exports
|
|
175
|
+
exports.unstable_forceFrameRate = function(fps) {
|
|
176
176
|
0 > fps || 125 < fps ? console.error(
|
|
177
177
|
"forceFrameRate takes a positive int between 0 and 125, forcing frame rates higher than 125 fps is not supported"
|
|
178
178
|
) : frameInterval = 0 < fps ? Math.floor(1e3 / fps) : 5;
|
|
179
179
|
};
|
|
180
|
-
exports
|
|
180
|
+
exports.unstable_getCurrentPriorityLevel = function() {
|
|
181
181
|
return currentPriorityLevel;
|
|
182
182
|
};
|
|
183
|
-
exports
|
|
183
|
+
exports.unstable_next = function(eventHandler) {
|
|
184
184
|
switch (currentPriorityLevel) {
|
|
185
185
|
case 1:
|
|
186
186
|
case 2:
|
|
@@ -198,10 +198,10 @@ function requireScheduler_production() {
|
|
|
198
198
|
currentPriorityLevel = previousPriorityLevel;
|
|
199
199
|
}
|
|
200
200
|
};
|
|
201
|
-
exports
|
|
201
|
+
exports.unstable_requestPaint = function() {
|
|
202
202
|
needsPaint = true;
|
|
203
203
|
};
|
|
204
|
-
exports
|
|
204
|
+
exports.unstable_runWithPriority = function(priorityLevel, eventHandler) {
|
|
205
205
|
switch (priorityLevel) {
|
|
206
206
|
case 1:
|
|
207
207
|
case 2:
|
|
@@ -220,8 +220,8 @@ function requireScheduler_production() {
|
|
|
220
220
|
currentPriorityLevel = previousPriorityLevel;
|
|
221
221
|
}
|
|
222
222
|
};
|
|
223
|
-
exports
|
|
224
|
-
var currentTime = exports
|
|
223
|
+
exports.unstable_scheduleCallback = function(priorityLevel, callback, options) {
|
|
224
|
+
var currentTime = exports.unstable_now();
|
|
225
225
|
"object" === typeof options && null !== options ? (options = options.delay, options = "number" === typeof options && 0 < options ? currentTime + options : currentTime) : options = currentTime;
|
|
226
226
|
switch (priorityLevel) {
|
|
227
227
|
case 1:
|
|
@@ -251,8 +251,8 @@ function requireScheduler_production() {
|
|
|
251
251
|
options > currentTime ? (priorityLevel.sortIndex = options, push(timerQueue, priorityLevel), null === peek(taskQueue) && priorityLevel === peek(timerQueue) && (isHostTimeoutScheduled ? (localClearTimeout(taskTimeoutID), taskTimeoutID = -1) : isHostTimeoutScheduled = true, requestHostTimeout(handleTimeout, options - currentTime))) : (priorityLevel.sortIndex = timeout, push(taskQueue, priorityLevel), isHostCallbackScheduled || isPerformingWork || (isHostCallbackScheduled = true, isMessageLoopRunning || (isMessageLoopRunning = true, schedulePerformWorkUntilDeadline())));
|
|
252
252
|
return priorityLevel;
|
|
253
253
|
};
|
|
254
|
-
exports
|
|
255
|
-
exports
|
|
254
|
+
exports.unstable_shouldYield = shouldYieldToHost;
|
|
255
|
+
exports.unstable_wrapCallback = function(callback) {
|
|
256
256
|
var parentPriorityLevel = currentPriorityLevel;
|
|
257
257
|
return function() {
|
|
258
258
|
var previousPriorityLevel = currentPriorityLevel;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { R, K as Ks, Q as Qe } from "./mermaid-3ZIDBTTL-
|
|
1
|
+
import { R, K as Ks, Q as Qe } from "./mermaid-3ZIDBTTL-QcES6x1o.js";
|
|
2
2
|
import { r as reactExports, j as jsxRuntimeExports } from "./index-BXZSIDEp.js";
|
|
3
3
|
var L = ({ code: s, language: t, raw: e, className: n, ...d$1 }) => {
|
|
4
4
|
let { shikiTheme: l } = reactExports.useContext(R), o = Ks(), [m, i] = reactExports.useState(e);
|