@signal24/vue-foundation 4.20.1 → 4.20.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/src/components/index.d.ts +1 -0
- package/dist/src/components/vf-smart-select.types.d.ts +7 -0
- package/dist/src/components/vf-smart-select.vue.d.ts +8 -1
- package/dist/vue-foundation.es.js +313 -305
- package/package.json +1 -1
- package/src/components/index.ts +1 -0
- package/src/components/vf-smart-select.types.ts +7 -0
- package/src/components/vf-smart-select.vue +13 -17
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import type { VfSmartSelectOptionDescriptor } from './vf-smart-select.types';
|
|
1
2
|
declare const _default: <T, V = T>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
|
|
2
3
|
props: __VLS_PrettifyLocal<Pick<Partial<{}> & Omit<{
|
|
3
4
|
readonly "onUpdate:modelValue"?: ((args_0: V) => any) | undefined;
|
|
@@ -20,6 +21,7 @@ declare const _default: <T, V = T>(__VLS_props: NonNullable<Awaited<typeof __VLS
|
|
|
20
21
|
labelField?: keyof T;
|
|
21
22
|
formatter?: (option: T) => string;
|
|
22
23
|
subtitleFormatter?: (option: T) => string;
|
|
24
|
+
classForOption?: (option: T) => string;
|
|
23
25
|
nullTitle?: string;
|
|
24
26
|
noResultsText?: string;
|
|
25
27
|
disabled?: boolean;
|
|
@@ -33,7 +35,12 @@ declare const _default: <T, V = T>(__VLS_props: NonNullable<Awaited<typeof __VLS
|
|
|
33
35
|
addRemoteOption: (option: T) => void;
|
|
34
36
|
}>): void;
|
|
35
37
|
attrs: any;
|
|
36
|
-
slots: {
|
|
38
|
+
slots: {
|
|
39
|
+
option?(_: {
|
|
40
|
+
option: VfSmartSelectOptionDescriptor<T>;
|
|
41
|
+
}): any;
|
|
42
|
+
'no-results'?(_: {}): any;
|
|
43
|
+
};
|
|
37
44
|
emit: ((evt: "update:modelValue", args_0: V) => void) & ((evt: "optionsLoaded", args_0: T[]) => void);
|
|
38
45
|
}>) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
39
46
|
[key: string]: any;
|