sag_components 2.0.0-beta181 → 2.0.0-beta183
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 +69 -73
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +69 -73
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -10555,24 +10555,23 @@ 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
|
-
|
|
10575
|
-
} = _ref;
|
|
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
|
+
}) => {
|
|
10576
10575
|
const [isFocused, setIsFocused] = React$1.useState(false);
|
|
10577
10576
|
const [isOpen, setIsOpen] = React$1.useState(false);
|
|
10578
10577
|
const [value, setValue] = React$1.useState('');
|
|
@@ -11014,23 +11013,22 @@ const MonthPopupPicker = ({
|
|
|
11014
11013
|
};
|
|
11015
11014
|
|
|
11016
11015
|
/* eslint-disable import/no-extraneous-dependencies */
|
|
11017
|
-
const MonthPicker =
|
|
11018
|
-
|
|
11019
|
-
|
|
11020
|
-
|
|
11021
|
-
|
|
11022
|
-
|
|
11023
|
-
|
|
11024
|
-
|
|
11025
|
-
|
|
11026
|
-
|
|
11027
|
-
|
|
11028
|
-
|
|
11029
|
-
|
|
11030
|
-
|
|
11031
|
-
|
|
11032
|
-
|
|
11033
|
-
} = _ref;
|
|
11016
|
+
const MonthPicker = ({
|
|
11017
|
+
availableMonths,
|
|
11018
|
+
label,
|
|
11019
|
+
onChange,
|
|
11020
|
+
borderRadius,
|
|
11021
|
+
required,
|
|
11022
|
+
width,
|
|
11023
|
+
height,
|
|
11024
|
+
placeholder,
|
|
11025
|
+
disabled,
|
|
11026
|
+
borderColor,
|
|
11027
|
+
borderColorFocus,
|
|
11028
|
+
textColor,
|
|
11029
|
+
selectedValue,
|
|
11030
|
+
startYear
|
|
11031
|
+
}) => {
|
|
11034
11032
|
const [isFocused, setIsFocused] = React$1.useState(false);
|
|
11035
11033
|
const [isOpen, setIsOpen] = React$1.useState(false);
|
|
11036
11034
|
const [value, setValue] = React$1.useState('');
|
|
@@ -24141,22 +24139,21 @@ const DeleteIcon = styled__default["default"].div`
|
|
|
24141
24139
|
position: absolute;
|
|
24142
24140
|
`;
|
|
24143
24141
|
|
|
24144
|
-
const QuickFilterDropdownSingle =
|
|
24145
|
-
|
|
24146
|
-
|
|
24147
|
-
|
|
24148
|
-
|
|
24149
|
-
|
|
24150
|
-
|
|
24151
|
-
|
|
24152
|
-
|
|
24153
|
-
|
|
24154
|
-
|
|
24155
|
-
|
|
24156
|
-
|
|
24157
|
-
|
|
24158
|
-
|
|
24159
|
-
} = _ref;
|
|
24142
|
+
const QuickFilterDropdownSingle = ({
|
|
24143
|
+
label,
|
|
24144
|
+
hoverColor,
|
|
24145
|
+
options,
|
|
24146
|
+
selectedValue,
|
|
24147
|
+
placeHolder,
|
|
24148
|
+
onChange,
|
|
24149
|
+
disabled,
|
|
24150
|
+
width,
|
|
24151
|
+
error,
|
|
24152
|
+
errorMessage,
|
|
24153
|
+
xIconShow,
|
|
24154
|
+
labelColor,
|
|
24155
|
+
showLabelOnTop
|
|
24156
|
+
}) => {
|
|
24160
24157
|
const [isFocused, setIsFocused] = React$1.useState(false);
|
|
24161
24158
|
const [showOptions, setShowOptions] = React$1.useState(false);
|
|
24162
24159
|
const [inputValue, setInputValue] = React$1.useState("");
|
|
@@ -24553,24 +24550,23 @@ const IconContainer$2 = styled__default["default"].div`
|
|
|
24553
24550
|
cursor: pointer;
|
|
24554
24551
|
`;
|
|
24555
24552
|
|
|
24556
|
-
const QuickFilterDropdownMultiSelection =
|
|
24557
|
-
|
|
24558
|
-
|
|
24559
|
-
|
|
24560
|
-
|
|
24561
|
-
|
|
24562
|
-
|
|
24563
|
-
|
|
24564
|
-
|
|
24565
|
-
|
|
24566
|
-
|
|
24567
|
-
|
|
24568
|
-
|
|
24569
|
-
|
|
24570
|
-
|
|
24571
|
-
|
|
24572
|
-
|
|
24573
|
-
} = _ref;
|
|
24553
|
+
const QuickFilterDropdownMultiSelection = ({
|
|
24554
|
+
label,
|
|
24555
|
+
labelEmptyValue,
|
|
24556
|
+
options,
|
|
24557
|
+
selectedValue,
|
|
24558
|
+
placeHolder,
|
|
24559
|
+
onChange,
|
|
24560
|
+
required,
|
|
24561
|
+
disabled,
|
|
24562
|
+
width,
|
|
24563
|
+
error,
|
|
24564
|
+
errorMessage,
|
|
24565
|
+
labelColor,
|
|
24566
|
+
xIconShow,
|
|
24567
|
+
checkBoxColor,
|
|
24568
|
+
showLabelOnTop
|
|
24569
|
+
}) => {
|
|
24574
24570
|
const [isFocused, setIsFocused] = React$1.useState(false);
|
|
24575
24571
|
const [showOptions, setShowOptions] = React$1.useState(false);
|
|
24576
24572
|
const [inputValue, setInputValue] = React$1.useState('');
|
|
@@ -35886,9 +35882,9 @@ const ToggleSlider = styled__default["default"].span`
|
|
|
35886
35882
|
}
|
|
35887
35883
|
`;
|
|
35888
35884
|
|
|
35889
|
-
/**
|
|
35890
|
-
* ToggleSwitch component for on/off states.
|
|
35891
|
-
* Supports small/large sizes and disabled state.
|
|
35885
|
+
/**
|
|
35886
|
+
* ToggleSwitch component for on/off states.
|
|
35887
|
+
* Supports small/large sizes and disabled state.
|
|
35892
35888
|
*/
|
|
35893
35889
|
function ToggleSwitch(_ref) {
|
|
35894
35890
|
let {
|
|
@@ -40065,7 +40061,7 @@ const TableBody = ({
|
|
|
40065
40061
|
width: "12",
|
|
40066
40062
|
height: "12",
|
|
40067
40063
|
fill: "#666"
|
|
40068
|
-
}))) : /*#__PURE__*/React__default["default"].createElement("div", null), columns.map(column => {
|
|
40064
|
+
}))) : expandable === true ? /*#__PURE__*/React__default["default"].createElement("div", null) : null, columns.map(column => {
|
|
40069
40065
|
const value = row[column.key];
|
|
40070
40066
|
const formattedValue = formatValue(value, column, row, rowIndex);
|
|
40071
40067
|
return /*#__PURE__*/React__default["default"].createElement(TableCell, {
|