Files
klz-cables.com/.pnpm-store/v10/files/15/267967a1e04c033619e8f0ec8303badcb75ff61625756194bbcd00775fdb3d4f5033299c612eef6fc36b5c71cc70d50f7bcfeb95cc1fa5cbde644958161a27
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

20 lines
1.9 KiB
Plaintext

import type { MarkOptional } from 'ts-essentials';
import type { RowField, RowFieldClient } from '../../fields/config/types.js';
import type { ClientComponentProps, ClientFieldBase, FieldClientComponent, FieldPaths, FieldServerComponent, ServerFieldBase } from '../forms/Field.js';
import type { FieldDescriptionClientComponent, FieldDescriptionServerComponent, FieldDiffClientComponent, FieldDiffServerComponent, FieldErrorClientComponent, FieldErrorServerComponent, FieldLabelClientComponent, FieldLabelServerComponent } from '../types.js';
type RowFieldClientWithoutType = MarkOptional<RowFieldClient, 'type'>;
type RowFieldBaseClientProps = Omit<FieldPaths, 'path'> & Pick<ClientComponentProps, 'forceRender'>;
export type RowFieldClientProps = Omit<ClientFieldBase<RowFieldClientWithoutType>, 'path'> & RowFieldBaseClientProps;
export type RowFieldServerProps = ServerFieldBase<RowField, RowFieldClientWithoutType>;
export type RowFieldServerComponent = FieldServerComponent<RowField, RowFieldClientWithoutType>;
export type RowFieldClientComponent = FieldClientComponent<RowFieldClientWithoutType, RowFieldBaseClientProps>;
export type RowFieldLabelServerComponent = FieldLabelServerComponent<RowField, RowFieldClientWithoutType>;
export type RowFieldLabelClientComponent = FieldLabelClientComponent<RowFieldClientWithoutType>;
export type RowFieldDescriptionServerComponent = FieldDescriptionServerComponent<RowField, RowFieldClientWithoutType>;
export type RowFieldDescriptionClientComponent = FieldDescriptionClientComponent<RowFieldClientWithoutType>;
export type RowFieldErrorServerComponent = FieldErrorServerComponent<RowField, RowFieldClientWithoutType>;
export type RowFieldErrorClientComponent = FieldErrorClientComponent<RowFieldClientWithoutType>;
export type RowFieldDiffServerComponent = FieldDiffServerComponent<RowField, RowFieldClient>;
export type RowFieldDiffClientComponent = FieldDiffClientComponent<RowFieldClient>;
export {};
//# sourceMappingURL=Row.d.ts.map