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.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 = _ref => {
65854
- let {
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
- } = _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 = _ref => {
66267
- let {
66268
- label,
66269
- labelEmptyValue,
66270
- options,
66271
- selectedValue,
66272
- placeHolder,
66273
- onChange,
66274
- required,
66275
- disabled,
66276
- width,
66277
- error,
66278
- errorMessage,
66279
- labelColor,
66280
- xIconShow,
66281
- checkBoxColor,
66282
- showLabelOnTop
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('');