sag_components 2.0.0-beta178 → 2.0.0-beta179

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/index.js CHANGED
@@ -10555,23 +10555,24 @@ const QuarterPopupPicker = ({
10555
10555
  };
10556
10556
 
10557
10557
  /* eslint-disable import/no-extraneous-dependencies */
10558
- const QuarterPicker = ({
10559
- availableQuarters,
10560
- // ["Q1-2024"]
10561
- label,
10562
- onChange,
10563
- borderRadius,
10564
- required,
10565
- width,
10566
- height,
10567
- placeholder,
10568
- disabled,
10569
- borderColor,
10570
- borderColorFocus,
10571
- textColor,
10572
- selectedValue,
10573
- startYear
10574
- }) => {
10558
+ const QuarterPicker = _ref => {
10559
+ let {
10560
+ availableQuarters,
10561
+ // ["Q1-2024"]
10562
+ label,
10563
+ onChange,
10564
+ borderRadius,
10565
+ required,
10566
+ width,
10567
+ height,
10568
+ placeholder,
10569
+ disabled,
10570
+ borderColor,
10571
+ borderColorFocus,
10572
+ textColor,
10573
+ selectedValue,
10574
+ startYear
10575
+ } = _ref;
10575
10576
  const [isFocused, setIsFocused] = React$1.useState(false);
10576
10577
  const [isOpen, setIsOpen] = React$1.useState(false);
10577
10578
  const [value, setValue] = React$1.useState('');
@@ -40049,7 +40050,7 @@ const TableBody = ({
40049
40050
  onMouseEnter: () => setHoveredRowIndex(rowIndex),
40050
40051
  onMouseLeave: () => setHoveredRowIndex(null),
40051
40052
  onClick: () => handleRowClick(row, rowIndex)
40052
- }, expandable && /*#__PURE__*/React__default["default"].createElement(TableCell, {
40053
+ }, expandable && expandedContent[rowIndex] !== null && /*#__PURE__*/React__default["default"].createElement(TableCell, {
40053
40054
  $fieldType: "expand",
40054
40055
  $minWidth: "16px",
40055
40056
  $maxWidth: "16px"