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.d.ts +10 -0
- package/dist/index.esm.js +38 -26
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +38 -26
- package/dist/index.js.map +1 -1
- package/dist/types/components/FilterPanel/FilterPanel.d.ts +10 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -44316,18 +44316,19 @@ const InfoIcon = _ref => {
|
|
|
44316
44316
|
}));
|
|
44317
44317
|
};
|
|
44318
44318
|
|
|
44319
|
-
const LinkButton =
|
|
44320
|
-
|
|
44321
|
-
|
|
44322
|
-
|
|
44323
|
-
|
|
44324
|
-
|
|
44325
|
-
|
|
44326
|
-
|
|
44327
|
-
|
|
44328
|
-
|
|
44329
|
-
|
|
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
|
-
|
|
51753
|
-
|
|
51754
|
-
|
|
51755
|
-
|
|
51756
|
-
|
|
51757
|
-
|
|
51758
|
-
|
|
51759
|
-
|
|
51760
|
-
|
|
51761
|
-
|
|
51762
|
-
|
|
51763
|
-
|
|
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
|