Files
klz-cables.com/.pnpm-store/v10/files/a0/5873049240de4181d66100bbd00a7c2b66733c1612167f6c522091d88f15eada13cf70fb3b69fbeb3f5161382b0b3cf8f84e148fd99cca298cd7e67235195e
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

21 lines
777 B
Plaintext

import type { PayloadRequest, RelationshipField, RelationshipFieldDiffServerComponent, TypeWithID } from 'payload';
import { type I18nClient } from '@payloadcms/translations';
import './index.scss';
import React from 'react';
export type RelationshipValue = {
relationTo: string;
value: number | string | TypeWithID;
} | (number | string | TypeWithID);
export declare const Relationship: RelationshipFieldDiffServerComponent;
export declare const SingleRelationshipDiff: React.FC<{
field: RelationshipField;
i18n: I18nClient;
locale: string;
nestingLevel?: number;
parentIsLocalized: boolean;
polymorphic: boolean;
req: PayloadRequest;
valueFrom: RelationshipValue;
valueTo: RelationshipValue;
}>;
//# sourceMappingURL=index.d.ts.map