UNPKG

@cognigy/rest-api-client

Version:

Cognigy REST-Client

35 lines 847 B
/* Custom modules */ import { createNodeDescriptor } from "../createNodeDescriptor"; export const PLACEHOLDER = createNodeDescriptor({ type: "placeholder", defaultLabel: "Placeholder", summary: "UI__NODE_EDITOR__PLACEHOLDER__SUMMARY", behavior: { stopping: false, }, appearance: { showIcon: false, color: "#CCC", }, fields: [ { key: "text", label: "UI__NODE_EDITOR__PLACEHOLDER__FIELDS__TEXT__LABEL", type: "text", }, { key: "data", label: "UI__NODE_EDITOR__PLACEHOLDER__FIELDS__DATA__LABEL", type: "json", }, ], constraints: { placement: {}, }, tags: [], preview: { key: "text", type: "text", } }); //# sourceMappingURL=placeholder.js.map