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.js
CHANGED
|
@@ -10802,23 +10802,24 @@ const QuarterPopupPicker = ({
|
|
|
10802
10802
|
};
|
|
10803
10803
|
|
|
10804
10804
|
/* eslint-disable import/no-extraneous-dependencies */
|
|
10805
|
-
const QuarterPicker =
|
|
10806
|
-
|
|
10807
|
-
|
|
10808
|
-
|
|
10809
|
-
|
|
10810
|
-
|
|
10811
|
-
|
|
10812
|
-
|
|
10813
|
-
|
|
10814
|
-
|
|
10815
|
-
|
|
10816
|
-
|
|
10817
|
-
|
|
10818
|
-
|
|
10819
|
-
|
|
10820
|
-
|
|
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
|
-
|
|
11265
|
-
|
|
11266
|
-
|
|
11267
|
-
|
|
11268
|
-
|
|
11269
|
-
|
|
11270
|
-
|
|
11271
|
-
|
|
11272
|
-
|
|
11273
|
-
|
|
11274
|
-
|
|
11275
|
-
|
|
11276
|
-
|
|
11277
|
-
|
|
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('');
|