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