@ceed/cds 1.19.1-next.1 → 1.19.1
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 +1 -3
- package/dist/index.js +1 -3
- package/framer/index.js +16 -16
- package/package.json +2 -3
package/dist/index.cjs
CHANGED
|
@@ -628,13 +628,11 @@ function Autocomplete(props) {
|
|
|
628
628
|
);
|
|
629
629
|
const slotProps = (0, import_react6.useMemo)(
|
|
630
630
|
() => ({
|
|
631
|
-
...props.slotProps,
|
|
632
631
|
listbox: {
|
|
633
|
-
...props.slotProps?.listbox,
|
|
634
632
|
hasSecondaryText: options.some((opt) => opt.secondaryText)
|
|
635
633
|
}
|
|
636
634
|
}),
|
|
637
|
-
[options
|
|
635
|
+
[options]
|
|
638
636
|
);
|
|
639
637
|
const handleChange = (0, import_react6.useCallback)(
|
|
640
638
|
(event, value2) => {
|
package/dist/index.js
CHANGED
|
@@ -541,13 +541,11 @@ function Autocomplete(props) {
|
|
|
541
541
|
);
|
|
542
542
|
const slotProps = useMemo(
|
|
543
543
|
() => ({
|
|
544
|
-
...props.slotProps,
|
|
545
544
|
listbox: {
|
|
546
|
-
...props.slotProps?.listbox,
|
|
547
545
|
hasSecondaryText: options.some((opt) => opt.secondaryText)
|
|
548
546
|
}
|
|
549
547
|
}),
|
|
550
|
-
[options
|
|
548
|
+
[options]
|
|
551
549
|
);
|
|
552
550
|
const handleChange = useCallback2(
|
|
553
551
|
(event, value2) => {
|