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.js CHANGED
@@ -51749,21 +51749,20 @@ const DatePicker = ({
51749
51749
  };
51750
51750
 
51751
51751
  /* eslint-disable import/no-extraneous-dependencies */
51752
- const RangePicker = _ref => {
51753
- let {
51754
- label,
51755
- onChange,
51756
- borderRadius,
51757
- required,
51758
- width,
51759
- height,
51760
- placeholder,
51761
- disabled,
51762
- borderColor,
51763
- borderColorFocus,
51764
- textColor,
51765
- selectedValue
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
- 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(PropTypes.shape({
66651
- id: PropTypes.string,
66652
- label: PropTypes.string
66653
- })),
66654
- selectedValue: PropTypes.arrayOf(PropTypes.shape({
66655
- id: PropTypes.string,
66656
- label: PropTypes.string
66657
- }))
66658
- };
66659
- QuickFilter.defaultProps = {
66660
- hoverColor: "#066768",
66661
- multipleSelection: false,
66662
- disabled: false,
66663
- error: false,
66664
- errorMessage: "",
66665
- label: "Unit Type:",
66666
- labelColor: "#066768",
66667
- placeHolder: "Select From List",
66668
- width: "auto",
66669
- checkBoxColor: "#229E38",
66670
- onChange: () => {},
66671
- options: [],
66672
- selectedValue: []
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