@finema/core 3.6.1 → 3.6.2
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/module.json +1 -1
- package/dist/module.mjs +1 -1
- package/dist/runtime/components/Form/InputSelect/index.d.vue.ts +2 -0
- package/dist/runtime/components/Form/InputSelect/index.vue +2 -2
- package/dist/runtime/components/Form/InputSelect/index.vue.d.ts +2 -0
- package/dist/runtime/components/Form/InputSelectMultiple/index.d.vue.ts +9 -1
- package/dist/runtime/components/Form/InputSelectMultiple/index.vue +4 -4
- package/dist/runtime/components/Form/InputSelectMultiple/index.vue.d.ts +9 -1
- package/package.json +1 -1
package/dist/module.json
CHANGED
package/dist/module.mjs
CHANGED
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
import type { ISelectFieldProps } from '#core/components/Form/InputSelect/types';
|
|
2
2
|
declare const __VLS_export: import("vue").DefineComponent<ISelectFieldProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
3
|
+
search: (...args: any[]) => void;
|
|
3
4
|
change: (...args: any[]) => void;
|
|
4
5
|
}, string, import("vue").PublicProps, Readonly<ISelectFieldProps> & Readonly<{
|
|
6
|
+
onSearch?: ((...args: any[]) => any) | undefined;
|
|
5
7
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
6
8
|
}>, {
|
|
7
9
|
clearIcon: string;
|
|
@@ -60,8 +60,8 @@ import { useFieldHOC } from "#core/composables/useForm";
|
|
|
60
60
|
import { selectMenuTheme } from "#core/theme/selectMenu";
|
|
61
61
|
import { useUiConfig } from "#core/composables/useConfig";
|
|
62
62
|
const emits = defineEmits([
|
|
63
|
-
"change"
|
|
64
|
-
|
|
63
|
+
"change",
|
|
64
|
+
"search"
|
|
65
65
|
]);
|
|
66
66
|
const props = defineProps({
|
|
67
67
|
icon: { type: String, required: false },
|
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
import type { ISelectFieldProps } from '#core/components/Form/InputSelect/types';
|
|
2
2
|
declare const __VLS_export: import("vue").DefineComponent<ISelectFieldProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
3
|
+
search: (...args: any[]) => void;
|
|
3
4
|
change: (...args: any[]) => void;
|
|
4
5
|
}, string, import("vue").PublicProps, Readonly<ISelectFieldProps> & Readonly<{
|
|
6
|
+
onSearch?: ((...args: any[]) => any) | undefined;
|
|
5
7
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
6
8
|
}>, {
|
|
7
9
|
clearIcon: string;
|
|
@@ -1,8 +1,16 @@
|
|
|
1
1
|
import type { ISelectFieldProps } from '#core/components/Form/InputSelect/types';
|
|
2
2
|
declare const __VLS_export: import("vue").DefineComponent<ISelectFieldProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
3
|
+
search: (...args: any[]) => void;
|
|
3
4
|
change: (...args: any[]) => void;
|
|
4
5
|
}, string, import("vue").PublicProps, Readonly<ISelectFieldProps> & Readonly<{
|
|
6
|
+
onSearch?: ((...args: any[]) => any) | undefined;
|
|
5
7
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
6
|
-
}>, {
|
|
8
|
+
}>, {
|
|
9
|
+
clearIcon: string;
|
|
10
|
+
searchInput: {
|
|
11
|
+
placeholder?: string;
|
|
12
|
+
icon?: string;
|
|
13
|
+
} | boolean;
|
|
14
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
7
15
|
declare const _default: typeof __VLS_export;
|
|
8
16
|
export default _default;
|
|
@@ -81,15 +81,15 @@ import { useFieldHOC } from "#core/composables/useForm";
|
|
|
81
81
|
import { useUiConfig } from "#core/composables/useConfig";
|
|
82
82
|
import { selectMenuTheme } from "#core/theme/selectMenu";
|
|
83
83
|
const emits = defineEmits([
|
|
84
|
-
"change"
|
|
85
|
-
|
|
84
|
+
"change",
|
|
85
|
+
"search"
|
|
86
86
|
]);
|
|
87
87
|
const props = defineProps({
|
|
88
88
|
icon: { type: String, required: false },
|
|
89
89
|
trailingIcon: { type: String, required: false },
|
|
90
|
-
clearIcon: { type: String, required: false },
|
|
90
|
+
clearIcon: { type: String, required: false, default: "ph:x-circle-fill" },
|
|
91
91
|
selectedIcon: { type: String, required: false },
|
|
92
|
-
searchInput: { type: [Object, Boolean], required: false },
|
|
92
|
+
searchInput: { type: [Object, Boolean], required: false, default: void 0 },
|
|
93
93
|
clearable: { type: Boolean, required: false },
|
|
94
94
|
loading: { type: Boolean, required: false },
|
|
95
95
|
options: { type: Array, required: true },
|
|
@@ -1,8 +1,16 @@
|
|
|
1
1
|
import type { ISelectFieldProps } from '#core/components/Form/InputSelect/types';
|
|
2
2
|
declare const __VLS_export: import("vue").DefineComponent<ISelectFieldProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
3
|
+
search: (...args: any[]) => void;
|
|
3
4
|
change: (...args: any[]) => void;
|
|
4
5
|
}, string, import("vue").PublicProps, Readonly<ISelectFieldProps> & Readonly<{
|
|
6
|
+
onSearch?: ((...args: any[]) => any) | undefined;
|
|
5
7
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
6
|
-
}>, {
|
|
8
|
+
}>, {
|
|
9
|
+
clearIcon: string;
|
|
10
|
+
searchInput: {
|
|
11
|
+
placeholder?: string;
|
|
12
|
+
icon?: string;
|
|
13
|
+
} | boolean;
|
|
14
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
7
15
|
declare const _default: typeof __VLS_export;
|
|
8
16
|
export default _default;
|