@wavv/ui 2.2.6 → 2.2.7
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.
|
@@ -80,6 +80,7 @@ export type TimeFieldProps = {
|
|
|
80
80
|
/** SELECTS */
|
|
81
81
|
type Combo = AriaComboBoxProps<object>;
|
|
82
82
|
export type ComboBoxProps = {
|
|
83
|
+
inputValue?: Combo['inputValue'];
|
|
83
84
|
defaultFilter?: Combo['defaultFilter'];
|
|
84
85
|
formValue?: Combo['formValue'];
|
|
85
86
|
allowsEmptyCollection?: Combo['allowsEmptyCollection'];
|
|
@@ -96,7 +97,7 @@ export type ComboBoxProps = {
|
|
|
96
97
|
style?: Combo['style'];
|
|
97
98
|
onOpenChange?: Combo['onOpenChange'];
|
|
98
99
|
onInputChange?: Combo['onInputChange'];
|
|
99
|
-
} & Omit<Combo, 'children' | 'defaultItems' | 'items' | 'onSelectionChange' | 'selectedKey' | 'defaultSelectedKey' | '
|
|
100
|
+
} & Omit<Combo, 'children' | 'defaultItems' | 'items' | 'onSelectionChange' | 'selectedKey' | 'defaultSelectedKey' | 'defaultInputValue' | 'isOpen' | 'isDisabled' | 'isInvalid' | 'isRequired'>;
|
|
100
101
|
type Select = AriaSelectProps<SelectItem>;
|
|
101
102
|
export type SelectProps = {
|
|
102
103
|
autoComplete?: Select['autoComplete'];
|