io-actions/app/blocks/shadows.js
2025-07-11 12:51:40 -04:00

23 lines
494 B
JavaScript

export const
singleLineTemplate = {
type: 'text_template',
inputs: { TEMPLATE: {
shadow: {
type: 'io_text',
fields: {
TEXT: ' '
}
}
}}
},
multilineLineTemplate = {
type: 'text_template',
inputs: { TEMPLATE: {
shadow: {
type: 'io_text_multiline',
fields: {
TEXT: " \n\n\n" // FIXME: code exporter doesn't expect newlines
}
}
}}
}