sag_components 2.0.0-beta6 → 2.0.0-beta8

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
@@ -44316,18 +44316,19 @@ const InfoIcon = _ref => {
44316
44316
  }));
44317
44317
  };
44318
44318
 
44319
- const LinkButton = ({
44320
- text = '',
44321
- type = 'primary',
44322
- size = 'small',
44323
- height = '',
44324
- width = '',
44325
- disabled = false,
44326
- textColor = '',
44327
- onClick,
44328
- leftIcon = 'none',
44329
- rightIcon = 'none'
44330
- }) => {
44319
+ const LinkButton = _ref => {
44320
+ let {
44321
+ text = '',
44322
+ type = 'primary',
44323
+ size = 'small',
44324
+ height = '',
44325
+ width = '',
44326
+ disabled = false,
44327
+ textColor = '',
44328
+ onClick,
44329
+ leftIcon = 'none',
44330
+ rightIcon = 'none'
44331
+ } = _ref;
44331
44332
  // const {
44332
44333
  // text,
44333
44334
  // type,
@@ -51748,20 +51749,21 @@ const DatePicker = ({
51748
51749
  };
51749
51750
 
51750
51751
  /* eslint-disable import/no-extraneous-dependencies */
51751
- const RangePicker = ({
51752
- label,
51753
- onChange,
51754
- borderRadius,
51755
- required,
51756
- width,
51757
- height,
51758
- placeholder,
51759
- disabled,
51760
- borderColor,
51761
- borderColorFocus,
51762
- textColor,
51763
- selectedValue
51764
- }) => {
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;
51765
51767
  const [isFocused, setIsFocused] = React.useState(false);
51766
51768
  const [isOpen, setIsOpen] = React.useState(false);
51767
51769
  const [value, setValue] = React.useState(''); // Added value state
@@ -53475,12 +53477,22 @@ FilterPanel.propTypes = {
53475
53477
  label: PropTypes.string,
53476
53478
  labelEmptyValue: PropTypes.string,
53477
53479
  name: PropTypes.string,
53480
+ periodPickerSelectedValue: PropTypes.arrayOf(PropTypes.shape({
53481
+ value: PropTypes.string,
53482
+ label: PropTypes.string
53483
+ })),
53478
53484
  selectedValue: PropTypes.arrayOf(PropTypes.shape({
53479
53485
  value: PropTypes.string,
53480
53486
  label: PropTypes.string
53481
53487
  })),
53488
+ orderBy: PropTypes.string,
53489
+ elementType: PropTypes.string,
53482
53490
  value: PropTypes.number,
53483
53491
  color: PropTypes.string,
53492
+ defaultValueYears: PropTypes.shape({
53493
+ value: PropTypes.string,
53494
+ label: PropTypes.string
53495
+ }),
53484
53496
  dropdownOptions: PropTypes.arrayOf(PropTypes.shape({
53485
53497
  value: PropTypes.string,
53486
53498
  label: PropTypes.string