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
1 line
1.3 KiB
Plaintext
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"} |