Files
klz-cables.com/.pnpm-store/v10/files/b2/38fd39886fb1014e09ba70b3c004614ec9ea23329b5de3c046e49c2e4c536e316bb9d6c268b954a356db4fdad4d76a91b39c8636ef00318232b759c5d28df0
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
1.3 KiB
Plaintext

{"version":3,"sources":["../../../src/admin/fields/UI.ts"],"sourcesContent":["import type { MarkOptional } from 'ts-essentials'\n\nimport type { UIField, UIFieldClient } from '../../fields/config/types.js'\nimport type {\n ClientFieldBase,\n FieldClientComponent,\n FieldDiffClientComponent,\n FieldDiffServerComponent,\n FieldPaths,\n FieldServerComponent,\n ServerFieldBase,\n} from '../types.js'\n\ntype UIFieldClientWithoutType = MarkOptional<UIFieldClient, 'type'>\n\ntype UIFieldBaseClientProps = {\n readonly path: string\n}\n\ntype UIFieldBaseServerProps = Pick<FieldPaths, 'path'>\n\nexport type UIFieldClientProps = ClientFieldBase<UIFieldClientWithoutType> & UIFieldBaseClientProps\n\nexport type UIFieldServerProps = ServerFieldBase<UIField, UIFieldClientWithoutType> &\n UIFieldBaseServerProps\n\nexport type UIFieldClientComponent = FieldClientComponent<\n UIFieldClientWithoutType,\n UIFieldBaseClientProps\n>\n\nexport type UIFieldServerComponent = FieldServerComponent<\n UIField,\n UIFieldClientWithoutType,\n UIFieldBaseServerProps\n>\n\nexport type UIFieldDiffServerComponent = FieldDiffServerComponent<UIField, UIFieldClient>\n\nexport type UIFieldDiffClientComponent = FieldDiffClientComponent<UIFieldClient>\n"],"names":[],"mappings":"AAuCA,WAAgF"}