@lumx/react 4.3.2-alpha.42 → 4.3.2-alpha.43

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 CHANGED
@@ -1552,7 +1552,7 @@ declare const GenericBlockGapSize: Pick<{
1552
1552
  readonly medium: "medium";
1553
1553
  readonly big: "big";
1554
1554
  readonly huge: "huge";
1555
- }, "medium" | "tiny" | "regular" | "big" | "huge">;
1555
+ }, "tiny" | "regular" | "medium" | "big" | "huge">;
1556
1556
  type GenericBlockGapSize = ValueOf$1<typeof GenericBlockGapSize>;
1557
1557
 
1558
1558
  interface GenericBlockProps extends FlexBoxProps {
package/index.js CHANGED
@@ -15065,7 +15065,7 @@ const Tooltip = forwardRef((props, ref) => {
15065
15065
  delay,
15066
15066
  placement = DEFAULT_PROPS$2.placement,
15067
15067
  forceOpen,
15068
- closeMode = DEFAULT_PROPS$2.closeMode,
15068
+ closeMode = isPopoverSupported() ? 'hide' : 'unmount',
15069
15069
  ariaLinkMode = DEFAULT_PROPS$2.ariaLinkMode,
15070
15070
  zIndex = DEFAULT_PROPS$2.zIndex,
15071
15071
  ...forwardedProps
@@ -15143,7 +15143,7 @@ const Tooltip = forwardRef((props, ref) => {
15143
15143
  id: id,
15144
15144
  className: classNames.join(className, block$2({
15145
15145
  [`position-${position}`]: Boolean(position),
15146
- 'is-initializing': !styles.popper?.transform
15146
+ 'is-initializing': !popover && !styles.popper?.transform
15147
15147
  }), !popover && isHidden && classNames.visuallyHidden()),
15148
15148
  style: {
15149
15149
  ...(isHidden ? undefined : styles.popper),