fis-component 0.0.41 → 0.0.43

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/esm/index.js CHANGED
@@ -71000,7 +71000,8 @@ const DivTableContainerSC = styled.div `
71000
71000
  vertical-align: ${(props) => props?.$verticalHeader || "center"};
71001
71001
  border-bottom: ${getTheme("com/table/row-cell/divider/stroke-width")}
71002
71002
  solid ${getTheme("com/table/title-cell/divider/color-stroke")};
71003
- padding: ${getTheme("com/table/title-cell/vertical-padding")} 0
71003
+ padding: ${getTheme("com/table/title-cell/vertical-padding")}
71004
+ ${getTheme("com/table/title-cell/horizontal-padding")}
71004
71005
  ${getTheme("com/table/title-cell/vertical-padding")}
71005
71006
  ${getTheme("com/table/title-cell/horizontal-padding")} !important;
71006
71007
  background-color: ${getTheme("com/table/title-cell/default/background-color")};
@@ -71185,7 +71186,6 @@ const DivHeaderCellContainerSC = styled.div `
71185
71186
  align-items: flex-start;
71186
71187
  box-sizing: border-box;
71187
71188
  gap: ${getTheme("com/table/title-cell/vertical-gap")};
71188
- padding-right: ${getTheme("com/table/title-cell/horizontal-padding")};
71189
71189
  ${(props) => {
71190
71190
  if (props.$onlyIcon) {
71191
71191
  return css `
@@ -71260,7 +71260,7 @@ const DivHeaderCellContainerSC = styled.div `
71260
71260
  `;
71261
71261
 
71262
71262
  const FISTableHeaderCell = forwardRef(({ className, label, description, rightComponent, disabled, hasRightDivider = true, hasTruncateLabel = false, onlyIcon = false, textAlign = "left", ...rest }, ref) => {
71263
- return (jsx(DivHeaderCellContainerSC, { ref: ref, className: classNames("header-cell-container", className), "$textAlign": textAlign, "$disabled": disabled, "$hasTruncateLabel": hasTruncateLabel, "$hasRightDivider": hasRightDivider, "$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 }) })] }) }));
71263
+ return (jsx(DivHeaderCellContainerSC, { ref: ref, className: classNames("header-cell-container", className), "$textAlign": textAlign, "$disabled": disabled, "$hasTruncateLabel": hasTruncateLabel, "$hasRightDivider": hasRightDivider, "$onlyIcon": onlyIcon, ...rest, children: jsxs("div", { className: "header-cell-content", children: [jsxs("div", { className: "cell-content", children: [label && jsx("div", { className: "label", children: label }), rightComponent && (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
71265
  FISTableHeaderCell.displayName = "FISTableHeaderCell";
71266
71266
 
@@ -71370,10 +71370,6 @@ const DivColumnCellContainerSC = styled.div `
71370
71370
  border-bottom: ${getTheme("com/table/title-cell/stroke-width")} solid
71371
71371
  ${getTheme("com/table/row-cell/divider/color-stroke")};
71372
71372
  gap: ${getTheme("com/table/row-cell/horizontal-gap")};
71373
- padding-top: ${getTheme("com/table/row-cell/vertical-padding")};
71374
- padding-bottom: ${getTheme("com/table/row-cell/vertical-padding")};
71375
- padding-left: ${getTheme("com/table/row-cell/horizontal-padding")};
71376
- padding-right: ${getTheme("com/table/row-cell/horizontal-padding")};
71377
71373
 
71378
71374
  &:hover {
71379
71375
  background-color: ${getTheme("com/table/row-cell/background-color/hover")} !important;