lecom-ui 5.3.42 → 5.3.43

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.
@@ -30,7 +30,8 @@ const MultiSelect = React.forwardRef(
30
30
  searchStrategy = "ranked",
31
31
  highlightMatches = true,
32
32
  allowTypoDistance = 0,
33
- groupedOptions
33
+ groupedOptions,
34
+ classNameContent
34
35
  }, ref) => {
35
36
  const { t } = useTranslation();
36
37
  const [selectedValues, setSelectedValues] = React.useState(value);
@@ -419,7 +420,8 @@ const MultiSelect = React.forwardRef(
419
420
  {
420
421
  className: cn(
421
422
  "p-0 max-h-80",
422
- matchTriggerWidth && "w-[var(--radix-popover-trigger-width)]"
423
+ matchTriggerWidth && "w-[var(--radix-popover-trigger-width)]",
424
+ classNameContent
423
425
  ),
424
426
  side,
425
427
  align: "start",
package/dist/index.d.ts CHANGED
@@ -832,6 +832,7 @@ interface MultiSelectProps extends React$1.ButtonHTMLAttributes<HTMLButtonElemen
832
832
  value: string;
833
833
  }[];
834
834
  };
835
+ classNameContent?: string;
835
836
  }
836
837
  interface MultiSelectTreeOption {
837
838
  label: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lecom-ui",
3
- "version": "5.3.42",
3
+ "version": "5.3.43",
4
4
  "license": "MIT",
5
5
  "type": "module",
6
6
  "module": "dist/index.js",