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.esm.js CHANGED
@@ -10545,23 +10545,24 @@ const QuarterPopupPicker = ({
10545
10545
  };
10546
10546
 
10547
10547
  /* eslint-disable import/no-extraneous-dependencies */
10548
- const QuarterPicker = ({
10549
- availableQuarters,
10550
- // ["Q1-2024"]
10551
- label,
10552
- onChange,
10553
- borderRadius,
10554
- required,
10555
- width,
10556
- height,
10557
- placeholder,
10558
- disabled,
10559
- borderColor,
10560
- borderColorFocus,
10561
- textColor,
10562
- selectedValue,
10563
- startYear
10564
- }) => {
10548
+ const QuarterPicker = _ref => {
10549
+ let {
10550
+ availableQuarters,
10551
+ // ["Q1-2024"]
10552
+ label,
10553
+ onChange,
10554
+ borderRadius,
10555
+ required,
10556
+ width,
10557
+ height,
10558
+ placeholder,
10559
+ disabled,
10560
+ borderColor,
10561
+ borderColorFocus,
10562
+ textColor,
10563
+ selectedValue,
10564
+ startYear
10565
+ } = _ref;
10565
10566
  const [isFocused, setIsFocused] = useState(false);
10566
10567
  const [isOpen, setIsOpen] = useState(false);
10567
10568
  const [value, setValue] = useState('');
@@ -40039,7 +40040,7 @@ const TableBody = ({
40039
40040
  onMouseEnter: () => setHoveredRowIndex(rowIndex),
40040
40041
  onMouseLeave: () => setHoveredRowIndex(null),
40041
40042
  onClick: () => handleRowClick(row, rowIndex)
40042
- }, expandable && /*#__PURE__*/React$1.createElement(TableCell, {
40043
+ }, expandable && expandedContent[rowIndex] !== null && /*#__PURE__*/React$1.createElement(TableCell, {
40043
40044
  $fieldType: "expand",
40044
40045
  $minWidth: "16px",
40045
40046
  $maxWidth: "16px"