@signal24/vue-foundation 4.29.8 → 4.30.0
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/demo/components/demo-vf-smart-select.vue +1 -1
- package/dist/demo/components/demo-root.vue.d.ts +2 -1
- package/dist/demo/components/demo-vf-alert-modal.vue.d.ts +2 -1
- package/dist/demo/components/demo-vf-smart-select.vue.d.ts +2 -1
- package/dist/src/components/overlay-anchor.vue.d.ts +3 -2
- package/dist/src/components/vf-ajax-select.vue.d.ts +7 -6
- package/dist/src/components/vf-alert-modal.vue.d.ts +2 -1
- package/dist/src/components/vf-ez-smart-select.vue.d.ts +7 -6
- package/dist/src/components/vf-modal.vue.d.ts +3 -2
- package/dist/src/components/vf-smart-select.vue.d.ts +9 -8
- package/dist/src/components/vf-toast.vue.d.ts +2 -1
- package/dist/tsconfig.app.tsbuildinfo +1 -1
- package/dist/vue-foundation.es.js +797 -809
- package/package.json +24 -24
- package/src/components/overlay-container.ts +2 -2
- package/src/components/vf-smart-select.vue +3 -3
|
@@ -203,7 +203,7 @@ const delayedOptions = ref<IOption[]>();
|
|
|
203
203
|
const selectedInstantOption1 = ref<IOption | null>(null);
|
|
204
204
|
const selectedInstantOption2 = ref<IOption | null>(null);
|
|
205
205
|
const selectedDelayedOption0 = ref<number | null>(null);
|
|
206
|
-
const selectedDelayedOption1 = ref<IOption | null>(options[1]);
|
|
206
|
+
const selectedDelayedOption1 = ref<IOption | null>(options[1]!);
|
|
207
207
|
const selectedDelayedOption2 = ref<string | null>('2');
|
|
208
208
|
const selectedDelayedOption3 = ref<string | null>('19'); // intentionally invalid value
|
|
209
209
|
const selectedCreateOption = ref<string | null>(null);
|
|
@@ -1,2 +1,3 @@
|
|
|
1
|
-
declare const
|
|
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>;
|
|
2
|
+
declare const _default: typeof __VLS_export;
|
|
2
3
|
export default _default;
|
|
@@ -1,2 +1,3 @@
|
|
|
1
|
-
declare const
|
|
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>;
|
|
2
|
+
declare const _default: typeof __VLS_export;
|
|
2
3
|
export default _default;
|
|
@@ -1,2 +1,3 @@
|
|
|
1
|
-
declare const
|
|
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>;
|
|
2
|
+
declare const _default: typeof __VLS_export;
|
|
2
3
|
export default _default;
|
|
@@ -7,8 +7,9 @@ declare var __VLS_1: {};
|
|
|
7
7
|
type __VLS_Slots = {} & {
|
|
8
8
|
default?: (props: typeof __VLS_1) => any;
|
|
9
9
|
};
|
|
10
|
-
declare const
|
|
11
|
-
declare const
|
|
10
|
+
declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
11
|
+
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
12
|
+
declare const _default: typeof __VLS_export;
|
|
12
13
|
export default _default;
|
|
13
14
|
type __VLS_WithSlots<T, S> = T & {
|
|
14
15
|
new (): {
|
|
@@ -1,21 +1,22 @@
|
|
|
1
|
-
declare const
|
|
2
|
-
props: __VLS_PrettifyLocal<
|
|
3
|
-
readonly "onUpdate:modelValue"?: ((args_0: T) => any) | undefined;
|
|
4
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>, "onUpdate:modelValue"> & {
|
|
1
|
+
declare const __VLS_export: <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
|
+
props: __VLS_PrettifyLocal<{
|
|
5
3
|
modelValue: T;
|
|
6
4
|
loadFn: () => Promise<T[]>;
|
|
7
5
|
nullText?: string;
|
|
8
6
|
loadingText?: string;
|
|
9
7
|
displayKey?: keyof T;
|
|
10
8
|
preprocesor?: (option: T) => string;
|
|
11
|
-
} &
|
|
12
|
-
|
|
9
|
+
} & {
|
|
10
|
+
"onUpdate:modelValue"?: ((args_0: T) => any) | undefined;
|
|
11
|
+
}> & import("vue").PublicProps;
|
|
12
|
+
expose: (exposed: {}) => void;
|
|
13
13
|
attrs: any;
|
|
14
14
|
slots: {};
|
|
15
15
|
emit: (evt: "update:modelValue", args_0: T) => void;
|
|
16
16
|
}>) => import("vue").VNode & {
|
|
17
17
|
__ctx?: Awaited<typeof __VLS_setup>;
|
|
18
18
|
};
|
|
19
|
+
declare const _default: typeof __VLS_export;
|
|
19
20
|
export default _default;
|
|
20
21
|
type __VLS_PrettifyLocal<T> = {
|
|
21
22
|
[K in keyof T as K]: T[K];
|
|
@@ -8,5 +8,6 @@ type __VLS_Props = {
|
|
|
8
8
|
iconClass?: string | string[];
|
|
9
9
|
callback: (ok: boolean) => void;
|
|
10
10
|
};
|
|
11
|
-
declare const
|
|
11
|
+
declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
12
|
+
declare const _default: typeof __VLS_export;
|
|
12
13
|
export default _default;
|
|
@@ -1,21 +1,22 @@
|
|
|
1
|
-
declare const
|
|
2
|
-
props: __VLS_PrettifyLocal<
|
|
3
|
-
readonly "onUpdate:modelValue"?: ((value: T | null) => any) | undefined;
|
|
4
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>, "onUpdate:modelValue"> & {
|
|
1
|
+
declare const __VLS_export: <T extends string>(__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
|
+
props: __VLS_PrettifyLocal<{
|
|
5
3
|
modelValue: T | null | undefined;
|
|
6
4
|
nullTitle?: string;
|
|
7
5
|
placeholder?: string;
|
|
8
6
|
options: { [key in T]: string; } | T[];
|
|
9
7
|
formatter?: (label: string, key: T) => string;
|
|
10
8
|
name?: string;
|
|
11
|
-
} &
|
|
12
|
-
|
|
9
|
+
} & {
|
|
10
|
+
"onUpdate:modelValue"?: ((value: T | null) => any) | undefined;
|
|
11
|
+
}> & import("vue").PublicProps;
|
|
12
|
+
expose: (exposed: {}) => void;
|
|
13
13
|
attrs: any;
|
|
14
14
|
slots: {};
|
|
15
15
|
emit: (e: "update:modelValue", value: T | null) => void;
|
|
16
16
|
}>) => import("vue").VNode & {
|
|
17
17
|
__ctx?: Awaited<typeof __VLS_setup>;
|
|
18
18
|
};
|
|
19
|
+
declare const _default: typeof __VLS_export;
|
|
19
20
|
export default _default;
|
|
20
21
|
type __VLS_PrettifyLocal<T> = {
|
|
21
22
|
[K in keyof T as K]: T[K];
|
|
@@ -17,7 +17,7 @@ type __VLS_Slots = {} & {
|
|
|
17
17
|
} & {
|
|
18
18
|
footer?: (props: typeof __VLS_5) => any;
|
|
19
19
|
};
|
|
20
|
-
declare const
|
|
20
|
+
declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {
|
|
21
21
|
mask: typeof mask;
|
|
22
22
|
unmask: typeof unmask;
|
|
23
23
|
hide: typeof hide;
|
|
@@ -27,7 +27,8 @@ declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, {
|
|
|
27
27
|
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
28
28
|
onFormSubmit?: ((...args: any[]) => any) | undefined;
|
|
29
29
|
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
30
|
-
declare const
|
|
30
|
+
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
31
|
+
declare const _default: typeof __VLS_export;
|
|
31
32
|
export default _default;
|
|
32
33
|
type __VLS_WithSlots<T, S> = T & {
|
|
33
34
|
new (): {
|
|
@@ -1,9 +1,6 @@
|
|
|
1
1
|
import type { VfSmartSelectOptionDescriptor } from './vf-smart-select.types';
|
|
2
|
-
declare const
|
|
3
|
-
props: __VLS_PrettifyLocal<
|
|
4
|
-
readonly "onUpdate:modelValue"?: ((args_0: V) => any) | undefined;
|
|
5
|
-
readonly onOptionsLoaded?: ((args_0: T[]) => any) | undefined;
|
|
6
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>, "onUpdate:modelValue" | "onOptionsLoaded"> & {
|
|
2
|
+
declare const __VLS_export: <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<{
|
|
3
|
+
props: __VLS_PrettifyLocal<{
|
|
7
4
|
modelValue: V | null;
|
|
8
5
|
loadingText?: string;
|
|
9
6
|
loadOptions?: (searchText: string | null) => Promise<T[]>;
|
|
@@ -35,10 +32,13 @@ declare const _default: <T, V = T>(__VLS_props: NonNullable<Awaited<typeof __VLS
|
|
|
35
32
|
showCreateTextOnNewItem?: boolean;
|
|
36
33
|
autoNext?: boolean;
|
|
37
34
|
name?: string;
|
|
38
|
-
} &
|
|
39
|
-
|
|
35
|
+
} & {
|
|
36
|
+
"onUpdate:modelValue"?: ((args_0: V) => any) | undefined;
|
|
37
|
+
onOptionsLoaded?: ((args_0: T[]) => any) | undefined;
|
|
38
|
+
}> & import("vue").PublicProps;
|
|
39
|
+
expose: (exposed: import("vue").ShallowUnwrapRef<{
|
|
40
40
|
addRemoteOption: (option: T) => void;
|
|
41
|
-
}>)
|
|
41
|
+
}>) => void;
|
|
42
42
|
attrs: any;
|
|
43
43
|
slots: {
|
|
44
44
|
group?: (props: {
|
|
@@ -55,6 +55,7 @@ declare const _default: <T, V = T>(__VLS_props: NonNullable<Awaited<typeof __VLS
|
|
|
55
55
|
}>) => import("vue").VNode & {
|
|
56
56
|
__ctx?: Awaited<typeof __VLS_setup>;
|
|
57
57
|
};
|
|
58
|
+
declare const _default: typeof __VLS_export;
|
|
58
59
|
export default _default;
|
|
59
60
|
type __VLS_PrettifyLocal<T> = {
|
|
60
61
|
[K in keyof T as K]: T[K];
|
|
@@ -9,5 +9,6 @@ export interface IToastOptions {
|
|
|
9
9
|
type __VLS_Props = IToastOptions & {
|
|
10
10
|
callback: () => void;
|
|
11
11
|
};
|
|
12
|
-
declare const
|
|
12
|
+
declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
13
|
+
declare const _default: typeof __VLS_export;
|
|
13
14
|
export default _default;
|