@univerjs/engine-formula 0.17.0 → 0.18.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/cjs/facade.js +1 -1
- package/lib/cjs/index.js +1 -1
- package/lib/es/facade.js +1 -656
- package/lib/es/index.js +1 -33445
- package/lib/facade.js +1 -656
- package/lib/index.js +1 -33445
- package/lib/types/basics/cache-lru.d.ts +15 -0
- package/lib/types/basics/calculate.d.ts +15 -0
- package/lib/types/basics/common.d.ts +18 -3
- package/lib/types/basics/database.d.ts +17 -1
- package/lib/types/basics/date.d.ts +17 -1
- package/lib/types/basics/dirty.d.ts +16 -1
- package/lib/types/basics/financial.d.ts +15 -0
- package/lib/types/basics/format.d.ts +16 -1
- package/lib/types/basics/function.d.ts +32 -17
- package/lib/types/basics/inverted-index-cache.d.ts +16 -1
- package/lib/types/basics/is-null-cell.d.ts +16 -1
- package/lib/types/basics/match-token.d.ts +15 -0
- package/lib/types/basics/runtime.d.ts +16 -1
- package/lib/types/basics/statistical.d.ts +20 -4
- package/lib/types/commands/mutations/formula.mutation.d.ts +16 -1
- package/lib/types/commands/mutations/register-function.mutation.d.ts +16 -1
- package/lib/types/commands/mutations/set-array-formula-data.mutation.d.ts +17 -2
- package/lib/types/commands/mutations/set-defined-name.mutation.d.ts +16 -1
- package/lib/types/commands/mutations/set-feature-calculation.mutation.d.ts +17 -2
- package/lib/types/commands/mutations/set-formula-calculation.mutation.d.ts +20 -5
- package/lib/types/commands/mutations/set-formula-data.mutation.d.ts +17 -2
- package/lib/types/commands/mutations/set-image-formula-data.mutation.d.ts +17 -2
- package/lib/types/commands/mutations/set-other-formula.mutation.d.ts +17 -2
- package/lib/types/commands/mutations/set-super-table.mutation.d.ts +18 -3
- package/lib/types/config/config.d.ts +18 -3
- package/lib/types/controllers/calculate.controller.d.ts +15 -0
- package/lib/types/controllers/computing-status.controller.d.ts +15 -0
- package/lib/types/controllers/formula.controller.d.ts +15 -0
- package/lib/types/controllers/set-dependency.controller.d.ts +15 -0
- package/lib/types/controllers/set-feature-calculation.controller.d.ts +15 -0
- package/lib/types/controllers/set-other-formula.controller.d.ts +15 -0
- package/lib/types/controllers/set-super-table.controller.d.ts +15 -0
- package/lib/types/engine/analysis/lexer-node.d.ts +17 -2
- package/lib/types/engine/analysis/lexer-tree-builder.d.ts +21 -5
- package/lib/types/engine/analysis/lexer.d.ts +16 -1
- package/lib/types/engine/analysis/parser.d.ts +18 -2
- package/lib/types/engine/ast-node/ast-root-node.d.ts +15 -0
- package/lib/types/engine/ast-node/base-ast-node-factory.d.ts +16 -1
- package/lib/types/engine/ast-node/base-ast-node.d.ts +18 -3
- package/lib/types/engine/ast-node/function-node.d.ts +17 -2
- package/lib/types/engine/ast-node/lambda-node.d.ts +15 -0
- package/lib/types/engine/ast-node/lambda-parameter-node.d.ts +17 -1
- package/lib/types/engine/ast-node/null-node.d.ts +15 -0
- package/lib/types/engine/ast-node/operator-node.d.ts +16 -1
- package/lib/types/engine/ast-node/prefix-node.d.ts +17 -2
- package/lib/types/engine/ast-node/reference-node.d.ts +15 -0
- package/lib/types/engine/ast-node/suffix-node.d.ts +16 -1
- package/lib/types/engine/ast-node/union-node.d.ts +15 -0
- package/lib/types/engine/ast-node/value-node.d.ts +15 -0
- package/lib/types/engine/dependency/dependency-tree.d.ts +20 -5
- package/lib/types/engine/dependency/formula-dependency.d.ts +27 -9
- package/lib/types/engine/interpreter/interpreter.d.ts +21 -5
- package/lib/types/engine/reference-object/base-reference-object.d.ts +25 -9
- package/lib/types/engine/reference-object/cell-reference-object.d.ts +16 -1
- package/lib/types/engine/reference-object/column-reference-object.d.ts +15 -0
- package/lib/types/engine/reference-object/multi-area-reference-object.d.ts +21 -6
- package/lib/types/engine/reference-object/range-reference-object.d.ts +16 -1
- package/lib/types/engine/reference-object/row-reference-object.d.ts +15 -0
- package/lib/types/engine/reference-object/table-reference-object.d.ts +18 -2
- package/lib/types/engine/utils/array-object.d.ts +16 -1
- package/lib/types/engine/utils/ast-node-tool.d.ts +17 -2
- package/lib/types/engine/utils/cell.d.ts +18 -3
- package/lib/types/engine/utils/check-variant-error.d.ts +16 -1
- package/lib/types/engine/utils/compare.d.ts +15 -0
- package/lib/types/engine/utils/function-definition.d.ts +15 -0
- package/lib/types/engine/utils/generate-ast-node.d.ts +21 -6
- package/lib/types/engine/utils/get-runtime-feature-cell.d.ts +17 -2
- package/lib/types/engine/utils/node-type.d.ts +19 -4
- package/lib/types/engine/utils/numfmt-kit.d.ts +17 -1
- package/lib/types/engine/utils/object-compare.d.ts +17 -2
- package/lib/types/engine/utils/prefix-handler.d.ts +18 -3
- package/lib/types/engine/utils/r1c1-reference.d.ts +16 -1
- package/lib/types/engine/utils/reference-cache.d.ts +16 -1
- package/lib/types/engine/utils/reference.d.ts +17 -1
- package/lib/types/engine/utils/sequence.d.ts +16 -1
- package/lib/types/engine/utils/update-lambda-statement.d.ts +16 -1
- package/lib/types/engine/utils/value-object.d.ts +19 -3
- package/lib/types/engine/value-object/array-value-object.d.ts +18 -2
- package/lib/types/engine/value-object/base-value-object.d.ts +16 -1
- package/lib/types/engine/value-object/cube-value-object.d.ts +16 -1
- package/lib/types/engine/value-object/lambda-value-object.d.ts +21 -5
- package/lib/types/engine/value-object/primitive-object.d.ts +15 -0
- package/lib/types/facade/f-formula.d.ts +19 -2
- package/lib/types/facade/f-univer.d.ts +15 -0
- package/lib/types/functions/array/array-constrain/index.d.ts +16 -1
- package/lib/types/functions/array/flatten/index.d.ts +16 -1
- package/lib/types/functions/array/function-map.d.ts +15 -0
- package/lib/types/functions/base-function.d.ts +27 -10
- package/lib/types/functions/column-like-functions.d.ts +16 -1
- package/lib/types/functions/compatibility/betadist/index.d.ts +16 -1
- package/lib/types/functions/compatibility/function-map.d.ts +15 -0
- package/lib/types/functions/compatibility/hypgeomdist/index.d.ts +16 -1
- package/lib/types/functions/compatibility/lognormdist/index.d.ts +16 -1
- package/lib/types/functions/compatibility/negbinomdist/index.d.ts +16 -1
- package/lib/types/functions/compatibility/normsdist/index.d.ts +16 -1
- package/lib/types/functions/compatibility/rank/index.d.ts +17 -2
- package/lib/types/functions/compatibility/tdist/index.d.ts +16 -1
- package/lib/types/functions/custom-function.d.ts +15 -0
- package/lib/types/functions/database/daverage/index.d.ts +17 -1
- package/lib/types/functions/database/dcount/index.d.ts +16 -1
- package/lib/types/functions/database/dcounta/index.d.ts +16 -1
- package/lib/types/functions/database/dget/index.d.ts +16 -1
- package/lib/types/functions/database/dmax/index.d.ts +16 -1
- package/lib/types/functions/database/dmin/index.d.ts +16 -1
- package/lib/types/functions/database/dproduct/index.d.ts +16 -1
- package/lib/types/functions/database/dstdev/index.d.ts +17 -1
- package/lib/types/functions/database/dstdevp/index.d.ts +17 -1
- package/lib/types/functions/database/dsum/index.d.ts +16 -1
- package/lib/types/functions/database/dvar/index.d.ts +17 -1
- package/lib/types/functions/database/dvarp/index.d.ts +17 -1
- package/lib/types/functions/database/function-map.d.ts +15 -0
- package/lib/types/functions/date/date/index.d.ts +16 -1
- package/lib/types/functions/date/datedif/index.d.ts +16 -1
- package/lib/types/functions/date/datevalue/index.d.ts +16 -1
- package/lib/types/functions/date/day/index.d.ts +16 -1
- package/lib/types/functions/date/days/index.d.ts +16 -1
- package/lib/types/functions/date/days360/index.d.ts +16 -1
- package/lib/types/functions/date/edate/index.d.ts +16 -1
- package/lib/types/functions/date/eomonth/index.d.ts +16 -1
- package/lib/types/functions/date/epochtodate/index.d.ts +17 -2
- package/lib/types/functions/date/function-map.d.ts +15 -0
- package/lib/types/functions/date/hour/index.d.ts +16 -1
- package/lib/types/functions/date/isoweeknum/index.d.ts +16 -1
- package/lib/types/functions/date/minute/index.d.ts +16 -1
- package/lib/types/functions/date/month/index.d.ts +16 -1
- package/lib/types/functions/date/networkdays/index.d.ts +16 -1
- package/lib/types/functions/date/networkdays-intl/index.d.ts +16 -1
- package/lib/types/functions/date/now/index.d.ts +15 -0
- package/lib/types/functions/date/second/index.d.ts +16 -1
- package/lib/types/functions/date/time/index.d.ts +16 -1
- package/lib/types/functions/date/timevalue/index.d.ts +16 -1
- package/lib/types/functions/date/to-date/index.d.ts +17 -2
- package/lib/types/functions/date/today/index.d.ts +15 -0
- package/lib/types/functions/date/weekday/index.d.ts +16 -1
- package/lib/types/functions/date/weeknum/index.d.ts +16 -1
- package/lib/types/functions/date/workday/index.d.ts +16 -1
- package/lib/types/functions/date/workday-intl/index.d.ts +16 -1
- package/lib/types/functions/date/year/index.d.ts +16 -1
- package/lib/types/functions/date/yearfrac/index.d.ts +16 -1
- package/lib/types/functions/engineering/besseli/index.d.ts +16 -1
- package/lib/types/functions/engineering/besselj/index.d.ts +16 -1
- package/lib/types/functions/engineering/besselk/index.d.ts +16 -1
- package/lib/types/functions/engineering/bessely/index.d.ts +16 -1
- package/lib/types/functions/engineering/bin2dec/index.d.ts +16 -1
- package/lib/types/functions/engineering/bin2hex/index.d.ts +16 -1
- package/lib/types/functions/engineering/bin2oct/index.d.ts +16 -1
- package/lib/types/functions/engineering/bitand/index.d.ts +16 -1
- package/lib/types/functions/engineering/bitlshift/index.d.ts +16 -1
- package/lib/types/functions/engineering/bitor/index.d.ts +16 -1
- package/lib/types/functions/engineering/bitrshift/index.d.ts +16 -1
- package/lib/types/functions/engineering/bitxor/index.d.ts +16 -1
- package/lib/types/functions/engineering/complex/index.d.ts +16 -1
- package/lib/types/functions/engineering/convert/index.d.ts +16 -1
- package/lib/types/functions/engineering/dec2bin/index.d.ts +16 -1
- package/lib/types/functions/engineering/dec2hex/index.d.ts +16 -1
- package/lib/types/functions/engineering/dec2oct/index.d.ts +16 -1
- package/lib/types/functions/engineering/delta/index.d.ts +16 -1
- package/lib/types/functions/engineering/erf/index.d.ts +16 -1
- package/lib/types/functions/engineering/erf-precise/index.d.ts +16 -1
- package/lib/types/functions/engineering/erfc/index.d.ts +16 -1
- package/lib/types/functions/engineering/erfc-precise/index.d.ts +16 -1
- package/lib/types/functions/engineering/function-map.d.ts +15 -0
- package/lib/types/functions/engineering/gestep/index.d.ts +16 -1
- package/lib/types/functions/engineering/hex2bin/index.d.ts +16 -1
- package/lib/types/functions/engineering/hex2dec/index.d.ts +16 -1
- package/lib/types/functions/engineering/hex2oct/index.d.ts +16 -1
- package/lib/types/functions/engineering/imabs/index.d.ts +16 -1
- package/lib/types/functions/engineering/imaginary/index.d.ts +16 -1
- package/lib/types/functions/engineering/imargument/index.d.ts +16 -1
- package/lib/types/functions/engineering/imconjugate/index.d.ts +16 -1
- package/lib/types/functions/engineering/imcos/index.d.ts +16 -1
- package/lib/types/functions/engineering/imcosh/index.d.ts +16 -1
- package/lib/types/functions/engineering/imcot/index.d.ts +16 -1
- package/lib/types/functions/engineering/imcoth/index.d.ts +16 -1
- package/lib/types/functions/engineering/imcsc/index.d.ts +16 -1
- package/lib/types/functions/engineering/imcsch/index.d.ts +16 -1
- package/lib/types/functions/engineering/imdiv/index.d.ts +16 -1
- package/lib/types/functions/engineering/imexp/index.d.ts +16 -1
- package/lib/types/functions/engineering/imln/index.d.ts +16 -1
- package/lib/types/functions/engineering/imlog/index.d.ts +16 -1
- package/lib/types/functions/engineering/imlog10/index.d.ts +16 -1
- package/lib/types/functions/engineering/imlog2/index.d.ts +16 -1
- package/lib/types/functions/engineering/impower/index.d.ts +16 -1
- package/lib/types/functions/engineering/improduct/index.d.ts +16 -1
- package/lib/types/functions/engineering/imreal/index.d.ts +16 -1
- package/lib/types/functions/engineering/imsec/index.d.ts +16 -1
- package/lib/types/functions/engineering/imsech/index.d.ts +16 -1
- package/lib/types/functions/engineering/imsin/index.d.ts +16 -1
- package/lib/types/functions/engineering/imsinh/index.d.ts +16 -1
- package/lib/types/functions/engineering/imsqrt/index.d.ts +16 -1
- package/lib/types/functions/engineering/imsub/index.d.ts +16 -1
- package/lib/types/functions/engineering/imsum/index.d.ts +16 -1
- package/lib/types/functions/engineering/imtan/index.d.ts +16 -1
- package/lib/types/functions/engineering/imtanh/index.d.ts +16 -1
- package/lib/types/functions/engineering/oct2bin/index.d.ts +16 -1
- package/lib/types/functions/engineering/oct2dec/index.d.ts +16 -1
- package/lib/types/functions/engineering/oct2hex/index.d.ts +16 -1
- package/lib/types/functions/financial/accrint/index.d.ts +16 -1
- package/lib/types/functions/financial/accrintm/index.d.ts +16 -1
- package/lib/types/functions/financial/amorlinc/index.d.ts +16 -1
- package/lib/types/functions/financial/coupdaybs/index.d.ts +16 -1
- package/lib/types/functions/financial/coupdays/index.d.ts +16 -1
- package/lib/types/functions/financial/coupdaysnc/index.d.ts +16 -1
- package/lib/types/functions/financial/coupncd/index.d.ts +16 -1
- package/lib/types/functions/financial/coupnum/index.d.ts +16 -1
- package/lib/types/functions/financial/couppcd/index.d.ts +16 -1
- package/lib/types/functions/financial/cumipmt/index.d.ts +16 -1
- package/lib/types/functions/financial/cumprinc/index.d.ts +16 -1
- package/lib/types/functions/financial/db/index.d.ts +16 -1
- package/lib/types/functions/financial/ddb/index.d.ts +16 -1
- package/lib/types/functions/financial/disc/index.d.ts +16 -1
- package/lib/types/functions/financial/dollarde/index.d.ts +16 -1
- package/lib/types/functions/financial/dollarfr/index.d.ts +16 -1
- package/lib/types/functions/financial/duration/index.d.ts +16 -1
- package/lib/types/functions/financial/effect/index.d.ts +16 -1
- package/lib/types/functions/financial/function-map.d.ts +15 -0
- package/lib/types/functions/financial/fv/index.d.ts +16 -1
- package/lib/types/functions/financial/fvschedule/index.d.ts +16 -1
- package/lib/types/functions/financial/intrate/index.d.ts +16 -1
- package/lib/types/functions/financial/ipmt/index.d.ts +16 -1
- package/lib/types/functions/financial/irr/index.d.ts +16 -1
- package/lib/types/functions/financial/ispmt/index.d.ts +16 -1
- package/lib/types/functions/financial/mduration/index.d.ts +16 -1
- package/lib/types/functions/financial/mirr/index.d.ts +16 -1
- package/lib/types/functions/financial/nominal/index.d.ts +16 -1
- package/lib/types/functions/financial/nper/index.d.ts +16 -1
- package/lib/types/functions/financial/npv/index.d.ts +16 -1
- package/lib/types/functions/financial/oddfprice/index.d.ts +16 -1
- package/lib/types/functions/financial/oddfyield/index.d.ts +16 -1
- package/lib/types/functions/financial/oddlprice/index.d.ts +16 -1
- package/lib/types/functions/financial/oddlyield/index.d.ts +16 -1
- package/lib/types/functions/financial/pduration/index.d.ts +16 -1
- package/lib/types/functions/financial/pmt/index.d.ts +16 -1
- package/lib/types/functions/financial/ppmt/index.d.ts +16 -1
- package/lib/types/functions/financial/price/index.d.ts +16 -1
- package/lib/types/functions/financial/pricedisc/index.d.ts +16 -1
- package/lib/types/functions/financial/pricemat/index.d.ts +16 -1
- package/lib/types/functions/financial/pv/index.d.ts +16 -1
- package/lib/types/functions/financial/rate/index.d.ts +16 -1
- package/lib/types/functions/financial/received/index.d.ts +16 -1
- package/lib/types/functions/financial/rri/index.d.ts +16 -1
- package/lib/types/functions/financial/sln/index.d.ts +16 -1
- package/lib/types/functions/financial/syd/index.d.ts +16 -1
- package/lib/types/functions/financial/tbilleq/index.d.ts +16 -1
- package/lib/types/functions/financial/tbillprice/index.d.ts +16 -1
- package/lib/types/functions/financial/tbillyield/index.d.ts +16 -1
- package/lib/types/functions/financial/vdb/index.d.ts +16 -1
- package/lib/types/functions/financial/xirr/index.d.ts +16 -1
- package/lib/types/functions/financial/xnpv/index.d.ts +16 -1
- package/lib/types/functions/financial/yield/index.d.ts +16 -1
- package/lib/types/functions/financial/yielddisc/index.d.ts +16 -1
- package/lib/types/functions/financial/yieldmat/index.d.ts +16 -1
- package/lib/types/functions/information/cell/index.d.ts +16 -1
- package/lib/types/functions/information/error-type/index.d.ts +16 -1
- package/lib/types/functions/information/function-map.d.ts +15 -0
- package/lib/types/functions/information/isbetween/index.d.ts +16 -1
- package/lib/types/functions/information/isblank/index.d.ts +17 -2
- package/lib/types/functions/information/isdate/index.d.ts +16 -1
- package/lib/types/functions/information/isemail/index.d.ts +16 -1
- package/lib/types/functions/information/iserr/index.d.ts +17 -2
- package/lib/types/functions/information/iserror/index.d.ts +17 -2
- package/lib/types/functions/information/iseven/iseven.d.ts +16 -1
- package/lib/types/functions/information/isformula/index.d.ts +17 -2
- package/lib/types/functions/information/islogical/index.d.ts +17 -2
- package/lib/types/functions/information/isna/index.d.ts +17 -2
- package/lib/types/functions/information/isnontext/index.d.ts +17 -2
- package/lib/types/functions/information/isnumber/index.d.ts +17 -2
- package/lib/types/functions/information/isodd/isodd.d.ts +16 -1
- package/lib/types/functions/information/isref/index.d.ts +16 -1
- package/lib/types/functions/information/istext/index.d.ts +17 -2
- package/lib/types/functions/information/isurl/index.d.ts +16 -1
- package/lib/types/functions/information/n/index.d.ts +16 -1
- package/lib/types/functions/information/na/index.d.ts +15 -0
- package/lib/types/functions/information/sheet/index.d.ts +17 -2
- package/lib/types/functions/information/sheets/index.d.ts +16 -1
- package/lib/types/functions/information/type/index.d.ts +16 -1
- package/lib/types/functions/logical/and/index.d.ts +16 -1
- package/lib/types/functions/logical/bycol/index.d.ts +17 -2
- package/lib/types/functions/logical/byrow/index.d.ts +17 -2
- package/lib/types/functions/logical/false/index.d.ts +15 -0
- package/lib/types/functions/logical/function-map.d.ts +15 -0
- package/lib/types/functions/logical/if/index.d.ts +17 -2
- package/lib/types/functions/logical/iferror/index.d.ts +17 -2
- package/lib/types/functions/logical/ifna/index.d.ts +17 -2
- package/lib/types/functions/logical/ifs/index.d.ts +16 -1
- package/lib/types/functions/logical/lambda/index.d.ts +17 -1
- package/lib/types/functions/logical/let/index.d.ts +17 -1
- package/lib/types/functions/logical/makearray/index.d.ts +17 -1
- package/lib/types/functions/logical/map/index.d.ts +17 -2
- package/lib/types/functions/logical/not/index.d.ts +16 -1
- package/lib/types/functions/logical/or/index.d.ts +16 -1
- package/lib/types/functions/logical/reduce/index.d.ts +17 -2
- package/lib/types/functions/logical/scan/index.d.ts +17 -2
- package/lib/types/functions/logical/switch/index.d.ts +16 -1
- package/lib/types/functions/logical/true/index.d.ts +15 -0
- package/lib/types/functions/logical/xor/index.d.ts +16 -1
- package/lib/types/functions/lookup/address/index.d.ts +16 -1
- package/lib/types/functions/lookup/areas/index.d.ts +16 -1
- package/lib/types/functions/lookup/choose/index.d.ts +16 -1
- package/lib/types/functions/lookup/choosecols/index.d.ts +16 -1
- package/lib/types/functions/lookup/chooserows/index.d.ts +16 -1
- package/lib/types/functions/lookup/column/index.d.ts +16 -1
- package/lib/types/functions/lookup/columns/index.d.ts +16 -1
- package/lib/types/functions/lookup/drop/index.d.ts +16 -1
- package/lib/types/functions/lookup/expand/index.d.ts +16 -1
- package/lib/types/functions/lookup/filter/index.d.ts +16 -1
- package/lib/types/functions/lookup/formulatext/index.d.ts +18 -3
- package/lib/types/functions/lookup/function-map.d.ts +15 -0
- package/lib/types/functions/lookup/hlookup/index.d.ts +16 -1
- package/lib/types/functions/lookup/hstack/index.d.ts +16 -1
- package/lib/types/functions/lookup/hyperlink/index.d.ts +16 -1
- package/lib/types/functions/lookup/image/index.d.ts +16 -1
- package/lib/types/functions/lookup/index/index.d.ts +17 -2
- package/lib/types/functions/lookup/indirect/index.d.ts +17 -2
- package/lib/types/functions/lookup/lookup/index.d.ts +17 -2
- package/lib/types/functions/lookup/match/index.d.ts +17 -2
- package/lib/types/functions/lookup/offset/index.d.ts +16 -1
- package/lib/types/functions/lookup/row/index.d.ts +16 -1
- package/lib/types/functions/lookup/rows/index.d.ts +16 -1
- package/lib/types/functions/lookup/sort/index.d.ts +16 -1
- package/lib/types/functions/lookup/sortby/index.d.ts +17 -1
- package/lib/types/functions/lookup/take/index.d.ts +16 -1
- package/lib/types/functions/lookup/tocol/index.d.ts +16 -1
- package/lib/types/functions/lookup/torow/index.d.ts +16 -1
- package/lib/types/functions/lookup/transpose/index.d.ts +17 -2
- package/lib/types/functions/lookup/unique/index.d.ts +16 -1
- package/lib/types/functions/lookup/vlookup/index.d.ts +17 -2
- package/lib/types/functions/lookup/vstack/index.d.ts +16 -1
- package/lib/types/functions/lookup/wrapcols/index.d.ts +16 -1
- package/lib/types/functions/lookup/wraprows/index.d.ts +16 -1
- package/lib/types/functions/lookup/xlookup/index.d.ts +16 -1
- package/lib/types/functions/lookup/xmatch/index.d.ts +16 -1
- package/lib/types/functions/math/abs/index.d.ts +16 -1
- package/lib/types/functions/math/acos/index.d.ts +16 -1
- package/lib/types/functions/math/acosh/index.d.ts +16 -1
- package/lib/types/functions/math/acot/index.d.ts +16 -1
- package/lib/types/functions/math/acoth/index.d.ts +16 -1
- package/lib/types/functions/math/aggregate/index.d.ts +18 -3
- package/lib/types/functions/math/arabic/index.d.ts +16 -1
- package/lib/types/functions/math/asin/index.d.ts +16 -1
- package/lib/types/functions/math/asinh/index.d.ts +16 -1
- package/lib/types/functions/math/atan/index.d.ts +16 -1
- package/lib/types/functions/math/atan2/index.d.ts +16 -1
- package/lib/types/functions/math/atanh/index.d.ts +16 -1
- package/lib/types/functions/math/base/index.d.ts +16 -1
- package/lib/types/functions/math/ceiling/index.d.ts +16 -1
- package/lib/types/functions/math/ceiling-math/index.d.ts +16 -1
- package/lib/types/functions/math/ceiling-precise/index.d.ts +16 -1
- package/lib/types/functions/math/combin/index.d.ts +16 -1
- package/lib/types/functions/math/combina/index.d.ts +16 -1
- package/lib/types/functions/math/cos/index.d.ts +16 -1
- package/lib/types/functions/math/cosh/index.d.ts +16 -1
- package/lib/types/functions/math/cot/index.d.ts +16 -1
- package/lib/types/functions/math/coth/index.d.ts +16 -1
- package/lib/types/functions/math/csc/index.d.ts +16 -1
- package/lib/types/functions/math/csch/index.d.ts +16 -1
- package/lib/types/functions/math/decimal/index.d.ts +16 -1
- package/lib/types/functions/math/degrees/index.d.ts +16 -1
- package/lib/types/functions/math/even/index.d.ts +16 -1
- package/lib/types/functions/math/exp/index.d.ts +16 -1
- package/lib/types/functions/math/fact/index.d.ts +16 -1
- package/lib/types/functions/math/factdouble/index.d.ts +16 -1
- package/lib/types/functions/math/floor/index.d.ts +16 -1
- package/lib/types/functions/math/floor-math/index.d.ts +16 -1
- package/lib/types/functions/math/floor-precise/index.d.ts +16 -1
- package/lib/types/functions/math/function-map.d.ts +15 -0
- package/lib/types/functions/math/gcd/index.d.ts +16 -1
- package/lib/types/functions/math/int/index.d.ts +16 -1
- package/lib/types/functions/math/lcm/index.d.ts +16 -1
- package/lib/types/functions/math/ln/index.d.ts +16 -1
- package/lib/types/functions/math/log/index.d.ts +16 -1
- package/lib/types/functions/math/log10/index.d.ts +16 -1
- package/lib/types/functions/math/mdeterm/index.d.ts +16 -1
- package/lib/types/functions/math/minverse/index.d.ts +16 -1
- package/lib/types/functions/math/mmult/index.d.ts +16 -1
- package/lib/types/functions/math/mod/index.d.ts +16 -1
- package/lib/types/functions/math/mround/index.d.ts +16 -1
- package/lib/types/functions/math/multinomial/index.d.ts +16 -1
- package/lib/types/functions/math/munit/index.d.ts +16 -1
- package/lib/types/functions/math/odd/index.d.ts +16 -1
- package/lib/types/functions/math/pi/index.d.ts +15 -0
- package/lib/types/functions/math/power/index.d.ts +16 -1
- package/lib/types/functions/math/product/index.d.ts +16 -1
- package/lib/types/functions/math/quotient/index.d.ts +16 -1
- package/lib/types/functions/math/radians/index.d.ts +16 -1
- package/lib/types/functions/math/rand/index.d.ts +15 -0
- package/lib/types/functions/math/randarray/index.d.ts +16 -1
- package/lib/types/functions/math/randbetween/index.d.ts +16 -1
- package/lib/types/functions/math/roman/index.d.ts +16 -1
- package/lib/types/functions/math/round/index.d.ts +16 -1
- package/lib/types/functions/math/roundbank/index.d.ts +16 -1
- package/lib/types/functions/math/rounddown/index.d.ts +16 -1
- package/lib/types/functions/math/roundup/index.d.ts +16 -1
- package/lib/types/functions/math/sec/index.d.ts +16 -1
- package/lib/types/functions/math/sech/index.d.ts +16 -1
- package/lib/types/functions/math/sequence/index.d.ts +16 -1
- package/lib/types/functions/math/seriessum/index.d.ts +16 -1
- package/lib/types/functions/math/sign/index.d.ts +16 -1
- package/lib/types/functions/math/sin/index.d.ts +16 -1
- package/lib/types/functions/math/sinh/index.d.ts +16 -1
- package/lib/types/functions/math/sqrt/index.d.ts +16 -1
- package/lib/types/functions/math/sqrtpi/index.d.ts +16 -1
- package/lib/types/functions/math/subtotal/index.d.ts +18 -3
- package/lib/types/functions/math/sum/index.d.ts +16 -1
- package/lib/types/functions/math/sumif/index.d.ts +17 -2
- package/lib/types/functions/math/sumifs/index.d.ts +17 -2
- package/lib/types/functions/math/sumproduct/index.d.ts +16 -1
- package/lib/types/functions/math/sumsq/index.d.ts +16 -1
- package/lib/types/functions/math/sumx2my2/index.d.ts +16 -1
- package/lib/types/functions/math/sumx2py2/index.d.ts +16 -1
- package/lib/types/functions/math/sumxmy2/index.d.ts +16 -1
- package/lib/types/functions/math/tan/index.d.ts +16 -1
- package/lib/types/functions/math/tanh/index.d.ts +16 -1
- package/lib/types/functions/math/trunc/index.d.ts +16 -1
- package/lib/types/functions/meta/compare/index.d.ts +16 -1
- package/lib/types/functions/meta/cube/index.d.ts +16 -1
- package/lib/types/functions/meta/divided/index.d.ts +16 -1
- package/lib/types/functions/meta/function-map.d.ts +15 -0
- package/lib/types/functions/meta/minus/index.d.ts +16 -1
- package/lib/types/functions/meta/multiply/index.d.ts +16 -1
- package/lib/types/functions/meta/plus/index.d.ts +16 -1
- package/lib/types/functions/new-excel-functions.d.ts +16 -1
- package/lib/types/functions/statistical/avedev/index.d.ts +16 -1
- package/lib/types/functions/statistical/average/index.d.ts +16 -1
- package/lib/types/functions/statistical/average-weighted/index.d.ts +16 -1
- package/lib/types/functions/statistical/averagea/index.d.ts +16 -1
- package/lib/types/functions/statistical/averageif/index.d.ts +17 -2
- package/lib/types/functions/statistical/averageifs/index.d.ts +17 -2
- package/lib/types/functions/statistical/beta-dist/index.d.ts +16 -1
- package/lib/types/functions/statistical/beta-inv/index.d.ts +16 -1
- package/lib/types/functions/statistical/binom-dist/index.d.ts +16 -1
- package/lib/types/functions/statistical/binom-dist-range/index.d.ts +16 -1
- package/lib/types/functions/statistical/binom-inv/index.d.ts +16 -1
- package/lib/types/functions/statistical/chisq-dist/index.d.ts +16 -1
- package/lib/types/functions/statistical/chisq-dist-rt/index.d.ts +16 -1
- package/lib/types/functions/statistical/chisq-inv/index.d.ts +16 -1
- package/lib/types/functions/statistical/chisq-inv-rt/index.d.ts +16 -1
- package/lib/types/functions/statistical/chisq-test/index.d.ts +16 -1
- package/lib/types/functions/statistical/confidence-norm/index.d.ts +16 -1
- package/lib/types/functions/statistical/confidence-t/index.d.ts +16 -1
- package/lib/types/functions/statistical/correl/index.d.ts +16 -1
- package/lib/types/functions/statistical/count/index.d.ts +16 -1
- package/lib/types/functions/statistical/counta/index.d.ts +16 -1
- package/lib/types/functions/statistical/countblank/index.d.ts +16 -1
- package/lib/types/functions/statistical/countif/index.d.ts +17 -2
- package/lib/types/functions/statistical/countifs/index.d.ts +17 -2
- package/lib/types/functions/statistical/covariance-p/index.d.ts +16 -1
- package/lib/types/functions/statistical/covariance-s/index.d.ts +16 -1
- package/lib/types/functions/statistical/devsq/index.d.ts +16 -1
- package/lib/types/functions/statistical/expon-dist/index.d.ts +16 -1
- package/lib/types/functions/statistical/f-dist/index.d.ts +16 -1
- package/lib/types/functions/statistical/f-dist-rt/index.d.ts +16 -1
- package/lib/types/functions/statistical/f-inv/index.d.ts +16 -1
- package/lib/types/functions/statistical/f-inv-rt/index.d.ts +16 -1
- package/lib/types/functions/statistical/f-test/index.d.ts +16 -1
- package/lib/types/functions/statistical/fisher/index.d.ts +16 -1
- package/lib/types/functions/statistical/fisherinv/index.d.ts +16 -1
- package/lib/types/functions/statistical/forecast/index.d.ts +16 -1
- package/lib/types/functions/statistical/frequency/index.d.ts +16 -1
- package/lib/types/functions/statistical/function-map.d.ts +15 -0
- package/lib/types/functions/statistical/gamma/index.d.ts +16 -1
- package/lib/types/functions/statistical/gamma-dist/index.d.ts +16 -1
- package/lib/types/functions/statistical/gamma-inv/index.d.ts +16 -1
- package/lib/types/functions/statistical/gammaln/index.d.ts +16 -1
- package/lib/types/functions/statistical/gauss/index.d.ts +16 -1
- package/lib/types/functions/statistical/geomean/index.d.ts +16 -1
- package/lib/types/functions/statistical/growth/index.d.ts +16 -1
- package/lib/types/functions/statistical/harmean/index.d.ts +16 -1
- package/lib/types/functions/statistical/hypgeom-dist/index.d.ts +16 -1
- package/lib/types/functions/statistical/intercept/index.d.ts +16 -1
- package/lib/types/functions/statistical/kurt/index.d.ts +16 -1
- package/lib/types/functions/statistical/large/index.d.ts +16 -1
- package/lib/types/functions/statistical/linest/index.d.ts +16 -1
- package/lib/types/functions/statistical/logest/index.d.ts +16 -1
- package/lib/types/functions/statistical/lognorm-dist/index.d.ts +16 -1
- package/lib/types/functions/statistical/lognorm-inv/index.d.ts +16 -1
- package/lib/types/functions/statistical/marginoferror/index.d.ts +16 -1
- package/lib/types/functions/statistical/max/index.d.ts +16 -1
- package/lib/types/functions/statistical/maxa/index.d.ts +16 -1
- package/lib/types/functions/statistical/maxifs/index.d.ts +17 -2
- package/lib/types/functions/statistical/median/index.d.ts +16 -1
- package/lib/types/functions/statistical/min/index.d.ts +16 -1
- package/lib/types/functions/statistical/mina/index.d.ts +16 -1
- package/lib/types/functions/statistical/minifs/index.d.ts +17 -2
- package/lib/types/functions/statistical/mode-mult/index.d.ts +16 -1
- package/lib/types/functions/statistical/mode-sngl/index.d.ts +16 -1
- package/lib/types/functions/statistical/negbinom-dist/index.d.ts +16 -1
- package/lib/types/functions/statistical/norm-dist/index.d.ts +16 -1
- package/lib/types/functions/statistical/norm-inv/index.d.ts +16 -1
- package/lib/types/functions/statistical/norm-s-dist/index.d.ts +16 -1
- package/lib/types/functions/statistical/norm-s-inv/index.d.ts +16 -1
- package/lib/types/functions/statistical/pearson/index.d.ts +16 -1
- package/lib/types/functions/statistical/percentile-exc/index.d.ts +16 -1
- package/lib/types/functions/statistical/percentile-inc/index.d.ts +16 -1
- package/lib/types/functions/statistical/percentrank-exc/index.d.ts +16 -1
- package/lib/types/functions/statistical/percentrank-inc/index.d.ts +16 -1
- package/lib/types/functions/statistical/permut/index.d.ts +16 -1
- package/lib/types/functions/statistical/permutationa/index.d.ts +16 -1
- package/lib/types/functions/statistical/phi/index.d.ts +16 -1
- package/lib/types/functions/statistical/poisson-dist/index.d.ts +16 -1
- package/lib/types/functions/statistical/prob/index.d.ts +16 -1
- package/lib/types/functions/statistical/quartile-exc/index.d.ts +16 -1
- package/lib/types/functions/statistical/quartile-inc/index.d.ts +16 -1
- package/lib/types/functions/statistical/rank-avg/index.d.ts +17 -2
- package/lib/types/functions/statistical/rank-eq/index.d.ts +17 -2
- package/lib/types/functions/statistical/rsq/index.d.ts +16 -1
- package/lib/types/functions/statistical/skew/index.d.ts +16 -1
- package/lib/types/functions/statistical/skew-p/index.d.ts +16 -1
- package/lib/types/functions/statistical/slope/index.d.ts +16 -1
- package/lib/types/functions/statistical/small/index.d.ts +16 -1
- package/lib/types/functions/statistical/standardize/index.d.ts +16 -1
- package/lib/types/functions/statistical/stdev-p/index.d.ts +17 -2
- package/lib/types/functions/statistical/stdev-s/index.d.ts +17 -2
- package/lib/types/functions/statistical/stdeva/index.d.ts +17 -2
- package/lib/types/functions/statistical/stdevpa/index.d.ts +17 -2
- package/lib/types/functions/statistical/steyx/index.d.ts +16 -1
- package/lib/types/functions/statistical/t-dist/index.d.ts +16 -1
- package/lib/types/functions/statistical/t-dist-2t/index.d.ts +16 -1
- package/lib/types/functions/statistical/t-dist-rt/index.d.ts +16 -1
- package/lib/types/functions/statistical/t-inv/index.d.ts +16 -1
- package/lib/types/functions/statistical/t-inv-2t/index.d.ts +16 -1
- package/lib/types/functions/statistical/t-test/index.d.ts +16 -1
- package/lib/types/functions/statistical/trend/index.d.ts +16 -1
- package/lib/types/functions/statistical/trimmean/index.d.ts +16 -1
- package/lib/types/functions/statistical/var-p/index.d.ts +17 -2
- package/lib/types/functions/statistical/var-s/index.d.ts +17 -2
- package/lib/types/functions/statistical/vara/index.d.ts +17 -2
- package/lib/types/functions/statistical/varpa/index.d.ts +17 -2
- package/lib/types/functions/statistical/weibull-dist/index.d.ts +16 -1
- package/lib/types/functions/statistical/z-test/index.d.ts +16 -1
- package/lib/types/functions/text/arraytotext/index.d.ts +16 -1
- package/lib/types/functions/text/asc/index.d.ts +16 -1
- package/lib/types/functions/text/bahttext/index.d.ts +16 -1
- package/lib/types/functions/text/char/index.d.ts +16 -1
- package/lib/types/functions/text/clean/index.d.ts +16 -1
- package/lib/types/functions/text/code/index.d.ts +16 -1
- package/lib/types/functions/text/concat/index.d.ts +16 -1
- package/lib/types/functions/text/concatenate/index.d.ts +16 -1
- package/lib/types/functions/text/dbcs/index.d.ts +16 -1
- package/lib/types/functions/text/dollar/index.d.ts +16 -1
- package/lib/types/functions/text/exact/index.d.ts +16 -1
- package/lib/types/functions/text/find/index.d.ts +16 -1
- package/lib/types/functions/text/findb/index.d.ts +16 -1
- package/lib/types/functions/text/fixed/index.d.ts +16 -1
- package/lib/types/functions/text/function-map.d.ts +15 -0
- package/lib/types/functions/text/left/index.d.ts +16 -1
- package/lib/types/functions/text/leftb/index.d.ts +16 -1
- package/lib/types/functions/text/len/index.d.ts +16 -1
- package/lib/types/functions/text/lenb/index.d.ts +16 -1
- package/lib/types/functions/text/lower/index.d.ts +16 -1
- package/lib/types/functions/text/mid/index.d.ts +16 -1
- package/lib/types/functions/text/midb/index.d.ts +16 -1
- package/lib/types/functions/text/numberstring/index.d.ts +16 -1
- package/lib/types/functions/text/numbervalue/index.d.ts +16 -1
- package/lib/types/functions/text/proper/index.d.ts +16 -1
- package/lib/types/functions/text/regexextract/index.d.ts +16 -1
- package/lib/types/functions/text/regexmatch/index.d.ts +16 -1
- package/lib/types/functions/text/regexreplace/index.d.ts +16 -1
- package/lib/types/functions/text/replace/index.d.ts +16 -1
- package/lib/types/functions/text/replaceb/index.d.ts +16 -1
- package/lib/types/functions/text/rept/index.d.ts +16 -1
- package/lib/types/functions/text/right/index.d.ts +16 -1
- package/lib/types/functions/text/rightb/index.d.ts +16 -1
- package/lib/types/functions/text/search/index.d.ts +16 -1
- package/lib/types/functions/text/searchb/index.d.ts +16 -1
- package/lib/types/functions/text/substitute/index.d.ts +16 -1
- package/lib/types/functions/text/t/index.d.ts +17 -2
- package/lib/types/functions/text/text/index.d.ts +16 -1
- package/lib/types/functions/text/textafter/index.d.ts +17 -2
- package/lib/types/functions/text/textbefore/index.d.ts +17 -2
- package/lib/types/functions/text/textjoin/index.d.ts +16 -1
- package/lib/types/functions/text/textsplit/index.d.ts +16 -1
- package/lib/types/functions/text/trim/index.d.ts +16 -1
- package/lib/types/functions/text/unichar/index.d.ts +16 -1
- package/lib/types/functions/text/unicode/index.d.ts +16 -1
- package/lib/types/functions/text/upper/index.d.ts +16 -1
- package/lib/types/functions/text/value/index.d.ts +16 -1
- package/lib/types/functions/text/valuetotext/index.d.ts +16 -1
- package/lib/types/functions/util.d.ts +17 -1
- package/lib/types/functions/web/encodeurl/index.d.ts +16 -1
- package/lib/types/functions/web/function-map.d.ts +15 -0
- package/lib/types/models/formula-data.model.d.ts +18 -2
- package/lib/types/models/utils/formula-data-util.d.ts +17 -2
- package/lib/types/plugin.d.ts +16 -1
- package/lib/types/services/active-dirty-manager.service.d.ts +19 -3
- package/lib/types/services/calculate-formula.service.d.ts +25 -7
- package/lib/types/services/current-data.service.d.ts +19 -3
- package/lib/types/services/defined-names.service.d.ts +19 -3
- package/lib/types/services/dependency-manager.service.d.ts +20 -4
- package/lib/types/services/feature-calculation-manager.service.d.ts +23 -7
- package/lib/types/services/formula-common.d.ts +16 -1
- package/lib/types/services/function.service.d.ts +20 -4
- package/lib/types/services/global-computing-status.service.d.ts +18 -2
- package/lib/types/services/hyperlink-engine-formula.service.d.ts +18 -2
- package/lib/types/services/other-formula-manager.service.d.ts +19 -3
- package/lib/types/services/register-other-formula.service.d.ts +20 -4
- package/lib/types/services/runtime.service.d.ts +22 -6
- package/lib/types/services/sheet-row-filtered.service.d.ts +16 -1
- package/lib/types/services/super-table.service.d.ts +21 -4
- package/lib/umd/facade.js +1 -1
- package/lib/umd/index.js +9 -1
- package/package.json +8 -7
- package/lib/types/functions/logical/bycol/__test__/index.spec.d.ts +0 -16
- package/lib/types/functions/logical/byrow/__test__/index.spec.d.ts +0 -16
- package/lib/types/functions/logical/makearray/__test__/index.spec.d.ts +0 -16
- package/lib/types/functions/logical/map/__test__/index.spec.d.ts +0 -16
- package/lib/types/functions/logical/reduce/__test__/index.spec.d.ts +0 -16
- package/lib/types/functions/logical/scan/__test__/index.spec.d.ts +0 -16
- package/lib/types/functions/lookup/index/__test__/index.spec.d.ts +0 -16
- package/lib/types/functions/lookup/indirect/__test__/index.spec.d.ts +0 -16
- package/lib/types/functions/text/arraytotext/__test__/index.spec.d.ts +0 -16
- package/lib/types/functions/text/asc/__test__/index.spec.d.ts +0 -16
- package/lib/types/functions/text/bahttext/__test__/index.spec.d.ts +0 -16
- package/lib/types/functions/text/char/__test__/index.spec.d.ts +0 -16
- package/lib/types/functions/text/clean/__test__/index.spec.d.ts +0 -16
- package/lib/types/functions/text/code/__test__/index.spec.d.ts +0 -16
- package/lib/types/functions/text/dbcs/__test__/index.spec.d.ts +0 -16
- package/lib/types/functions/text/dollar/__test__/index.spec.d.ts +0 -16
- package/lib/types/functions/text/exact/__test__/index.spec.d.ts +0 -16
- package/lib/types/functions/text/find/__test__/index.spec.d.ts +0 -16
- package/lib/types/functions/text/findb/__test__/index.spec.d.ts +0 -16
- package/lib/types/functions/text/fixed/__test__/index.spec.d.ts +0 -16
- package/lib/types/functions/text/left/__test__/index.spec.d.ts +0 -16
- package/lib/types/functions/text/leftb/__test__/index.spec.d.ts +0 -16
- package/lib/types/functions/text/len/__test__/index.spec.d.ts +0 -16
- package/lib/types/functions/text/lenb/__test__/index.spec.d.ts +0 -16
- package/lib/types/functions/text/lower/__test__/index.spec.d.ts +0 -16
- package/lib/types/functions/text/mid/__test__/index.spec.d.ts +0 -16
- package/lib/types/functions/text/midb/__test__/index.spec.d.ts +0 -16
- package/lib/types/functions/text/numberstring/__test__/index.spec.d.ts +0 -16
- package/lib/types/functions/text/numbervalue/__test__/index.spec.d.ts +0 -16
- package/lib/types/functions/text/proper/__test__/index.spec.d.ts +0 -16
- package/lib/types/functions/text/regexextract/__test__/index.spec.d.ts +0 -16
- package/lib/types/functions/text/regexmatch/__test__/index.spec.d.ts +0 -16
- package/lib/types/functions/text/regexreplace/__test__/index.spec.d.ts +0 -16
- package/lib/types/functions/text/replace/__test__/index.spec.d.ts +0 -16
- package/lib/types/functions/text/replaceb/__test__/index.spec.d.ts +0 -16
- package/lib/types/functions/text/rept/__test__/index.spec.d.ts +0 -16
- package/lib/types/functions/text/right/__test__/index.spec.d.ts +0 -16
- package/lib/types/functions/text/rightb/__test__/index.spec.d.ts +0 -16
- package/lib/types/functions/text/search/__test__/index.spec.d.ts +0 -16
- package/lib/types/functions/text/searchb/__test__/index.spec.d.ts +0 -16
- package/lib/types/functions/text/substitute/__test__/index.spec.d.ts +0 -16
- package/lib/types/functions/text/t/__test__/index.spec.d.ts +0 -16
- package/lib/types/functions/text/text/__test__/index.spec.d.ts +0 -16
- package/lib/types/functions/text/textafter/__test__/index.spec.d.ts +0 -16
- package/lib/types/functions/text/textbefore/__test__/index.spec.d.ts +0 -16
- package/lib/types/functions/text/textjoin/__test__/index.spec.d.ts +0 -16
- package/lib/types/functions/text/textsplit/__test__/index.spec.d.ts +0 -16
- package/lib/types/functions/text/trim/__test__/index.spec.d.ts +0 -16
- package/lib/types/functions/text/unichar/__test__/index.spec.d.ts +0 -16
- package/lib/types/functions/text/unicode/__test__/index.spec.d.ts +0 -16
- package/lib/types/functions/text/upper/__test__/index.spec.d.ts +0 -16
- package/lib/types/functions/text/value/__test__/index.spec.d.ts +0 -16
- package/lib/types/functions/text/valuetotext/__test__/index.spec.d.ts +0 -16
|
@@ -1,9 +1,25 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
1
|
+
/**
|
|
2
|
+
* Copyright 2023-present DreamNum Co., Ltd.
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*/
|
|
16
|
+
import type { IUnitRange, Nullable } from '@univerjs/core';
|
|
17
|
+
import type { Observable } from 'rxjs';
|
|
18
|
+
import type { IFeatureDirtyRangeType, IRuntimeUnitDataType } from '../basics/common';
|
|
19
|
+
import type { IRemoveFeatureCalculationMutationParam } from '../commands/mutations/set-feature-calculation.mutation';
|
|
20
|
+
import type { IFormulaDirtyData } from './current-data.service';
|
|
21
|
+
import type { IAllRuntimeData } from './runtime.service';
|
|
22
|
+
import { Disposable } from '@univerjs/core';
|
|
7
23
|
export interface IFeatureCalculationManagerParam {
|
|
8
24
|
unitId: string;
|
|
9
25
|
subUnitId: string;
|
|
@@ -39,4 +55,4 @@ export declare class FeatureCalculationManagerService extends Disposable impleme
|
|
|
39
55
|
register(unitId: string, subUnitId: string, featureId: string, referenceExecutor: IFeatureCalculationManagerParam): void;
|
|
40
56
|
getReferenceExecutorMap(): Map<string, Map<string, Map<string, IFeatureCalculationManagerParam>>>;
|
|
41
57
|
}
|
|
42
|
-
export declare const IFeatureCalculationManagerService: import(
|
|
58
|
+
export declare const IFeatureCalculationManagerService: import("@wendellhu/redi").IdentifierDecorator<FeatureCalculationManagerService>;
|
|
@@ -1,4 +1,19 @@
|
|
|
1
|
-
|
|
1
|
+
/**
|
|
2
|
+
* Copyright 2023-present DreamNum Co., Ltd.
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*/
|
|
16
|
+
import type { ICellData, IObjectMatrixPrimitiveType, Nullable } from '@univerjs/core';
|
|
2
17
|
export declare enum FormulaResultStatus {
|
|
3
18
|
NOT_REGISTER = 1,
|
|
4
19
|
SUCCESS = 2,
|
|
@@ -1,6 +1,22 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
1
|
+
/**
|
|
2
|
+
* Copyright 2023-present DreamNum Co., Ltd.
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*/
|
|
16
|
+
import type { IDisposable, Nullable } from '@univerjs/core';
|
|
17
|
+
import type { IFunctionInfo, IFunctionNames } from '../basics/function';
|
|
18
|
+
import type { BaseFunction } from '../functions/base-function';
|
|
19
|
+
import { Disposable } from '@univerjs/core';
|
|
4
20
|
export interface IFunctionService {
|
|
5
21
|
/**
|
|
6
22
|
* Use register to register a function, new CustomFunction(inject, name)
|
|
@@ -27,7 +43,7 @@ export interface IFunctionService {
|
|
|
27
43
|
unregisterDescriptions(...functionTokens: IFunctionNames[]): void;
|
|
28
44
|
deleteFormulaAstCacheKey(...functionToken: IFunctionNames[]): void;
|
|
29
45
|
}
|
|
30
|
-
export declare const IFunctionService: import(
|
|
46
|
+
export declare const IFunctionService: import("@wendellhu/redi").IdentifierDecorator<FunctionService>;
|
|
31
47
|
export declare class FunctionService extends Disposable implements IFunctionService {
|
|
32
48
|
private _functionExecutors;
|
|
33
49
|
private _functionDescriptions;
|
|
@@ -1,10 +1,26 @@
|
|
|
1
|
-
|
|
1
|
+
/**
|
|
2
|
+
* Copyright 2023-present DreamNum Co., Ltd.
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*/
|
|
16
|
+
import type { IDisposable } from '@univerjs/core';
|
|
17
|
+
import { Disposable } from '@univerjs/core';
|
|
2
18
|
import { BehaviorSubject } from 'rxjs';
|
|
3
19
|
export type ComputingStatus = boolean;
|
|
4
20
|
export declare class GlobalComputingStatusService extends Disposable {
|
|
5
21
|
private _allSubjects;
|
|
6
22
|
private readonly _computingStatus$;
|
|
7
|
-
readonly computingStatus$: import(
|
|
23
|
+
readonly computingStatus$: import("rxjs").Observable<boolean>;
|
|
8
24
|
get computingStatus(): ComputingStatus;
|
|
9
25
|
private _computingSubscription;
|
|
10
26
|
dispose(): void;
|
|
@@ -1,4 +1,20 @@
|
|
|
1
|
-
|
|
1
|
+
/**
|
|
2
|
+
* Copyright 2023-present DreamNum Co., Ltd.
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*/
|
|
16
|
+
import type { ICellData } from '@univerjs/core';
|
|
17
|
+
import { Disposable, IUniverInstanceService } from '@univerjs/core';
|
|
2
18
|
export interface IHyperlinkEngineFormulaService {
|
|
3
19
|
generateCellValue(url: string, label: string): ICellData;
|
|
4
20
|
}
|
|
@@ -10,4 +26,4 @@ export declare class HyperlinkEngineFormulaService extends Disposable implements
|
|
|
10
26
|
constructor(_univerInstanceService: IUniverInstanceService);
|
|
11
27
|
generateCellValue(url: string, label: string): ICellData;
|
|
12
28
|
}
|
|
13
|
-
export declare const IHyperlinkEngineFormulaService: import(
|
|
29
|
+
export declare const IHyperlinkEngineFormulaService: import("@wendellhu/redi").IdentifierDecorator<HyperlinkEngineFormulaService>;
|
|
@@ -1,5 +1,21 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
1
|
+
/**
|
|
2
|
+
* Copyright 2023-present DreamNum Co., Ltd.
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*/
|
|
16
|
+
import type { Nullable } from '@univerjs/core';
|
|
17
|
+
import type { IDirtyUnitOtherFormulaMap, IOtherFormulaData, IOtherFormulaDataItem } from '../basics/common';
|
|
18
|
+
import { Disposable } from '@univerjs/core';
|
|
3
19
|
export interface IOtherFormulaManagerSearchParam {
|
|
4
20
|
unitId: string;
|
|
5
21
|
subUnitId: string;
|
|
@@ -35,4 +51,4 @@ export declare class OtherFormulaManagerService extends Disposable implements IO
|
|
|
35
51
|
batchRemove(formulaData: IDirtyUnitOtherFormulaMap): void;
|
|
36
52
|
getOtherFormulaData(): IOtherFormulaData;
|
|
37
53
|
}
|
|
38
|
-
export declare const IOtherFormulaManagerService: import(
|
|
54
|
+
export declare const IOtherFormulaManagerService: import("@wendellhu/redi").IdentifierDecorator<OtherFormulaManagerService>;
|
|
@@ -1,5 +1,21 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
1
|
+
/**
|
|
2
|
+
* Copyright 2023-present DreamNum Co., Ltd.
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*/
|
|
16
|
+
import type { IRange, Nullable } from '@univerjs/core';
|
|
17
|
+
import type { IOtherFormulaResult } from './formula-common';
|
|
18
|
+
import { Disposable, ICommandService, LifecycleService } from '@univerjs/core';
|
|
3
19
|
import { BehaviorSubject } from 'rxjs';
|
|
4
20
|
import { IActiveDirtyManagerService } from './active-dirty-manager.service';
|
|
5
21
|
export declare enum OtherFormulaBizType {
|
|
@@ -16,7 +32,7 @@ export declare class RegisterOtherFormulaService extends Disposable {
|
|
|
16
32
|
private readonly _lifecycleService;
|
|
17
33
|
private _formulaCacheMap;
|
|
18
34
|
private _formulaChangeWithRange$;
|
|
19
|
-
formulaChangeWithRange$: import(
|
|
35
|
+
formulaChangeWithRange$: import("rxjs").Observable<{
|
|
20
36
|
unitId: string;
|
|
21
37
|
subUnitId: string;
|
|
22
38
|
formulaText: string;
|
|
@@ -24,7 +40,7 @@ export declare class RegisterOtherFormulaService extends Disposable {
|
|
|
24
40
|
ranges: IRange[];
|
|
25
41
|
}>;
|
|
26
42
|
private _formulaResult$;
|
|
27
|
-
formulaResult$: import(
|
|
43
|
+
formulaResult$: import("rxjs").Observable<Record<string, Record<string, IOtherFormulaResult[]>>>;
|
|
28
44
|
calculateStarted$: BehaviorSubject<boolean>;
|
|
29
45
|
constructor(_commandService: ICommandService, _activeDirtyManagerService: IActiveDirtyManagerService, _lifecycleService: LifecycleService);
|
|
30
46
|
dispose(): void;
|
|
@@ -1,8 +1,24 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
1
|
+
/**
|
|
2
|
+
* Copyright 2023-present DreamNum Co., Ltd.
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*/
|
|
16
|
+
import type { Nullable } from '@univerjs/core';
|
|
17
|
+
import type { IArrayFormulaEmbeddedMap, IArrayFormulaRangeType, IFeatureDirtyRangeType, IRuntimeImageFormulaDataType, IRuntimeOtherUnitDataType, IRuntimeUnitDataType } from '../basics/common';
|
|
18
|
+
import type { BaseAstNode } from '../engine/ast-node/base-ast-node';
|
|
19
|
+
import type { IFormulaDependencyTreeJson } from '../engine/dependency/dependency-tree';
|
|
20
|
+
import type { FunctionVariantType } from '../engine/reference-object/base-reference-object';
|
|
21
|
+
import { Disposable } from '@univerjs/core';
|
|
6
22
|
import { IFormulaCurrentConfigService } from './current-data.service';
|
|
7
23
|
import { IHyperlinkEngineFormulaService } from './hyperlink-engine-formula.service';
|
|
8
24
|
/**
|
|
@@ -211,4 +227,4 @@ export declare class FormulaRuntimeService extends Disposable implements IFormul
|
|
|
211
227
|
private _checkIfArrayFormulaExceeded;
|
|
212
228
|
private _isInDirtyRange;
|
|
213
229
|
}
|
|
214
|
-
export declare const IFormulaRuntimeService: import(
|
|
230
|
+
export declare const IFormulaRuntimeService: import("@wendellhu/redi").IdentifierDecorator<FormulaRuntimeService>;
|
|
@@ -1,3 +1,18 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright 2023-present DreamNum Co., Ltd.
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*/
|
|
1
16
|
import { Disposable } from '@univerjs/core';
|
|
2
17
|
type CallbackFunction = (unitId: string, subUnitId: string, row: number) => boolean;
|
|
3
18
|
/**
|
|
@@ -12,5 +27,5 @@ export declare class SheetRowFilteredService extends Disposable implements IShee
|
|
|
12
27
|
register(callback: CallbackFunction): void;
|
|
13
28
|
getRowFiltered(unitId: string, subUnitId: string, row: number): boolean;
|
|
14
29
|
}
|
|
15
|
-
export declare const ISheetRowFilteredService: import(
|
|
30
|
+
export declare const ISheetRowFilteredService: import("@wendellhu/redi").IdentifierDecorator<SheetRowFilteredService>;
|
|
16
31
|
export {};
|
|
@@ -1,6 +1,23 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
1
|
+
/**
|
|
2
|
+
* Copyright 2023-present DreamNum Co., Ltd.
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*/
|
|
16
|
+
import type { Nullable } from '@univerjs/core';
|
|
17
|
+
import type { Observable } from 'rxjs';
|
|
18
|
+
import type { ISuperTable } from '../basics/common';
|
|
19
|
+
import { Disposable } from '@univerjs/core';
|
|
20
|
+
import { TableOptionType } from '../basics/common';
|
|
4
21
|
export interface ISuperTableOptionParam {
|
|
5
22
|
tableOption: string;
|
|
6
23
|
tableOptionType: TableOptionType;
|
|
@@ -31,4 +48,4 @@ export declare class SuperTableService extends Disposable implements ISuperTable
|
|
|
31
48
|
hasTable(unitId: string, tableName: string): boolean;
|
|
32
49
|
private _update;
|
|
33
50
|
}
|
|
34
|
-
export declare const ISuperTableService: import(
|
|
51
|
+
export declare const ISuperTableService: import("@wendellhu/redi").IdentifierDecorator<ISuperTableService>;
|
package/lib/umd/facade.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
(function(
|
|
1
|
+
(function(e,t){typeof exports==`object`&&typeof module<`u`?t(exports,require(`@univerjs/core/facade`),require(`@univerjs/core`),require(`@univerjs/engine-formula`),require(`rxjs`)):typeof define==`function`&&define.amd?define([`exports`,`@univerjs/core/facade`,`@univerjs/core`,`@univerjs/engine-formula`,`rxjs`],t):(e=typeof globalThis<`u`?globalThis:e||self,t(e.UniverEngineFormulaFacade={},e.UniverCoreFacade,e.UniverCore,e.UniverEngineFormula,e.rxjs))})(this,function(e,t,n,r,i){Object.defineProperty(e,Symbol.toStringTag,{value:`Module`});function a(e,t){return function(n,r){t(n,r,e)}}function o(e,t,n,r){var i=arguments.length,a=i<3?t:r===null?r=Object.getOwnPropertyDescriptor(t,n):r,o;if(typeof Reflect==`object`&&typeof Reflect.decorate==`function`)a=Reflect.decorate(e,t,n,r);else for(var s=e.length-1;s>=0;s--)(o=e[s])&&(a=(i<3?o(a):i>3?o(t,n,a):o(t,n))||a);return i>3&&a&&Object.defineProperty(t,n,a),a}let s=class extends t.FBase{constructor(e,t,n,r,i,a,o){super(),this._commandService=e,this._injector=t,this._lexerTreeBuilder=n,this._configService=r,this._functionService=i,this._definedNamesService=a,this._superTableService=o,this._initialize()}_initialize(){}get lexerTreeBuilder(){return this._lexerTreeBuilder}moveFormulaRefOffset(e,t,n,r){return this._lexerTreeBuilder.moveFormulaRefOffset(e,t,n,r)}sequenceNodesBuilder(e){return this._lexerTreeBuilder.sequenceNodesBuilder(e)||[]}executeCalculation(){this._commandService.executeCommand(r.SetTriggerFormulaCalculationStartMutation.id,{commands:[],forceCalculation:!0},{onlyLocal:!0})}stopCalculation(){this._commandService.executeCommand(r.SetFormulaCalculationStopMutation.id,{})}calculationStart(e){return this._commandService.onCommandExecuted(t=>{if(t.id===r.SetFormulaCalculationStartMutation.id){let n=t.params;e(n.forceCalculation)}})}calculationEnd(e){return this._commandService.onCommandExecuted(t=>{if(t.id!==r.SetFormulaCalculationNotificationMutation.id)return;let n=t.params;n.functionsExecutedState!==void 0&&e(n.functionsExecutedState)})}whenComputingCompleteAsync(e){let t=this._injector.get(r.GlobalComputingStatusService);return t.computingStatus?Promise.resolve(!0):(0,i.firstValueFrom)((0,i.race)(t.computingStatus$.pipe((0,i.filter)(e=>e)),(0,i.timer)(e==null?3e4:e).pipe((0,i.map)(()=>!1))))}onCalculationEnd(){return new Promise((e,t)=>{let n=setTimeout(()=>{t(Error(`Calculation end timeout`))},3e4),r=this.calculationEnd(()=>{clearTimeout(n),r.dispose(),e()})})}calculationProcessing(e){return this._commandService.onCommandExecuted(t=>{if(t.id!==r.SetFormulaCalculationNotificationMutation.id)return;let n=t.params;n.stageInfo!==void 0&&e(n.stageInfo)})}setMaxIteration(e){this._configService.setConfig(r.ENGINE_FORMULA_CYCLE_REFERENCE_COUNT,e)}executeFormulas(e,t=3e4){return new Promise((n,i)=>{let a=this._commandService.onCommandExecuted(e=>{if(e.id!==r.SetFormulaStringBatchCalculationResultMutation.id)return;let t=e.params;clearTimeout(o),a.dispose(),t.result==null?i(Error(`Formula batch calculation returned no result`)):n(t.result)}),o=setTimeout(()=>{a.dispose(),i(Error(`Formula batch calculation timeout`))},t);this._commandService.executeCommand(r.SetFormulaStringBatchCalculationMutation.id,{formulas:e},{onlyLocal:!0})})}getAllDependencyTrees(e=3e4){return new Promise((t,n)=>{let i=this._commandService.onCommandExecuted(e=>{if(e.id!==r.SetFormulaDependencyCalculationResultMutation.id)return;let n=e.params;clearTimeout(a),i.dispose(),n.result==null?t([]):t(n.result)}),a=setTimeout(()=>{i.dispose(),n(Error(`Formula dependency calculation timeout`))},e);this._commandService.executeCommand(r.SetFormulaDependencyCalculationMutation.id,void 0,{onlyLocal:!0})})}getCellDependencyTree(e,t=3e4){return new Promise((n,i)=>{let a=this._commandService.onCommandExecuted(e=>{if(e.id!==r.SetCellFormulaDependencyCalculationResultMutation.id)return;let t=e.params;clearTimeout(o),a.dispose(),n(t.result)}),o=setTimeout(()=>{a.dispose(),i(Error(`Cell dependency calculation timeout`))},t);this._commandService.executeCommand(r.SetCellFormulaDependencyCalculationMutation.id,e,{onlyLocal:!0})})}getRangeDependents(e,t=3e4){return new Promise((n,i)=>{let a=this._commandService.onCommandExecuted(e=>{if(e.id!==r.SetQueryFormulaDependencyResultMutation.id)return;let t=e.params;clearTimeout(o),a.dispose(),t.result==null?n([]):n(t.result)}),o=setTimeout(()=>{a.dispose(),i(Error(`Range dependents calculation timeout`))},t);this._commandService.executeCommand(r.SetQueryFormulaDependencyMutation.id,{unitRanges:e},{onlyLocal:!0})})}getInRangeFormulas(e,t=3e4){return new Promise((n,i)=>{let a=this._commandService.onCommandExecuted(e=>{if(e.id!==r.SetQueryFormulaDependencyResultMutation.id)return;let t=e.params;clearTimeout(o),a.dispose(),t.result==null?n([]):n(t.result)}),o=setTimeout(()=>{a.dispose(),i(Error(`In-range formulas calculation timeout`))},t);this._commandService.executeCommand(r.SetQueryFormulaDependencyMutation.id,{unitRanges:e,isInRange:!0},{onlyLocal:!0})})}setFormulaReturnDependencyTree(e){this._configService.setConfig(r.ENGINE_FORMULA_RETURN_DEPENDENCY_TREE,e)}getFormulaExpressTree(e,t){return this._lexerTreeBuilder.getFormulaExprTree(e,t,this._functionService.hasExecutor.bind(this._functionService),this._definedNamesService.getValueByName.bind(this._definedNamesService),this._superTableService.getTable.bind(this._superTableService))}getRangeDependentsAndInRangeFormulas(e,t=3e4){return new Promise((n,i)=>{let a=this._commandService.onCommandExecuted(e=>{if(e.id!==r.SetQueryFormulaDependencyAllResultMutation.id)return;let t=e.params;clearTimeout(o),a.dispose(),t.result==null?n({dependents:[],inRanges:[]}):n(t.result)}),o=setTimeout(()=>{a.dispose(),i(Error(`Range dependents calculation timeout`))},t);this._commandService.executeCommand(r.SetQueryFormulaDependencyAllMutation.id,{unitRanges:e},{onlyLocal:!0})})}};s=o([a(0,(0,n.Inject)(n.ICommandService)),a(1,(0,n.Inject)(n.Injector)),a(2,(0,n.Inject)(r.LexerTreeBuilder)),a(3,n.IConfigService),a(4,r.IFunctionService),a(5,r.IDefinedNamesService),a(6,r.ISuperTableService)],s);var c=class extends t.FUniver{getFormula(){return this._injector.createInstance(s)}};t.FUniver.extend(c),Object.defineProperty(e,`FFormula`,{enumerable:!0,get:function(){return s}})});
|