x-prop-tree 0.7.16 → 0.7.18

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 (33) hide show
  1. package/dist/components/propTree/index.vue.d.ts +2 -0
  2. package/dist/components/values/index.d.ts +7 -7
  3. package/dist/composables/compList/index.d.ts +1 -0
  4. package/dist/composables/slotList/index.d.ts +2 -0
  5. package/dist/{i18n-en.n11iysmh.js → i18n-en.fwi8tazn.js} +7 -3
  6. package/dist/{i18n-zhHans.hr18mfah.js → i18n-zhHans.ju37v3iz.js} +7 -3
  7. package/dist/index.js +905 -821
  8. package/dist/utils/index.d.ts +1 -1
  9. package/dist/utils/propertyState.d.ts +1 -1
  10. package/dist/utils/provideInject.d.ts +5 -1
  11. package/package.json +4 -4
  12. /package/dist/components/{common/entry.vue.d.ts → entry/index.vue.d.ts} +0 -0
  13. /package/dist/components/{common/menu.vue.d.ts → menu/index.vue.d.ts} +0 -0
  14. /package/dist/components/{common/title.vue.d.ts → title/index.vue.d.ts} +0 -0
  15. /package/dist/components/values/{colorPicker.vue.d.ts → colorPicker/index.vue.d.ts} +0 -0
  16. /package/dist/components/values/{multiTypes.vue.d.ts → multiTypes/index.vue.d.ts} +0 -0
  17. /package/dist/components/values/{numInput.vue.d.ts → numInput/index.vue.d.ts} +0 -0
  18. /package/dist/components/values/{select.vue.d.ts → select/index.vue.d.ts} +0 -0
  19. /package/dist/components/values/{strInput.vue.d.ts → strInput/index.vue.d.ts} +0 -0
  20. /package/dist/components/values/{switch.vue.d.ts → switch/index.vue.d.ts} +0 -0
  21. /package/dist/composables/{ui → uis}/index.d.ts +0 -0
  22. /package/dist/composables/{ui → uis}/uiColorPicker.d.ts +0 -0
  23. /package/dist/composables/{ui → uis}/uiCompSelect.d.ts +0 -0
  24. /package/dist/composables/{ui → uis}/uiDummy.d.ts +0 -0
  25. /package/dist/composables/{ui → uis}/uiJsonEditor.d.ts +0 -0
  26. /package/dist/composables/{ui → uis}/uiMultiTypes.d.ts +0 -0
  27. /package/dist/composables/{ui → uis}/uiNumInput.d.ts +0 -0
  28. /package/dist/composables/{ui → uis}/uiProperty.d.ts +0 -0
  29. /package/dist/composables/{ui → uis}/uiSelect.d.ts +0 -0
  30. /package/dist/composables/{ui → uis}/uiSlotSelect.d.ts +0 -0
  31. /package/dist/composables/{ui → uis}/uiStrInput.d.ts +0 -0
  32. /package/dist/composables/{ui → uis}/uiSwitch.d.ts +0 -0
  33. /package/dist/utils/{base.d.ts → misc.d.ts} +0 -0
@@ -4,6 +4,8 @@ interface Props {
4
4
  config: ZProperty[];
5
5
  object: any;
6
6
  version: string;
7
+ type: string;
8
+ subtype: string;
7
9
  }
8
10
  declare const __VLS_export: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
9
11
  change: (...args: any[]) => void;
@@ -1,11 +1,11 @@
1
+ import XColorPicker from './colorPicker/index.vue';
1
2
  import XCompSelect from './compSelect/index.vue';
2
3
  import XIconSelect from './iconSelect/index.vue';
3
4
  import XJsonEditor from './jsonEditor/index.vue';
5
+ import XMultiTypes from './multiTypes/index.vue';
6
+ import XNumInput from './numInput/index.vue';
7
+ import XSelect from './select/index.vue';
4
8
  import XSlotSelect from './slotSelect/index.vue';
5
- import XColorPicker from './colorPicker.vue';
6
- import XMultiTypes from './multiTypes.vue';
7
- import XNumInput from './numInput.vue';
8
- import XSelect from './select.vue';
9
- import XStrInput from './strInput.vue';
10
- import XSwitch from './switch.vue';
11
- export { XCompSelect, XIconSelect, XJsonEditor, XSlotSelect, XColorPicker, XMultiTypes, XNumInput, XSelect, XStrInput, XSwitch };
9
+ import XStrInput from './strInput/index.vue';
10
+ import XSwitch from './switch/index.vue';
11
+ export { XColorPicker, XCompSelect, XIconSelect, XJsonEditor, XMultiTypes, XNumInput, XSelect, XSlotSelect, XStrInput, XSwitch };
@@ -0,0 +1 @@
1
+ export declare function useCompList(): void;
@@ -0,0 +1,2 @@
1
+ import { ShallowRef } from 'vue';
2
+ export declare function useSlotList(version: ShallowRef<string>, type: ShallowRef<string>, subtype: ShallowRef<string>): void;
@@ -1,19 +1,23 @@
1
- const e = {
1
+ const t = {
2
2
  "x-prop-tree": {
3
3
  copy: "Copy",
4
4
  dlg: {
5
5
  compSelect: {
6
6
  title: "Select Comp"
7
7
  },
8
- jsonObject: {
8
+ jsonEditor: {
9
9
  title: "JSON Editor"
10
+ },
11
+ slotSelect: {
12
+ title: "Select Slot"
10
13
  }
11
14
  },
12
15
  noComp: "No Comp",
16
+ noSlot: "No Slot",
13
17
  paste: "Paste",
14
18
  reset: "Reset"
15
19
  }
16
20
  };
17
21
  export {
18
- e as default
22
+ t as default
19
23
  };
@@ -1,19 +1,23 @@
1
- const e = {
1
+ const t = {
2
2
  "x-prop-tree": {
3
3
  copy: "复制",
4
4
  dlg: {
5
5
  compSelect: {
6
6
  title: "选择组件"
7
7
  },
8
- jsonObject: {
8
+ jsonEditor: {
9
9
  title: "JSON编辑器"
10
+ },
11
+ slotSelect: {
12
+ title: "选择插槽"
10
13
  }
11
14
  },
12
15
  noComp: "没有组件",
16
+ noSlot: "没有插槽",
13
17
  paste: "黏贴",
14
18
  reset: "重置"
15
19
  }
16
20
  };
17
21
  export {
18
- e as default
22
+ t as default
19
23
  };