@yamada-ui/autocomplete 1.5.4-dev-20241005215726 → 1.5.4-dev-20241005220629
Sign up to get free protection for your applications and to get access to all the features.
@@ -141,20 +141,20 @@ declare const useAutocomplete: <T extends string | string[] = string>(props: Use
|
|
141
141
|
isAllSelected: boolean;
|
142
142
|
listRef: react.RefObject<HTMLUListElement>;
|
143
143
|
inputRef: react.RefObject<HTMLInputElement>;
|
144
|
-
optionProps: Omit<AutocompleteOptionProps, "
|
144
|
+
optionProps: Omit<AutocompleteOptionProps, "children" | "value"> | undefined;
|
145
145
|
formControlProps: {
|
146
|
-
disabled: boolean | undefined;
|
147
146
|
_invalid?: ({} & _yamada_ui_core.CSSUIObject) | undefined;
|
148
147
|
_hover?: ({} & _yamada_ui_core.CSSUIObject) | undefined;
|
149
148
|
_active?: ({} & _yamada_ui_core.CSSUIObject) | undefined;
|
150
149
|
_focus?: ({} & _yamada_ui_core.CSSUIObject) | undefined;
|
151
150
|
_focusVisible?: ({} & _yamada_ui_core.CSSUIObject) | undefined;
|
152
|
-
readOnly: boolean | undefined;
|
153
|
-
required: boolean | undefined;
|
154
151
|
"aria-disabled": boolean | undefined;
|
155
152
|
"aria-invalid": boolean | undefined;
|
156
153
|
"aria-required": boolean | undefined;
|
157
154
|
onBlur: (event: FocusEvent<HTMLInputElement, Element>) => void;
|
155
|
+
disabled: boolean | undefined;
|
156
|
+
readOnly: boolean | undefined;
|
157
|
+
required: boolean | undefined;
|
158
158
|
"data-readonly": boolean | "false" | "true";
|
159
159
|
};
|
160
160
|
setFocusedIndex: react.Dispatch<react.SetStateAction<number>>;
|
@@ -141,20 +141,20 @@ declare const useAutocomplete: <T extends string | string[] = string>(props: Use
|
|
141
141
|
isAllSelected: boolean;
|
142
142
|
listRef: react.RefObject<HTMLUListElement>;
|
143
143
|
inputRef: react.RefObject<HTMLInputElement>;
|
144
|
-
optionProps: Omit<AutocompleteOptionProps, "
|
144
|
+
optionProps: Omit<AutocompleteOptionProps, "children" | "value"> | undefined;
|
145
145
|
formControlProps: {
|
146
|
-
disabled: boolean | undefined;
|
147
146
|
_invalid?: ({} & _yamada_ui_core.CSSUIObject) | undefined;
|
148
147
|
_hover?: ({} & _yamada_ui_core.CSSUIObject) | undefined;
|
149
148
|
_active?: ({} & _yamada_ui_core.CSSUIObject) | undefined;
|
150
149
|
_focus?: ({} & _yamada_ui_core.CSSUIObject) | undefined;
|
151
150
|
_focusVisible?: ({} & _yamada_ui_core.CSSUIObject) | undefined;
|
152
|
-
readOnly: boolean | undefined;
|
153
|
-
required: boolean | undefined;
|
154
151
|
"aria-disabled": boolean | undefined;
|
155
152
|
"aria-invalid": boolean | undefined;
|
156
153
|
"aria-required": boolean | undefined;
|
157
154
|
onBlur: (event: FocusEvent<HTMLInputElement, Element>) => void;
|
155
|
+
disabled: boolean | undefined;
|
156
|
+
readOnly: boolean | undefined;
|
157
|
+
required: boolean | undefined;
|
158
158
|
"data-readonly": boolean | "false" | "true";
|
159
159
|
};
|
160
160
|
setFocusedIndex: react.Dispatch<react.SetStateAction<number>>;
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@yamada-ui/autocomplete",
|
3
|
-
"version": "1.5.4-dev-
|
3
|
+
"version": "1.5.4-dev-20241005220629",
|
4
4
|
"description": "Yamada UI autocomplete component",
|
5
5
|
"keywords": [
|
6
6
|
"yamada",
|
@@ -37,12 +37,12 @@
|
|
37
37
|
"url": "https://github.com/yamada-ui/yamada-ui/issues"
|
38
38
|
},
|
39
39
|
"dependencies": {
|
40
|
-
"@yamada-ui/core": "1.15.2-dev-
|
41
|
-
"@yamada-ui/form-control": "2.1.4-dev-
|
42
|
-
"@yamada-ui/icon": "1.1.8-dev-
|
43
|
-
"@yamada-ui/motion": "2.2.4-dev-
|
44
|
-
"@yamada-ui/popover": "1.3.4-dev-
|
45
|
-
"@yamada-ui/portal": "1.0.23-dev-
|
40
|
+
"@yamada-ui/core": "1.15.2-dev-20241005220629",
|
41
|
+
"@yamada-ui/form-control": "2.1.4-dev-20241005220629",
|
42
|
+
"@yamada-ui/icon": "1.1.8-dev-20241005220629",
|
43
|
+
"@yamada-ui/motion": "2.2.4-dev-20241005220629",
|
44
|
+
"@yamada-ui/popover": "1.3.4-dev-20241005220629",
|
45
|
+
"@yamada-ui/portal": "1.0.23-dev-20241005220629",
|
46
46
|
"@yamada-ui/use-clickable": "1.2.9",
|
47
47
|
"@yamada-ui/use-controllable-state": "1.0.21",
|
48
48
|
"@yamada-ui/use-descendant": "1.0.22",
|