@orchestrator-ui/orchestrator-ui-components
Version:
Library of UI Components used to display the workflow orchestrator frontend
23 lines (19 loc) • 1.05 kB
text/typescript
export const DEFAULT_PAGE_SIZES = [5, 10, 15, 20, 25, 50, 100];
export const DEFAULT_PAGE_SIZE = 15;
export const PAGE_SIZES_INCLUDING_SHOW_ALL = [...DEFAULT_PAGE_SIZES, 0];
export const ACTIVE_PROCESSES_LIST_TABLE_LOCAL_STORAGE_KEY =
'activeProcessesListTable';
export const COMPLETED_PROCESSES_LIST_TABLE_LOCAL_STORAGE_KEY =
'completedProcessesListTable';
export const ACTIVE_TASKS_LIST_TABLE_LOCAL_STORAGE_KEY = 'activeTasksListTable';
export const COMPLETED_TASKS_LIST_TABLE_LOCAL_STORAGE_KEY =
'completedTasksListTable';
export const METADATA_RESOURCE_TYPES_TABLE_LOCAL_STORAGE_KEY =
'metadataResourceTypesTable';
export const METADATA_PRODUCT_BLOCKS_TABLE_LOCAL_STORAGE_KEY =
'metadataProductBlocksTable';
export const METADATA_PRODUCT_TABLE_LOCAL_STORAGE_KEY = 'metadataProductTable';
export const METADATA_WORKFLOWS_TABLE_LOCAL_STORAGE_KEY =
'metadataWorkflowsTable';
export const METADATA_TASKS_TABLE_LOCAL_STORAGE_KEY = 'metadataTasksTable';
export const SUBSCRIPTIONS_TABLE_LOCAL_STORAGE_KEY = 'subscriptionsTable';