Files
klz-cables.com/.pnpm-store/v10/files/33/45e4a65ee253f460dbbe44b391f7ade362508b10b5aecee9a3e58cce7819e84a6d2b063562653658302cbd7887c698b0f2b57165f9024b223accadd48e0b40
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

19 lines
756 B
Plaintext

import React from 'react';
import type { AddCondition, ReducedField, RemoveCondition, UpdateCondition, Value } from '../types.js';
export type Props = {
readonly addCondition: AddCondition;
readonly andIndex: number;
readonly fieldPath: string;
readonly filterOptions: ResolvedFilterOptions;
readonly operator: Operator;
readonly orIndex: number;
readonly reducedFields: ReducedField[];
readonly removeCondition: RemoveCondition;
readonly RenderedFilter: React.ReactNode;
readonly updateCondition: UpdateCondition;
readonly value: Value;
};
import type { Operator, ResolvedFilterOptions } from 'payload';
import './index.scss';
export declare const Condition: React.FC<Props>;
//# sourceMappingURL=index.d.ts.map