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.
- package/dist/components/values/adaptSlotSelect/adaptSlotList/index.vue.d.ts +13 -0
- package/dist/components/values/adaptSlotSelect/index.vue.d.ts +10 -0
- package/dist/components/values/index.d.ts +2 -2
- package/dist/components/values/slotSelect/slotList/index.vue.d.ts +1 -11
- package/dist/composables/adaptSlotList/index.d.ts +2 -0
- package/dist/composables/slotList/index.d.ts +1 -2
- package/dist/i18n-en.gtpxr0k8.js +15 -0
- package/dist/i18n-zhHans.ev8iw0vp.js +15 -0
- package/dist/index.js +853 -820
- package/dist/utils/provideInject.d.ts +8 -2
- package/package.json +4 -4
- package/dist/i18n-en.fwi8tazn.js +0 -23
- package/dist/i18n-zhHans.ju37v3iz.js +0 -23
- /package/dist/components/values/{slotSelect/slotList → adaptSlotSelect/adaptSlotList}/group.vue.d.ts +0 -0
- /package/dist/components/values/{slotSelect/slotList → adaptSlotSelect/adaptSlotList}/item.vue.d.ts +0 -0
|
@@ -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
|
|
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,
|
|
11
|
+
export { XColorPicker, XCompSelect, XIconSelect, XJsonEditor, XMultiTypes, XNumInput, XSelect, XAdaptSlotSelect, XStrInput, XSwitch };
|
|
@@ -1,13 +1,3 @@
|
|
|
1
|
-
|
|
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;
|
|
@@ -1,2 +1 @@
|
|
|
1
|
-
|
|
2
|
-
export declare function useSlotList(version: ShallowRef<string>, type: ShallowRef<string>, subtype: ShallowRef<string>): void;
|
|
1
|
+
export declare function useSlotList(): void;
|