@tachybase/module-cloud-component 0.23.8

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 (109) hide show
  1. package/.turbo/turbo-build.log +9 -0
  2. package/README.md +1 -0
  3. package/client.d.ts +2 -0
  4. package/client.js +1 -0
  5. package/dist/client/CloudComponent.provider.d.ts +2 -0
  6. package/dist/client/cloud-library-manager/CloudLibrary.collection.d.ts +2 -0
  7. package/dist/client/cloud-library-manager/CloudLibraryManager.d.ts +2 -0
  8. package/dist/client/cloud-library-manager/CloudLibraryManager.fields.d.ts +82 -0
  9. package/dist/client/cloud-library-manager/CloudLibraryManager.schema.d.ts +1075 -0
  10. package/dist/client/components/CloudComponentLink.d.ts +2 -0
  11. package/dist/client/components/ComponentEditor.d.ts +6 -0
  12. package/dist/client/components/MarkdownEditor.d.ts +9 -0
  13. package/dist/client/components/Preview.d.ts +9 -0
  14. package/dist/client/index.d.ts +8 -0
  15. package/dist/client/index.js +1107 -0
  16. package/dist/client/locale.d.ts +9 -0
  17. package/dist/client/settings/CloudComponentBlock.d.ts +4 -0
  18. package/dist/client/settings/InitializerItem.d.ts +2 -0
  19. package/dist/client/settings/schema.d.ts +2 -0
  20. package/dist/client/settings/settings.d.ts +2 -0
  21. package/dist/externalVersion.js +15 -0
  22. package/dist/index.d.ts +2 -0
  23. package/dist/index.js +39 -0
  24. package/dist/locale/en-US.json +12 -0
  25. package/dist/locale/zh-CN.json +12 -0
  26. package/dist/node_modules/@babel/core/LICENSE +22 -0
  27. package/dist/node_modules/@babel/core/cjs-proxy.cjs +68 -0
  28. package/dist/node_modules/@babel/core/lib/config/cache-contexts.js +3 -0
  29. package/dist/node_modules/@babel/core/lib/config/caching.js +261 -0
  30. package/dist/node_modules/@babel/core/lib/config/config-chain.js +469 -0
  31. package/dist/node_modules/@babel/core/lib/config/config-descriptors.js +190 -0
  32. package/dist/node_modules/@babel/core/lib/config/files/configuration.js +287 -0
  33. package/dist/node_modules/@babel/core/lib/config/files/import.cjs +6 -0
  34. package/dist/node_modules/@babel/core/lib/config/files/index-browser.js +58 -0
  35. package/dist/node_modules/@babel/core/lib/config/files/index.js +78 -0
  36. package/dist/node_modules/@babel/core/lib/config/files/module-types.js +195 -0
  37. package/dist/node_modules/@babel/core/lib/config/files/package.js +61 -0
  38. package/dist/node_modules/@babel/core/lib/config/files/plugins.js +229 -0
  39. package/dist/node_modules/@babel/core/lib/config/files/types.js +3 -0
  40. package/dist/node_modules/@babel/core/lib/config/files/utils.js +36 -0
  41. package/dist/node_modules/@babel/core/lib/config/full.js +312 -0
  42. package/dist/node_modules/@babel/core/lib/config/helpers/config-api.js +84 -0
  43. package/dist/node_modules/@babel/core/lib/config/helpers/deep-array.js +23 -0
  44. package/dist/node_modules/@babel/core/lib/config/helpers/environment.js +12 -0
  45. package/dist/node_modules/@babel/core/lib/config/index.js +93 -0
  46. package/dist/node_modules/@babel/core/lib/config/item.js +67 -0
  47. package/dist/node_modules/@babel/core/lib/config/partial.js +158 -0
  48. package/dist/node_modules/@babel/core/lib/config/pattern-to-regex.js +38 -0
  49. package/dist/node_modules/@babel/core/lib/config/plugin.js +33 -0
  50. package/dist/node_modules/@babel/core/lib/config/printer.js +113 -0
  51. package/dist/node_modules/@babel/core/lib/config/resolve-targets-browser.js +41 -0
  52. package/dist/node_modules/@babel/core/lib/config/resolve-targets.js +61 -0
  53. package/dist/node_modules/@babel/core/lib/config/util.js +31 -0
  54. package/dist/node_modules/@babel/core/lib/config/validation/option-assertions.js +277 -0
  55. package/dist/node_modules/@babel/core/lib/config/validation/options.js +189 -0
  56. package/dist/node_modules/@babel/core/lib/config/validation/plugins.js +67 -0
  57. package/dist/node_modules/@babel/core/lib/config/validation/removed.js +68 -0
  58. package/dist/node_modules/@babel/core/lib/errors/config-error.js +18 -0
  59. package/dist/node_modules/@babel/core/lib/errors/rewrite-stack-trace.js +98 -0
  60. package/dist/node_modules/@babel/core/lib/gensync-utils/async.js +90 -0
  61. package/dist/node_modules/@babel/core/lib/gensync-utils/fs.js +31 -0
  62. package/dist/node_modules/@babel/core/lib/gensync-utils/functional.js +58 -0
  63. package/dist/node_modules/@babel/core/lib/index.js +227 -0
  64. package/dist/node_modules/@babel/core/lib/parse.js +47 -0
  65. package/dist/node_modules/@babel/core/lib/parser/index.js +79 -0
  66. package/dist/node_modules/@babel/core/lib/parser/util/missing-plugin-helper.js +339 -0
  67. package/dist/node_modules/@babel/core/lib/tools/build-external-helpers.js +144 -0
  68. package/dist/node_modules/@babel/core/lib/transform-ast.js +50 -0
  69. package/dist/node_modules/@babel/core/lib/transform-file-browser.js +23 -0
  70. package/dist/node_modules/@babel/core/lib/transform-file.js +40 -0
  71. package/dist/node_modules/@babel/core/lib/transform.js +49 -0
  72. package/dist/node_modules/@babel/core/lib/transformation/block-hoist-plugin.js +84 -0
  73. package/dist/node_modules/@babel/core/lib/transformation/file/babel-7-helpers.cjs +4 -0
  74. package/dist/node_modules/@babel/core/lib/transformation/file/file.js +214 -0
  75. package/dist/node_modules/@babel/core/lib/transformation/file/generate.js +84 -0
  76. package/dist/node_modules/@babel/core/lib/transformation/file/merge-map.js +37 -0
  77. package/dist/node_modules/@babel/core/lib/transformation/index.js +92 -0
  78. package/dist/node_modules/@babel/core/lib/transformation/normalize-file.js +129 -0
  79. package/dist/node_modules/@babel/core/lib/transformation/normalize-opts.js +59 -0
  80. package/dist/node_modules/@babel/core/lib/transformation/plugin-pass.js +50 -0
  81. package/dist/node_modules/@babel/core/lib/transformation/util/clone-deep.js +36 -0
  82. package/dist/node_modules/@babel/core/lib/vendor/import-meta-resolve.js +1043 -0
  83. package/dist/node_modules/@babel/core/node_modules/.bin/json5 +17 -0
  84. package/dist/node_modules/@babel/core/node_modules/.bin/parser +17 -0
  85. package/dist/node_modules/@babel/core/node_modules/.bin/semver +17 -0
  86. package/dist/node_modules/@babel/core/package.json +1 -0
  87. package/dist/node_modules/@babel/core/src/config/files/index-browser.ts +113 -0
  88. package/dist/node_modules/@babel/core/src/config/files/index.ts +29 -0
  89. package/dist/node_modules/@babel/core/src/config/resolve-targets-browser.ts +40 -0
  90. package/dist/node_modules/@babel/core/src/config/resolve-targets.ts +56 -0
  91. package/dist/node_modules/@babel/core/src/transform-file-browser.ts +31 -0
  92. package/dist/node_modules/@babel/core/src/transform-file.ts +55 -0
  93. package/dist/server/actions/cloud-libraries-controller.d.ts +7 -0
  94. package/dist/server/actions/cloud-libraries-controller.js +147 -0
  95. package/dist/server/collections/cloud-libraries.d.ts +2 -0
  96. package/dist/server/collections/cloud-libraries.js +98 -0
  97. package/dist/server/collections/effect-libraries.d.ts +2 -0
  98. package/dist/server/collections/effect-libraries.js +78 -0
  99. package/dist/server/index.d.ts +1 -0
  100. package/dist/server/index.js +33 -0
  101. package/dist/server/plugin.d.ts +4 -0
  102. package/dist/server/plugin.js +87 -0
  103. package/dist/server/services/cloud-compiler.d.ts +8 -0
  104. package/dist/server/services/cloud-compiler.js +116 -0
  105. package/dist/server/services/cloud-libraries-service.d.ts +11 -0
  106. package/dist/server/services/cloud-libraries-service.js +196 -0
  107. package/package.json +44 -0
  108. package/server.d.ts +2 -0
  109. package/server.js +1 -0
@@ -0,0 +1,98 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.beginHiddenCallStack = beginHiddenCallStack;
7
+ exports.endHiddenCallStack = endHiddenCallStack;
8
+ exports.expectedError = expectedError;
9
+ exports.injectVirtualStackFrame = injectVirtualStackFrame;
10
+ var _Object$getOwnPropert;
11
+ const ErrorToString = Function.call.bind(Error.prototype.toString);
12
+ const SUPPORTED = !!Error.captureStackTrace && ((_Object$getOwnPropert = Object.getOwnPropertyDescriptor(Error, "stackTraceLimit")) == null ? void 0 : _Object$getOwnPropert.writable) === true;
13
+ const START_HIDING = "startHiding - secret - don't use this - v1";
14
+ const STOP_HIDING = "stopHiding - secret - don't use this - v1";
15
+ const expectedErrors = new WeakSet();
16
+ const virtualFrames = new WeakMap();
17
+ function CallSite(filename) {
18
+ return Object.create({
19
+ isNative: () => false,
20
+ isConstructor: () => false,
21
+ isToplevel: () => true,
22
+ getFileName: () => filename,
23
+ getLineNumber: () => undefined,
24
+ getColumnNumber: () => undefined,
25
+ getFunctionName: () => undefined,
26
+ getMethodName: () => undefined,
27
+ getTypeName: () => undefined,
28
+ toString: () => filename
29
+ });
30
+ }
31
+ function injectVirtualStackFrame(error, filename) {
32
+ if (!SUPPORTED) return;
33
+ let frames = virtualFrames.get(error);
34
+ if (!frames) virtualFrames.set(error, frames = []);
35
+ frames.push(CallSite(filename));
36
+ return error;
37
+ }
38
+ function expectedError(error) {
39
+ if (!SUPPORTED) return;
40
+ expectedErrors.add(error);
41
+ return error;
42
+ }
43
+ function beginHiddenCallStack(fn) {
44
+ if (!SUPPORTED) return fn;
45
+ return Object.defineProperty(function (...args) {
46
+ setupPrepareStackTrace();
47
+ return fn(...args);
48
+ }, "name", {
49
+ value: STOP_HIDING
50
+ });
51
+ }
52
+ function endHiddenCallStack(fn) {
53
+ if (!SUPPORTED) return fn;
54
+ return Object.defineProperty(function (...args) {
55
+ return fn(...args);
56
+ }, "name", {
57
+ value: START_HIDING
58
+ });
59
+ }
60
+ function setupPrepareStackTrace() {
61
+ setupPrepareStackTrace = () => {};
62
+ const {
63
+ prepareStackTrace = defaultPrepareStackTrace
64
+ } = Error;
65
+ const MIN_STACK_TRACE_LIMIT = 50;
66
+ Error.stackTraceLimit && (Error.stackTraceLimit = Math.max(Error.stackTraceLimit, MIN_STACK_TRACE_LIMIT));
67
+ Error.prepareStackTrace = function stackTraceRewriter(err, trace) {
68
+ let newTrace = [];
69
+ const isExpected = expectedErrors.has(err);
70
+ let status = isExpected ? "hiding" : "unknown";
71
+ for (let i = 0; i < trace.length; i++) {
72
+ const name = trace[i].getFunctionName();
73
+ if (name === START_HIDING) {
74
+ status = "hiding";
75
+ } else if (name === STOP_HIDING) {
76
+ if (status === "hiding") {
77
+ status = "showing";
78
+ if (virtualFrames.has(err)) {
79
+ newTrace.unshift(...virtualFrames.get(err));
80
+ }
81
+ } else if (status === "unknown") {
82
+ newTrace = trace;
83
+ break;
84
+ }
85
+ } else if (status !== "hiding") {
86
+ newTrace.push(trace[i]);
87
+ }
88
+ }
89
+ return prepareStackTrace(err, newTrace);
90
+ };
91
+ }
92
+ function defaultPrepareStackTrace(err, trace) {
93
+ if (trace.length === 0) return ErrorToString(err);
94
+ return `${ErrorToString(err)}\n at ${trace.join("\n at ")}`;
95
+ }
96
+ 0 && 0;
97
+
98
+ //# sourceMappingURL=rewrite-stack-trace.js.map
@@ -0,0 +1,90 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.forwardAsync = forwardAsync;
7
+ exports.isAsync = void 0;
8
+ exports.isThenable = isThenable;
9
+ exports.maybeAsync = maybeAsync;
10
+ exports.waitFor = exports.onFirstPause = void 0;
11
+ function _gensync() {
12
+ const data = require("gensync");
13
+ _gensync = function () {
14
+ return data;
15
+ };
16
+ return data;
17
+ }
18
+ function asyncGeneratorStep(n, t, e, r, o, a, c) { try { var i = n[a](c), u = i.value; } catch (n) { return void e(n); } i.done ? t(u) : Promise.resolve(u).then(r, o); }
19
+ function _asyncToGenerator(n) { return function () { var t = this, e = arguments; return new Promise(function (r, o) { var a = n.apply(t, e); function _next(n) { asyncGeneratorStep(a, r, o, _next, _throw, "next", n); } function _throw(n) { asyncGeneratorStep(a, r, o, _next, _throw, "throw", n); } _next(void 0); }); }; }
20
+ const runGenerator = _gensync()(function* (item) {
21
+ return yield* item;
22
+ });
23
+ const isAsync = exports.isAsync = _gensync()({
24
+ sync: () => false,
25
+ errback: cb => cb(null, true)
26
+ });
27
+ function maybeAsync(fn, message) {
28
+ return _gensync()({
29
+ sync(...args) {
30
+ const result = fn.apply(this, args);
31
+ if (isThenable(result)) throw new Error(message);
32
+ return result;
33
+ },
34
+ async(...args) {
35
+ return Promise.resolve(fn.apply(this, args));
36
+ }
37
+ });
38
+ }
39
+ const withKind = _gensync()({
40
+ sync: cb => cb("sync"),
41
+ async: function () {
42
+ var _ref = _asyncToGenerator(function* (cb) {
43
+ return cb("async");
44
+ });
45
+ return function async(_x) {
46
+ return _ref.apply(this, arguments);
47
+ };
48
+ }()
49
+ });
50
+ function forwardAsync(action, cb) {
51
+ const g = _gensync()(action);
52
+ return withKind(kind => {
53
+ const adapted = g[kind];
54
+ return cb(adapted);
55
+ });
56
+ }
57
+ const onFirstPause = exports.onFirstPause = _gensync()({
58
+ name: "onFirstPause",
59
+ arity: 2,
60
+ sync: function (item) {
61
+ return runGenerator.sync(item);
62
+ },
63
+ errback: function (item, firstPause, cb) {
64
+ let completed = false;
65
+ runGenerator.errback(item, (err, value) => {
66
+ completed = true;
67
+ cb(err, value);
68
+ });
69
+ if (!completed) {
70
+ firstPause();
71
+ }
72
+ }
73
+ });
74
+ const waitFor = exports.waitFor = _gensync()({
75
+ sync: x => x,
76
+ async: function () {
77
+ var _ref2 = _asyncToGenerator(function* (x) {
78
+ return x;
79
+ });
80
+ return function async(_x2) {
81
+ return _ref2.apply(this, arguments);
82
+ };
83
+ }()
84
+ });
85
+ function isThenable(val) {
86
+ return !!val && (typeof val === "object" || typeof val === "function") && !!val.then && typeof val.then === "function";
87
+ }
88
+ 0 && 0;
89
+
90
+ //# sourceMappingURL=async.js.map
@@ -0,0 +1,31 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.stat = exports.readFile = void 0;
7
+ function _fs() {
8
+ const data = require("fs");
9
+ _fs = function () {
10
+ return data;
11
+ };
12
+ return data;
13
+ }
14
+ function _gensync() {
15
+ const data = require("gensync");
16
+ _gensync = function () {
17
+ return data;
18
+ };
19
+ return data;
20
+ }
21
+ const readFile = exports.readFile = _gensync()({
22
+ sync: _fs().readFileSync,
23
+ errback: _fs().readFile
24
+ });
25
+ const stat = exports.stat = _gensync()({
26
+ sync: _fs().statSync,
27
+ errback: _fs().stat
28
+ });
29
+ 0 && 0;
30
+
31
+ //# sourceMappingURL=fs.js.map
@@ -0,0 +1,58 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.once = once;
7
+ var _async = require("./async.js");
8
+ function once(fn) {
9
+ let result;
10
+ let resultP;
11
+ let promiseReferenced = false;
12
+ return function* () {
13
+ if (!result) {
14
+ if (resultP) {
15
+ promiseReferenced = true;
16
+ return yield* (0, _async.waitFor)(resultP);
17
+ }
18
+ if (!(yield* (0, _async.isAsync)())) {
19
+ try {
20
+ result = {
21
+ ok: true,
22
+ value: yield* fn()
23
+ };
24
+ } catch (error) {
25
+ result = {
26
+ ok: false,
27
+ value: error
28
+ };
29
+ }
30
+ } else {
31
+ let resolve, reject;
32
+ resultP = new Promise((res, rej) => {
33
+ resolve = res;
34
+ reject = rej;
35
+ });
36
+ try {
37
+ result = {
38
+ ok: true,
39
+ value: yield* fn()
40
+ };
41
+ resultP = null;
42
+ if (promiseReferenced) resolve(result.value);
43
+ } catch (error) {
44
+ result = {
45
+ ok: false,
46
+ value: error
47
+ };
48
+ resultP = null;
49
+ if (promiseReferenced) reject(error);
50
+ }
51
+ }
52
+ }
53
+ if (result.ok) return result.value;else throw result.value;
54
+ };
55
+ }
56
+ 0 && 0;
57
+
58
+ //# sourceMappingURL=functional.js.map