Files
klz-cables.com/.pnpm-store/v10/files/70/8cdc096acdad2bbef43730c838aef17791103bc162eabe82562a236054521f1e37b8ef940b77088dcc0f67473e5efc0c2b49538ae9e01611534b0b29be1469
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
877 B
Plaintext

import type { ClientFieldBase, FieldTypes, GenericDescriptionProps, GenericErrorProps, GenericLabelProps, HiddenFieldProps } from 'payload';
import type React from 'react';
import type { ConfirmPasswordFieldProps } from './ConfirmPassword/index.js';
export * from './shared/index.js';
export type FieldTypesComponents = {
[K in 'password' | FieldTypes]: React.FC<ClientFieldBase>;
} & {
confirmPassword: React.FC<ConfirmPasswordFieldProps>;
hidden: React.FC<HiddenFieldProps>;
};
export declare const fieldComponents: FieldTypesComponents;
export type FieldComponentsWithSlots = {
Description: React.FC<GenericDescriptionProps>;
Error: React.FC<GenericErrorProps>;
Label: React.FC<GenericLabelProps>;
RowLabel: React.FC;
} & FieldTypesComponents;
export declare const allFieldComponents: FieldComponentsWithSlots;
//# sourceMappingURL=index.d.ts.map