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 +19 -18
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +19 -18
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
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
|
-
|
|
10560
|
-
|
|
10561
|
-
|
|
10562
|
-
|
|
10563
|
-
|
|
10564
|
-
|
|
10565
|
-
|
|
10566
|
-
|
|
10567
|
-
|
|
10568
|
-
|
|
10569
|
-
|
|
10570
|
-
|
|
10571
|
-
|
|
10572
|
-
|
|
10573
|
-
|
|
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"
|