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

9 lines
800 B
Plaintext

import type { ClientComponentProps, ClientField, FieldPaths, SanitizedFieldPermissions } from 'payload';
import React from 'react';
type RenderFieldProps = {
clientFieldConfig: ClientField;
permissions: SanitizedFieldPermissions;
} & FieldPaths & Pick<ClientComponentProps, 'forceRender' | 'readOnly' | 'schemaPath'>;
export declare function RenderField({ clientFieldConfig, forceRender, indexPath, parentPath, parentSchemaPath, path, permissions, readOnly, schemaPath, }: RenderFieldProps): string | number | bigint | true | Iterable<React.ReactNode> | Promise<string | number | bigint | boolean | React.ReactPortal | React.ReactElement<unknown, string | React.JSXElementConstructor<any>> | Iterable<React.ReactNode>> | React.JSX.Element;
export {};
//# sourceMappingURL=RenderField.d.ts.map