Files
klz-cables.com/.pnpm-store/v10/files/07/36abd027bef1bb06b1c950b7053de12a09291670e3eba3b39dcca14be6537259ae93f2b6eb0c15080d5ee5c544e086be3e00db0d2bb28ca773c98a142c9cc6
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

18 lines
637 B
Plaintext

import type { ValueWithRelation } from 'payload';
export type Props = {
readonly Button?: React.ReactNode;
readonly path: string;
readonly relationTo: string | string[];
readonly unstyled?: boolean;
} & SharedRelationshipInputProps;
type SharedRelationshipInputProps = {
readonly hasMany: false;
readonly onChange: (value: ValueWithRelation, modifyForm?: boolean) => void;
readonly value?: null | ValueWithRelation;
} | {
readonly hasMany: true;
readonly onChange: (value: ValueWithRelation[]) => void;
readonly value?: null | ValueWithRelation[];
};
export {};
//# sourceMappingURL=types.d.ts.map