@jsenv/navi 0.12.14 → 0.12.16

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.
@@ -9601,9 +9601,6 @@ const UITransition = ({
9601
9601
  const uiTransitionRefDefault = useRef();
9602
9602
  uiTransitionRef = uiTransitionRef || uiTransitionRefDefault;
9603
9603
  useLayoutEffect(() => {
9604
- if (disabled) {
9605
- return null;
9606
- }
9607
9604
  const uiTransition = createUITransitionController(ref.current, {
9608
9605
  alignX,
9609
9606
  alignY
@@ -21894,13 +21891,11 @@ const ViewportManagedByCSSVars = {
21894
21891
  const ViewportLayout = props => {
21895
21892
  return jsx(Box, {
21896
21893
  row: true,
21894
+ width: "100%",
21895
+ height: "100%",
21897
21896
  ...props,
21898
21897
  className: "navi_viewport_layout",
21899
- managedByCSSVars: ViewportManagedByCSSVars,
21900
- minWidth: "max-content",
21901
- minHeight: "max-content",
21902
- width: "100%",
21903
- height: "100%"
21898
+ managedByCSSVars: ViewportManagedByCSSVars
21904
21899
  });
21905
21900
  };
21906
21901