Files
klz-cables.com/.pnpm-store/v10/files/ae/fa8fbff5780c6307a8816102ab1d8c8ca2a2e7af4062223a31eb190310c2ad102819e55b6159230e99cfd9e447b63c133af523801185f9895626ccd05daced
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
778 B
Plaintext

import type { Data } from '../admin/types.js';
import type { Field, TabAsField } from '../fields/config/types.js';
import type { SelectMode, SelectType } from '../types/index.js';
/**
* This is used for the Select API to strip out fields that are not selected.
* It will mutate the given data object and determine if your recursive function should continue to run.
* It is used within the `afterRead` hook as well as `getFormState`.
* @returns boolean - whether or not the recursive function should continue
*/
export declare const stripUnselectedFields: ({ field, select, selectMode, siblingDoc, }: {
field: Field | TabAsField;
select: SelectType;
selectMode: SelectMode;
siblingDoc: Data;
}) => boolean;
//# sourceMappingURL=stripUnselectedFields.d.ts.map