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 +35 -33
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +35 -33
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
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
|
-
|
|
10797
|
-
|
|
10798
|
-
|
|
10799
|
-
|
|
10800
|
-
|
|
10801
|
-
|
|
10802
|
-
|
|
10803
|
-
|
|
10804
|
-
|
|
10805
|
-
|
|
10806
|
-
|
|
10807
|
-
|
|
10808
|
-
|
|
10809
|
-
|
|
10810
|
-
|
|
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
|
-
|
|
11255
|
-
|
|
11256
|
-
|
|
11257
|
-
|
|
11258
|
-
|
|
11259
|
-
|
|
11260
|
-
|
|
11261
|
-
|
|
11262
|
-
|
|
11263
|
-
|
|
11264
|
-
|
|
11265
|
-
|
|
11266
|
-
|
|
11267
|
-
|
|
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('');
|