Files
klz-cables.com/.pnpm-store/v10/files/9d/be30608030d7b53a5be3763bbf9cd948c778b8afbd0ffdf7e6288536199667a5bff636a129b09fff74d32ba0d95c23a7c17aff36f3cea53b32aba1ea2d2dc8
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

1 line
2.2 KiB
Plaintext

{"version":3,"sources":["../../../src/admin/fields/Join.ts"],"sourcesContent":["import type { MarkOptional } from 'ts-essentials'\n\nimport type { JoinField, JoinFieldClient } from '../../fields/config/types.js'\nimport type { FieldErrorClientComponent, FieldErrorServerComponent } from '../forms/Error.js'\nimport type {\n ClientFieldBase,\n FieldClientComponent,\n FieldPaths,\n FieldServerComponent,\n ServerFieldBase,\n} from '../forms/Field.js'\nimport type {\n FieldDescriptionClientComponent,\n FieldDescriptionServerComponent,\n FieldDiffClientComponent,\n FieldDiffServerComponent,\n FieldLabelClientComponent,\n FieldLabelServerComponent,\n} from '../types.js'\n\ntype JoinFieldClientWithoutType = MarkOptional<JoinFieldClient, 'type'>\n\ntype JoinFieldBaseClientProps = {\n readonly path: string\n}\n\ntype JoinFieldBaseServerProps = Pick<FieldPaths, 'path'>\n\nexport type JoinFieldClientProps = ClientFieldBase<JoinFieldClientWithoutType> &\n JoinFieldBaseClientProps\n\nexport type JoinFieldServerProps = JoinFieldBaseServerProps & ServerFieldBase<JoinField>\n\nexport type JoinFieldServerComponent = FieldServerComponent<\n JoinField,\n JoinFieldClientWithoutType,\n JoinFieldBaseServerProps\n>\n\nexport type JoinFieldClientComponent = FieldClientComponent<\n JoinFieldClientWithoutType,\n JoinFieldBaseClientProps\n>\n\nexport type JoinFieldLabelServerComponent = FieldLabelServerComponent<JoinField>\n\nexport type JoinFieldLabelClientComponent = FieldLabelClientComponent<JoinFieldClientWithoutType>\n\nexport type JoinFieldDescriptionServerComponent = FieldDescriptionServerComponent<\n JoinField,\n JoinFieldClientWithoutType\n>\n\nexport type JoinFieldDescriptionClientComponent =\n FieldDescriptionClientComponent<JoinFieldClientWithoutType>\n\nexport type JoinFieldErrorServerComponent = FieldErrorServerComponent<\n JoinField,\n JoinFieldClientWithoutType\n>\n\nexport type JoinFieldErrorClientComponent = FieldErrorClientComponent<JoinFieldClientWithoutType>\n\nexport type JoinFieldDiffServerComponent = FieldDiffServerComponent<JoinField, JoinFieldClient>\n\nexport type JoinFieldDiffClientComponent = FieldDiffClientComponent<JoinFieldClient>\n"],"names":[],"mappings":"AAiEA,WAAoF"}