sag_components 2.0.0-beta4 → 2.0.0-beta5
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 +1 -0
- package/dist/index.esm.js +33 -34
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +33 -34
- package/dist/index.js.map +1 -1
- package/dist/types/components/FilterPanel/FilterPanel.d.ts +1 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -53482,6 +53482,7 @@ FilterPanel.propTypes = {
|
|
|
53482
53482
|
label: PropTypes.string,
|
|
53483
53483
|
labelEmptyValue: PropTypes.string,
|
|
53484
53484
|
name: PropTypes.string,
|
|
53485
|
+
selectedValue: PropTypes.string,
|
|
53485
53486
|
value: PropTypes.number,
|
|
53486
53487
|
color: PropTypes.string,
|
|
53487
53488
|
dropdownOptions: PropTypes.arrayOf(PropTypes.shape({
|
|
@@ -65850,22 +65851,21 @@ const DeleteIcon = dt.div`
|
|
|
65850
65851
|
position: absolute;
|
|
65851
65852
|
`;
|
|
65852
65853
|
|
|
65853
|
-
const QuickFilterDropdownSingle =
|
|
65854
|
-
|
|
65855
|
-
|
|
65856
|
-
|
|
65857
|
-
|
|
65858
|
-
|
|
65859
|
-
|
|
65860
|
-
|
|
65861
|
-
|
|
65862
|
-
|
|
65863
|
-
|
|
65864
|
-
|
|
65865
|
-
|
|
65866
|
-
|
|
65867
|
-
|
|
65868
|
-
} = _ref;
|
|
65854
|
+
const QuickFilterDropdownSingle = ({
|
|
65855
|
+
label,
|
|
65856
|
+
hoverColor,
|
|
65857
|
+
options,
|
|
65858
|
+
selectedValue,
|
|
65859
|
+
placeHolder,
|
|
65860
|
+
onChange,
|
|
65861
|
+
disabled,
|
|
65862
|
+
width,
|
|
65863
|
+
error,
|
|
65864
|
+
errorMessage,
|
|
65865
|
+
xIconShow,
|
|
65866
|
+
labelColor,
|
|
65867
|
+
showLabelOnTop
|
|
65868
|
+
}) => {
|
|
65869
65869
|
const [isFocused, setIsFocused] = React.useState(false);
|
|
65870
65870
|
const [showOptions, setShowOptions] = React.useState(false);
|
|
65871
65871
|
const [inputValue, setInputValue] = React.useState("");
|
|
@@ -66263,24 +66263,23 @@ const IconContainer$1 = dt.div`
|
|
|
66263
66263
|
cursor: pointer;
|
|
66264
66264
|
`;
|
|
66265
66265
|
|
|
66266
|
-
const QuickFilterDropdownMultiSelection =
|
|
66267
|
-
|
|
66268
|
-
|
|
66269
|
-
|
|
66270
|
-
|
|
66271
|
-
|
|
66272
|
-
|
|
66273
|
-
|
|
66274
|
-
|
|
66275
|
-
|
|
66276
|
-
|
|
66277
|
-
|
|
66278
|
-
|
|
66279
|
-
|
|
66280
|
-
|
|
66281
|
-
|
|
66282
|
-
|
|
66283
|
-
} = _ref;
|
|
66266
|
+
const QuickFilterDropdownMultiSelection = ({
|
|
66267
|
+
label,
|
|
66268
|
+
labelEmptyValue,
|
|
66269
|
+
options,
|
|
66270
|
+
selectedValue,
|
|
66271
|
+
placeHolder,
|
|
66272
|
+
onChange,
|
|
66273
|
+
required,
|
|
66274
|
+
disabled,
|
|
66275
|
+
width,
|
|
66276
|
+
error,
|
|
66277
|
+
errorMessage,
|
|
66278
|
+
labelColor,
|
|
66279
|
+
xIconShow,
|
|
66280
|
+
checkBoxColor,
|
|
66281
|
+
showLabelOnTop
|
|
66282
|
+
}) => {
|
|
66284
66283
|
const [isFocused, setIsFocused] = React.useState(false);
|
|
66285
66284
|
const [showOptions, setShowOptions] = React.useState(false);
|
|
66286
66285
|
const [inputValue, setInputValue] = React.useState('');
|