ui-nyla/src/components/FlowEditor/nodes/shared/constants.ts
ValueOn AG 7eb305f910
Some checks failed
Deploy Nyla Frontend to Integration / deploy (push) Failing after 56s
cp adapted to 2026 poweron
2026-06-09 09:53:38 +02:00

24 lines
481 B
TypeScript

// Copyright (c) 2026 PowerOn AG
// All rights reserved.
/**
* Workflow Flow Editor - Constants
* Category ordering for node sidebar.
*/
/** Node type IDs hidden from the sidebar (empty = show all registered types) */
export const HIDDEN_NODE_IDS = new Set<string>();
/** Default category display order */
export const CATEGORY_ORDER = [
'start',
'input',
'flow',
'data',
'context',
'ai',
'file',
'email',
'sharepoint',
'clickup',
'trustee',
] as const;