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.esm.js
CHANGED
|
@@ -10579,24 +10579,23 @@ const QuarterPopupPicker = ({
|
|
|
10579
10579
|
};
|
|
10580
10580
|
|
|
10581
10581
|
/* eslint-disable import/no-extraneous-dependencies */
|
|
10582
|
-
const QuarterPicker =
|
|
10583
|
-
|
|
10584
|
-
|
|
10585
|
-
|
|
10586
|
-
|
|
10587
|
-
|
|
10588
|
-
|
|
10589
|
-
|
|
10590
|
-
|
|
10591
|
-
|
|
10592
|
-
|
|
10593
|
-
|
|
10594
|
-
|
|
10595
|
-
|
|
10596
|
-
|
|
10597
|
-
|
|
10598
|
-
|
|
10599
|
-
} = _ref;
|
|
10582
|
+
const QuarterPicker = ({
|
|
10583
|
+
availableQuarters,
|
|
10584
|
+
// ["Q1-2024"]
|
|
10585
|
+
label,
|
|
10586
|
+
onChange,
|
|
10587
|
+
borderRadius,
|
|
10588
|
+
required,
|
|
10589
|
+
width,
|
|
10590
|
+
height,
|
|
10591
|
+
placeholder,
|
|
10592
|
+
disabled,
|
|
10593
|
+
borderColor,
|
|
10594
|
+
borderColorFocus,
|
|
10595
|
+
textColor,
|
|
10596
|
+
selectedValue,
|
|
10597
|
+
startYear
|
|
10598
|
+
}) => {
|
|
10600
10599
|
const [isFocused, setIsFocused] = useState(false);
|
|
10601
10600
|
const [isOpen, setIsOpen] = useState(false);
|
|
10602
10601
|
const [value, setValue] = useState('');
|
|
@@ -11038,23 +11037,22 @@ const MonthPopupPicker = ({
|
|
|
11038
11037
|
};
|
|
11039
11038
|
|
|
11040
11039
|
/* eslint-disable import/no-extraneous-dependencies */
|
|
11041
|
-
const MonthPicker =
|
|
11042
|
-
|
|
11043
|
-
|
|
11044
|
-
|
|
11045
|
-
|
|
11046
|
-
|
|
11047
|
-
|
|
11048
|
-
|
|
11049
|
-
|
|
11050
|
-
|
|
11051
|
-
|
|
11052
|
-
|
|
11053
|
-
|
|
11054
|
-
|
|
11055
|
-
|
|
11056
|
-
|
|
11057
|
-
} = _ref;
|
|
11040
|
+
const MonthPicker = ({
|
|
11041
|
+
availableMonths,
|
|
11042
|
+
label,
|
|
11043
|
+
onChange,
|
|
11044
|
+
borderRadius,
|
|
11045
|
+
required,
|
|
11046
|
+
width,
|
|
11047
|
+
height,
|
|
11048
|
+
placeholder,
|
|
11049
|
+
disabled,
|
|
11050
|
+
borderColor,
|
|
11051
|
+
borderColorFocus,
|
|
11052
|
+
textColor,
|
|
11053
|
+
selectedValue,
|
|
11054
|
+
startYear
|
|
11055
|
+
}) => {
|
|
11058
11056
|
const [isFocused, setIsFocused] = useState(false);
|
|
11059
11057
|
const [isOpen, setIsOpen] = useState(false);
|
|
11060
11058
|
const [value, setValue] = useState('');
|
|
@@ -24165,22 +24163,21 @@ const DeleteIcon = styled.div`
|
|
|
24165
24163
|
position: absolute;
|
|
24166
24164
|
`;
|
|
24167
24165
|
|
|
24168
|
-
const QuickFilterDropdownSingle =
|
|
24169
|
-
|
|
24170
|
-
|
|
24171
|
-
|
|
24172
|
-
|
|
24173
|
-
|
|
24174
|
-
|
|
24175
|
-
|
|
24176
|
-
|
|
24177
|
-
|
|
24178
|
-
|
|
24179
|
-
|
|
24180
|
-
|
|
24181
|
-
|
|
24182
|
-
|
|
24183
|
-
} = _ref;
|
|
24166
|
+
const QuickFilterDropdownSingle = ({
|
|
24167
|
+
label,
|
|
24168
|
+
hoverColor,
|
|
24169
|
+
options,
|
|
24170
|
+
selectedValue,
|
|
24171
|
+
placeHolder,
|
|
24172
|
+
onChange,
|
|
24173
|
+
disabled,
|
|
24174
|
+
width,
|
|
24175
|
+
error,
|
|
24176
|
+
errorMessage,
|
|
24177
|
+
xIconShow,
|
|
24178
|
+
labelColor,
|
|
24179
|
+
showLabelOnTop
|
|
24180
|
+
}) => {
|
|
24184
24181
|
const [isFocused, setIsFocused] = useState(false);
|
|
24185
24182
|
const [showOptions, setShowOptions] = useState(false);
|
|
24186
24183
|
const [inputValue, setInputValue] = useState("");
|
|
@@ -24577,24 +24574,23 @@ const IconContainer$2 = styled.div`
|
|
|
24577
24574
|
cursor: pointer;
|
|
24578
24575
|
`;
|
|
24579
24576
|
|
|
24580
|
-
const QuickFilterDropdownMultiSelection =
|
|
24581
|
-
|
|
24582
|
-
|
|
24583
|
-
|
|
24584
|
-
|
|
24585
|
-
|
|
24586
|
-
|
|
24587
|
-
|
|
24588
|
-
|
|
24589
|
-
|
|
24590
|
-
|
|
24591
|
-
|
|
24592
|
-
|
|
24593
|
-
|
|
24594
|
-
|
|
24595
|
-
|
|
24596
|
-
|
|
24597
|
-
} = _ref;
|
|
24577
|
+
const QuickFilterDropdownMultiSelection = ({
|
|
24578
|
+
label,
|
|
24579
|
+
labelEmptyValue,
|
|
24580
|
+
options,
|
|
24581
|
+
selectedValue,
|
|
24582
|
+
placeHolder,
|
|
24583
|
+
onChange,
|
|
24584
|
+
required,
|
|
24585
|
+
disabled,
|
|
24586
|
+
width,
|
|
24587
|
+
error,
|
|
24588
|
+
errorMessage,
|
|
24589
|
+
labelColor,
|
|
24590
|
+
xIconShow,
|
|
24591
|
+
checkBoxColor,
|
|
24592
|
+
showLabelOnTop
|
|
24593
|
+
}) => {
|
|
24598
24594
|
const [isFocused, setIsFocused] = useState(false);
|
|
24599
24595
|
const [showOptions, setShowOptions] = useState(false);
|
|
24600
24596
|
const [inputValue, setInputValue] = useState('');
|
|
@@ -39742,11 +39738,11 @@ const ChromeShimmerText = ({
|
|
|
39742
39738
|
transition: 'all 0.3s ease'
|
|
39743
39739
|
};
|
|
39744
39740
|
if (!isShimmering) {
|
|
39745
|
-
return /*#__PURE__*/React.createElement("span", null, text);
|
|
39741
|
+
return /*#__PURE__*/React$1.createElement("span", null, text);
|
|
39746
39742
|
}
|
|
39747
|
-
return /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("span", {
|
|
39743
|
+
return /*#__PURE__*/React$1.createElement(React$1.Fragment, null, /*#__PURE__*/React$1.createElement("span", {
|
|
39748
39744
|
style: shimmerStyle
|
|
39749
|
-
}, text), /*#__PURE__*/React.createElement("style", {
|
|
39745
|
+
}, text), /*#__PURE__*/React$1.createElement("style", {
|
|
39750
39746
|
jsx: true
|
|
39751
39747
|
}, `
|
|
39752
39748
|
@-webkit-keyframes chromeShine {
|