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 CHANGED
@@ -273,6 +273,7 @@ declare namespace FilterPanel {
273
273
  label: PropTypes.Requireable<string>;
274
274
  labelEmptyValue: PropTypes.Requireable<string>;
275
275
  name: PropTypes.Requireable<string>;
276
+ selectedValue: PropTypes.Requireable<string>;
276
277
  value: PropTypes.Requireable<number>;
277
278
  color: PropTypes.Requireable<string>;
278
279
  dropdownOptions: PropTypes.Requireable<(PropTypes.InferProps<{
package/dist/index.esm.js CHANGED
@@ -53455,6 +53455,7 @@ FilterPanel.propTypes = {
53455
53455
  label: PropTypes.string,
53456
53456
  labelEmptyValue: PropTypes.string,
53457
53457
  name: PropTypes.string,
53458
+ selectedValue: PropTypes.string,
53458
53459
  value: PropTypes.number,
53459
53460
  color: PropTypes.string,
53460
53461
  dropdownOptions: PropTypes.arrayOf(PropTypes.shape({
@@ -65823,22 +65824,21 @@ const DeleteIcon = dt.div`
65823
65824
  position: absolute;
65824
65825
  `;
65825
65826
 
65826
- const QuickFilterDropdownSingle = _ref => {
65827
- let {
65828
- label,
65829
- hoverColor,
65830
- options,
65831
- selectedValue,
65832
- placeHolder,
65833
- onChange,
65834
- disabled,
65835
- width,
65836
- error,
65837
- errorMessage,
65838
- xIconShow,
65839
- labelColor,
65840
- showLabelOnTop
65841
- } = _ref;
65827
+ const QuickFilterDropdownSingle = ({
65828
+ label,
65829
+ hoverColor,
65830
+ options,
65831
+ selectedValue,
65832
+ placeHolder,
65833
+ onChange,
65834
+ disabled,
65835
+ width,
65836
+ error,
65837
+ errorMessage,
65838
+ xIconShow,
65839
+ labelColor,
65840
+ showLabelOnTop
65841
+ }) => {
65842
65842
  const [isFocused, setIsFocused] = useState(false);
65843
65843
  const [showOptions, setShowOptions] = useState(false);
65844
65844
  const [inputValue, setInputValue] = useState("");
@@ -66236,24 +66236,23 @@ const IconContainer$1 = dt.div`
66236
66236
  cursor: pointer;
66237
66237
  `;
66238
66238
 
66239
- const QuickFilterDropdownMultiSelection = _ref => {
66240
- let {
66241
- label,
66242
- labelEmptyValue,
66243
- options,
66244
- selectedValue,
66245
- placeHolder,
66246
- onChange,
66247
- required,
66248
- disabled,
66249
- width,
66250
- error,
66251
- errorMessage,
66252
- labelColor,
66253
- xIconShow,
66254
- checkBoxColor,
66255
- showLabelOnTop
66256
- } = _ref;
66239
+ const QuickFilterDropdownMultiSelection = ({
66240
+ label,
66241
+ labelEmptyValue,
66242
+ options,
66243
+ selectedValue,
66244
+ placeHolder,
66245
+ onChange,
66246
+ required,
66247
+ disabled,
66248
+ width,
66249
+ error,
66250
+ errorMessage,
66251
+ labelColor,
66252
+ xIconShow,
66253
+ checkBoxColor,
66254
+ showLabelOnTop
66255
+ }) => {
66257
66256
  const [isFocused, setIsFocused] = useState(false);
66258
66257
  const [showOptions, setShowOptions] = useState(false);
66259
66258
  const [inputValue, setInputValue] = useState('');