fis-component 0.0.57 → 0.0.59
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/cjs/index.js +21 -9
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/src/components/Combobox/types.d.ts +1 -1
- package/dist/cjs/types/src/components/Input/InputDate/index.d.ts +10 -0
- package/dist/cjs/types/src/components/MenuSelect/types.d.ts +3 -3
- package/dist/cjs/types/src/components/Select/Select.stories.d.ts +2 -0
- package/dist/cjs/types/src/components/Select/index.d.ts +1 -1
- package/dist/cjs/types/src/components/Select/types.d.ts +5 -5
- package/dist/esm/index.js +21 -9
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/src/components/Combobox/types.d.ts +1 -1
- package/dist/esm/types/src/components/Input/InputDate/index.d.ts +10 -0
- package/dist/esm/types/src/components/MenuSelect/types.d.ts +3 -3
- package/dist/esm/types/src/components/Select/Select.stories.d.ts +2 -0
- package/dist/esm/types/src/components/Select/index.d.ts +1 -1
- package/dist/esm/types/src/components/Select/types.d.ts +5 -5
- package/dist/index.d.ts +21 -11
- package/package.json +1 -1
package/dist/cjs/index.js
CHANGED
|
@@ -62970,6 +62970,7 @@ const FISTab = ({ children, active: propActive, defaultActive, size = "md", clas
|
|
|
62970
62970
|
return (jsxRuntime.jsxs(DivTabItemSC, { ref: (el) => (tabRefs.current[value] = el), "$isActive": activeKey === value, "$disabled": disabled, "$size": size, className: itemClassName, "$fullWidth": fullWidth, onClick: () => handleTabClick(value, disabled), children: [startIcon, title && jsxRuntime.jsx(SpanContentSC$1, { children: title }), endIcon] }, value));
|
|
62971
62971
|
}), jsxRuntime.jsx(DivActiveIndicatorSC, { style: indicatorStyle })] }), activeContent && jsxRuntime.jsx("div", { className: contentClassName, children: activeContent })] }));
|
|
62972
62972
|
};
|
|
62973
|
+
FISTab.displayName = "FISTab";
|
|
62973
62974
|
|
|
62974
62975
|
const DivSegmentedContainerSC = styled.div `
|
|
62975
62976
|
width: 100%;
|
|
@@ -66357,7 +66358,7 @@ const PTitleSC$2 = styled.p `
|
|
|
66357
66358
|
${getTheme("Paragraph/Sm")}
|
|
66358
66359
|
color: ${getTheme("com/menu/item/action/label/color-text/default")};
|
|
66359
66360
|
`;
|
|
66360
|
-
styled.div `
|
|
66361
|
+
const DivWrapperMenuSC = styled.div `
|
|
66361
66362
|
display: flex;
|
|
66362
66363
|
flex-direction: column;
|
|
66363
66364
|
height: 100%;
|
|
@@ -67468,7 +67469,7 @@ const FISMenuSelect = ({ placeholder, groups, size = "md", multi = false, select
|
|
|
67468
67469
|
onClickMenu?.();
|
|
67469
67470
|
}
|
|
67470
67471
|
};
|
|
67471
|
-
return (jsxRuntime.
|
|
67472
|
+
return (jsxRuntime.jsx(DivContainerSC$4, { className: className, children: jsxRuntime.jsxs(DivWrapperMenuSC, { children: [showInput && !combobox && (jsxRuntime.jsx(DivSearchSC, { children: jsxRuntime.jsx(FISInputText, { iconPrefix: jsxRuntime.jsx(SearchIcon, {}), placeholder: placeholder, value: search, onChange: handleSearchChange }) })), (shouldShowNoResult || noResult) && (jsxRuntime.jsxs(DivLoaderSC, { children: [jsxRuntime.jsx(DivIconDataSC, { children: jsxRuntime.jsx(NoResultIcon, {}) }), jsxRuntime.jsx(PTitleSC$2, { children: noResultText })] })), noData && (jsxRuntime.jsxs(DivLoaderSC, { children: [jsxRuntime.jsx(DivIconDataSC, { children: jsxRuntime.jsx(NoDataIcon, {}) }), jsxRuntime.jsx(PTitleSC$2, { children: noDataText })] })), loading && (jsxRuntime.jsxs(DivLoaderSC, { children: [jsxRuntime.jsx(FISProgressCircular, { size: size, variant: "indeterminate" }), jsxRuntime.jsx(PTitleSC$2, { children: loadingText })] })), !shouldShowNoResult && !noData && !loading && (jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [jsxRuntime.jsx(MenuContent, { "$removeSelectedGroup": !!removeSelectedGroup, children: groupsToRender.map((group, index) => (jsxRuntime.jsxs(DivWrapperSC$4, { children: [index !== 0 && jsxRuntime.jsx(FISMenuSection, { withDivider: true }), group?.groupLabel && (jsxRuntime.jsx(FISMenuSection, { label: group?.groupLabel })), group.items.map((item, idx) => (jsxRuntime.jsx(FISMenuItem, { title: item.label, description: item.description, size: size, onClickMenu: () => handleItemClick(item), selected: selectedValues.includes(item.value), type: "select" }, idx)))] }, index))) }), removeSelectedGroup && (jsxRuntime.jsx(FixedBottomSection, { children: jsxRuntime.jsx(DivWrapperSC$4, { children: removeSelectedGroup.items.map((item, idx) => (jsxRuntime.jsx(FISMenuItem, { title: item.label, description: item.description, size: size, onClickMenu: () => onChangeSelected?.([]), type: "select", iconPrefix: jsxRuntime.jsx(RemoveIcon, {}), negative: true }, idx))) }) }))] }))] }) }));
|
|
67472
67473
|
};
|
|
67473
67474
|
FISMenuSelect.displayName = "FISMenuSelect";
|
|
67474
67475
|
|
|
@@ -70932,6 +70933,19 @@ const FISInputTime = React.forwardRef((props, ref) => {
|
|
|
70932
70933
|
const [inputValue, setInputValue] = React.useState("");
|
|
70933
70934
|
const [timeValue, setTimeValue] = React.useState(null);
|
|
70934
70935
|
const [isOpen, setIsOpen] = React.useState(false);
|
|
70936
|
+
const containerRef = React.useRef(null);
|
|
70937
|
+
React.useEffect(() => {
|
|
70938
|
+
const handleClickOutside = (event) => {
|
|
70939
|
+
if (containerRef.current &&
|
|
70940
|
+
!containerRef.current.contains(event.target)) {
|
|
70941
|
+
setIsOpen(false);
|
|
70942
|
+
}
|
|
70943
|
+
};
|
|
70944
|
+
document.addEventListener("mousedown", handleClickOutside);
|
|
70945
|
+
return () => {
|
|
70946
|
+
document.removeEventListener("mousedown", handleClickOutside);
|
|
70947
|
+
};
|
|
70948
|
+
}, []);
|
|
70935
70949
|
const handleTimeChange = (time) => {
|
|
70936
70950
|
setTimeValue(time);
|
|
70937
70951
|
setInputValue(time ? time.format(format) : "");
|
|
@@ -70956,7 +70970,7 @@ const FISInputTime = React.forwardRef((props, ref) => {
|
|
|
70956
70970
|
setIsOpen(open);
|
|
70957
70971
|
}
|
|
70958
70972
|
};
|
|
70959
|
-
return (jsxRuntime.jsxs(DivContainerSC$2, { className: className, children: [(textLabel || iconLabel) && (jsxRuntime.jsx(FISInputLabel, { textLabel: textLabel, required: required, iconLabel: iconLabel, onClickIconLabel: onClickIconLabel })), jsxRuntime.jsxs(DivInputTimeSC, { children: [jsxRuntime.jsx(FISInputField, { ...rest, ref: ref, typeSuffix: "icon", iconSuffix: jsxRuntime.jsx(TimeIcon, {}), negative: negative, value: inputValue, onChange: handleInputChange, onFocus: handleClickInput, onClickSuffix: handleClickInput }), jsxRuntime.jsx(HiddenTimePickerSC, { format: format, value: timeValue, onChange: handleTimeChange, open: isOpen, onOpenChange: handleOpenChange, getPopupContainer: (triggerNode) => triggerNode.parentElement || document.body })] }), message && (jsxRuntime.jsx(DivHintWrapperSC, { children: jsxRuntime.jsx(SpanHintSC, { className: classNames({
|
|
70973
|
+
return (jsxRuntime.jsxs(DivContainerSC$2, { className: className, ref: containerRef, children: [(textLabel || iconLabel) && (jsxRuntime.jsx(FISInputLabel, { textLabel: textLabel, required: required, iconLabel: iconLabel, onClickIconLabel: onClickIconLabel })), jsxRuntime.jsxs(DivInputTimeSC, { children: [jsxRuntime.jsx(FISInputField, { ...rest, ref: ref, typeSuffix: "icon", iconSuffix: jsxRuntime.jsx(TimeIcon, {}), negative: negative, value: inputValue, onChange: handleInputChange, onFocus: handleClickInput, onClickSuffix: handleClickInput }), jsxRuntime.jsx(HiddenTimePickerSC, { format: format, value: timeValue, onChange: handleTimeChange, open: isOpen, onOpenChange: handleOpenChange, getPopupContainer: (triggerNode) => triggerNode.parentElement || document.body })] }), message && (jsxRuntime.jsx(DivHintWrapperSC, { children: jsxRuntime.jsx(SpanHintSC, { className: classNames({
|
|
70960
70974
|
disabled: disabled,
|
|
70961
70975
|
negative: negative,
|
|
70962
70976
|
positive: positive,
|
|
@@ -71007,7 +71021,7 @@ function mergeRefs(...refs) {
|
|
|
71007
71021
|
}
|
|
71008
71022
|
|
|
71009
71023
|
const FISInputDate = React.forwardRef((props, ref) => {
|
|
71010
|
-
const { value, textLabel = "", iconLabel, required, message = "", disabled, negative, positive, format = "DD/MM/YYYY", onClickIconLabel, onChange, ...restProps } = props;
|
|
71024
|
+
const { value, textLabel = "", iconLabel, required, message = "", disabled, negative, positive, format = "DD/MM/YYYY", onClickIconLabel, onChange, getPopupContainer, minDate, maxDate, ...restProps } = props;
|
|
71011
71025
|
const [open, setOpen] = React.useState(false);
|
|
71012
71026
|
const [inputValue, setInputValue] = React.useState(value ? dayjs(value).format(format) : "");
|
|
71013
71027
|
const [dateValue, setDateValue] = React.useState(value ? dayjs(value) : null);
|
|
@@ -71050,7 +71064,7 @@ const FISInputDate = React.forwardRef((props, ref) => {
|
|
|
71050
71064
|
onChange?.(null);
|
|
71051
71065
|
}
|
|
71052
71066
|
};
|
|
71053
|
-
return (jsxRuntime.jsxs(DivWrapperSC$2, { children: [(textLabel || iconLabel) && (jsxRuntime.jsx(FISInputLabel, { textLabel: textLabel, required: required, iconLabel: iconLabel, onClickIconLabel: onClickIconLabel })), jsxRuntime.jsxs(DivInputWrapperSC$1, { children: [jsxRuntime.jsx(FISInputField, { ...restProps, ref: mergeRef, typeSuffix: "icon", iconSuffix: jsxRuntime.jsx(DateIcon, {}), value: inputValue, negative: negative, disabled: disabled, onFocus: () => setOpen(true), onChange: handleInputChange, onClickSuffix: () => setOpen(true) }), jsxRuntime.jsx(HiddenDatePickerSC, { open: open, value: dateValue, onChange: (value) => handleChange(value), onOpenChange: handleOpenChange, format: format })] }), message && (jsxRuntime.jsx(DivHintWrapperSC$1, { children: jsxRuntime.jsx(SpanHintSC$3, { className: classNames({
|
|
71067
|
+
return (jsxRuntime.jsxs(DivWrapperSC$2, { children: [(textLabel || iconLabel) && (jsxRuntime.jsx(FISInputLabel, { textLabel: textLabel, required: required, iconLabel: iconLabel, onClickIconLabel: onClickIconLabel })), jsxRuntime.jsxs(DivInputWrapperSC$1, { children: [jsxRuntime.jsx(FISInputField, { ...restProps, ref: mergeRef, typeSuffix: "icon", iconSuffix: jsxRuntime.jsx(DateIcon, {}), value: inputValue, negative: negative, disabled: disabled, onFocus: () => setOpen(true), onChange: handleInputChange, onClickSuffix: () => setOpen(true) }), jsxRuntime.jsx(HiddenDatePickerSC, { open: open, value: dateValue, onChange: (value) => handleChange(value), onOpenChange: handleOpenChange, format: format, getPopupContainer: getPopupContainer, minDate: minDate, maxDate: maxDate })] }), message && (jsxRuntime.jsx(DivHintWrapperSC$1, { children: jsxRuntime.jsx(SpanHintSC$3, { className: classNames({
|
|
71054
71068
|
disabled,
|
|
71055
71069
|
negative,
|
|
71056
71070
|
positive,
|
|
@@ -73368,9 +73382,6 @@ const FISSelect = React.forwardRef(({ className, style, size = "md", options, va
|
|
|
73368
73382
|
const computedDisplayValue = React.useMemo(() => {
|
|
73369
73383
|
if (multi) {
|
|
73370
73384
|
const count = value.length;
|
|
73371
|
-
if (count === 0) {
|
|
73372
|
-
return "";
|
|
73373
|
-
}
|
|
73374
73385
|
return multiDisplayText
|
|
73375
73386
|
? multiDisplayText(count)
|
|
73376
73387
|
: `Selected ${count.toString().padStart(2, "0")} option${count !== 1 ? "s" : ""}`;
|
|
@@ -73572,6 +73583,7 @@ const PaginationAntdSC = styled(Pagination) `
|
|
|
73572
73583
|
`}
|
|
73573
73584
|
`;
|
|
73574
73585
|
const DivPaginationContainer = styled.div `
|
|
73586
|
+
width: 100%;
|
|
73575
73587
|
display: flex;
|
|
73576
73588
|
align-items: center;
|
|
73577
73589
|
justify-content: space-between;
|
|
@@ -73624,7 +73636,7 @@ const FISPagination = ({ pageSize = LIMIT_DEFAULT, current = 1, total = 0, minim
|
|
|
73624
73636
|
}
|
|
73625
73637
|
return originalElement;
|
|
73626
73638
|
};
|
|
73627
|
-
return (jsxRuntime.jsxs(DivPaginationContainer, { children: [jsxRuntime.jsx(SpanTotalSC, { children: showTotal ? showTotal(total, rangeRecords) : defaultShowTotal }), jsxRuntime.jsxs(DivPaginationContent, { children: [jsxRuntime.jsx(PaginationAntdSC, { ...mergedProps, "$minimize": Boolean(minimize), showSizeChanger: false, itemRender: itemRender }), jsxRuntime.jsx(FISSelect, { style: { width: "
|
|
73639
|
+
return (jsxRuntime.jsxs(DivPaginationContainer, { children: [jsxRuntime.jsx(SpanTotalSC, { children: showTotal ? showTotal(total, rangeRecords) : defaultShowTotal }), jsxRuntime.jsxs(DivPaginationContent, { children: [jsxRuntime.jsx(PaginationAntdSC, { ...mergedProps, "$minimize": Boolean(minimize), showSizeChanger: false, itemRender: itemRender }), jsxRuntime.jsx(FISSelect, { style: { width: "94px" }, size: "xs", options: [
|
|
73628
73640
|
{
|
|
73629
73641
|
groupLabel: "",
|
|
73630
73642
|
items: (rest.pageSizeOptions || [10, 20, 50, 100]).map((size) => ({
|