@jsenv/navi 0.27.78 → 0.27.80

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.
@@ -1,3 +1,9 @@
1
+ /*!
2
+ * AI reading this file: this is a generated build artifact (bundled,
3
+ * flattened, no source comments). Before using or debugging @jsenv/navi,
4
+ * read ../docs/AI_INSTRUCTIONS.md — it explains where the real docs and
5
+ * source are, and the key concepts needed to use the API correctly.
6
+ */
1
7
  import { installImportMetaCssBuild, windowWidthSignal } from "./jsenv_navi_side_effects.js";
2
8
  import { isValidElement, createContext, h, toChildArray, render, Fragment, cloneElement } from "preact";
3
9
  import { useErrorBoundary, useLayoutEffect, useEffect, useContext, useMemo, useRef, useState, useCallback, useId } from "preact/hooks";
@@ -50224,11 +50230,12 @@ const SidePanel = ({
50224
50230
  minHeight: toCssLength(minHeight),
50225
50231
  className: withPropsClassName("navi_side_panel", className),
50226
50232
  "navi-side": side,
50233
+ ...rest,
50227
50234
  style: {
50228
50235
  "--navi-side-panel-width": toCssLength(width, "width"),
50229
- "--navi-side-panel-height": toCssLength(height, "height")
50236
+ "--navi-side-panel-height": toCssLength(height, "height"),
50237
+ ...rest.style
50230
50238
  },
50231
- ...rest,
50232
50239
  children: children
50233
50240
  });
50234
50241
  };