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.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
|
-
|
|
10550
|
-
|
|
10551
|
-
|
|
10552
|
-
|
|
10553
|
-
|
|
10554
|
-
|
|
10555
|
-
|
|
10556
|
-
|
|
10557
|
-
|
|
10558
|
-
|
|
10559
|
-
|
|
10560
|
-
|
|
10561
|
-
|
|
10562
|
-
|
|
10563
|
-
|
|
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"
|