Files
klz-cables.com/.pnpm-store/v10/files/2d/ceeacec15b320fe8958a8c50e83a81f343ed2c757805f777109224a32c9f28b8890bacd6e30812661f44820522795e665e80c88baa4b92ac402861e73ff4d1
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

16 lines
541 B
Plaintext

import React from 'react';
import type { FieldType, Options } from './types.js';
export type { FieldType, Options };
/**
* Context to allow providing useField value for fields directly, if managed outside the Form
*
* @experimental
*/
export declare const FieldContext: React.Context<FieldType<unknown>>;
/**
* Get and set the value of a form field.
*
* @see https://payloadcms.com/docs/admin/react-hooks#usefield
*/
export declare const useField: <TValue>(options?: Options) => FieldType<TValue>;
//# sourceMappingURL=index.d.ts.map