Files
klz-cables.com/.pnpm-store/v10/files/55/132ba99df6b508d71cefe4ca9ddb8fadf1c670b8d181fe7964561a88de76c51d646abcc8307e3421fc6669b581fc7fb1c9b94a62cfec65a03d8c4654224864
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.5 KiB
Plaintext

{"version":3,"sources":["../../../src/admin/fields/Upload.ts"],"sourcesContent":["import type { MarkOptional } from 'ts-essentials'\n\nimport type { UploadField, UploadFieldClient } from '../../fields/config/types.js'\nimport type { UploadFieldValidation } from '../../fields/validations.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 UploadFieldClientWithoutType = MarkOptional<UploadFieldClient, 'type'>\n\ntype UploadFieldBaseClientProps = {\n readonly path: string\n readonly validate?: UploadFieldValidation\n}\n\ntype UploadFieldBaseServerProps = Pick<FieldPaths, 'path'>\n\nexport type UploadFieldClientProps = ClientFieldBase<UploadFieldClientWithoutType> &\n UploadFieldBaseClientProps\n\nexport type UploadFieldServerProps = ServerFieldBase<UploadField, UploadFieldClientWithoutType> &\n UploadFieldBaseServerProps\n\nexport type UploadFieldServerComponent = FieldServerComponent<\n UploadField,\n UploadFieldClientWithoutType,\n UploadFieldBaseServerProps\n>\n\nexport type UploadFieldClientComponent = FieldClientComponent<\n UploadFieldClientWithoutType,\n UploadFieldBaseClientProps\n>\n\nexport type UploadFieldLabelServerComponent = FieldLabelServerComponent<\n UploadField,\n UploadFieldClientWithoutType\n>\n\nexport type UploadFieldLabelClientComponent =\n FieldLabelClientComponent<UploadFieldClientWithoutType>\n\nexport type UploadFieldDescriptionServerComponent = FieldDescriptionServerComponent<\n UploadField,\n UploadFieldClientWithoutType\n>\n\nexport type UploadFieldDescriptionClientComponent =\n FieldDescriptionClientComponent<UploadFieldClientWithoutType>\n\nexport type UploadFieldErrorServerComponent = FieldErrorServerComponent<\n UploadField,\n UploadFieldClientWithoutType\n>\n\nexport type UploadFieldErrorClientComponent =\n FieldErrorClientComponent<UploadFieldClientWithoutType>\n\nexport type UploadFieldDiffServerComponent = FieldDiffServerComponent<\n UploadField,\n UploadFieldClient\n>\n\nexport type UploadFieldDiffClientComponent = FieldDiffClientComponent<UploadFieldClient>\n"],"names":[],"mappings":"AA4EA,WAAwF"}