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.cjs.js CHANGED
@@ -7013,7 +7013,8 @@ const MultiSelectDropdown = ({
7013
7013
  closeMenuOnSelect = false,
7014
7014
  pushUrlParamObj = false,
7015
7015
  // pushUrlParamObj={"ids"}
7016
- addItem = undefined
7016
+ addItem = undefined,
7017
+ style = {}
7017
7018
  }) => {
7018
7019
  const containerRef = React.useRef(null);
7019
7020
  const [maxVisible, setMaxVisible] = React.useState(1);
@@ -7280,7 +7281,8 @@ const MultiSelectDropdown = ({
7280
7281
  const showRequiredError = required && (!selected || selected.length === 0);
7281
7282
  return /*#__PURE__*/React.createElement("div", {
7282
7283
  style: {
7283
- width: "100%"
7284
+ width: "100%",
7285
+ ...style
7284
7286
  },
7285
7287
  ref: containerRef,
7286
7288
  className: showRequiredError ? "select-required-error" : ""