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
19 lines
756 B
Plaintext
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 |