sag_components 2.0.0-beta338 → 2.0.0-beta339

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
@@ -10802,23 +10802,24 @@ const QuarterPopupPicker = ({
10802
10802
  };
10803
10803
 
10804
10804
  /* eslint-disable import/no-extraneous-dependencies */
10805
- const QuarterPicker = ({
10806
- availableQuarters,
10807
- // ["Q1-2024"]
10808
- label,
10809
- onChange,
10810
- borderRadius,
10811
- required,
10812
- width,
10813
- height,
10814
- placeholder,
10815
- disabled,
10816
- borderColor,
10817
- borderColorFocus,
10818
- textColor,
10819
- selectedValue,
10820
- startYear
10821
- }) => {
10805
+ const QuarterPicker = _ref => {
10806
+ let {
10807
+ availableQuarters,
10808
+ // ["Q1-2024"]
10809
+ label,
10810
+ onChange,
10811
+ borderRadius,
10812
+ required,
10813
+ width,
10814
+ height,
10815
+ placeholder,
10816
+ disabled,
10817
+ borderColor,
10818
+ borderColorFocus,
10819
+ textColor,
10820
+ selectedValue,
10821
+ startYear
10822
+ } = _ref;
10822
10823
  const [isFocused, setIsFocused] = React$1.useState(false);
10823
10824
  const [isOpen, setIsOpen] = React$1.useState(false);
10824
10825
  const [value, setValue] = React$1.useState('');
@@ -11260,22 +11261,23 @@ const MonthPopupPicker = ({
11260
11261
  };
11261
11262
 
11262
11263
  /* eslint-disable import/no-extraneous-dependencies */
11263
- const MonthPicker = ({
11264
- availableMonths,
11265
- label,
11266
- onChange,
11267
- borderRadius,
11268
- required,
11269
- width,
11270
- height,
11271
- placeholder,
11272
- disabled,
11273
- borderColor,
11274
- borderColorFocus,
11275
- textColor,
11276
- selectedValue,
11277
- startYear
11278
- }) => {
11264
+ const MonthPicker = _ref => {
11265
+ let {
11266
+ availableMonths,
11267
+ label,
11268
+ onChange,
11269
+ borderRadius,
11270
+ required,
11271
+ width,
11272
+ height,
11273
+ placeholder,
11274
+ disabled,
11275
+ borderColor,
11276
+ borderColorFocus,
11277
+ textColor,
11278
+ selectedValue,
11279
+ startYear
11280
+ } = _ref;
11279
11281
  const [isFocused, setIsFocused] = React$1.useState(false);
11280
11282
  const [isOpen, setIsOpen] = React$1.useState(false);
11281
11283
  const [value, setValue] = React$1.useState('');