sag_components 2.0.0-beta5 → 2.0.0-beta7

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,19 +44316,18 @@ const InfoIcon = _ref => {
44316
44316
  }));
44317
44317
  };
44318
44318
 
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;
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
+ }) => {
44332
44331
  // const {
44333
44332
  // text,
44334
44333
  // type,
@@ -53482,7 +53481,16 @@ FilterPanel.propTypes = {
53482
53481
  label: PropTypes.string,
53483
53482
  labelEmptyValue: PropTypes.string,
53484
53483
  name: PropTypes.string,
53485
- selectedValue: PropTypes.string,
53484
+ periodPickerSelectedValue: PropTypes.arrayOf(PropTypes.shape({
53485
+ value: PropTypes.string,
53486
+ label: PropTypes.string
53487
+ })),
53488
+ selectedValue: PropTypes.arrayOf(PropTypes.shape({
53489
+ value: PropTypes.string,
53490
+ label: PropTypes.string
53491
+ })),
53492
+ orderBy: PropTypes.string,
53493
+ elementType: PropTypes.string,
53486
53494
  value: PropTypes.number,
53487
53495
  color: PropTypes.string,
53488
53496
  dropdownOptions: PropTypes.arrayOf(PropTypes.shape({