feat(editor): Add RAG starter template callouts experiment (#16282)

Co-authored-by: Charlie Kolb <charlie@n8n.io>
This commit is contained in:
Jaakko Husso
2025-06-13 17:45:30 +03:00
committed by GitHub
parent 30148df7f3
commit d0a313aa1c
27 changed files with 1032 additions and 24 deletions

View File

@@ -33,6 +33,32 @@ export const TEST_PARAMETERS: INodeProperties[] = [
},
],
},
{
displayName:
'Note: This is a notice with <a href="notice.n8n.io" target="_blank">notice link</a>',
name: 'testNotice',
type: 'notice',
default: '',
displayOptions: {
show: { '@version': [{ _cnd: { gte: 1.1 } }] },
},
},
{
displayName:
'Tip: This is a callout with <a href="callout.n8n.io" target="_blank">callout link</a>',
name: 'testCallout',
type: 'callout',
default: '',
displayOptions: {
show: { '@version': [{ _cnd: { gte: 1.1 } }] },
},
typeOptions: {
calloutAction: {
label: 'and action!',
type: 'openRagStarterTemplate',
},
},
},
];
export const FIXED_COLLECTION_PARAMETERS: INodeProperties[] = TEST_PARAMETERS.filter(