@homebound/beam 2.414.1 → 2.415.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.d.cts CHANGED
@@ -5770,6 +5770,12 @@ interface GridTableProps<R extends Kinded, X> {
5770
5770
  * be the collapsed state for project `p:1`'s precon stage specs & selections table.
5771
5771
  */
5772
5772
  persistCollapse?: string;
5773
+ /**
5774
+ * If true, scroll position persists when the page is reloaded (only applies to `as=virtual` without infinite scroll, where it defaults to true).
5775
+ *
5776
+ * The storage key is automatically generated using the current URL pathname and the table's `id`.
5777
+ */
5778
+ persistScrollPosition?: boolean;
5773
5779
  xss?: X;
5774
5780
  /** Accepts the api, from `useGridTableApi`, that the caller wants to use for this table. */
5775
5781
  api?: GridTableApi<R>;
package/dist/index.d.ts CHANGED
@@ -5770,6 +5770,12 @@ interface GridTableProps<R extends Kinded, X> {
5770
5770
  * be the collapsed state for project `p:1`'s precon stage specs & selections table.
5771
5771
  */
5772
5772
  persistCollapse?: string;
5773
+ /**
5774
+ * If true, scroll position persists when the page is reloaded (only applies to `as=virtual` without infinite scroll, where it defaults to true).
5775
+ *
5776
+ * The storage key is automatically generated using the current URL pathname and the table's `id`.
5777
+ */
5778
+ persistScrollPosition?: boolean;
5773
5779
  xss?: X;
5774
5780
  /** Accepts the api, from `useGridTableApi`, that the caller wants to use for this table. */
5775
5781
  api?: GridTableApi<R>;