trotl-filter 1.0.10 → 1.0.11

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.esm.js CHANGED
@@ -6993,7 +6993,8 @@ const MultiSelectDropdown = ({
6993
6993
  closeMenuOnSelect = false,
6994
6994
  pushUrlParamObj = false,
6995
6995
  // pushUrlParamObj={"ids"}
6996
- addItem = undefined
6996
+ addItem = undefined,
6997
+ style = {}
6997
6998
  }) => {
6998
6999
  const containerRef = useRef(null);
6999
7000
  const [maxVisible, setMaxVisible] = useState(1);
@@ -7260,7 +7261,8 @@ const MultiSelectDropdown = ({
7260
7261
  const showRequiredError = required && (!selected || selected.length === 0);
7261
7262
  return /*#__PURE__*/React__default.createElement("div", {
7262
7263
  style: {
7263
- width: "100%"
7264
+ width: "100%",
7265
+ ...style
7264
7266
  },
7265
7267
  ref: containerRef,
7266
7268
  className: showRequiredError ? "select-required-error" : ""