@univerjs/sheets-formula-ui
Formula editing UI for Univer Sheets.
TypeScript
import { UniverSheetsFormulaUIPlugin } from '@univerjs/sheets-formula-ui'univer.registerPlugin(UniverSheetsFormulaUIPlugin, IUniverSheetsFormulaUIConfig)Entry Points
- Facade:
@univerjs/sheets-formula-ui/facade - Locale:
@univerjs/sheets-formula-ui/locale/*
IUniverSheetsFormulaUIConfig
TypeScript
import type { Ctor } from '@univerjs/core'import type { BaseFunction, IFunctionInfo, IFunctionNames } from '@univerjs/engine-formula'import type { MenuConfig } from '@univerjs/ui'export interface IUniverSheetsFormulaUIConfig { menu?: MenuConfig notExecuteFormula?: boolean description?: IFunctionInfo[] function?: Array<[Ctor<BaseFunction>, IFunctionNames]> /** * The switch for the function screen tips display in the formula editor. * @default true */ functionScreenTips?: boolean}How is this guide?