Files
klz-cables.com/.pnpm-store/v10/files/d0/cc99959b1e75af3444425da61f9ed953f5afdb2a52d58ddc98e0607aeff2238720fd0374107cd5029d69eda7808112811288ca8f8e16f3bf989274189c1192
Marc Mintel 5397309103
Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
fix(products): fix breadcrumbs and product filtering (backport from main)
2026-02-24 16:04:21 +01:00

16 lines
798 B
Plaintext

import type { ClientCollectionConfig, PaginatedDocs } from 'payload';
import React from 'react';
/**
* If `groupBy` is set in the query, multiple tables will render, one for each group.
* In this case, each table needs its own `PageControls` to handle pagination.
* These page controls, however, should not modify the global `ListQuery` state.
* Instead, they should only handle the pagination for the current group.
* To do this, build a wrapper around `PageControlsComponent` that handles the pagination logic for the current group.
*/
export declare const GroupByPageControls: React.FC<{
AfterPageControls?: React.ReactNode;
collectionConfig: ClientCollectionConfig;
data: PaginatedDocs;
groupByValue?: number | string;
}>;
//# sourceMappingURL=GroupByPageControls.d.ts.map