ingeniuscliq-core 0.3.23 → 0.3.24
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.
|
@@ -5,9 +5,9 @@ interface FormSelectProps<T extends FieldValues = FieldValues> extends BaseStyle
|
|
|
5
5
|
readonly control: Control<T>;
|
|
6
6
|
readonly name: Path<T>;
|
|
7
7
|
readonly placeholder?: string;
|
|
8
|
-
readonly defaultValue
|
|
9
|
-
readonly value
|
|
10
|
-
readonly onValueChange
|
|
8
|
+
readonly defaultValue?: CustomSelectProps['defaultValue'];
|
|
9
|
+
readonly value?: CustomSelectProps['value'];
|
|
10
|
+
readonly onValueChange?: CustomSelectProps['onValueChange'];
|
|
11
11
|
readonly options: CustomSelectProps['options'];
|
|
12
12
|
readonly className: string;
|
|
13
13
|
readonly selectProps?: Omit<CustomSelectProps, 'options' | 'placeholder' | 'defaultValue' | 'value' | 'onValueChange'>;
|