@economic/taco 2.54.6 → 2.54.7-vite.1

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/dist/taco.cjs CHANGED
@@ -12990,23 +12990,24 @@ const filterData = (data, value = "") => {
12990
12990
  };
12991
12991
  const debouncer = debounce$1((f2) => f2(), 200);
12992
12992
  const convertToInputValue = (value) => String(value ?? "");
12993
- const useCombobox = ({
12994
- "aria-label": ariaLabel,
12995
- "aria-labelledby": ariaLabelledBy,
12996
- data: unfilteredData = [],
12997
- defaultValue: defaultValue2,
12998
- disabled,
12999
- id: nativeId,
13000
- inline,
13001
- loading: __,
13002
- onChange,
13003
- onClick,
13004
- onKeyDown,
13005
- onSearch,
13006
- readOnly,
13007
- value,
13008
- ...props
13009
- }, ref) => {
12993
+ const useCombobox = (props, ref) => {
12994
+ const {
12995
+ "aria-label": ariaLabel,
12996
+ "aria-labelledby": ariaLabelledBy,
12997
+ data: unfilteredData = [],
12998
+ defaultValue: defaultValue2,
12999
+ disabled,
13000
+ id: nativeId,
13001
+ inline,
13002
+ loading: __,
13003
+ onChange,
13004
+ onClick,
13005
+ onKeyDown,
13006
+ onSearch,
13007
+ readOnly,
13008
+ value,
13009
+ ...otherProps
13010
+ } = props;
13010
13011
  const inputRef = useMergedRef(ref);
13011
13012
  const buttonRef = React__namespace.useRef(null);
13012
13013
  const listRef = React__namespace.useRef(null);
@@ -13191,13 +13192,14 @@ const useCombobox = ({
13191
13192
  role: "combobox"
13192
13193
  };
13193
13194
  const input = {
13194
- ...props,
13195
+ ...otherProps,
13195
13196
  "aria-controls": listId,
13196
13197
  // Indicates that the autocomplete behavior of the text input is to suggest a list of possible values in a popup and that the suggestions
13197
13198
  // are related to the string that is present in the textbox
13198
13199
  "aria-autocomplete": "list",
13199
13200
  // Enables assistive technologies to know which element the application regards as focused while DOM focus remains on the input element
13200
13201
  "aria-activedescendant": currentIndex !== void 0 && data[currentIndex] ? getId(listId, String(data[currentIndex].value)) : void 0,
13202
+ "aria-label": ariaLabel,
13201
13203
  "aria-labelledby": ariaLabelledBy,
13202
13204
  disabled,
13203
13205
  onBlur: !disabled && !readOnly ? handleInputBlur : void 0,