sag_components 2.0.0-beta221 → 2.0.0-beta222
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
CHANGED
|
@@ -9462,6 +9462,7 @@ const DropdownMultiNew = ({
|
|
|
9462
9462
|
required,
|
|
9463
9463
|
disabled,
|
|
9464
9464
|
width,
|
|
9465
|
+
height,
|
|
9465
9466
|
withMarginBottom = true,
|
|
9466
9467
|
error,
|
|
9467
9468
|
errorMessage,
|
|
@@ -10580,23 +10581,24 @@ const QuarterPopupPicker = ({
|
|
|
10580
10581
|
};
|
|
10581
10582
|
|
|
10582
10583
|
/* 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
|
-
|
|
10584
|
+
const QuarterPicker = _ref => {
|
|
10585
|
+
let {
|
|
10586
|
+
availableQuarters,
|
|
10587
|
+
// ["Q1-2024"]
|
|
10588
|
+
label,
|
|
10589
|
+
onChange,
|
|
10590
|
+
borderRadius,
|
|
10591
|
+
required,
|
|
10592
|
+
width,
|
|
10593
|
+
height,
|
|
10594
|
+
placeholder,
|
|
10595
|
+
disabled,
|
|
10596
|
+
borderColor,
|
|
10597
|
+
borderColorFocus,
|
|
10598
|
+
textColor,
|
|
10599
|
+
selectedValue,
|
|
10600
|
+
startYear
|
|
10601
|
+
} = _ref;
|
|
10600
10602
|
const [isFocused, setIsFocused] = useState(false);
|
|
10601
10603
|
const [isOpen, setIsOpen] = useState(false);
|
|
10602
10604
|
const [value, setValue] = useState('');
|
|
@@ -11038,22 +11040,23 @@ const MonthPopupPicker = ({
|
|
|
11038
11040
|
};
|
|
11039
11041
|
|
|
11040
11042
|
/* eslint-disable import/no-extraneous-dependencies */
|
|
11041
|
-
const MonthPicker =
|
|
11042
|
-
|
|
11043
|
-
|
|
11044
|
-
|
|
11045
|
-
|
|
11046
|
-
|
|
11047
|
-
|
|
11048
|
-
|
|
11049
|
-
|
|
11050
|
-
|
|
11051
|
-
|
|
11052
|
-
|
|
11053
|
-
|
|
11054
|
-
|
|
11055
|
-
|
|
11056
|
-
|
|
11043
|
+
const MonthPicker = _ref => {
|
|
11044
|
+
let {
|
|
11045
|
+
availableMonths,
|
|
11046
|
+
label,
|
|
11047
|
+
onChange,
|
|
11048
|
+
borderRadius,
|
|
11049
|
+
required,
|
|
11050
|
+
width,
|
|
11051
|
+
height,
|
|
11052
|
+
placeholder,
|
|
11053
|
+
disabled,
|
|
11054
|
+
borderColor,
|
|
11055
|
+
borderColorFocus,
|
|
11056
|
+
textColor,
|
|
11057
|
+
selectedValue,
|
|
11058
|
+
startYear
|
|
11059
|
+
} = _ref;
|
|
11057
11060
|
const [isFocused, setIsFocused] = useState(false);
|
|
11058
11061
|
const [isOpen, setIsOpen] = useState(false);
|
|
11059
11062
|
const [value, setValue] = useState('');
|
|
@@ -12253,13 +12256,16 @@ const Td$1 = styled.td`
|
|
|
12253
12256
|
`;
|
|
12254
12257
|
const Tr = styled.tr`
|
|
12255
12258
|
border-bottom: 1px solid #f3f4f6;
|
|
12256
|
-
${
|
|
12257
|
-
|
|
12258
|
-
|
|
12259
|
-
|
|
12259
|
+
${_ref => {
|
|
12260
|
+
let {
|
|
12261
|
+
enableHover,
|
|
12262
|
+
selectHoverColor
|
|
12263
|
+
} = _ref;
|
|
12264
|
+
return enableHover && `&:hover {
|
|
12260
12265
|
background-color: ${selectHoverColor};
|
|
12261
12266
|
cursor: pointer;
|
|
12262
|
-
}
|
|
12267
|
+
}`;
|
|
12268
|
+
}}
|
|
12263
12269
|
`;
|
|
12264
12270
|
const InfoText = styled.div`
|
|
12265
12271
|
font-weight: 400;
|