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.js
CHANGED
|
@@ -9472,6 +9472,7 @@ const DropdownMultiNew = ({
|
|
|
9472
9472
|
required,
|
|
9473
9473
|
disabled,
|
|
9474
9474
|
width,
|
|
9475
|
+
height,
|
|
9475
9476
|
withMarginBottom = true,
|
|
9476
9477
|
error,
|
|
9477
9478
|
errorMessage,
|
|
@@ -10590,23 +10591,24 @@ const QuarterPopupPicker = ({
|
|
|
10590
10591
|
};
|
|
10591
10592
|
|
|
10592
10593
|
/* eslint-disable import/no-extraneous-dependencies */
|
|
10593
|
-
const QuarterPicker =
|
|
10594
|
-
|
|
10595
|
-
|
|
10596
|
-
|
|
10597
|
-
|
|
10598
|
-
|
|
10599
|
-
|
|
10600
|
-
|
|
10601
|
-
|
|
10602
|
-
|
|
10603
|
-
|
|
10604
|
-
|
|
10605
|
-
|
|
10606
|
-
|
|
10607
|
-
|
|
10608
|
-
|
|
10609
|
-
|
|
10594
|
+
const QuarterPicker = _ref => {
|
|
10595
|
+
let {
|
|
10596
|
+
availableQuarters,
|
|
10597
|
+
// ["Q1-2024"]
|
|
10598
|
+
label,
|
|
10599
|
+
onChange,
|
|
10600
|
+
borderRadius,
|
|
10601
|
+
required,
|
|
10602
|
+
width,
|
|
10603
|
+
height,
|
|
10604
|
+
placeholder,
|
|
10605
|
+
disabled,
|
|
10606
|
+
borderColor,
|
|
10607
|
+
borderColorFocus,
|
|
10608
|
+
textColor,
|
|
10609
|
+
selectedValue,
|
|
10610
|
+
startYear
|
|
10611
|
+
} = _ref;
|
|
10610
10612
|
const [isFocused, setIsFocused] = React$1.useState(false);
|
|
10611
10613
|
const [isOpen, setIsOpen] = React$1.useState(false);
|
|
10612
10614
|
const [value, setValue] = React$1.useState('');
|
|
@@ -11048,22 +11050,23 @@ const MonthPopupPicker = ({
|
|
|
11048
11050
|
};
|
|
11049
11051
|
|
|
11050
11052
|
/* eslint-disable import/no-extraneous-dependencies */
|
|
11051
|
-
const MonthPicker =
|
|
11052
|
-
|
|
11053
|
-
|
|
11054
|
-
|
|
11055
|
-
|
|
11056
|
-
|
|
11057
|
-
|
|
11058
|
-
|
|
11059
|
-
|
|
11060
|
-
|
|
11061
|
-
|
|
11062
|
-
|
|
11063
|
-
|
|
11064
|
-
|
|
11065
|
-
|
|
11066
|
-
|
|
11053
|
+
const MonthPicker = _ref => {
|
|
11054
|
+
let {
|
|
11055
|
+
availableMonths,
|
|
11056
|
+
label,
|
|
11057
|
+
onChange,
|
|
11058
|
+
borderRadius,
|
|
11059
|
+
required,
|
|
11060
|
+
width,
|
|
11061
|
+
height,
|
|
11062
|
+
placeholder,
|
|
11063
|
+
disabled,
|
|
11064
|
+
borderColor,
|
|
11065
|
+
borderColorFocus,
|
|
11066
|
+
textColor,
|
|
11067
|
+
selectedValue,
|
|
11068
|
+
startYear
|
|
11069
|
+
} = _ref;
|
|
11067
11070
|
const [isFocused, setIsFocused] = React$1.useState(false);
|
|
11068
11071
|
const [isOpen, setIsOpen] = React$1.useState(false);
|
|
11069
11072
|
const [value, setValue] = React$1.useState('');
|
|
@@ -12263,13 +12266,16 @@ const Td$1 = styled__default["default"].td`
|
|
|
12263
12266
|
`;
|
|
12264
12267
|
const Tr = styled__default["default"].tr`
|
|
12265
12268
|
border-bottom: 1px solid #f3f4f6;
|
|
12266
|
-
${
|
|
12267
|
-
|
|
12268
|
-
|
|
12269
|
-
|
|
12269
|
+
${_ref => {
|
|
12270
|
+
let {
|
|
12271
|
+
enableHover,
|
|
12272
|
+
selectHoverColor
|
|
12273
|
+
} = _ref;
|
|
12274
|
+
return enableHover && `&:hover {
|
|
12270
12275
|
background-color: ${selectHoverColor};
|
|
12271
12276
|
cursor: pointer;
|
|
12272
|
-
}
|
|
12277
|
+
}`;
|
|
12278
|
+
}}
|
|
12273
12279
|
`;
|
|
12274
12280
|
const InfoText = styled__default["default"].div`
|
|
12275
12281
|
font-weight: 400;
|