hrm_ui_lib 3.1.10 → 3.1.11
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.
|
@@ -19,7 +19,7 @@ export const MultiBase = (props) => {
|
|
|
19
19
|
switch (e.key) {
|
|
20
20
|
case 'ArrowDown':
|
|
21
21
|
e.preventDefault();
|
|
22
|
-
setActiveIndex((prev) => Math.min(prev + 1,
|
|
22
|
+
setActiveIndex((prev) => Math.min(prev + 1, filteredData.length - 1));
|
|
23
23
|
break;
|
|
24
24
|
case 'ArrowUp':
|
|
25
25
|
e.preventDefault();
|
|
@@ -121,6 +121,6 @@ export const Select = forwardRef((props, _ref) => {
|
|
|
121
121
|
}, [setCurrentSelectedLabel]);
|
|
122
122
|
return (_jsxs("div", { "data-id": `${dataId}-content`, className: classNames(`select select--${size}`, className, {
|
|
123
123
|
'select--opened': isOpen
|
|
124
|
-
}), ref: containerRef, children: [!isButtonSelect && (_jsx(Input, { onClick: disabled ? noop : onOpenOptions, size: size === 'large' ? 'large' : 'small', dataId: dataId, hasError: hasError, className: "select__input", label: label, onChange: onSearch, required: isRequiredField, leftIconProps: leftIconProps, rightIconProps: isOpen ? selectRightIconOpenedProps : selectRightIconProps, placeholder: placeHolder, currentValue: searchValue || (selectedOption === null || selectedOption === void 0 ? void 0 : selectedOption.label.toString()) || '', isValid: isValid, disabled: disabled, helperText: isOpen ? '' : outerHelperText, ref: inputRef, labelAddons: labelAddons, autoComplete: "false", readOnly: (isMobile && isMobileFullScreen) || !isWithSearch, onKeyDown: handleKeyDown })), isButtonSelect && (_jsx(Button, { size: size, type: "secondary", dataId: dataId, iconProps: selectRightIconProps, buttonText: placeHolder || '', onClick: disabled ? noop : openDropdown, className: "select_button" })), isMobile && isMobileFullScreen ? (_jsx(SelectMobile, Object.assign({}, rest, { isOpen: isOpen, filteredData: filteredData, closeDropdown: closeDropdown, currentSelection: currentSelection, isRequiredField: isRequiredField, onItemDeselect: onItemDeselect, onItemSelect: onItemSelect, translations: localizations, withSearch: withSearch }))) : (_jsx(SelectDesktop, Object.assign({}, rest, { onItemDeselect: onItemDeselect, onItemSelect: onItemSelect, currentSelection: currentSelection, isRequiredField: isRequiredField, filteredData: filteredData, inputRef: inputRef.current, containerRef: containerRef.current, isOpen: isOpen, closeDropdown: closeDropdown, setCurrentSelectedLabel: setCurrentSelectedLabel, searchValue: searchValue, setSearchValue: setSearchValue, translations: localizations, activeIndex: activeIndex, setActiveIndex: setActiveIndex })))] }));
|
|
124
|
+
}), ref: containerRef, children: [!isButtonSelect && (_jsx(Input, { onClick: disabled ? noop : onOpenOptions, size: size === 'large' ? 'large' : 'small', dataId: dataId, hasError: hasError, className: "select__input", label: label, onChange: onSearch, required: isRequiredField, leftIconProps: leftIconProps, rightIconProps: isOpen ? selectRightIconOpenedProps : selectRightIconProps, placeholder: placeHolder, currentValue: searchValue || (selectedOption === null || selectedOption === void 0 ? void 0 : selectedOption.label.toString()) || '', isValid: isValid, disabled: disabled, helperText: isOpen ? '' : outerHelperText, ref: inputRef, labelAddons: labelAddons, autoComplete: "false", readOnly: (isMobile && isMobileFullScreen) || !isWithSearch, onKeyDown: handleKeyDown })), isButtonSelect && (_jsx(Button, { size: size, type: "secondary", dataId: dataId, iconProps: selectRightIconProps, buttonText: placeHolder || '', onClick: disabled ? noop : openDropdown, className: "select_button" })), isMobile && isMobileFullScreen ? (_jsx(SelectMobile, Object.assign({}, rest, { isOpen: isOpen, filteredData: filteredData, closeDropdown: closeDropdown, currentSelection: currentSelection, isRequiredField: isRequiredField, onItemDeselect: onItemDeselect, onItemSelect: onItemSelect, translations: localizations, withSearch: withSearch, searchValue: searchValue, setSearchValue: setSearchValue }))) : (_jsx(SelectDesktop, Object.assign({}, rest, { onItemDeselect: onItemDeselect, onItemSelect: onItemSelect, currentSelection: currentSelection, isRequiredField: isRequiredField, filteredData: filteredData, inputRef: inputRef.current, containerRef: containerRef.current, isOpen: isOpen, closeDropdown: closeDropdown, setCurrentSelectedLabel: setCurrentSelectedLabel, searchValue: searchValue, setSearchValue: setSearchValue, translations: localizations, activeIndex: activeIndex, setActiveIndex: setActiveIndex })))] }));
|
|
125
125
|
});
|
|
126
126
|
Select.displayName = 'Select';
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
-
import { useState } from 'react';
|
|
3
2
|
import { OptionItem } from '../../../../helperComponents/OptionItem';
|
|
4
3
|
import { Empty } from '../../../Empty';
|
|
5
4
|
import { Modal } from '../../../Modal';
|
|
@@ -9,8 +8,7 @@ import { Loading } from '../../SharedComponents';
|
|
|
9
8
|
import { MobileTopContent } from './MobileTopContent';
|
|
10
9
|
import { FixedSizeList as List } from 'react-window';
|
|
11
10
|
export const SelectMobile = (props) => {
|
|
12
|
-
const { translations, currentSelection, isOpen, closeDropdown, isLoading, dataId, innerHelperText, filteredData, isRequiredField, onItemSelect, onItemDeselect, tooltipAddons, labelLeftIconProps, optionRightIconComponent, labelRightIconComponent, withSearch } = props;
|
|
13
|
-
const [searchValue, setSearchValue] = useState('');
|
|
11
|
+
const { translations, currentSelection, isOpen, closeDropdown, isLoading, dataId, innerHelperText, filteredData, isRequiredField, onItemSelect, onItemDeselect, tooltipAddons, labelLeftIconProps, optionRightIconComponent, labelRightIconComponent, withSearch, searchValue, setSearchValue } = props;
|
|
14
12
|
const clickHandler = (isSelected) => ({ value }) => {
|
|
15
13
|
setSearchValue('');
|
|
16
14
|
if (!isSelected) {
|
|
@@ -149,13 +149,13 @@ export interface ISingleSelectResponsiveProps {
|
|
|
149
149
|
isRequiredField?: boolean;
|
|
150
150
|
translations?: TSelectTranslations;
|
|
151
151
|
language?: string;
|
|
152
|
+
searchValue: string;
|
|
153
|
+
setSearchValue: (value: string) => void;
|
|
152
154
|
}
|
|
153
155
|
export interface ISingleSelectMobileProps extends ISingleSelectResponsiveProps {
|
|
154
156
|
withSearch: boolean;
|
|
155
157
|
}
|
|
156
158
|
export interface ISingleSelectDesktopProps extends ISingleSelectResponsiveProps {
|
|
157
|
-
searchValue: string;
|
|
158
|
-
setSearchValue: (value: string) => void;
|
|
159
159
|
withSearch?: boolean;
|
|
160
160
|
dropdownWidth?: number;
|
|
161
161
|
inputRef: HTMLInputElement | null;
|