x-prop-tree 0.7.23 → 0.7.25

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,13 @@
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>;
12
+ declare const _default: typeof __VLS_export;
13
+ export default _default;
@@ -0,0 +1,10 @@
1
+ type __VLS_ModelProps = {
2
+ modelValue?: string;
3
+ };
4
+ declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
5
+ "update:modelValue": (value: string | undefined) => any;
6
+ }, string, import("vue").PublicProps, Readonly<__VLS_ModelProps> & Readonly<{
7
+ "onUpdate:modelValue"?: ((value: string | undefined) => any) | undefined;
8
+ }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
9
+ declare const _default: typeof __VLS_export;
10
+ export default _default;
@@ -5,7 +5,7 @@ import XJsonEditor from './jsonEditor/index.vue';
5
5
  import XMultiTypes from './multiTypes/index.vue';
6
6
  import XNumInput from './numInput/index.vue';
7
7
  import XSelect from './select/index.vue';
8
- import XSlotSelect from './slotSelect/index.vue';
8
+ import XAdaptSlotSelect from './adaptSlotSelect/index.vue';
9
9
  import XStrInput from './strInput/index.vue';
10
10
  import XSwitch from './switch/index.vue';
11
- export { XColorPicker, XCompSelect, XIconSelect, XJsonEditor, XMultiTypes, XNumInput, XSelect, XSlotSelect, XStrInput, XSwitch };
11
+ export { XColorPicker, XCompSelect, XIconSelect, XJsonEditor, XMultiTypes, XNumInput, XSelect, XAdaptSlotSelect, XStrInput, XSwitch };
@@ -1,13 +1,3 @@
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>;
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>;
12
2
  declare const _default: typeof __VLS_export;
13
3
  export default _default;
@@ -0,0 +1,2 @@
1
+ import { ShallowRef } from 'vue';
2
+ export declare function useAdaptSlotList(version: ShallowRef<string>, type: ShallowRef<string>, subtype: ShallowRef<string>): void;
@@ -1,2 +1 @@
1
- import { ShallowRef } from 'vue';
2
- export declare function useSlotList(version: ShallowRef<string>, type: ShallowRef<string>, subtype: ShallowRef<string>): void;
1
+ export declare function useSlotList(): void;
@@ -0,0 +1,15 @@
1
+ const e = {
2
+ "x-prop-tree": {
3
+ comp: "Comp",
4
+ copy: "Copy",
5
+ jsonEditor: "JSON Editor",
6
+ no: "No",
7
+ paste: "Paste",
8
+ reset: "Reset",
9
+ select: "Select",
10
+ slot: "Slot"
11
+ }
12
+ };
13
+ export {
14
+ e as default
15
+ };
@@ -0,0 +1,15 @@
1
+ const e = {
2
+ "x-prop-tree": {
3
+ comp: "组件",
4
+ copy: "复制",
5
+ jsonEditor: "JSON编辑器",
6
+ no: "没有",
7
+ paste: "黏贴",
8
+ reset: "重置",
9
+ select: "选择",
10
+ slot: "插槽"
11
+ }
12
+ };
13
+ export {
14
+ e as default
15
+ };