fix: prepr

This commit is contained in:
Calum H. (IMB11)
2026-08-10 12:58:02 +01:00
parent eb5897b553
commit 7deb7e9ef1
10 changed files with 30 additions and 50 deletions
@@ -259,17 +259,9 @@ export interface NodePropsContext {
toggleSetValue?: (value: string) => void
}
export type BuiltinRendererKey =
| 'action'
| 'checkbox'
| 'toggle'
| 'dropdown'
| 'text'
| 'markdown'
export type BuiltinRendererKey = 'action' | 'checkbox' | 'toggle' | 'dropdown' | 'text' | 'markdown'
export type NodeRendererDescriptor =
| { type: BuiltinRendererKey }
| { type: 'custom'; key: string }
export type NodeRendererDescriptor = { type: BuiltinRendererKey } | { type: 'custom'; key: string }
export interface Renderable {
_renderer: NodeRendererDescriptor
@@ -12,8 +12,8 @@ import {
withNoneLabel,
withOnClick,
withPriority,
withRequired,
withRenderer,
withRequired,
withSelectable,
withShown,
withStageMeta,