@lumx/react 4.16.0-alpha.0 → 4.16.0-alpha.2
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/index.d.ts +1 -1
- package/index.js +1 -1
- package/index.js.map +1 -1
- package/package.json +3 -3
package/index.d.ts
CHANGED
|
@@ -4281,7 +4281,7 @@ type SelectButtonSelectProps<O> = Omit<ReactToJSX<SelectButtonProps$1<O>>, 'rend
|
|
|
4281
4281
|
* Forwarded trigger props for a given element `E`, minus the keys that the
|
|
4282
4282
|
* component manages internally.
|
|
4283
4283
|
*/
|
|
4284
|
-
type TriggerProps<E extends ElementType$1> = Omit<NamedProps<React__default.
|
|
4284
|
+
type TriggerProps<E extends ElementType$1> = Omit<NamedProps<React__default.ComponentProps<E>>, OmittedKeys>;
|
|
4285
4285
|
/**
|
|
4286
4286
|
* Common base — Select-specific props plus the ARIA / label / popover layer.
|
|
4287
4287
|
* `as`, `ref`, `selectionType`, `value`, `onChange` are intentionally hoisted
|
package/index.js
CHANGED
|
@@ -9163,7 +9163,7 @@ const Popover$1 = (props, {
|
|
|
9163
9163
|
[`position-${position}`]: Boolean(position),
|
|
9164
9164
|
'is-hidden': Boolean(isHidden)
|
|
9165
9165
|
})),
|
|
9166
|
-
|
|
9166
|
+
hidden: isHidden || undefined,
|
|
9167
9167
|
style: isHidden ? undefined : popoverStyle,
|
|
9168
9168
|
"data-popper-placement": position,
|
|
9169
9169
|
children: [unmountSentinel, /*#__PURE__*/jsxs(ClickAwayProvider, {
|