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.esm.js CHANGED
@@ -10792,23 +10792,24 @@ const QuarterPopupPicker = ({
10792
10792
  };
10793
10793
 
10794
10794
  /* eslint-disable import/no-extraneous-dependencies */
10795
- const QuarterPicker = ({
10796
- availableQuarters,
10797
- // ["Q1-2024"]
10798
- label,
10799
- onChange,
10800
- borderRadius,
10801
- required,
10802
- width,
10803
- height,
10804
- placeholder,
10805
- disabled,
10806
- borderColor,
10807
- borderColorFocus,
10808
- textColor,
10809
- selectedValue,
10810
- startYear
10811
- }) => {
10795
+ const QuarterPicker = _ref => {
10796
+ let {
10797
+ availableQuarters,
10798
+ // ["Q1-2024"]
10799
+ label,
10800
+ onChange,
10801
+ borderRadius,
10802
+ required,
10803
+ width,
10804
+ height,
10805
+ placeholder,
10806
+ disabled,
10807
+ borderColor,
10808
+ borderColorFocus,
10809
+ textColor,
10810
+ selectedValue,
10811
+ startYear
10812
+ } = _ref;
10812
10813
  const [isFocused, setIsFocused] = useState(false);
10813
10814
  const [isOpen, setIsOpen] = useState(false);
10814
10815
  const [value, setValue] = useState('');
@@ -11250,22 +11251,23 @@ const MonthPopupPicker = ({
11250
11251
  };
11251
11252
 
11252
11253
  /* eslint-disable import/no-extraneous-dependencies */
11253
- const MonthPicker = ({
11254
- availableMonths,
11255
- label,
11256
- onChange,
11257
- borderRadius,
11258
- required,
11259
- width,
11260
- height,
11261
- placeholder,
11262
- disabled,
11263
- borderColor,
11264
- borderColorFocus,
11265
- textColor,
11266
- selectedValue,
11267
- startYear
11268
- }) => {
11254
+ const MonthPicker = _ref => {
11255
+ let {
11256
+ availableMonths,
11257
+ label,
11258
+ onChange,
11259
+ borderRadius,
11260
+ required,
11261
+ width,
11262
+ height,
11263
+ placeholder,
11264
+ disabled,
11265
+ borderColor,
11266
+ borderColorFocus,
11267
+ textColor,
11268
+ selectedValue,
11269
+ startYear
11270
+ } = _ref;
11269
11271
  const [isFocused, setIsFocused] = useState(false);
11270
11272
  const [isOpen, setIsOpen] = useState(false);
11271
11273
  const [value, setValue] = useState('');