sag_components 2.0.0-beta8 → 2.0.0-beta9
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.d.ts +1 -52
- package/dist/index.esm.js +56 -51
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +56 -51
- package/dist/index.js.map +1 -1
- package/dist/types/components/QuickFilter/QuickFilter.d.ts +0 -52
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -51749,21 +51749,20 @@ const DatePicker = ({
|
|
|
51749
51749
|
};
|
|
51750
51750
|
|
|
51751
51751
|
/* eslint-disable import/no-extraneous-dependencies */
|
|
51752
|
-
const RangePicker =
|
|
51753
|
-
|
|
51754
|
-
|
|
51755
|
-
|
|
51756
|
-
|
|
51757
|
-
|
|
51758
|
-
|
|
51759
|
-
|
|
51760
|
-
|
|
51761
|
-
|
|
51762
|
-
|
|
51763
|
-
|
|
51764
|
-
|
|
51765
|
-
|
|
51766
|
-
} = _ref;
|
|
51752
|
+
const RangePicker = ({
|
|
51753
|
+
label,
|
|
51754
|
+
onChange,
|
|
51755
|
+
borderRadius,
|
|
51756
|
+
required,
|
|
51757
|
+
width,
|
|
51758
|
+
height,
|
|
51759
|
+
placeholder,
|
|
51760
|
+
disabled,
|
|
51761
|
+
borderColor,
|
|
51762
|
+
borderColorFocus,
|
|
51763
|
+
textColor,
|
|
51764
|
+
selectedValue
|
|
51765
|
+
}) => {
|
|
51767
51766
|
const [isFocused, setIsFocused] = React.useState(false);
|
|
51768
51767
|
const [isOpen, setIsOpen] = React.useState(false);
|
|
51769
51768
|
const [value, setValue] = React.useState(''); // Added value state
|
|
@@ -66635,42 +66634,48 @@ const QuickFilter = _ref => {
|
|
|
66635
66634
|
xIconShow: xIconShow
|
|
66636
66635
|
}));
|
|
66637
66636
|
};
|
|
66638
|
-
|
|
66639
|
-
|
|
66640
|
-
|
|
66641
|
-
|
|
66642
|
-
|
|
66643
|
-
|
|
66644
|
-
|
|
66645
|
-
|
|
66646
|
-
|
|
66647
|
-
|
|
66648
|
-
|
|
66649
|
-
|
|
66650
|
-
|
|
66651
|
-
|
|
66652
|
-
|
|
66653
|
-
|
|
66654
|
-
|
|
66655
|
-
|
|
66656
|
-
|
|
66657
|
-
|
|
66658
|
-
|
|
66659
|
-
|
|
66660
|
-
|
|
66661
|
-
|
|
66662
|
-
|
|
66663
|
-
|
|
66664
|
-
|
|
66665
|
-
|
|
66666
|
-
|
|
66667
|
-
|
|
66668
|
-
|
|
66669
|
-
|
|
66670
|
-
|
|
66671
|
-
|
|
66672
|
-
|
|
66673
|
-
|
|
66637
|
+
|
|
66638
|
+
// QuickFilter.propTypes = {
|
|
66639
|
+
// hoverColor: PropTypes.string,
|
|
66640
|
+
// multipleSelection: PropTypes.bool,
|
|
66641
|
+
// disabled: PropTypes.bool,
|
|
66642
|
+
// error: PropTypes.bool,
|
|
66643
|
+
// errorMessage: "",
|
|
66644
|
+
// label: PropTypes.string,
|
|
66645
|
+
// labelColor: PropTypes.string,
|
|
66646
|
+
// placeHolder: PropTypes.string,
|
|
66647
|
+
// width: PropTypes.string,
|
|
66648
|
+
// checkBoxColor: PropTypes.string,
|
|
66649
|
+
// onChange: PropTypes.func,
|
|
66650
|
+
// options: PropTypes.arrayOf(
|
|
66651
|
+
// PropTypes.shape({
|
|
66652
|
+
// id: PropTypes.string,
|
|
66653
|
+
// label: PropTypes.string,
|
|
66654
|
+
// })
|
|
66655
|
+
// ),
|
|
66656
|
+
// selectedValue: PropTypes.arrayOf(
|
|
66657
|
+
// PropTypes.shape({
|
|
66658
|
+
// id: PropTypes.string,
|
|
66659
|
+
// label: PropTypes.string,
|
|
66660
|
+
// })
|
|
66661
|
+
// ),
|
|
66662
|
+
// };
|
|
66663
|
+
|
|
66664
|
+
// QuickFilter.defaultProps = {
|
|
66665
|
+
// hoverColor: "#066768",
|
|
66666
|
+
// multipleSelection: false,
|
|
66667
|
+
// disabled: false,
|
|
66668
|
+
// error: false,
|
|
66669
|
+
// errorMessage: "",
|
|
66670
|
+
// label: "Unit Type:",
|
|
66671
|
+
// labelColor: "#066768",
|
|
66672
|
+
// placeHolder: "Select From List",
|
|
66673
|
+
// width: "auto",
|
|
66674
|
+
// checkBoxColor: "#229E38",
|
|
66675
|
+
// onChange: () => {},
|
|
66676
|
+
// options: [],
|
|
66677
|
+
// selectedValue: [],
|
|
66678
|
+
// };
|
|
66674
66679
|
|
|
66675
66680
|
var classnames = {exports: {}};
|
|
66676
66681
|
|