Skip to content

Commit

Permalink
(Build) Lib for v5.9.7
Browse files Browse the repository at this point in the history
  • Loading branch information
Arthur Volokhin authored and Arthur Volokhin committed Oct 18, 2024
1 parent f420d4d commit 9a76ab7
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 18 deletions.
4 changes: 2 additions & 2 deletions lib/admiral.es.js
Original file line number Diff line number Diff line change
Expand Up @@ -76862,9 +76862,9 @@ const InternalSelect = (_o, ref) => {
[`${prefixCls}__Borderless`]: borderless,
[`${prefixCls}__MaxTag`]: typeof maxTagCount !== "undefined"
}, className);
const getValue2 = (value2) => value2 || value2 === 0 ? Number.isInteger(+value2) ? +value2 : value2 : void 0;
const value = selectProps.value;
const selectValue = useMemo$3(() => value ? isMultiple2 ? value.map(getValue2) : getValue2(value) : void 0, [value]);
const getValue2 = (value2) => value2 || value2 === 0 || typeof value2 === "boolean" ? typeof value2 !== "boolean" && Number.isInteger(+value2) ? +value2 : value2 : void 0;
const selectValue = useMemo$3(() => value || typeof value === "boolean" ? isMultiple2 ? value.map(getValue2) : getValue2(value) : void 0, [value]);
const _onChange = useCallback$1((value2, option) => {
if (onChange2)
onChange2(value2 != null ? value2 : null, option);
Expand Down
Loading

0 comments on commit 9a76ab7

Please sign in to comment.