x-prop-tree 0.6.22 → 0.6.24

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.
@@ -0,0 +1,17 @@
1
+ type __VLS_PublicProps = {
2
+ modelValue: object;
3
+ 'lock': boolean;
4
+ 'scale': number;
5
+ };
6
+ declare const _default: import("vue").DefineComponent<__VLS_PublicProps, {
7
+ close: () => void;
8
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
9
+ "update:modelValue": (value: object) => any;
10
+ "update:lock": (value: boolean) => any;
11
+ "update:scale": (value: number) => any;
12
+ }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
13
+ "onUpdate:modelValue"?: ((value: object) => any) | undefined;
14
+ "onUpdate:lock"?: ((value: boolean) => any) | undefined;
15
+ "onUpdate:scale"?: ((value: number) => any) | undefined;
16
+ }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
17
+ export default _default;
@@ -0,0 +1,9 @@
1
+ type __VLS_PublicProps = {
2
+ modelValue: object;
3
+ };
4
+ declare const _default: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
5
+ "update:modelValue": (value: object) => any;
6
+ }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
7
+ "onUpdate:modelValue"?: ((value: object) => any) | undefined;
8
+ }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
9
+ export default _default;
@@ -0,0 +1,7 @@
1
+ import { ZProp } from 'x-runtime-lib';
2
+ import { ChangeEvent } from '../common';
3
+ export declare function useUiJsonObject(changeEvent: ChangeEvent): {
4
+ renderUiJsonObject: (keys: (string | number)[], prop: ZProp, object: any, arrayIndex?: number, isBranch?: boolean) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
5
+ [key: string]: any;
6
+ }>;
7
+ };
@@ -5,6 +5,9 @@ declare const _default: {
5
5
  compSelect: {
6
6
  title: string;
7
7
  };
8
+ jsonObject: {
9
+ title: string;
10
+ };
8
11
  };
9
12
  noComp: string;
10
13
  paste: string;
@@ -5,6 +5,9 @@ declare const _default: {
5
5
  compSelect: {
6
6
  title: string;
7
7
  };
8
+ jsonObject: {
9
+ title: string;
10
+ };
8
11
  };
9
12
  noComp: string;
10
13
  paste: string;
@@ -4,6 +4,9 @@ const e = {
4
4
  dlg: {
5
5
  compSelect: {
6
6
  title: "Select Comp"
7
+ },
8
+ jsonObject: {
9
+ title: "JSON Editor"
7
10
  }
8
11
  },
9
12
  noComp: "No Comp",
@@ -4,6 +4,9 @@ const e = {
4
4
  dlg: {
5
5
  compSelect: {
6
6
  title: "选择组件"
7
+ },
8
+ jsonObject: {
9
+ title: "JSON编辑器"
7
10
  }
8
11
  },
9
12
  noComp: "没有组件",