Files
klz-cables.com/.pnpm-store/v10/files/7f/7b1def0ed211938e9d97cba10533230e7d79d243defd4de5bb18a10dacf35f1be9c96a1b7834f15eacdb8f339ad419c1c67f2652e145cdd0fb196d0fe7743e
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

26 lines
886 B
Plaintext

import type { ClientCollectionConfig, PaginatedDocs } from 'payload';
import React from 'react';
import type { IListQueryContext } from '../../providers/ListQuery/types.js';
import './index.scss';
/**
* @internal
*/
export declare const PageControlsComponent: React.FC<{
AfterPageControls?: React.ReactNode;
collectionConfig: ClientCollectionConfig;
data: PaginatedDocs;
handlePageChange?: IListQueryContext['handlePageChange'];
handlePerPageChange?: IListQueryContext['handlePerPageChange'];
limit?: number;
}>;
/**
* These page controls are controlled by the global ListQuery state.
* To override thi behavior, build your own wrapper around PageControlsComponent.
*
* @internal
*/
export declare const PageControls: React.FC<{
AfterPageControls?: React.ReactNode;
collectionConfig: ClientCollectionConfig;
}>;
//# sourceMappingURL=index.d.ts.map