x-runtime-lib 0.8.1 → 0.8.3

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 (27) hide show
  1. package/dist/components/element/dynamic/multipleRef/v1/index.vue.d.ts +2 -0
  2. package/dist/components/element/dynamic/renderSwitch/v1/index.vue.d.ts +13 -0
  3. package/dist/components/element/dynamic/singleRef/v1/index.vue.d.ts +2 -0
  4. package/dist/components/element/index.d.ts +7 -4
  5. package/dist/element/_common/keys.d.ts +2 -1
  6. package/dist/element/dynamic/index.d.ts +3 -0
  7. package/dist/element/dynamic/multipleRef/v1/meta.d.ts +2 -0
  8. package/dist/element/dynamic/singleRef/v1/index.d.ts +1 -0
  9. package/dist/element/dynamic/singleRef/v1/meta.d.ts +2 -0
  10. package/dist/element/misc/index.d.ts +0 -2
  11. package/dist/{i18n-en.f1i5jpzc.js → i18n-en.e52nt0si.js} +10 -0
  12. package/dist/{i18n-zhHans.ogoov5cl.js → i18n-zhHans.lm0m4jyu.js} +10 -0
  13. package/dist/index.d.ts +1 -0
  14. package/dist/index.js +1447 -1653
  15. package/dist/types/data.d.ts +4 -0
  16. package/dist/utils/prop.d.ts +1 -1
  17. package/dist/vendor.073f3e7b.js +67402 -0
  18. package/package.json +15 -14
  19. package/dist/element/misc/ref/v1/meta.d.ts +0 -2
  20. package/dist/vendor.hc5p3stp.js +0 -29187
  21. /package/dist/components/element/{misc/renderSwitch → 3d/scene}/v1/index.vue.d.ts +0 -0
  22. /package/dist/components/element/{misc → dynamic}/ref/v1/entry.vue.d.ts +0 -0
  23. /package/dist/components/element/{misc → dynamic}/ref/v1/index.vue.d.ts +0 -0
  24. /package/dist/components/element/{misc → dynamic}/slot/v1/index.vue.d.ts +0 -0
  25. /package/dist/element/{misc/ref → dynamic/multipleRef}/v1/index.d.ts +0 -0
  26. /package/dist/element/{misc → dynamic}/renderSwitch/v1/index.d.ts +0 -0
  27. /package/dist/element/{misc → dynamic}/renderSwitch/v1/meta.d.ts +0 -0
@@ -16,6 +16,10 @@ export interface Code {
16
16
  blockly: object;
17
17
  script: string;
18
18
  }
19
+ export declare const pageTypes: string[];
20
+ export type PageType = (typeof pageTypes)[number];
21
+ export declare const compTypes: string[];
22
+ export type CompType = (typeof compTypes)[number];
19
23
  export interface Data {
20
24
  type: string;
21
25
  version: string;
@@ -1,4 +1,4 @@
1
- import { ZProp } from '../types';
1
+ import { ZProp } from '@/types';
2
2
  export declare function getPropTag(type: string, subtype: string): string | undefined;
3
3
  export declare function getPropDefault(prop: ZProp, arrayEntry?: boolean): unknown;
4
4
  export declare function initProps(node: any, props: ZProp[]): void;