Files
klz-cables.com/.pnpm-store/v10/files/fa/f159232fb87f01d668488a97b7927a1e3277187053860d463426f8d9a662000f73686ad8ffd0c66ad6bc4ca9858a614428116e378c73abf50df67c468111a1
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
1.1 KiB
Plaintext

import type { MarkOptional } from 'ts-essentials';
import type { UIField, UIFieldClient } from '../../fields/config/types.js';
import type { ClientFieldBase, FieldClientComponent, FieldDiffClientComponent, FieldDiffServerComponent, FieldPaths, FieldServerComponent, ServerFieldBase } from '../types.js';
type UIFieldClientWithoutType = MarkOptional<UIFieldClient, 'type'>;
type UIFieldBaseClientProps = {
readonly path: string;
};
type UIFieldBaseServerProps = Pick<FieldPaths, 'path'>;
export type UIFieldClientProps = ClientFieldBase<UIFieldClientWithoutType> & UIFieldBaseClientProps;
export type UIFieldServerProps = ServerFieldBase<UIField, UIFieldClientWithoutType> & UIFieldBaseServerProps;
export type UIFieldClientComponent = FieldClientComponent<UIFieldClientWithoutType, UIFieldBaseClientProps>;
export type UIFieldServerComponent = FieldServerComponent<UIField, UIFieldClientWithoutType, UIFieldBaseServerProps>;
export type UIFieldDiffServerComponent = FieldDiffServerComponent<UIField, UIFieldClient>;
export type UIFieldDiffClientComponent = FieldDiffClientComponent<UIFieldClient>;
export {};
//# sourceMappingURL=UI.d.ts.map