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
- 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
- }) => {
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
- 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
- }) => {
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
- enableHover,
12258
- selectHoverColor
12259
- }) => enableHover && `&:hover {
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;