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

{"version":3,"sources":["../../../src/admin/fields/Radio.ts"],"sourcesContent":["import type { MarkOptional } from 'ts-essentials'\n\nimport type { RadioField, RadioFieldClient } from '../../fields/config/types.js'\nimport type { RadioFieldValidation } 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 RadioFieldClientWithoutType = MarkOptional<RadioFieldClient, 'type'>\n\ntype RadioFieldBaseClientProps = {\n /**\n * Threaded through to the setValue function from the form context when the value changes\n */\n readonly disableModifyingForm?: boolean\n readonly onChange?: OnChange\n readonly path: string\n readonly validate?: RadioFieldValidation\n readonly value?: string\n}\n\ntype RadioFieldBaseServerProps = Pick<FieldPaths, 'path'>\n\nexport type RadioFieldClientProps = ClientFieldBase<RadioFieldClientWithoutType> &\n RadioFieldBaseClientProps\n\nexport type RadioFieldServerProps = RadioFieldBaseServerProps &\n ServerFieldBase<RadioField, RadioFieldClientWithoutType>\n\nexport type RadioFieldServerComponent = FieldServerComponent<\n RadioField,\n RadioFieldClientWithoutType,\n RadioFieldBaseServerProps\n>\n\nexport type RadioFieldClientComponent = FieldClientComponent<\n RadioFieldClientWithoutType,\n RadioFieldBaseClientProps\n>\n\ntype OnChange<T = string> = (value: T) => void\n\nexport type RadioFieldLabelServerComponent = FieldLabelServerComponent<\n RadioField,\n RadioFieldClientWithoutType\n>\n\nexport type RadioFieldLabelClientComponent = FieldLabelClientComponent<RadioFieldClientWithoutType>\n\nexport type RadioFieldDescriptionServerComponent = FieldDescriptionServerComponent<\n RadioField,\n RadioFieldClientWithoutType\n>\n\nexport type RadioFieldDescriptionClientComponent =\n FieldDescriptionClientComponent<RadioFieldClientWithoutType>\n\nexport type RadioFieldErrorServerComponent = FieldErrorServerComponent<\n RadioField,\n RadioFieldClientWithoutType\n>\n\nexport type RadioFieldErrorClientComponent = FieldErrorClientComponent<RadioFieldClientWithoutType>\n\nexport type RadioFieldDiffServerComponent = FieldDiffServerComponent<RadioField, RadioFieldClient>\n\nexport type RadioFieldDiffClientComponent = FieldDiffClientComponent<RadioFieldClient>\n"],"names":[],"mappings":"AA+EA,WAAsF"}