x-prop-tree 0.7.25 → 0.7.27

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.
@@ -1,3 +1,4 @@
1
+ import XAdaptSlotSelect from './adaptSlotSelect/index.vue';
1
2
  import XColorPicker from './colorPicker/index.vue';
2
3
  import XCompSelect from './compSelect/index.vue';
3
4
  import XIconSelect from './iconSelect/index.vue';
@@ -5,7 +6,7 @@ import XJsonEditor from './jsonEditor/index.vue';
5
6
  import XMultiTypes from './multiTypes/index.vue';
6
7
  import XNumInput from './numInput/index.vue';
7
8
  import XSelect from './select/index.vue';
8
- import XAdaptSlotSelect from './adaptSlotSelect/index.vue';
9
+ import XSlotSelect from './slotSelect/index.vue';
9
10
  import XStrInput from './strInput/index.vue';
10
11
  import XSwitch from './switch/index.vue';
11
- export { XColorPicker, XCompSelect, XIconSelect, XJsonEditor, XMultiTypes, XNumInput, XSelect, XAdaptSlotSelect, XStrInput, XSwitch };
12
+ export { XAdaptSlotSelect, XColorPicker, XCompSelect, XIconSelect, XJsonEditor, XMultiTypes, XNumInput, XSelect, XSlotSelect, XStrInput, XSwitch };
@@ -1,3 +1,13 @@
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>;
1
+ type __VLS_ModelProps = {
2
+ modelValue?: string;
3
+ 'open': boolean;
4
+ };
5
+ declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
6
+ "update:modelValue": (value: string | undefined) => any;
7
+ "update:open": (value: boolean) => any;
8
+ }, string, import("vue").PublicProps, Readonly<__VLS_ModelProps> & Readonly<{
9
+ "onUpdate:modelValue"?: ((value: string | undefined) => any) | undefined;
10
+ "onUpdate:open"?: ((value: boolean) => any) | undefined;
11
+ }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
2
12
  declare const _default: typeof __VLS_export;
3
13
  export default _default;
@@ -0,0 +1,11 @@
1
+ type __VLS_Props = {
2
+ id: string;
3
+ title: string;
4
+ };
5
+ declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
6
+ "x-click": (...args: any[]) => void;
7
+ }, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
8
+ "onX-click"?: ((...args: any[]) => any) | undefined;
9
+ }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
10
+ declare const _default: typeof __VLS_export;
11
+ export default _default;
@@ -1,3 +1,4 @@
1
+ export * from './uiAdaptSlotSelect';
1
2
  export * from './uiColorPicker';
2
3
  export * from './uiCompSelect';
3
4
  export * from './uiDummy';
@@ -0,0 +1,7 @@
1
+ import { ZProperty } from 'x-runtime-lib';
2
+ import { ChangeEvent } from '@/utils';
3
+ export declare function useUiAdaptSlotSelect(changeEvent: ChangeEvent): {
4
+ renderUiAdaptSlotSelect: (keys: (string | number)[], property: ZProperty, object: any, arrayIndex?: number, isBranch?: boolean) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
5
+ [key: string]: any;
6
+ }>;
7
+ };
@@ -1,5 +1,6 @@
1
- const e = {
1
+ const t = {
2
2
  "x-prop-tree": {
3
+ adapt: "Adapt",
3
4
  comp: "Comp",
4
5
  copy: "Copy",
5
6
  jsonEditor: "JSON Editor",
@@ -11,5 +12,5 @@ const e = {
11
12
  }
12
13
  };
13
14
  export {
14
- e as default
15
+ t as default
15
16
  };
@@ -1,5 +1,6 @@
1
1
  const e = {
2
2
  "x-prop-tree": {
3
+ adapt: "适配",
3
4
  comp: "组件",
4
5
  copy: "复制",
5
6
  jsonEditor: "JSON编辑器",