Some checks failed
Deploy Nyla Frontend to Integration / deploy (push) Failing after 56s
24 lines
481 B
TypeScript
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;
|