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.d.ts +10 -1
- package/dist/index.esm.js +22 -14
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +22 -14
- package/dist/index.js.map +1 -1
- package/dist/types/components/FilterPanel/FilterPanel.d.ts +10 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -44316,19 +44316,18 @@ const InfoIcon = _ref => {
|
|
|
44316
44316
|
}));
|
|
44317
44317
|
};
|
|
44318
44318
|
|
|
44319
|
-
const LinkButton =
|
|
44320
|
-
|
|
44321
|
-
|
|
44322
|
-
|
|
44323
|
-
|
|
44324
|
-
|
|
44325
|
-
|
|
44326
|
-
|
|
44327
|
-
|
|
44328
|
-
|
|
44329
|
-
|
|
44330
|
-
|
|
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
|
-
|
|
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({
|