@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/FontCustom.woff +0 -0
- package/dist/FontCustom.woff2 +0 -0
- package/dist/Select/Select.types.d.ts +9 -1
- package/dist/index.esm.js +4 -1
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +4 -1
- package/dist/index.js.map +1 -1
- package/dist/styles.css +277 -269
- package/package.json +1 -1
- package/dist/utils/validateStyleDimension.js +0 -14
- package/dist/utils/validateStyleDimension.js.map +0 -1
- package/dist/utils/validateStyleDimension.test.js +0 -20
- package/dist/utils/validateStyleDimension.test.js.map +0 -1
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: {
|