x-runtime-lib 0.8.176 → 0.8.178
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/composables/runtime/sandbox.d.ts +2 -3
- package/dist/index.js +1349 -1375
- package/dist/types/depend.d.ts +2 -2
- package/dist/types/meta.d.ts +4 -10
- package/package.json +1 -1
package/dist/types/depend.d.ts
CHANGED
package/dist/types/meta.d.ts
CHANGED
|
@@ -26,20 +26,14 @@ export type Slot = {
|
|
|
26
26
|
events?: Event[];
|
|
27
27
|
desc?: string;
|
|
28
28
|
};
|
|
29
|
-
export type
|
|
29
|
+
export type Meta = {
|
|
30
30
|
version: string;
|
|
31
|
-
arguments?: Field[];
|
|
32
31
|
states?: Field[];
|
|
33
|
-
|
|
34
|
-
export declare function pageMetaStringify(meta: PageMeta): string;
|
|
35
|
-
export declare function parsePageMeta(str: string): PageMeta;
|
|
36
|
-
export type CompMeta = {
|
|
37
|
-
version: string;
|
|
32
|
+
arguments?: Field[];
|
|
38
33
|
properties?: Field[];
|
|
39
34
|
methods?: Method[];
|
|
40
35
|
events?: Event[];
|
|
41
36
|
slots?: Slot[];
|
|
42
|
-
states?: Field[];
|
|
43
37
|
};
|
|
44
|
-
export declare function
|
|
45
|
-
export declare function
|
|
38
|
+
export declare function metaStringify(meta: Meta): string;
|
|
39
|
+
export declare function parseMeta(str: string): Meta;
|