@umami/react-zen 0.202.0 → 0.203.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/index.js +5 -0
- package/dist/index.mjs +5 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -34547,6 +34547,11 @@ function Select2({
|
|
|
34547
34547
|
...listProps,
|
|
34548
34548
|
items,
|
|
34549
34549
|
isFullscreen,
|
|
34550
|
+
...isFullscreen && {
|
|
34551
|
+
shouldSelectOnPressUp: true,
|
|
34552
|
+
shouldFocusOnHover: false,
|
|
34553
|
+
autoFocus: "first"
|
|
34554
|
+
},
|
|
34550
34555
|
style: { ...listProps?.style, display: isLoading ? "none" : void 0 },
|
|
34551
34556
|
children
|
|
34552
34557
|
}
|
package/dist/index.mjs
CHANGED
|
@@ -34426,6 +34426,11 @@ function Select2({
|
|
|
34426
34426
|
...listProps,
|
|
34427
34427
|
items,
|
|
34428
34428
|
isFullscreen,
|
|
34429
|
+
...isFullscreen && {
|
|
34430
|
+
shouldSelectOnPressUp: true,
|
|
34431
|
+
shouldFocusOnHover: false,
|
|
34432
|
+
autoFocus: "first"
|
|
34433
|
+
},
|
|
34429
34434
|
style: { ...listProps?.style, display: isLoading ? "none" : void 0 },
|
|
34430
34435
|
children
|
|
34431
34436
|
}
|