@davincihealthcare/elty-design-system-vue 1.34.4 → 1.34.5
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.
|
@@ -2,10 +2,10 @@ import { AutocompleteOptionType } from './utils';
|
|
|
2
2
|
import { OptionType } from '../types';
|
|
3
3
|
import { PropType } from 'vue';
|
|
4
4
|
|
|
5
|
-
type
|
|
5
|
+
export type OptionValueType = string | string[] | null | undefined;
|
|
6
6
|
declare const _default: import('vue').DefineComponent<{
|
|
7
7
|
modelValue: {
|
|
8
|
-
type: PropType<
|
|
8
|
+
type: PropType<OptionValueType>;
|
|
9
9
|
required: false;
|
|
10
10
|
default: undefined;
|
|
11
11
|
};
|
|
@@ -62,11 +62,11 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
62
62
|
default: boolean;
|
|
63
63
|
};
|
|
64
64
|
}, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
65
|
-
"update:modelValue": (newValue:
|
|
66
|
-
"update:modelLabel": (newValue:
|
|
65
|
+
"update:modelValue": (newValue: OptionValueType) => void;
|
|
66
|
+
"update:modelLabel": (newValue: OptionValueType) => void;
|
|
67
67
|
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
68
68
|
modelValue: {
|
|
69
|
-
type: PropType<
|
|
69
|
+
type: PropType<OptionValueType>;
|
|
70
70
|
required: false;
|
|
71
71
|
default: undefined;
|
|
72
72
|
};
|
|
@@ -123,14 +123,14 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
123
123
|
default: boolean;
|
|
124
124
|
};
|
|
125
125
|
}>> & {
|
|
126
|
-
"onUpdate:modelValue"?: ((newValue:
|
|
127
|
-
"onUpdate:modelLabel"?: ((newValue:
|
|
126
|
+
"onUpdate:modelValue"?: ((newValue: OptionValueType) => any) | undefined;
|
|
127
|
+
"onUpdate:modelLabel"?: ((newValue: OptionValueType) => any) | undefined;
|
|
128
128
|
}, {
|
|
129
129
|
disabled: boolean;
|
|
130
130
|
label: string;
|
|
131
131
|
id: string;
|
|
132
132
|
placeholder: string;
|
|
133
|
-
modelValue:
|
|
133
|
+
modelValue: OptionValueType;
|
|
134
134
|
errorMessage: string | boolean;
|
|
135
135
|
hiddenErrorMessage: boolean;
|
|
136
136
|
validation: string;
|