Files
klz-cables.com/.pnpm-store/v10/files/fc/9cc2439d0972c47ecb72b00904c8bdb22795487251f781ab55b8887d35278b00d3a86a7920d3e508b51bb6efb373b102820af585be67e744fbf27b361ab3c5
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
826 B
Plaintext

import type { StaticLabel } from 'payload';
import React from 'react';
export type CheckboxInputProps = {
readonly AfterInput?: React.ReactNode;
readonly BeforeInput?: React.ReactNode;
readonly checked?: boolean;
readonly className?: string;
readonly id?: string;
readonly inputRef?: React.RefObject<HTMLInputElement | null>;
readonly Label?: React.ReactNode;
readonly label?: StaticLabel;
readonly localized?: boolean;
readonly name?: string;
readonly onToggle: (event: React.ChangeEvent<HTMLInputElement>) => void;
readonly partialChecked?: boolean;
readonly readOnly?: boolean;
readonly required?: boolean;
};
export declare const inputBaseClass = "checkbox-input";
export declare const CheckboxInput: React.FC<CheckboxInputProps>;
//# sourceMappingURL=Input.d.ts.map