@firecms/ui 3.1.0-canary.9e89e98 → 3.1.0
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/components/MultiSelect.d.ts +1 -1
- package/dist/components/Select.d.ts +1 -1
- package/dist/hooks/useOutsideAlerter.d.ts +1 -1
- package/dist/index.es.js +2 -2
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +2 -2
- package/dist/index.umd.js.map +1 -1
- package/package.json +6 -6
- package/src/components/DebouncedTextField.tsx +3 -3
- package/src/components/MultiSelect.tsx +4 -6
- package/src/components/Select.tsx +62 -62
- package/src/hooks/useOutsideAlerter.tsx +1 -1
package/dist/index.umd.js
CHANGED
|
@@ -34920,7 +34920,7 @@
|
|
|
34920
34920
|
let t12;
|
|
34921
34921
|
let t13;
|
|
34922
34922
|
if ($[9] !== children) {
|
|
34923
|
-
t13 = children ? React.Children.map(children, _temp$2)
|
|
34923
|
+
t13 = children ? React.Children.map(children, _temp$2)?.filter(Boolean) ?? [] : [];
|
|
34924
34924
|
$[9] = children;
|
|
34925
34925
|
$[10] = t13;
|
|
34926
34926
|
} else {
|
|
@@ -37530,7 +37530,7 @@
|
|
|
37530
37530
|
Badge.displayName = "Badge";
|
|
37531
37531
|
function DebouncedTextField(props) {
|
|
37532
37532
|
const $ = reactCompilerRuntime.c(13);
|
|
37533
|
-
const previousEventRef = React.useRef();
|
|
37533
|
+
const previousEventRef = React.useRef(void 0);
|
|
37534
37534
|
const [internalValue, setInternalValue] = React.useState(props.value);
|
|
37535
37535
|
const deferredValue = React.useDeferredValue(internalValue);
|
|
37536
37536
|
let t0;
|