@oomol-lab/open-flow 0.1.0-beta.28 → 0.1.0-beta.29
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/browser/{createResourceDialog-C2ZLGPla.js → createResourceDialog-C_8I3Fua.js} +1 -1
- package/dist/browser/dist-CoszrK7m.js +4 -0
- package/dist/browser/{switch-DuB8aovT.js → editorComponent-Dq4IKp5R.js} +1222 -608
- package/dist/browser/flow-authoring-node.d.ts +3 -0
- package/dist/browser/flow-authoring.js +1388 -1555
- package/dist/browser/flow-change.d.ts +12 -7
- package/dist/browser/flow-change.js +966 -1105
- package/dist/browser/{flowChanges-Z49mslMz.js → flowChanges-BBtkyUGd.js} +1974 -1839
- package/dist/browser/{flowRunInputEditorStore-BBqQIOCR.js → flowRunInputEditorStore-CTORQcA2.js} +378 -429
- package/dist/browser/{flowWorkspace-DCaVDqtY.js → flowWorkspace-DNmBb3ZW.js} +52795 -52886
- package/dist/browser/{inputValues-CLnpqFAf.js → inputValues-BbSVOWQP.js} +2 -2
- package/dist/browser/{markdownContent-Bon8uhjM.js → markdownContent-D2oHGWc6.js} +1 -1
- package/dist/browser/ui.css +1 -1
- package/dist/browser/value-DPg_9yXB.js +93 -0
- package/dist/browser/workbench.css +1 -1
- package/dist/browser/workbench.js +508 -507
- package/dist/browser/{workbenchSelect-DX9IFmX-.js → workbenchSelect-CQOvpteT.js} +1057 -1223
- package/dist/common/authoringExamples.d.ts +3 -2
- package/dist/common/control-api-conformance.js +1359 -1484
- package/dist/common/control-api.d.ts +5 -1
- package/dist/common/control-api.js +942 -1077
- package/dist/common/control-requests.js +751 -834
- package/dist/common/flow-encoding.js +1502 -1637
- package/dist/common/flow-graph.d.ts +18 -2
- package/dist/common/flow-semantics.js +1982 -2116
- package/dist/common/mcp.js +908 -1016
- package/dist/common/provider-triggers.js +2048 -2183
- package/dist/common/run-events.js +1 -0
- package/dist/common/scheduler.d.ts +2 -2
- package/dist/common/scheduler.js +1282 -1477
- package/package.json +1 -1
- package/dist/browser/dist-B_T-OpQp.js +0 -4
- package/dist/browser/languages-C0zQ4GSo.js +0 -42
package/package.json
CHANGED
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
//#region ../../node_modules/.bun/@wopjs+cast@0.1.16/node_modules/@wopjs/cast/dist/index.mjs
|
|
2
|
-
var e = (e) => e !== void 0, t = (e) => e === !0 || e === !1, n = (e) => typeof e == "string", r = Array.isArray, i = (e) => typeof e == "object" && !!e, a = (e) => i(e) && !r(e), o = (e) => a(e) ? e : void 0;
|
|
3
|
-
//#endregion
|
|
4
|
-
export { n as a, a as i, t as n, o, e as r, r as t };
|
|
@@ -1,42 +0,0 @@
|
|
|
1
|
-
//#region src/localization/common/languages.ts
|
|
2
|
-
var e = [
|
|
3
|
-
"en",
|
|
4
|
-
"zh-CN",
|
|
5
|
-
"zh-TW",
|
|
6
|
-
"ja",
|
|
7
|
-
"ko",
|
|
8
|
-
"ru",
|
|
9
|
-
"fr"
|
|
10
|
-
], t = {
|
|
11
|
-
en: "English",
|
|
12
|
-
"zh-CN": "简体中文",
|
|
13
|
-
"zh-TW": "繁體中文",
|
|
14
|
-
ja: "日本語",
|
|
15
|
-
ko: "한국어",
|
|
16
|
-
ru: "Русский",
|
|
17
|
-
fr: "Français"
|
|
18
|
-
}, n = new Map(e.map((e) => [e.toLowerCase(), e])), r = /* @__PURE__ */ new Set([
|
|
19
|
-
"hk",
|
|
20
|
-
"mo",
|
|
21
|
-
"tw"
|
|
22
|
-
]);
|
|
23
|
-
function i(e) {
|
|
24
|
-
return typeof e == "string" && n.get(e.toLowerCase()) == e;
|
|
25
|
-
}
|
|
26
|
-
function a(e, t = "en") {
|
|
27
|
-
for (let t of e) {
|
|
28
|
-
let e = t == null ? void 0 : o(t);
|
|
29
|
-
if (e != null) return e;
|
|
30
|
-
}
|
|
31
|
-
return t;
|
|
32
|
-
}
|
|
33
|
-
function o(e) {
|
|
34
|
-
let t = e.trim().toLowerCase();
|
|
35
|
-
if (t.length == 0) return;
|
|
36
|
-
let i = n.get(t);
|
|
37
|
-
if (i != null) return i;
|
|
38
|
-
let a = t.split("-");
|
|
39
|
-
return a[0] == "zh" ? a.includes("hant") ? "zh-TW" : a.includes("hans") ? "zh-CN" : a.some((e) => r.has(e)) ? "zh-TW" : "zh-CN" : n.get(a[0]);
|
|
40
|
-
}
|
|
41
|
-
//#endregion
|
|
42
|
-
export { e as i, a as n, t as r, i as t };
|