x-prop-tree 0.7.12 → 0.7.13

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 (20) hide show
  1. package/dist/components/propTree/components/common/entry.vue.d.ts +3 -2
  2. package/dist/components/propTree/components/common/menu.vue.d.ts +2 -1
  3. package/dist/components/propTree/components/common/title.vue.d.ts +2 -1
  4. package/dist/components/propTree/components/values/colorPicker.vue.d.ts +4 -2
  5. package/dist/components/propTree/components/values/compSelect/compList/group.vue.d.ts +2 -1
  6. package/dist/components/propTree/components/values/compSelect/compList/index.vue.d.ts +4 -3
  7. package/dist/components/propTree/components/values/compSelect/compList/item.vue.d.ts +2 -1
  8. package/dist/components/propTree/components/values/compSelect/index.vue.d.ts +4 -3
  9. package/dist/components/propTree/components/values/iconSelect/index.vue.d.ts +2 -1
  10. package/dist/components/propTree/components/values/iconSelect/item.vue.d.ts +2 -1
  11. package/dist/components/propTree/components/values/jsonEditor/editor.vue.d.ts +4 -3
  12. package/dist/components/propTree/components/values/jsonEditor/index.vue.d.ts +4 -3
  13. package/dist/components/propTree/components/values/multiTypes.vue.d.ts +4 -2
  14. package/dist/components/propTree/components/values/numInput.vue.d.ts +4 -2
  15. package/dist/components/propTree/components/values/select.vue.d.ts +4 -2
  16. package/dist/components/propTree/components/values/strInput.vue.d.ts +4 -2
  17. package/dist/components/propTree/components/values/switch.vue.d.ts +4 -2
  18. package/dist/components/propTree/index.vue.d.ts +2 -1
  19. package/dist/index.js +494 -494
  20. package/package.json +18 -18
@@ -5,12 +5,13 @@ declare var __VLS_1: {};
5
5
  type __VLS_Slots = {} & {
6
6
  default?: (props: typeof __VLS_1) => any;
7
7
  };
8
- declare const __VLS_component: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
8
+ declare const __VLS_base: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
9
9
  menu: (...args: any[]) => void;
10
10
  }, string, import("vue").PublicProps, Readonly<Props> & Readonly<{
11
11
  onMenu?: ((...args: any[]) => any) | undefined;
12
12
  }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
13
- declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
13
+ declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
14
+ declare const _default: typeof __VLS_export;
14
15
  export default _default;
15
16
  type __VLS_WithSlots<T, S> = T & {
16
17
  new (): {
@@ -1,2 +1,3 @@
1
- declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
1
+ declare const __VLS_export: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
+ declare const _default: typeof __VLS_export;
2
3
  export default _default;
@@ -5,7 +5,7 @@ interface Props {
5
5
  hasDelete?: boolean;
6
6
  index?: number;
7
7
  }
8
- declare const _default: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
8
+ declare const __VLS_export: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
9
9
  collapse: (...args: any[]) => void;
10
10
  menu: (...args: any[]) => void;
11
11
  create: (...args: any[]) => void;
@@ -16,4 +16,5 @@ declare const _default: import("vue").DefineComponent<Props, {}, {}, {}, {}, imp
16
16
  onCreate?: ((...args: any[]) => any) | undefined;
17
17
  onDelete?: ((...args: any[]) => any) | undefined;
18
18
  }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
19
+ declare const _default: typeof __VLS_export;
19
20
  export default _default;
@@ -3,14 +3,16 @@ interface Props {
3
3
  readonly?: boolean;
4
4
  }
5
5
  type __VLS_Props = Props;
6
- type __VLS_PublicProps = __VLS_Props & {
6
+ type __VLS_ModelProps = {
7
7
  modelValue?: string;
8
8
  };
9
- declare const _default: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
9
+ type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
10
+ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
10
11
  delete: (...args: any[]) => void;
11
12
  "update:modelValue": (value: string | undefined) => void;
12
13
  }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
13
14
  onDelete?: ((...args: any[]) => any) | undefined;
14
15
  "onUpdate:modelValue"?: ((value: string | undefined) => any) | undefined;
15
16
  }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
17
+ declare const _default: typeof __VLS_export;
16
18
  export default _default;
@@ -4,9 +4,10 @@ interface Props {
4
4
  collapse: boolean;
5
5
  count: number;
6
6
  }
7
- declare const _default: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
7
+ declare const __VLS_export: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
8
8
  "x-click": (...args: any[]) => void;
9
9
  }, string, import("vue").PublicProps, Readonly<Props> & Readonly<{
10
10
  "onX-click"?: ((...args: any[]) => any) | undefined;
11
11
  }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
12
+ declare const _default: typeof __VLS_export;
12
13
  export default _default;
@@ -1,12 +1,13 @@
1
- type __VLS_PublicProps = {
1
+ type __VLS_ModelProps = {
2
2
  modelValue?: string;
3
3
  'open': boolean;
4
4
  };
5
- declare const _default: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
5
+ declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
6
6
  "update:modelValue": (value: string | undefined) => any;
7
7
  "update:open": (value: boolean) => any;
8
- }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
8
+ }, string, import("vue").PublicProps, Readonly<__VLS_ModelProps> & Readonly<{
9
9
  "onUpdate:modelValue"?: ((value: string | undefined) => any) | undefined;
10
10
  "onUpdate:open"?: ((value: boolean) => any) | undefined;
11
11
  }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
12
+ declare const _default: typeof __VLS_export;
12
13
  export default _default;
@@ -2,9 +2,10 @@ interface Props {
2
2
  id: string;
3
3
  title: string;
4
4
  }
5
- declare const _default: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
5
+ declare const __VLS_export: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
6
6
  "x-click": (...args: any[]) => void;
7
7
  }, string, import("vue").PublicProps, Readonly<Props> & Readonly<{
8
8
  "onX-click"?: ((...args: any[]) => any) | undefined;
9
9
  }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
10
+ declare const _default: typeof __VLS_export;
10
11
  export default _default;
@@ -1,9 +1,10 @@
1
- type __VLS_PublicProps = {
1
+ type __VLS_ModelProps = {
2
2
  modelValue?: string;
3
3
  };
4
- declare const _default: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
4
+ declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
5
5
  "update:modelValue": (value: string | undefined) => any;
6
- }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
6
+ }, string, import("vue").PublicProps, Readonly<__VLS_ModelProps> & Readonly<{
7
7
  "onUpdate:modelValue"?: ((value: string | undefined) => any) | undefined;
8
8
  }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
9
+ declare const _default: typeof __VLS_export;
9
10
  export default _default;
@@ -1,2 +1,3 @@
1
- declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
1
+ declare const __VLS_export: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
+ declare const _default: typeof __VLS_export;
2
3
  export default _default;
@@ -1,2 +1,3 @@
1
- declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
1
+ declare const __VLS_export: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
+ declare const _default: typeof __VLS_export;
2
3
  export default _default;
@@ -1,17 +1,18 @@
1
- type __VLS_PublicProps = {
1
+ type __VLS_ModelProps = {
2
2
  modelValue: string;
3
3
  'lock': boolean;
4
4
  'scale': number;
5
5
  };
6
- declare const _default: import("vue").DefineComponent<__VLS_PublicProps, {
6
+ declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {
7
7
  save: () => void;
8
8
  }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
9
9
  "update:modelValue": (value: string) => any;
10
10
  "update:lock": (value: boolean) => any;
11
11
  "update:scale": (value: number) => any;
12
- }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
12
+ }, string, import("vue").PublicProps, Readonly<__VLS_ModelProps> & Readonly<{
13
13
  "onUpdate:modelValue"?: ((value: string) => any) | undefined;
14
14
  "onUpdate:lock"?: ((value: boolean) => any) | undefined;
15
15
  "onUpdate:scale"?: ((value: number) => any) | undefined;
16
16
  }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
17
+ declare const _default: typeof __VLS_export;
17
18
  export default _default;
@@ -1,9 +1,10 @@
1
- type __VLS_PublicProps = {
1
+ type __VLS_ModelProps = {
2
2
  modelValue: string;
3
3
  };
4
- declare const _default: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
4
+ declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
5
5
  "update:modelValue": (value: string) => any;
6
- }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
6
+ }, string, import("vue").PublicProps, Readonly<__VLS_ModelProps> & Readonly<{
7
7
  "onUpdate:modelValue"?: ((value: string) => any) | undefined;
8
8
  }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
9
+ declare const _default: typeof __VLS_export;
9
10
  export default _default;
@@ -3,14 +3,16 @@ interface Props {
3
3
  types: string;
4
4
  }
5
5
  type __VLS_Props = Props;
6
- type __VLS_PublicProps = __VLS_Props & {
6
+ type __VLS_ModelProps = {
7
7
  modelValue?: string;
8
8
  };
9
- declare const _default: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
9
+ type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
10
+ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
10
11
  delete: (...args: any[]) => void;
11
12
  "update:modelValue": (value: string | undefined) => void;
12
13
  }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
13
14
  onDelete?: ((...args: any[]) => any) | undefined;
14
15
  "onUpdate:modelValue"?: ((value: string | undefined) => any) | undefined;
15
16
  }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
17
+ declare const _default: typeof __VLS_export;
16
18
  export default _default;
@@ -7,14 +7,16 @@ interface Props {
7
7
  readonly?: boolean;
8
8
  }
9
9
  type __VLS_Props = Props;
10
- type __VLS_PublicProps = __VLS_Props & {
10
+ type __VLS_ModelProps = {
11
11
  modelValue: number;
12
12
  };
13
- declare const _default: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
13
+ type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
14
+ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
14
15
  delete: (...args: any[]) => void;
15
16
  "update:modelValue": (value: number) => void;
16
17
  }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
17
18
  onDelete?: ((...args: any[]) => any) | undefined;
18
19
  "onUpdate:modelValue"?: ((value: number) => any) | undefined;
19
20
  }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
21
+ declare const _default: typeof __VLS_export;
20
22
  export default _default;
@@ -4,14 +4,16 @@ interface Props {
4
4
  items: string;
5
5
  }
6
6
  type __VLS_Props = Props;
7
- type __VLS_PublicProps = __VLS_Props & {
7
+ type __VLS_ModelProps = {
8
8
  modelValue?: string;
9
9
  };
10
- declare const _default: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
10
+ type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
11
+ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
11
12
  delete: (...args: any[]) => void;
12
13
  "update:modelValue": (value: string | undefined) => void;
13
14
  }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
14
15
  onDelete?: ((...args: any[]) => any) | undefined;
15
16
  "onUpdate:modelValue"?: ((value: string | undefined) => any) | undefined;
16
17
  }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
18
+ declare const _default: typeof __VLS_export;
17
19
  export default _default;
@@ -3,14 +3,16 @@ interface Props {
3
3
  readonly?: boolean;
4
4
  }
5
5
  type __VLS_Props = Props;
6
- type __VLS_PublicProps = __VLS_Props & {
6
+ type __VLS_ModelProps = {
7
7
  modelValue: string;
8
8
  };
9
- declare const _default: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
9
+ type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
10
+ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
10
11
  delete: (...args: any[]) => void;
11
12
  "update:modelValue": (value: string) => void;
12
13
  }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
13
14
  onDelete?: ((...args: any[]) => any) | undefined;
14
15
  "onUpdate:modelValue"?: ((value: string) => any) | undefined;
15
16
  }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
17
+ declare const _default: typeof __VLS_export;
16
18
  export default _default;
@@ -3,14 +3,16 @@ interface Props {
3
3
  readonly?: boolean;
4
4
  }
5
5
  type __VLS_Props = Props;
6
- type __VLS_PublicProps = __VLS_Props & {
6
+ type __VLS_ModelProps = {
7
7
  modelValue?: boolean;
8
8
  };
9
- declare const _default: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
9
+ type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
10
+ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
10
11
  delete: (...args: any[]) => void;
11
12
  "update:modelValue": (value: boolean | undefined) => void;
12
13
  }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
13
14
  onDelete?: ((...args: any[]) => any) | undefined;
14
15
  "onUpdate:modelValue"?: ((value: boolean | undefined) => any) | undefined;
15
16
  }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
17
+ declare const _default: typeof __VLS_export;
16
18
  export default _default;
@@ -5,9 +5,10 @@ interface Props {
5
5
  object: any;
6
6
  version: string;
7
7
  }
8
- declare const _default: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
8
+ declare const __VLS_export: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
9
9
  change: (...args: any[]) => void;
10
10
  }, string, import("vue").PublicProps, Readonly<Props> & Readonly<{
11
11
  onChange?: ((...args: any[]) => any) | undefined;
12
12
  }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
13
+ declare const _default: typeof __VLS_export;
13
14
  export default _default;