Files
klz-cables.com/.pnpm-store/v10/files/35/05ac1d1ec478f118d55241e194b3942eab22c107c04322eb8810b31ba6d888ad75e13b92667feb0abae3e2a1d844f399abdae10532eea0c8f3e934815811cb
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

26 lines
2.2 KiB
Plaintext

import type { MarkOptional } from 'ts-essentials';
import type { PointField, PointFieldClient } from '../../fields/config/types.js';
import type { PointFieldValidation } from '../../fields/validations.js';
import type { FieldErrorClientComponent, FieldErrorServerComponent } from '../forms/Error.js';
import type { ClientFieldBase, FieldClientComponent, FieldPaths, FieldServerComponent, ServerFieldBase } from '../forms/Field.js';
import type { FieldDescriptionClientComponent, FieldDescriptionServerComponent, FieldDiffClientComponent, FieldDiffServerComponent, FieldLabelClientComponent, FieldLabelServerComponent } from '../types.js';
type PointFieldClientWithoutType = MarkOptional<PointFieldClient, 'type'>;
type PointFieldBaseClientProps = {
readonly path: string;
readonly validate?: PointFieldValidation;
};
type PointFieldBaseServerProps = Pick<FieldPaths, 'path'>;
export type PointFieldClientProps = ClientFieldBase<PointFieldClientWithoutType> & PointFieldBaseClientProps;
export type PointFieldServerProps = PointFieldBaseServerProps & ServerFieldBase<PointField, PointFieldClientWithoutType>;
export type PointFieldServerComponent = FieldServerComponent<PointField, PointFieldClientWithoutType, PointFieldBaseServerProps>;
export type PointFieldClientComponent = FieldClientComponent<PointFieldClientWithoutType, PointFieldBaseClientProps>;
export type PointFieldLabelServerComponent = FieldLabelServerComponent<PointField, PointFieldClientWithoutType>;
export type PointFieldLabelClientComponent = FieldLabelClientComponent<PointFieldClientWithoutType>;
export type PointFieldDescriptionServerComponent = FieldDescriptionServerComponent<PointField, PointFieldClientWithoutType>;
export type PointFieldDescriptionClientComponent = FieldDescriptionClientComponent<PointFieldClientWithoutType>;
export type PointFieldErrorServerComponent = FieldErrorServerComponent<PointField, PointFieldClientWithoutType>;
export type PointFieldErrorClientComponent = FieldErrorClientComponent<PointFieldClientWithoutType>;
export type PointFieldDiffServerComponent = FieldDiffServerComponent<PointField, PointFieldClient>;
export type PointFieldDiffClientComponent = FieldDiffClientComponent<PointFieldClient>;
export {};
//# sourceMappingURL=Point.d.ts.map