UNPKG

@nocobase/flow-engine

Version:

A standalone flow engine for NocoBase, managing workflows, models, and actions.

23 lines (22 loc) 1.58 kB
/** * This file is part of the NocoBase (R) project. * Copyright (c) 2020-2024 NocoBase Co., Ltd. * Authors: NocoBase Team. * * This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License. * For more information, please refer to: https://www.nocobase.com/agreement. */ export { BLOCK_GROUP_CONFIGS, BLOCK_TYPES, FLOW_ENGINE_NAMESPACE, MENU_KEYS, type BlockBuilderConfig, } from './constants'; export { escapeT, getT, tExpr } from './translation'; export { FlowExitException } from './exceptions'; export { defineAction } from './flow-definitions'; export { isInheritedFrom } from './inheritance'; export { resolveCreateModelOptions, resolveDefaultParams, resolveExpressions } from './params-resolvers'; export { compileUiSchema, resolveStepUiSchema, resolveUiMode } from './schema-utils'; export { setupRuntimeContextSteps } from './setupRuntimeContextSteps'; export { createCollectionContextMeta } from './createCollectionContextMeta'; export { buildRecordMeta, collectContextParamsForTemplate, createCurrentRecordMetaFactory, createRecordMetaFactory, extractUsedVariableNames, extractUsedVariablePaths, inferParentRecordRef, inferRecordRef, type RecordParamsBuilder, } from './variablesParams'; export { extractPropertyPath, formatPathToVariable, isVariableExpression } from './context'; export { clearAutoFlowError, getAutoFlowError, setAutoFlowError, type AutoFlowError } from './autoFlowError'; export { parsePathnameToViewParams, type ViewParam } from './parsePathnameToViewParams'; export { createSafeDocument, createSafeWindow } from './safeGlobals';