Files
klz-cables.com/.pnpm-store/v10/files/be/1ec33b00ac6271a9988d9e6290d12ed8efc8eb407c6e8eeb6d4e51ca7a4f72d5662ce4ce0e6013b91413771bf762a037140dcd2bdc73e8cf9b68a3c1b7d951
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

15 lines
735 B
Plaintext

import type { Data, FormState } from 'payload';
type ReturnType = {
data: Data;
valid: boolean;
};
/**
* Reduce flattened form fields (Fields) to just map to the respective values instead of the full FormField object
*
* @param unflatten This also unflattens the data if `unflatten` is true. The unflattened data should match the original data structure
* @param ignoreDisableFormData - if true, will include fields that have `disableFormData` set to true, for example, blocks or arrays fields.
*
*/
export declare const reduceFieldsToValuesWithValidation: (fields: FormState, unflatten?: boolean, ignoreDisableFormData?: boolean) => ReturnType;
export {};
//# sourceMappingURL=reduceFieldsToValuesWithValidation.d.ts.map