sag_components 2.0.0-beta188 → 2.0.0-beta189
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 +68 -72
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +68 -72
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -10589,24 +10589,23 @@ const QuarterPopupPicker = ({
|
|
|
10589
10589
|
};
|
|
10590
10590
|
|
|
10591
10591
|
/* eslint-disable import/no-extraneous-dependencies */
|
|
10592
|
-
const QuarterPicker =
|
|
10593
|
-
|
|
10594
|
-
|
|
10595
|
-
|
|
10596
|
-
|
|
10597
|
-
|
|
10598
|
-
|
|
10599
|
-
|
|
10600
|
-
|
|
10601
|
-
|
|
10602
|
-
|
|
10603
|
-
|
|
10604
|
-
|
|
10605
|
-
|
|
10606
|
-
|
|
10607
|
-
|
|
10608
|
-
|
|
10609
|
-
} = _ref;
|
|
10592
|
+
const QuarterPicker = ({
|
|
10593
|
+
availableQuarters,
|
|
10594
|
+
// ["Q1-2024"]
|
|
10595
|
+
label,
|
|
10596
|
+
onChange,
|
|
10597
|
+
borderRadius,
|
|
10598
|
+
required,
|
|
10599
|
+
width,
|
|
10600
|
+
height,
|
|
10601
|
+
placeholder,
|
|
10602
|
+
disabled,
|
|
10603
|
+
borderColor,
|
|
10604
|
+
borderColorFocus,
|
|
10605
|
+
textColor,
|
|
10606
|
+
selectedValue,
|
|
10607
|
+
startYear
|
|
10608
|
+
}) => {
|
|
10610
10609
|
const [isFocused, setIsFocused] = React$1.useState(false);
|
|
10611
10610
|
const [isOpen, setIsOpen] = React$1.useState(false);
|
|
10612
10611
|
const [value, setValue] = React$1.useState('');
|
|
@@ -11048,23 +11047,22 @@ const MonthPopupPicker = ({
|
|
|
11048
11047
|
};
|
|
11049
11048
|
|
|
11050
11049
|
/* eslint-disable import/no-extraneous-dependencies */
|
|
11051
|
-
const MonthPicker =
|
|
11052
|
-
|
|
11053
|
-
|
|
11054
|
-
|
|
11055
|
-
|
|
11056
|
-
|
|
11057
|
-
|
|
11058
|
-
|
|
11059
|
-
|
|
11060
|
-
|
|
11061
|
-
|
|
11062
|
-
|
|
11063
|
-
|
|
11064
|
-
|
|
11065
|
-
|
|
11066
|
-
|
|
11067
|
-
} = _ref;
|
|
11050
|
+
const MonthPicker = ({
|
|
11051
|
+
availableMonths,
|
|
11052
|
+
label,
|
|
11053
|
+
onChange,
|
|
11054
|
+
borderRadius,
|
|
11055
|
+
required,
|
|
11056
|
+
width,
|
|
11057
|
+
height,
|
|
11058
|
+
placeholder,
|
|
11059
|
+
disabled,
|
|
11060
|
+
borderColor,
|
|
11061
|
+
borderColorFocus,
|
|
11062
|
+
textColor,
|
|
11063
|
+
selectedValue,
|
|
11064
|
+
startYear
|
|
11065
|
+
}) => {
|
|
11068
11066
|
const [isFocused, setIsFocused] = React$1.useState(false);
|
|
11069
11067
|
const [isOpen, setIsOpen] = React$1.useState(false);
|
|
11070
11068
|
const [value, setValue] = React$1.useState('');
|
|
@@ -24175,22 +24173,21 @@ const DeleteIcon = styled__default["default"].div`
|
|
|
24175
24173
|
position: absolute;
|
|
24176
24174
|
`;
|
|
24177
24175
|
|
|
24178
|
-
const QuickFilterDropdownSingle =
|
|
24179
|
-
|
|
24180
|
-
|
|
24181
|
-
|
|
24182
|
-
|
|
24183
|
-
|
|
24184
|
-
|
|
24185
|
-
|
|
24186
|
-
|
|
24187
|
-
|
|
24188
|
-
|
|
24189
|
-
|
|
24190
|
-
|
|
24191
|
-
|
|
24192
|
-
|
|
24193
|
-
} = _ref;
|
|
24176
|
+
const QuickFilterDropdownSingle = ({
|
|
24177
|
+
label,
|
|
24178
|
+
hoverColor,
|
|
24179
|
+
options,
|
|
24180
|
+
selectedValue,
|
|
24181
|
+
placeHolder,
|
|
24182
|
+
onChange,
|
|
24183
|
+
disabled,
|
|
24184
|
+
width,
|
|
24185
|
+
error,
|
|
24186
|
+
errorMessage,
|
|
24187
|
+
xIconShow,
|
|
24188
|
+
labelColor,
|
|
24189
|
+
showLabelOnTop
|
|
24190
|
+
}) => {
|
|
24194
24191
|
const [isFocused, setIsFocused] = React$1.useState(false);
|
|
24195
24192
|
const [showOptions, setShowOptions] = React$1.useState(false);
|
|
24196
24193
|
const [inputValue, setInputValue] = React$1.useState("");
|
|
@@ -24587,24 +24584,23 @@ const IconContainer$2 = styled__default["default"].div`
|
|
|
24587
24584
|
cursor: pointer;
|
|
24588
24585
|
`;
|
|
24589
24586
|
|
|
24590
|
-
const QuickFilterDropdownMultiSelection =
|
|
24591
|
-
|
|
24592
|
-
|
|
24593
|
-
|
|
24594
|
-
|
|
24595
|
-
|
|
24596
|
-
|
|
24597
|
-
|
|
24598
|
-
|
|
24599
|
-
|
|
24600
|
-
|
|
24601
|
-
|
|
24602
|
-
|
|
24603
|
-
|
|
24604
|
-
|
|
24605
|
-
|
|
24606
|
-
|
|
24607
|
-
} = _ref;
|
|
24587
|
+
const QuickFilterDropdownMultiSelection = ({
|
|
24588
|
+
label,
|
|
24589
|
+
labelEmptyValue,
|
|
24590
|
+
options,
|
|
24591
|
+
selectedValue,
|
|
24592
|
+
placeHolder,
|
|
24593
|
+
onChange,
|
|
24594
|
+
required,
|
|
24595
|
+
disabled,
|
|
24596
|
+
width,
|
|
24597
|
+
error,
|
|
24598
|
+
errorMessage,
|
|
24599
|
+
labelColor,
|
|
24600
|
+
xIconShow,
|
|
24601
|
+
checkBoxColor,
|
|
24602
|
+
showLabelOnTop
|
|
24603
|
+
}) => {
|
|
24608
24604
|
const [isFocused, setIsFocused] = React$1.useState(false);
|
|
24609
24605
|
const [showOptions, setShowOptions] = React$1.useState(false);
|
|
24610
24606
|
const [inputValue, setInputValue] = React$1.useState('');
|
|
@@ -39752,11 +39748,11 @@ const ChromeShimmerText = ({
|
|
|
39752
39748
|
transition: 'all 0.3s ease'
|
|
39753
39749
|
};
|
|
39754
39750
|
if (!isShimmering) {
|
|
39755
|
-
return /*#__PURE__*/
|
|
39751
|
+
return /*#__PURE__*/React__default["default"].createElement("span", null, text);
|
|
39756
39752
|
}
|
|
39757
|
-
return /*#__PURE__*/
|
|
39753
|
+
return /*#__PURE__*/React__default["default"].createElement(React__default["default"].Fragment, null, /*#__PURE__*/React__default["default"].createElement("span", {
|
|
39758
39754
|
style: shimmerStyle
|
|
39759
|
-
}, text), /*#__PURE__*/
|
|
39755
|
+
}, text), /*#__PURE__*/React__default["default"].createElement("style", {
|
|
39760
39756
|
jsx: true
|
|
39761
39757
|
}, `
|
|
39762
39758
|
@-webkit-keyframes chromeShine {
|