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

33 lines
1.6 KiB
Plaintext

import type { ClientCollectionConfig, ClientConfig, CollectionConfig, Column, ColumnPreference, Field, ImportMap, ListQuery, PaginatedDocs, Payload, PayloadRequest, SanitizedCollectionConfig, SanitizedFieldsPermissions, ViewTypes } from 'payload';
import { type I18nClient } from '@payloadcms/translations';
import React from 'react';
export declare const renderFilters: (fields: Field[], importMap: ImportMap) => Map<string, React.ReactNode>;
export declare const renderTable: ({ clientCollectionConfig, clientConfig, collectionConfig, collections, columns, customCellProps, data, enableRowSelections, fieldPermissions, groupByFieldPath, groupByValue, heading, i18n, key, orderableFieldName, payload, query, renderRowTypes, req, tableAppearance, useAsTitle, viewType, }: {
clientCollectionConfig?: ClientCollectionConfig;
clientConfig?: ClientConfig;
collectionConfig?: SanitizedCollectionConfig;
collections?: string[];
columns: ColumnPreference[];
customCellProps?: Record<string, unknown>;
data?: PaginatedDocs | undefined;
drawerSlug?: string;
enableRowSelections: boolean;
fieldPermissions?: SanitizedFieldsPermissions;
groupByFieldPath?: string;
groupByValue?: string;
heading?: string;
i18n: I18nClient;
key?: string;
orderableFieldName: string;
payload: Payload;
query?: ListQuery;
renderRowTypes?: boolean;
req?: PayloadRequest;
tableAppearance?: "condensed" | "default";
useAsTitle: CollectionConfig["admin"]["useAsTitle"];
viewType?: ViewTypes;
}) => {
columnState: Column[];
Table: React.ReactNode;
};
//# sourceMappingURL=renderTable.d.ts.map