x-runtime-lib 0.5.32 → 0.5.34
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.js +7 -1
- package/dist/types/meta.d.ts +4 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -6779,7 +6779,13 @@ const Uc = (n, o, l) => {
|
|
|
6779
6779
|
async function Qc(n) {
|
|
6780
6780
|
return (await Uc(/* @__PURE__ */ Object.assign({ "./locales/en/index.ts": () => import("./i18n-en-ell9fdk3.js"), "./locales/zhHans/index.ts": () => import("./i18n-zhHans-eeguv06v.js") }), `./locales/${n}/index.ts`, 4)).default;
|
|
6781
6781
|
}
|
|
6782
|
-
const ef = [
|
|
6782
|
+
const ef = [
|
|
6783
|
+
"string",
|
|
6784
|
+
"number",
|
|
6785
|
+
"boolean",
|
|
6786
|
+
"list",
|
|
6787
|
+
"object"
|
|
6788
|
+
];
|
|
6783
6789
|
export {
|
|
6784
6790
|
Tl as duplicateNode,
|
|
6785
6791
|
zc as duplicateNodes,
|
package/dist/types/meta.d.ts
CHANGED
|
@@ -13,6 +13,7 @@ export type Argument = {
|
|
|
13
13
|
desc: string;
|
|
14
14
|
};
|
|
15
15
|
export type PageMeta = {
|
|
16
|
+
version: string;
|
|
16
17
|
arguments: Argument[];
|
|
17
18
|
};
|
|
18
19
|
export type Property = {
|
|
@@ -26,13 +27,16 @@ export type Method = {
|
|
|
26
27
|
name: string;
|
|
27
28
|
inputs: Field[];
|
|
28
29
|
outputs: Field[];
|
|
30
|
+
desc: string;
|
|
29
31
|
};
|
|
30
32
|
export type Event = {
|
|
31
33
|
id: string;
|
|
32
34
|
name: string;
|
|
33
35
|
params: Field[];
|
|
36
|
+
desc: string;
|
|
34
37
|
};
|
|
35
38
|
export type CompMeta = {
|
|
39
|
+
version: string;
|
|
36
40
|
properties: Property[];
|
|
37
41
|
methods: Method[];
|
|
38
42
|
events: Event[];
|