@univerjs/engine-formula 0.10.2 → 0.10.3-experimental.20250812-b4b6f1a
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/index.js +2 -2
- package/lib/es/index.js +665 -635
- package/lib/index.js +665 -635
- package/lib/types/engine/value-object/array-value-object.d.ts +1 -1
- package/lib/types/functions/date/datevalue/index.d.ts +1 -0
- package/lib/types/functions/date/timevalue/index.d.ts +1 -0
- package/lib/types/functions/text/numbervalue/index.d.ts +1 -0
- package/lib/umd/index.js +2 -2
- package/package.json +4 -4
- package/LICENSE +0 -176
|
@@ -3,7 +3,7 @@ import { callbackMapFnType, IArrayValueObject, BaseValueObject } from './base-va
|
|
|
3
3
|
import { compareToken } from '../../basics/token';
|
|
4
4
|
import { ArrayBinarySearchType, ArrayOrderSearchType } from '../utils/compare';
|
|
5
5
|
export declare function fromObjectToString(array: IArrayValueObject): string;
|
|
6
|
-
export declare function transformToValueObject(array?: Array<Array<number | string | boolean | null
|
|
6
|
+
export declare function transformToValueObject(array?: Array<Array<number | string | boolean | null>>, isIgnoreNumberPattern?: boolean): BaseValueObject[][];
|
|
7
7
|
export declare function transformToValue(array?: Nullable<BaseValueObject>[][]): (string | number | boolean | null)[][];
|
|
8
8
|
export declare class ArrayValueObject extends BaseValueObject {
|
|
9
9
|
/**
|
|
@@ -3,6 +3,7 @@ import { BaseFunction } from '../../base-function';
|
|
|
3
3
|
export declare class Datevalue extends BaseFunction {
|
|
4
4
|
minParams: number;
|
|
5
5
|
maxParams: number;
|
|
6
|
+
isArgumentsIgnoreNumberPattern(): boolean;
|
|
6
7
|
calculate(dateText: BaseValueObject): BaseValueObject;
|
|
7
8
|
private _handleSingleObject;
|
|
8
9
|
}
|
|
@@ -3,6 +3,7 @@ import { BaseFunction } from '../../base-function';
|
|
|
3
3
|
export declare class Timevalue extends BaseFunction {
|
|
4
4
|
minParams: number;
|
|
5
5
|
maxParams: number;
|
|
6
|
+
isArgumentsIgnoreNumberPattern(): boolean;
|
|
6
7
|
calculate(timeText: BaseValueObject): BaseValueObject;
|
|
7
8
|
private _handleSingleObject;
|
|
8
9
|
}
|
|
@@ -3,6 +3,7 @@ import { BaseFunction } from '../../base-function';
|
|
|
3
3
|
export declare class Numbervalue extends BaseFunction {
|
|
4
4
|
minParams: number;
|
|
5
5
|
maxParams: number;
|
|
6
|
+
isArgumentsIgnoreNumberPattern(): boolean;
|
|
6
7
|
calculate(text: BaseValueObject, decimalSeparator?: BaseValueObject, groupSeparator?: BaseValueObject): BaseValueObject;
|
|
7
8
|
private _handleSingleObject;
|
|
8
9
|
}
|