fis-component 0.0.36 → 0.0.38
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.
|
@@ -31,8 +31,8 @@ export { default as FISChipButton } from "./components/ChipButton";
|
|
|
31
31
|
export { default as FISInputTime } from "./components/Input/InputTime";
|
|
32
32
|
export { default as FISInputDate } from "./components/Input/InputDate";
|
|
33
33
|
export { default as FISTable } from "./components/Table/Table";
|
|
34
|
-
export { default as
|
|
35
|
-
export { default as
|
|
34
|
+
export { default as FISTableHeaderCell } from "./components/Table/HeaderCell";
|
|
35
|
+
export { default as FISTableCell } from "./components/Table/ColumnCell";
|
|
36
36
|
export { default as FISSorter } from "./components/Table/Sorter/FISSorter";
|
|
37
37
|
export { default as FISDateRange } from "./components/Input/DateRange";
|
|
38
38
|
export { default as FISAlertBanner } from "./components/AlertBanner";
|
|
@@ -43,6 +43,4 @@ export { default as FISSelect } from "./components/Select";
|
|
|
43
43
|
export { default as FISSelectItem } from "./components/SelectItem";
|
|
44
44
|
export { default as useNotification } from "./components/Notification/useNotification";
|
|
45
45
|
export { default as useToast } from "./components/Toast/useToast";
|
|
46
|
-
export { default as FISHeaderCell } from "./components/Table/HeaderCell";
|
|
47
|
-
export { default as FISColumnCell } from "./components/Table/ColumnCell";
|
|
48
46
|
export { default as FISPagination } from "./components/Pagination";
|
package/dist/esm/index.js
CHANGED
|
@@ -71262,7 +71262,7 @@ const DivHeaderCellContainerSC = styled.div `
|
|
|
71262
71262
|
const FISHeaderCell = forwardRef(({ className, textAlign, label, description, rightComponent, disabled, hasRightDivider = true, hasTruncateLabel = false, onlyIcon = false, align = "left", ...rest }, ref) => {
|
|
71263
71263
|
return (jsx(DivHeaderCellContainerSC, { ref: ref, className: classNames("header-cell-container", className), "$textAlign": textAlign, "$disabled": disabled, "$hasTruncateLabel": hasTruncateLabel, "$hasRightDivider": hasRightDivider, "$align": align, "$onlyIcon": onlyIcon, ...rest, children: jsxs("div", { className: "header-cell-content", children: [jsxs("div", { className: "cell-content", children: [label && jsx("div", { className: "label", children: label }), jsx("div", { className: "right-component-father", children: jsx("div", { className: "right-component-child", children: rightComponent }) })] }), jsx("div", { className: "cell-content", children: description && jsx("div", { className: "description", children: description }) })] }) }));
|
|
71264
71264
|
});
|
|
71265
|
-
FISHeaderCell.displayName = "
|
|
71265
|
+
FISHeaderCell.displayName = "FISTableHeaderCell";
|
|
71266
71266
|
|
|
71267
71267
|
const COLUMN_TEXT_ALIGN = {
|
|
71268
71268
|
RIGHT: "right",
|
|
@@ -71564,7 +71564,7 @@ const DivIconSC = styled.div `
|
|
|
71564
71564
|
const FISColumnCell = forwardRef(({ className, textAlign, variant = COLUMN_VARIANT.PRIMARY, content, description, icon, disabled, hasBorder, onChange, contentWrapText = false, ...rest }, ref) => {
|
|
71565
71565
|
return (jsx(DivColumnCellContainerSC, { "$hasBorder": hasBorder, "$disabled": disabled, "$variant": variant, "$textAlign": textAlign, "$contentWrapText": contentWrapText, "$hasContent": content, "$hasDescription": description, ref: ref, className: classNames("column-cell-container", className), ...rest, children: textAlign === COLUMN_TEXT_ALIGN.SINGLE_LINE ? (jsxs("div", { className: "single-line-content", children: [icon && (jsx("div", { className: "icon-box", children: jsx(DivIconSC, { "$textAlign": textAlign, "$variant": variant, "$disabled": disabled, "$hasContent": content, "$hasDescription": description, children: icon }) })), (content || description) && (jsxs("div", { className: "content-box", children: [content && jsx("div", { className: "content", children: content }), description && (jsx("div", { className: "description", children: description }))] }))] })) : (jsxs("div", { className: "left-right-content", children: [(icon || content) && (jsxs("div", { className: "content-box", children: [icon && (jsx(DivIconSC, { "$textAlign": textAlign, "$variant": variant, "$disabled": disabled, "$hasContent": content, "$hasDescription": description, children: icon })), content && jsx("div", { className: "content", children: content })] })), description && jsx("div", { className: "description", children: description })] })) }));
|
|
71566
71566
|
});
|
|
71567
|
-
FISColumnCell.displayName = "
|
|
71567
|
+
FISColumnCell.displayName = "FISTableCell";
|
|
71568
71568
|
|
|
71569
71569
|
const SORT_ORDERS = {
|
|
71570
71570
|
ASCEND: "ascend",
|
|
@@ -73498,5 +73498,5 @@ const FISPagination = ({ pageSize = LIMIT_DEFAULT, current = 1, total = 0, minim
|
|
|
73498
73498
|
} })] })] }));
|
|
73499
73499
|
};
|
|
73500
73500
|
|
|
73501
|
-
export { FISAlertBanner, FISAvatar, FISBadge, FISBreadcrumb, FISButton, FISButtonGroup, FISCheckbox, FISCheckboxGroup, FISChipButton, FISCollapse,
|
|
73501
|
+
export { FISAlertBanner, FISAvatar, FISBadge, FISBreadcrumb, FISButton, FISButtonGroup, FISCheckbox, FISCheckboxGroup, FISChipButton, FISCollapse, FISCombobox, FISDateRange, FISDivider, FISIconButton, FISInputArea, FISInputDate, FISInputField, FISInputLabel, FISInputStepper, FISInputText, FISInputTime, FISLinkButton, FISMenuItem, FISMenuSection, FISMenuSelect, FISPagination, FISProgressCircular, FISProgressLinear, FISRadio, RadioGroup as FISRadioGroup, FISSegmented, FISSelect, FISSelectItem, FISSorter, FISSplitButton, FISSwitch, FISTab, FISTable, FISColumnCell as FISTableCell, FISHeaderCell as FISTableHeaderCell, FISThemeProvider, FISToast, FISTooltip, SegmentedPanelItem, TabPanelItem, useNotification, useToast };
|
|
73502
73502
|
//# sourceMappingURL=index.js.map
|