sag_components 2.0.0-beta219 → 2.0.0-beta220
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 +76 -77
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +76 -77
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.esm.js
CHANGED
|
@@ -2398,15 +2398,15 @@ const Tooltip$2 = props => {
|
|
|
2398
2398
|
hideTooltip = false,
|
|
2399
2399
|
className
|
|
2400
2400
|
} = props;
|
|
2401
|
-
|
|
2401
|
+
const timeoutRef = React$1.useRef();
|
|
2402
2402
|
const [active, setActive] = useState(false);
|
|
2403
2403
|
const showTip = () => {
|
|
2404
|
-
|
|
2404
|
+
timeoutRef.current = setTimeout(() => {
|
|
2405
2405
|
setActive(true);
|
|
2406
2406
|
}, delay || 400);
|
|
2407
2407
|
};
|
|
2408
2408
|
const hideTip = () => {
|
|
2409
|
-
|
|
2409
|
+
clearTimeout(timeoutRef.current);
|
|
2410
2410
|
setActive(false);
|
|
2411
2411
|
};
|
|
2412
2412
|
return /*#__PURE__*/React$1.createElement(TooltipContainer$4, {
|
|
@@ -10580,24 +10580,23 @@ const QuarterPopupPicker = ({
|
|
|
10580
10580
|
};
|
|
10581
10581
|
|
|
10582
10582
|
/* eslint-disable import/no-extraneous-dependencies */
|
|
10583
|
-
const QuarterPicker =
|
|
10584
|
-
|
|
10585
|
-
|
|
10586
|
-
|
|
10587
|
-
|
|
10588
|
-
|
|
10589
|
-
|
|
10590
|
-
|
|
10591
|
-
|
|
10592
|
-
|
|
10593
|
-
|
|
10594
|
-
|
|
10595
|
-
|
|
10596
|
-
|
|
10597
|
-
|
|
10598
|
-
|
|
10599
|
-
|
|
10600
|
-
} = _ref;
|
|
10583
|
+
const QuarterPicker = ({
|
|
10584
|
+
availableQuarters,
|
|
10585
|
+
// ["Q1-2024"]
|
|
10586
|
+
label,
|
|
10587
|
+
onChange,
|
|
10588
|
+
borderRadius,
|
|
10589
|
+
required,
|
|
10590
|
+
width,
|
|
10591
|
+
height,
|
|
10592
|
+
placeholder,
|
|
10593
|
+
disabled,
|
|
10594
|
+
borderColor,
|
|
10595
|
+
borderColorFocus,
|
|
10596
|
+
textColor,
|
|
10597
|
+
selectedValue,
|
|
10598
|
+
startYear
|
|
10599
|
+
}) => {
|
|
10601
10600
|
const [isFocused, setIsFocused] = useState(false);
|
|
10602
10601
|
const [isOpen, setIsOpen] = useState(false);
|
|
10603
10602
|
const [value, setValue] = useState('');
|
|
@@ -11039,23 +11038,22 @@ const MonthPopupPicker = ({
|
|
|
11039
11038
|
};
|
|
11040
11039
|
|
|
11041
11040
|
/* eslint-disable import/no-extraneous-dependencies */
|
|
11042
|
-
const MonthPicker =
|
|
11043
|
-
|
|
11044
|
-
|
|
11045
|
-
|
|
11046
|
-
|
|
11047
|
-
|
|
11048
|
-
|
|
11049
|
-
|
|
11050
|
-
|
|
11051
|
-
|
|
11052
|
-
|
|
11053
|
-
|
|
11054
|
-
|
|
11055
|
-
|
|
11056
|
-
|
|
11057
|
-
|
|
11058
|
-
} = _ref;
|
|
11041
|
+
const MonthPicker = ({
|
|
11042
|
+
availableMonths,
|
|
11043
|
+
label,
|
|
11044
|
+
onChange,
|
|
11045
|
+
borderRadius,
|
|
11046
|
+
required,
|
|
11047
|
+
width,
|
|
11048
|
+
height,
|
|
11049
|
+
placeholder,
|
|
11050
|
+
disabled,
|
|
11051
|
+
borderColor,
|
|
11052
|
+
borderColorFocus,
|
|
11053
|
+
textColor,
|
|
11054
|
+
selectedValue,
|
|
11055
|
+
startYear
|
|
11056
|
+
}) => {
|
|
11059
11057
|
const [isFocused, setIsFocused] = useState(false);
|
|
11060
11058
|
const [isOpen, setIsOpen] = useState(false);
|
|
11061
11059
|
const [value, setValue] = useState('');
|
|
@@ -24166,22 +24164,21 @@ const DeleteIcon = styled.div`
|
|
|
24166
24164
|
position: absolute;
|
|
24167
24165
|
`;
|
|
24168
24166
|
|
|
24169
|
-
const QuickFilterDropdownSingle =
|
|
24170
|
-
|
|
24171
|
-
|
|
24172
|
-
|
|
24173
|
-
|
|
24174
|
-
|
|
24175
|
-
|
|
24176
|
-
|
|
24177
|
-
|
|
24178
|
-
|
|
24179
|
-
|
|
24180
|
-
|
|
24181
|
-
|
|
24182
|
-
|
|
24183
|
-
|
|
24184
|
-
} = _ref;
|
|
24167
|
+
const QuickFilterDropdownSingle = ({
|
|
24168
|
+
label,
|
|
24169
|
+
hoverColor,
|
|
24170
|
+
options,
|
|
24171
|
+
selectedValue,
|
|
24172
|
+
placeHolder,
|
|
24173
|
+
onChange,
|
|
24174
|
+
disabled,
|
|
24175
|
+
width,
|
|
24176
|
+
error,
|
|
24177
|
+
errorMessage,
|
|
24178
|
+
xIconShow,
|
|
24179
|
+
labelColor,
|
|
24180
|
+
showLabelOnTop
|
|
24181
|
+
}) => {
|
|
24185
24182
|
const [isFocused, setIsFocused] = useState(false);
|
|
24186
24183
|
const [showOptions, setShowOptions] = useState(false);
|
|
24187
24184
|
const [inputValue, setInputValue] = useState("");
|
|
@@ -24638,26 +24635,25 @@ const IconContainer$2 = styled.div`
|
|
|
24638
24635
|
cursor: pointer;
|
|
24639
24636
|
`;
|
|
24640
24637
|
|
|
24641
|
-
const QuickFilterDropdownMultiSelection =
|
|
24642
|
-
|
|
24643
|
-
|
|
24644
|
-
|
|
24645
|
-
|
|
24646
|
-
|
|
24647
|
-
|
|
24648
|
-
|
|
24649
|
-
|
|
24650
|
-
|
|
24651
|
-
|
|
24652
|
-
|
|
24653
|
-
|
|
24654
|
-
|
|
24655
|
-
|
|
24656
|
-
|
|
24657
|
-
|
|
24658
|
-
|
|
24659
|
-
|
|
24660
|
-
} = _ref;
|
|
24638
|
+
const QuickFilterDropdownMultiSelection = ({
|
|
24639
|
+
label,
|
|
24640
|
+
labelEmptyValue,
|
|
24641
|
+
options,
|
|
24642
|
+
selectedValue,
|
|
24643
|
+
placeHolder,
|
|
24644
|
+
onChange,
|
|
24645
|
+
required,
|
|
24646
|
+
disabled,
|
|
24647
|
+
width,
|
|
24648
|
+
height,
|
|
24649
|
+
error,
|
|
24650
|
+
errorMessage,
|
|
24651
|
+
labelColor,
|
|
24652
|
+
xIconShow,
|
|
24653
|
+
checkBoxColor,
|
|
24654
|
+
showLabelOnTop,
|
|
24655
|
+
dropdownHeight
|
|
24656
|
+
}) => {
|
|
24661
24657
|
const [isFocused, setIsFocused] = useState(false);
|
|
24662
24658
|
const [showOptions, setShowOptions] = useState(false);
|
|
24663
24659
|
const [inputValue, setInputValue] = useState('');
|
|
@@ -36141,9 +36137,9 @@ const ToggleSlider = styled.span`
|
|
|
36141
36137
|
}
|
|
36142
36138
|
`;
|
|
36143
36139
|
|
|
36144
|
-
/**
|
|
36145
|
-
* ToggleSwitch component for on/off states.
|
|
36146
|
-
* Supports small/large sizes and disabled state.
|
|
36140
|
+
/**
|
|
36141
|
+
* ToggleSwitch component for on/off states.
|
|
36142
|
+
* Supports small/large sizes and disabled state.
|
|
36147
36143
|
*/
|
|
36148
36144
|
function ToggleSwitch(_ref) {
|
|
36149
36145
|
let {
|
|
@@ -39622,6 +39618,9 @@ const HeroButton = styled.button`
|
|
|
39622
39618
|
cursor: pointer;
|
|
39623
39619
|
background-color: transparent;
|
|
39624
39620
|
border: none;
|
|
39621
|
+
> svg {
|
|
39622
|
+
pointer-events: none;
|
|
39623
|
+
}
|
|
39625
39624
|
`;
|
|
39626
39625
|
|
|
39627
39626
|
// MessageBox.styles.js
|