n8n/cypress
Elias Meire 39fa8d21bb
feat(editor): Add sections to create node panel (#7831)
This PR sets the stage for the node creator to handle sections within
subcategories. No visible changes result from this PR; the next PR will
define sections and assign nodes accordingly.

Sections are configurable in
`packages/editor-ui/src/components/Node/NodeCreator/viewsData.ts`:
```
{
	type: 'subcategory',
	key: FILES_SUBCATEGORY,
	category: CORE_NODES_CATEGORY,
	properties: {
		title: FILES_SUBCATEGORY,
		icon: 'file-alt',
		sections: [
			{
				key: 'popular',
				title: i18n.baseText('nodeCreator.sectionNames.popular'),
				items: ['n8n-nodes-base.readBinaryFiles', 'n8n-nodes-base.compression'],
			},
		],
	},
},
```

For example:
<img width="302" alt="image"
src="https://github.com/n8n-io/n8n/assets/8850410/74470c07-f4ea-4306-bd4a-8d33bd769b86">

---------

Co-authored-by: Michael Kret <michael.k@radency.com>
2023-12-04 10:02:07 +01:00
..
composables feat: Add AI tool building capabilities (#7336) 2023-11-29 12:13:55 +01:00
e2e feat(editor): Add sections to create node panel (#7831) 2023-12-04 10:02:07 +01:00
fixtures feat(editor): Open template credential setup from collection (#7882) 2023-11-30 14:09:12 +02:00
pages feat(editor): Open template credential setup from collection (#7882) 2023-11-30 14:09:12 +02:00
support feat(core): Update LLM applications building support (no-changelog) (#7710) 2023-11-28 16:47:28 +01:00
utils feat: Add AI tool building capabilities (#7336) 2023-11-29 12:13:55 +01:00
constants.ts feat: Add AI tool building capabilities (#7336) 2023-11-29 12:13:55 +01:00
tsconfig.json fix: Include cypress TypeScript types in /cypress folder (no-changelog) (#7746) 2023-11-20 09:26:25 +01:00
types.ts refactor: Format root-level dirs (no-changelog) (#4938) 2022-12-15 16:39:59 +01:00