@northlight/ui 2.25.0 → 2.25.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/es/northlight.js
CHANGED
|
@@ -12434,7 +12434,11 @@ const BaseSelectField = (_a, ref) => {
|
|
|
12434
12434
|
);
|
|
12435
12435
|
onChangeCallback(values, event);
|
|
12436
12436
|
},
|
|
12437
|
-
value: value ? options == null ? void 0 : options.flatMap(
|
|
12437
|
+
value: value ? options == null ? void 0 : options.flatMap(
|
|
12438
|
+
(inner) => inner.options ? inner.options : inner
|
|
12439
|
+
).filter(
|
|
12440
|
+
(option) => isMulti ? value.includes(option.value) : equals(value, option.value)
|
|
12441
|
+
) : null
|
|
12438
12442
|
}, rest)
|
|
12439
12443
|
)
|
|
12440
12444
|
), /* @__PURE__ */ React.createElement(
|