Files
klz-cables.com/.pnpm-store/v10/files/5d/18545e15aece952416a3158ce7ae7c78ebd4693775dfa6674965e80c5816c887bb0b05eb51d947067d9787b47c32c1bd8b892cc22a9eccf0f30a23c50733da
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
644 B
Plaintext

import type { ClientField } from 'payload';
import React from 'react';
import './index.scss';
type Props = {
hideGutter?: boolean;
initCollapsed?: boolean;
Label: React.ReactNode;
locales: string[] | undefined;
parentIsLocalized: boolean;
valueTo: unknown;
} & ({
children: React.ReactNode;
field?: never;
fields: ClientField[];
isIterable?: false;
valueFrom: unknown;
} | {
children: React.ReactNode;
field: ClientField;
fields?: never;
isIterable: true;
valueFrom?: unknown;
});
export declare const DiffCollapser: React.FC<Props>;
export {};
//# sourceMappingURL=index.d.ts.map