@seeqdev/qomponents 0.0.86 → 0.0.88

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/index.js CHANGED
@@ -13749,7 +13749,7 @@ const multiValueStyles = [
13749
13749
  * For ease of testing most of the elements of this select can be identified by classNames prefixed with "spec".
13750
13750
  *
13751
13751
  */
13752
- const Select = ({ options, value, placeholder = 'select', noOptionsMessage = 'no matching options', isSearchable = true, creatable = false, isMulti = false, isClearable = false, closeMenuOnSelect = true, id, inputId, menuPortalTarget, getOptionLabel, getSelectedValueLabel, getOptionValue, onChange, menuIsOpen, menuPlacement = 'auto', extraClassNames, inputGroup, filterConfig, filterOption, small = false, isDisabled = false, showError = false, isLoading = false, formatGroupLabel, onRemove, defaultValue, onMenuOpen, onMenuClose, components }) => {
13752
+ const Select = ({ options, value, placeholder = 'select', noOptionsMessage = 'no matching options', isSearchable = true, creatable = false, isMulti = false, isClearable = false, closeMenuOnSelect = true, id, inputId, menuPortalTarget, getOptionLabel, getSelectedValueLabel, getOptionValue, onChange, menuIsOpen, menuPlacement = 'auto', extraClassNames, inputGroup, filterConfig, filterOption, small = false, isDisabled = false, showError = false, isLoading = false, formatGroupLabel, onRemove, defaultValue, onMenuOpen, onMenuClose, components, onMenuInputFocus, onInputChange, inputValue }) => {
13753
13753
  const getOptionOrSelectedLabel = (option, { context }) => {
13754
13754
  const getSelectedOptionLabel = getSelectedValueLabel ? getSelectedValueLabel : getOptionLabel;
13755
13755
  if (getOptionLabel || getSelectedValueLabel) {
@@ -13797,6 +13797,9 @@ const Select = ({ options, value, placeholder = 'select', noOptionsMessage = 'no
13797
13797
  onMenuOpen,
13798
13798
  onMenuClose,
13799
13799
  components,
13800
+ onMenuInputFocus,
13801
+ onInputChange,
13802
+ inputValue,
13800
13803
  hideSelectedOptions: isMulti,
13801
13804
  filterOption: filterOption ? filterOption : filterConfig ? createFilter(filterConfig) : undefined,
13802
13805
  classNames: {