io-actions/app/blocks/text/text.js
2025-07-22 21:01:59 -04:00

27 lines
397 B
JavaScript

export default {
type: "io_text",
name: "Text",
colour: 180,
description: "A String of text",
connections: {
mode: "value",
output: [ "expression", "string" ],
},
template: `"%TEXT`,
fields: {
TEXT: {
text: ''
}
},
generators: {
json: block => {
const text = block.getFieldValue('TEXT')
return [ JSON.stringify(text), 0 ]
}
}
}