@univerjs/sheets-formula 0.1.0-beta.0 → 0.1.0-beta.2
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 +8 -6
- package/lib/es/index.js +13695 -2372
- package/lib/index.css +1 -1
- package/lib/types/commands/operations/insert-function.operation.d.ts +12 -1
- package/lib/types/controllers/utils.d.ts +3 -2
- package/lib/types/formula-ui-plugin.d.ts +6 -1
- package/lib/types/index.d.ts +6 -0
- package/lib/types/locale/en-US.d.ts +89 -80
- package/lib/types/locale/function-list/compatibility/en-US.d.ts +0 -54
- package/lib/types/locale/function-list/compatibility/ja-JP.d.ts +0 -54
- package/lib/types/locale/function-list/compatibility/zh-CN.d.ts +0 -54
- package/lib/types/locale/function-list/logical/en-US.d.ts +6 -2
- package/lib/types/locale/function-list/logical/ja-JP.d.ts +6 -2
- package/lib/types/locale/function-list/logical/zh-CN.d.ts +6 -2
- package/lib/types/locale/function-list/lookup/en-US.d.ts +24 -4
- package/lib/types/locale/function-list/lookup/ja-JP.d.ts +24 -4
- package/lib/types/locale/function-list/lookup/zh-CN.d.ts +24 -4
- package/lib/types/locale/function-list/math/en-US.d.ts +4 -20
- package/lib/types/locale/function-list/math/ja-JP.d.ts +4 -20
- package/lib/types/locale/function-list/math/zh-CN.d.ts +4 -20
- package/lib/types/locale/zh-CN.d.ts +89 -80
- package/lib/types/services/description.service.d.ts +22 -1
- package/lib/types/services/formula-custom-function.service.d.ts +34 -0
- package/lib/types/services/function-list/array.d.ts +1 -1
- package/lib/types/services/function-list/compatibility.d.ts +1 -1
- package/lib/types/services/function-list/cube.d.ts +1 -1
- package/lib/types/services/function-list/database.d.ts +1 -1
- package/lib/types/services/function-list/date.d.ts +1 -1
- package/lib/types/services/function-list/engineering.d.ts +1 -1
- package/lib/types/services/function-list/financial.d.ts +1 -1
- package/lib/types/services/function-list/information.d.ts +1 -1
- package/lib/types/services/function-list/logical.d.ts +1 -1
- package/lib/types/services/function-list/lookup.d.ts +1 -1
- package/lib/types/services/function-list/text.d.ts +1 -1
- package/lib/types/services/function-list/web.d.ts +1 -1
- package/lib/types/services/register-function.service.d.ts +70 -0
- package/lib/umd/index.js +8 -6
- package/package.json +26 -26
package/lib/index.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
.univer-formula-error-function{position:absolute}.univer-formula-help-function{-webkit-user-select:none;user-select:none;box-sizing:border-box;width:250px;margin:0;line-height:20px;list-style:none;background-color:rgb(var(--bg-color-secondary));border:1px solid rgb(var(--border-color));border-radius:var(--border-radius-lg);outline:none;box-shadow:var(--box-shadow-base)}.univer-formula-help-function-title{display:flex;align-items:center;justify-content:space-between;box-sizing:border-box;padding:var(--padding-base) var(--padding-lg);font-size:var(--font-size-xs);font-weight:500;color:rgb(var(--text-color));border-bottom:1px solid rgb(var(--border-color))}.univer-formula-help-function-title-icons{display:flex}.univer-formula-help-function-title-icon{cursor:pointer;display:flex;align-items:center;justify-content:center;width:24px;height:24px;margin-left:var(--margin-xs);padding:0;font-size:var(--font-size-lg);color:rgb(var(--text-color-secondary));background-color:transparent;border:none;border-radius:var(--border-radius-base);outline:none;transition:background-color .2s}.univer-formula-help-function-title-icon:hover{background-color:rgb(var(--bg-color-hover))}.univer-formula-help-function-content{overflow-y:auto;box-sizing:border-box;max-height:350px;padding:0 var(--padding-lg) var(--padding-base) var(--padding-lg)}.univer-formula-help-function-content-inner{margin-top:var(--margin-sm)}.univer-formula-help-function-content-params{margin:var(--margin-xs) 0}.univer-formula-help-function-content-params-title{margin-bottom:var(--margin-xs);font-size:var(--font-size-xs);font-weight:500;color:rgb(var(--text-color))}.univer-formula-help-function-content-params-detail{font-size:var(--font-size-xxs);font-weight:400;color:rgb(var(--text-color-secondary))}.univer-formula-help-function-active{color:rgb(var(--primary-color))}.univer-formula-help-decorator{cursor:pointer;position:fixed;z-index:10;display:flex;align-items:center;justify-content:center;padding:var(--padding-xs)}.univer-formula-search-function{overflow-y:auto;box-sizing:border-box;width:250px;max-height:400px;margin:0;padding:var(--padding-sm);line-height:20px;list-style:none;background-color:rgb(var(--bg-color-secondary));border:1px solid rgb(var(--border-color));border-radius:var(--border-radius-lg);outline:none;box-shadow:var(--box-shadow-base)}.univer-formula-search-function-item{cursor:pointer;box-sizing:border-box;padding:var(--padding-xs) var(--padding-sm);color:rgb(var(--text-color));border-radius:var(--border-radius-base);transition:background .2s}.univer-formula-search-function-item-name{font-size:var(--font-size-xs)}.univer-formula-search-function-item-name-light{color:rgb(var(--error-color))}.univer-formula-search-function-item-desc{display:block;font-size:var(--font-size-xxs)}.univer-formula-search-function-item-active{background-color:rgb(var(--bg-color-hover))}.univer-formula-more-functions{display:flex;flex-direction:column;justify-content:space-between;height:100%;line-height:20px}.univer-formula-more-functions-operation{display:flex;justify-content:flex-end}.univer-formula-more-functions-operation>button{margin:0 0 var(--margin-lg) var(--margin-base)}.univer-formula-function-params{margin-bottom:var(--margin-xs);font-size:var(--font-size-xxs)}.univer-formula-function-params-title{font-weight:500;color:rgb(var(--text-color-secondary))}.univer-formula-function-params-detail{font-weight:400;color:rgb(var(--text-color))}.univer-formula-input-params-list{overflow-y:auto;height:364px}.univer-formula-input-params-list-item-name{font-size:var(--font-size-sm)}.univer-formula-input-params-list-item-selector{margin:var(--margin-xxs) 0 var(--margin-xs) 0}.univer-formula-select-function-select{display:flex;gap:10%;align-items:center;justify-content:space-between}.univer-formula-select-function-result{-webkit-user-select:none;user-select:none;overflow-y:auto;box-sizing:border-box;width:100%;height:364px;margin:0;margin-top:var(--margin-xs);padding:var(--padding-base);list-style:none;border:1px solid rgb(var(--border-color));border-radius:var(--border-radius-base);outline:none}.univer-formula-select-function-result-item{cursor:pointer;position:relative;box-sizing:border-box;padding:var(--padding-xs) 28px;font-size:var(--font-size-xs);color:rgb(var(--text-color));border-radius:var(--border-radius-base);transition:background .2s}.univer-formula-select-function-result-item-name-light{color:rgb(var(--error-color))}.univer-formula-select-function-result-item-selected{position:absolute;top:50%;left:6px;transform:translateY(-50%);display:inline-flex;font-size:var(--font-size-lg);color:rgb(var(--success-color))}.univer-formula-select-function-result-item-active{background-color:rgb(var(--bg-color-hover))}.univer-formula-select-function-content{overflow-y:auto;max-height:307px;margin:var(--margin-xs) 0}
|
|
1
|
+
.univer-formula-error-function{position:absolute}.univer-formula-help-function{-webkit-user-select:none;user-select:none;box-sizing:border-box;width:250px;margin:0;line-height:20px;list-style:none;background-color:rgb(var(--bg-color-secondary));border:1px solid rgb(var(--border-color));border-radius:var(--border-radius-lg);outline:none;box-shadow:var(--box-shadow-base)}.univer-formula-help-function-title{display:flex;align-items:center;justify-content:space-between;box-sizing:border-box;padding:var(--padding-base) var(--padding-lg);font-size:var(--font-size-xs);font-weight:500;color:rgb(var(--text-color));border-bottom:1px solid rgb(var(--border-color))}.univer-formula-help-function-title-icons{display:flex}.univer-formula-help-function-title-icon{cursor:pointer;display:flex;align-items:center;justify-content:center;width:24px;height:24px;margin-left:var(--margin-xs);padding:0;font-size:var(--font-size-lg);color:rgb(var(--text-color-secondary));background-color:transparent;border:none;border-radius:var(--border-radius-base);outline:none;transition:background-color .2s}.univer-formula-help-function-title-icon:hover{background-color:rgb(var(--bg-color-hover))}.univer-formula-help-function-content{overflow-y:auto;box-sizing:border-box;max-height:350px;padding:0 var(--padding-lg) var(--padding-base) var(--padding-lg)}.univer-formula-help-function-content-inner{margin-top:var(--margin-sm)}.univer-formula-help-function-content-params{margin:var(--margin-xs) 0}.univer-formula-help-function-content-params-title{margin-bottom:var(--margin-xs);font-size:var(--font-size-xs);font-weight:500;color:rgb(var(--text-color))}.univer-formula-help-function-content-params-detail{font-size:var(--font-size-xxs);font-weight:400;color:rgb(var(--text-color-secondary))}.univer-formula-help-function-active{color:rgb(var(--primary-color))}.univer-formula-help-decorator{cursor:pointer;position:fixed;z-index:10;display:flex;align-items:center;justify-content:center;padding:var(--padding-xs)}.univer-formula-search-function{overflow-y:auto;box-sizing:border-box;width:250px;max-height:400px;margin:0;padding:var(--padding-sm);line-height:20px;list-style:none;background-color:rgb(var(--bg-color-secondary));border:1px solid rgb(var(--border-color));border-radius:var(--border-radius-lg);outline:none;box-shadow:var(--box-shadow-base)}.univer-formula-search-function-item{cursor:pointer;box-sizing:border-box;padding:var(--padding-xs) var(--padding-sm);color:rgb(var(--text-color));border-radius:var(--border-radius-base);transition:background .2s}.univer-formula-search-function-item-name{font-size:var(--font-size-xs)}.univer-formula-search-function-item-name-light{color:rgb(var(--error-color))}.univer-formula-search-function-item-desc{display:block;font-size:var(--font-size-xxs);color:rgb(var(--grey-500))}.univer-formula-search-function-item-active{background-color:rgb(var(--bg-color-hover))}.univer-formula-more-functions{display:flex;flex-direction:column;justify-content:space-between;height:100%;line-height:20px}.univer-formula-more-functions-operation{display:flex;justify-content:flex-end}.univer-formula-more-functions-operation>button{margin:0 0 var(--margin-lg) var(--margin-base)}.univer-formula-function-params{margin-bottom:var(--margin-xs);font-size:var(--font-size-xxs)}.univer-formula-function-params-title{font-weight:500;color:rgb(var(--text-color-secondary))}.univer-formula-function-params-detail{font-weight:400;color:rgb(var(--text-color))}.univer-formula-input-params-list{overflow-y:auto;height:364px}.univer-formula-input-params-list-item-name{font-size:var(--font-size-sm)}.univer-formula-input-params-list-item-selector{margin:var(--margin-xxs) 0 var(--margin-xs) 0}.univer-formula-select-function-select{display:flex;gap:10%;align-items:center;justify-content:space-between}.univer-formula-select-function-result{-webkit-user-select:none;user-select:none;overflow-y:auto;box-sizing:border-box;width:100%;height:364px;margin:0;margin-top:var(--margin-xs);padding:var(--padding-base);list-style:none;border:1px solid rgb(var(--border-color));border-radius:var(--border-radius-base);outline:none}.univer-formula-select-function-result-item{cursor:pointer;position:relative;box-sizing:border-box;padding:var(--padding-xs) 28px;font-size:var(--font-size-xs);color:rgb(var(--text-color));border-radius:var(--border-radius-base);transition:background .2s}.univer-formula-select-function-result-item>span{display:block}.univer-formula-select-function-result-item-name-light{color:rgb(var(--error-color))}.univer-formula-select-function-result-item-selected{position:absolute;top:50%;left:6px;transform:translateY(-50%);display:inline-flex;font-size:var(--font-size-lg);color:rgb(var(--success-color))}.univer-formula-select-function-result-item-active{background-color:rgb(var(--bg-color-hover))}.univer-formula-select-function-content{overflow-y:auto;max-height:307px;margin:var(--margin-xs) 0}
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
* See the License for the specific language governing permissions and
|
|
14
14
|
* limitations under the License.
|
|
15
15
|
*/
|
|
16
|
-
import type { ICommand } from '@univerjs/core';
|
|
16
|
+
import type { ICellData, ICommand, IRange, Nullable } from '@univerjs/core';
|
|
17
17
|
export interface IInsertFunctionOperationParams {
|
|
18
18
|
/**
|
|
19
19
|
* function name
|
|
@@ -21,3 +21,14 @@ export interface IInsertFunctionOperationParams {
|
|
|
21
21
|
value: string;
|
|
22
22
|
}
|
|
23
23
|
export declare const InsertFunctionOperation: ICommand;
|
|
24
|
+
export declare function isNumberCell(cell: Nullable<ICellData>): boolean | void | null | undefined;
|
|
25
|
+
/**
|
|
26
|
+
* Check if a single cell
|
|
27
|
+
* @param range
|
|
28
|
+
*/
|
|
29
|
+
export declare function isSingleCell(range: IRange): boolean;
|
|
30
|
+
/**
|
|
31
|
+
* Check if there is a multi-row, multi-column range
|
|
32
|
+
* @param range
|
|
33
|
+
*/
|
|
34
|
+
export declare function isMultiRowsColumnsRange(range: IRange): boolean;
|
|
@@ -17,10 +17,11 @@ import type { ICommandInfo, IObjectMatrixPrimitiveType, Nullable } from '@univer
|
|
|
17
17
|
import type { IArrayFormulaRangeType } from '@univerjs/engine-formula';
|
|
18
18
|
import type { ISelectionWithStyle } from '@univerjs/sheets';
|
|
19
19
|
interface IFormulaDataGenerics<T> {
|
|
20
|
-
[unitId: string]: {
|
|
20
|
+
[unitId: string]: Nullable<{
|
|
21
21
|
[sheetId: string]: IObjectMatrixPrimitiveType<T>;
|
|
22
|
-
}
|
|
22
|
+
}>;
|
|
23
23
|
}
|
|
24
24
|
export declare function offsetFormula<T>(formulaData: IFormulaDataGenerics<T>, command: ICommandInfo, unitId: string, sheetId: string, selections?: Readonly<Nullable<ISelectionWithStyle[]>>): IFormulaDataGenerics<T>;
|
|
25
25
|
export declare function offsetArrayFormula(arrayFormulaRange: IArrayFormulaRangeType, unitId: string, sheetId: string): IArrayFormulaRangeType;
|
|
26
|
+
export declare function removeFormulaData<T>(formulaData: IFormulaDataGenerics<T>, unitId: string, sheetId: string): void;
|
|
26
27
|
export {};
|
|
@@ -14,10 +14,15 @@
|
|
|
14
14
|
* limitations under the License.
|
|
15
15
|
*/
|
|
16
16
|
import { IUniverInstanceService, LocaleService, Plugin, PluginType } from '@univerjs/core';
|
|
17
|
-
import type { IFunctionInfo } from '@univerjs/engine-formula';
|
|
17
|
+
import type { BaseFunction, IFunctionInfo, IFunctionNames } from '@univerjs/engine-formula';
|
|
18
|
+
import type { Ctor } from '@wendellhu/redi';
|
|
18
19
|
import { Injector } from '@wendellhu/redi';
|
|
20
|
+
/**
|
|
21
|
+
* The configuration of the formula UI plugin.
|
|
22
|
+
*/
|
|
19
23
|
interface IFormulaUIConfig {
|
|
20
24
|
description: IFunctionInfo[];
|
|
25
|
+
function: Array<[Ctor<BaseFunction>, IFunctionNames]>;
|
|
21
26
|
}
|
|
22
27
|
export declare class UniverSheetsFormulaPlugin extends Plugin {
|
|
23
28
|
private _config;
|
package/lib/types/index.d.ts
CHANGED
|
@@ -15,3 +15,9 @@
|
|
|
15
15
|
*/
|
|
16
16
|
export { UniverSheetsFormulaPlugin } from './formula-ui-plugin';
|
|
17
17
|
export { enUS, zhCN } from './locale';
|
|
18
|
+
export { IDescriptionService } from './services/description.service';
|
|
19
|
+
export { DescriptionService } from './services/description.service';
|
|
20
|
+
export { FormulaCustomFunctionService, IFormulaCustomFunctionService, } from './services/formula-custom-function.service';
|
|
21
|
+
export type { IRegisterFunctionParams, IUnregisterFunctionParams } from './services/register-function.service';
|
|
22
|
+
export { RegisterFunctionService } from './services/register-function.service';
|
|
23
|
+
export { IRegisterFunctionService } from './services/register-function.service';
|
|
@@ -187,24 +187,6 @@ declare const _default: {
|
|
|
187
187
|
};
|
|
188
188
|
};
|
|
189
189
|
};
|
|
190
|
-
CONCATENATE: {
|
|
191
|
-
description: string;
|
|
192
|
-
abstract: string;
|
|
193
|
-
links: {
|
|
194
|
-
title: string;
|
|
195
|
-
url: string;
|
|
196
|
-
}[];
|
|
197
|
-
functionParameter: {
|
|
198
|
-
number1: {
|
|
199
|
-
name: string;
|
|
200
|
-
detail: string;
|
|
201
|
-
};
|
|
202
|
-
number2: {
|
|
203
|
-
name: string;
|
|
204
|
-
detail: string;
|
|
205
|
-
};
|
|
206
|
-
};
|
|
207
|
-
};
|
|
208
190
|
CONFIDENCE: {
|
|
209
191
|
description: string;
|
|
210
192
|
abstract: string;
|
|
@@ -313,42 +295,6 @@ declare const _default: {
|
|
|
313
295
|
};
|
|
314
296
|
};
|
|
315
297
|
};
|
|
316
|
-
FLOOR: {
|
|
317
|
-
description: string;
|
|
318
|
-
abstract: string;
|
|
319
|
-
links: {
|
|
320
|
-
title: string;
|
|
321
|
-
url: string;
|
|
322
|
-
}[];
|
|
323
|
-
functionParameter: {
|
|
324
|
-
number1: {
|
|
325
|
-
name: string;
|
|
326
|
-
detail: string;
|
|
327
|
-
};
|
|
328
|
-
number2: {
|
|
329
|
-
name: string;
|
|
330
|
-
detail: string;
|
|
331
|
-
};
|
|
332
|
-
};
|
|
333
|
-
};
|
|
334
|
-
FORECAST: {
|
|
335
|
-
description: string;
|
|
336
|
-
abstract: string;
|
|
337
|
-
links: {
|
|
338
|
-
title: string;
|
|
339
|
-
url: string;
|
|
340
|
-
}[];
|
|
341
|
-
functionParameter: {
|
|
342
|
-
number1: {
|
|
343
|
-
name: string;
|
|
344
|
-
detail: string;
|
|
345
|
-
};
|
|
346
|
-
number2: {
|
|
347
|
-
name: string;
|
|
348
|
-
detail: string;
|
|
349
|
-
};
|
|
350
|
-
};
|
|
351
|
-
};
|
|
352
298
|
FTEST: {
|
|
353
299
|
description: string;
|
|
354
300
|
abstract: string;
|
|
@@ -2445,11 +2391,11 @@ declare const _default: {
|
|
|
2445
2391
|
url: string;
|
|
2446
2392
|
}[];
|
|
2447
2393
|
functionParameter: {
|
|
2448
|
-
|
|
2394
|
+
parameter: {
|
|
2449
2395
|
name: string;
|
|
2450
2396
|
detail: string;
|
|
2451
2397
|
};
|
|
2452
|
-
|
|
2398
|
+
calculation: {
|
|
2453
2399
|
name: string;
|
|
2454
2400
|
detail: string;
|
|
2455
2401
|
};
|
|
@@ -2489,6 +2435,10 @@ declare const _default: {
|
|
|
2489
2435
|
name: string;
|
|
2490
2436
|
detail: string;
|
|
2491
2437
|
};
|
|
2438
|
+
value3: {
|
|
2439
|
+
name: string;
|
|
2440
|
+
detail: string;
|
|
2441
|
+
};
|
|
2492
2442
|
};
|
|
2493
2443
|
};
|
|
2494
2444
|
MAP: {
|
|
@@ -2761,6 +2711,24 @@ declare const _default: {
|
|
|
2761
2711
|
};
|
|
2762
2712
|
};
|
|
2763
2713
|
};
|
|
2714
|
+
CONCATENATE: {
|
|
2715
|
+
description: string;
|
|
2716
|
+
abstract: string;
|
|
2717
|
+
links: {
|
|
2718
|
+
title: string;
|
|
2719
|
+
url: string;
|
|
2720
|
+
}[];
|
|
2721
|
+
functionParameter: {
|
|
2722
|
+
number1: {
|
|
2723
|
+
name: string;
|
|
2724
|
+
detail: string;
|
|
2725
|
+
};
|
|
2726
|
+
number2: {
|
|
2727
|
+
name: string;
|
|
2728
|
+
detail: string;
|
|
2729
|
+
};
|
|
2730
|
+
};
|
|
2731
|
+
};
|
|
2764
2732
|
DBCS: {
|
|
2765
2733
|
description: string;
|
|
2766
2734
|
abstract: string;
|
|
@@ -3687,11 +3655,23 @@ declare const _default: {
|
|
|
3687
3655
|
url: string;
|
|
3688
3656
|
}[];
|
|
3689
3657
|
functionParameter: {
|
|
3690
|
-
|
|
3658
|
+
row_num: {
|
|
3691
3659
|
name: string;
|
|
3692
3660
|
detail: string;
|
|
3693
3661
|
};
|
|
3694
|
-
|
|
3662
|
+
column_num: {
|
|
3663
|
+
name: string;
|
|
3664
|
+
detail: string;
|
|
3665
|
+
};
|
|
3666
|
+
abs_num: {
|
|
3667
|
+
name: string;
|
|
3668
|
+
detail: string;
|
|
3669
|
+
};
|
|
3670
|
+
a1: {
|
|
3671
|
+
name: string;
|
|
3672
|
+
detail: string;
|
|
3673
|
+
};
|
|
3674
|
+
sheet_text: {
|
|
3695
3675
|
name: string;
|
|
3696
3676
|
detail: string;
|
|
3697
3677
|
};
|
|
@@ -4245,11 +4225,19 @@ declare const _default: {
|
|
|
4245
4225
|
url: string;
|
|
4246
4226
|
}[];
|
|
4247
4227
|
functionParameter: {
|
|
4248
|
-
|
|
4228
|
+
lookupValue: {
|
|
4249
4229
|
name: string;
|
|
4250
4230
|
detail: string;
|
|
4251
4231
|
};
|
|
4252
|
-
|
|
4232
|
+
tableArray: {
|
|
4233
|
+
name: string;
|
|
4234
|
+
detail: string;
|
|
4235
|
+
};
|
|
4236
|
+
colIndexNum: {
|
|
4237
|
+
name: string;
|
|
4238
|
+
detail: string;
|
|
4239
|
+
};
|
|
4240
|
+
rangeLookup: {
|
|
4253
4241
|
name: string;
|
|
4254
4242
|
detail: string;
|
|
4255
4243
|
};
|
|
@@ -4957,6 +4945,24 @@ declare const _default: {
|
|
|
4957
4945
|
};
|
|
4958
4946
|
};
|
|
4959
4947
|
};
|
|
4948
|
+
FORECAST: {
|
|
4949
|
+
description: string;
|
|
4950
|
+
abstract: string;
|
|
4951
|
+
links: {
|
|
4952
|
+
title: string;
|
|
4953
|
+
url: string;
|
|
4954
|
+
}[];
|
|
4955
|
+
functionParameter: {
|
|
4956
|
+
number1: {
|
|
4957
|
+
name: string;
|
|
4958
|
+
detail: string;
|
|
4959
|
+
};
|
|
4960
|
+
number2: {
|
|
4961
|
+
name: string;
|
|
4962
|
+
detail: string;
|
|
4963
|
+
};
|
|
4964
|
+
};
|
|
4965
|
+
};
|
|
4960
4966
|
FORECAST_ETS: {
|
|
4961
4967
|
description: string;
|
|
4962
4968
|
abstract: string;
|
|
@@ -6333,11 +6339,7 @@ declare const _default: {
|
|
|
6333
6339
|
url: string;
|
|
6334
6340
|
}[];
|
|
6335
6341
|
functionParameter: {
|
|
6336
|
-
|
|
6337
|
-
name: string;
|
|
6338
|
-
detail: string;
|
|
6339
|
-
};
|
|
6340
|
-
number2: {
|
|
6342
|
+
number: {
|
|
6341
6343
|
name: string;
|
|
6342
6344
|
detail: string;
|
|
6343
6345
|
};
|
|
@@ -6351,11 +6353,7 @@ declare const _default: {
|
|
|
6351
6353
|
url: string;
|
|
6352
6354
|
}[];
|
|
6353
6355
|
functionParameter: {
|
|
6354
|
-
|
|
6355
|
-
name: string;
|
|
6356
|
-
detail: string;
|
|
6357
|
-
};
|
|
6358
|
-
number2: {
|
|
6356
|
+
number: {
|
|
6359
6357
|
name: string;
|
|
6360
6358
|
detail: string;
|
|
6361
6359
|
};
|
|
@@ -6369,11 +6367,7 @@ declare const _default: {
|
|
|
6369
6367
|
url: string;
|
|
6370
6368
|
}[];
|
|
6371
6369
|
functionParameter: {
|
|
6372
|
-
|
|
6373
|
-
name: string;
|
|
6374
|
-
detail: string;
|
|
6375
|
-
};
|
|
6376
|
-
number2: {
|
|
6370
|
+
number: {
|
|
6377
6371
|
name: string;
|
|
6378
6372
|
detail: string;
|
|
6379
6373
|
};
|
|
@@ -6387,11 +6381,7 @@ declare const _default: {
|
|
|
6387
6381
|
url: string;
|
|
6388
6382
|
}[];
|
|
6389
6383
|
functionParameter: {
|
|
6390
|
-
|
|
6391
|
-
name: string;
|
|
6392
|
-
detail: string;
|
|
6393
|
-
};
|
|
6394
|
-
number2: {
|
|
6384
|
+
number: {
|
|
6395
6385
|
name: string;
|
|
6396
6386
|
detail: string;
|
|
6397
6387
|
};
|
|
@@ -6865,6 +6855,24 @@ declare const _default: {
|
|
|
6865
6855
|
};
|
|
6866
6856
|
};
|
|
6867
6857
|
};
|
|
6858
|
+
FLOOR: {
|
|
6859
|
+
description: string;
|
|
6860
|
+
abstract: string;
|
|
6861
|
+
links: {
|
|
6862
|
+
title: string;
|
|
6863
|
+
url: string;
|
|
6864
|
+
}[];
|
|
6865
|
+
functionParameter: {
|
|
6866
|
+
number1: {
|
|
6867
|
+
name: string;
|
|
6868
|
+
detail: string;
|
|
6869
|
+
};
|
|
6870
|
+
number2: {
|
|
6871
|
+
name: string;
|
|
6872
|
+
detail: string;
|
|
6873
|
+
};
|
|
6874
|
+
};
|
|
6875
|
+
};
|
|
6868
6876
|
FLOOR_MATH: {
|
|
6869
6877
|
description: string;
|
|
6870
6878
|
abstract: string;
|
|
@@ -9232,6 +9240,7 @@ declare const _default: {
|
|
|
9232
9240
|
web: string;
|
|
9233
9241
|
array: string;
|
|
9234
9242
|
univer: string;
|
|
9243
|
+
user: string;
|
|
9235
9244
|
};
|
|
9236
9245
|
moreFunctions: {
|
|
9237
9246
|
confirm: string;
|
|
@@ -122,24 +122,6 @@ declare const _default: {
|
|
|
122
122
|
};
|
|
123
123
|
};
|
|
124
124
|
};
|
|
125
|
-
CONCATENATE: {
|
|
126
|
-
description: string;
|
|
127
|
-
abstract: string;
|
|
128
|
-
links: {
|
|
129
|
-
title: string;
|
|
130
|
-
url: string;
|
|
131
|
-
}[];
|
|
132
|
-
functionParameter: {
|
|
133
|
-
number1: {
|
|
134
|
-
name: string;
|
|
135
|
-
detail: string;
|
|
136
|
-
};
|
|
137
|
-
number2: {
|
|
138
|
-
name: string;
|
|
139
|
-
detail: string;
|
|
140
|
-
};
|
|
141
|
-
};
|
|
142
|
-
};
|
|
143
125
|
CONFIDENCE: {
|
|
144
126
|
description: string;
|
|
145
127
|
abstract: string;
|
|
@@ -248,42 +230,6 @@ declare const _default: {
|
|
|
248
230
|
};
|
|
249
231
|
};
|
|
250
232
|
};
|
|
251
|
-
FLOOR: {
|
|
252
|
-
description: string;
|
|
253
|
-
abstract: string;
|
|
254
|
-
links: {
|
|
255
|
-
title: string;
|
|
256
|
-
url: string;
|
|
257
|
-
}[];
|
|
258
|
-
functionParameter: {
|
|
259
|
-
number1: {
|
|
260
|
-
name: string;
|
|
261
|
-
detail: string;
|
|
262
|
-
};
|
|
263
|
-
number2: {
|
|
264
|
-
name: string;
|
|
265
|
-
detail: string;
|
|
266
|
-
};
|
|
267
|
-
};
|
|
268
|
-
};
|
|
269
|
-
FORECAST: {
|
|
270
|
-
description: string;
|
|
271
|
-
abstract: string;
|
|
272
|
-
links: {
|
|
273
|
-
title: string;
|
|
274
|
-
url: string;
|
|
275
|
-
}[];
|
|
276
|
-
functionParameter: {
|
|
277
|
-
number1: {
|
|
278
|
-
name: string;
|
|
279
|
-
detail: string;
|
|
280
|
-
};
|
|
281
|
-
number2: {
|
|
282
|
-
name: string;
|
|
283
|
-
detail: string;
|
|
284
|
-
};
|
|
285
|
-
};
|
|
286
|
-
};
|
|
287
233
|
FTEST: {
|
|
288
234
|
description: string;
|
|
289
235
|
abstract: string;
|
|
@@ -122,24 +122,6 @@ declare const _default: {
|
|
|
122
122
|
};
|
|
123
123
|
};
|
|
124
124
|
};
|
|
125
|
-
CONCATENATE: {
|
|
126
|
-
description: string;
|
|
127
|
-
abstract: string;
|
|
128
|
-
links: {
|
|
129
|
-
title: string;
|
|
130
|
-
url: string;
|
|
131
|
-
}[];
|
|
132
|
-
functionParameter: {
|
|
133
|
-
number1: {
|
|
134
|
-
name: string;
|
|
135
|
-
detail: string;
|
|
136
|
-
};
|
|
137
|
-
number2: {
|
|
138
|
-
name: string;
|
|
139
|
-
detail: string;
|
|
140
|
-
};
|
|
141
|
-
};
|
|
142
|
-
};
|
|
143
125
|
CONFIDENCE: {
|
|
144
126
|
description: string;
|
|
145
127
|
abstract: string;
|
|
@@ -248,42 +230,6 @@ declare const _default: {
|
|
|
248
230
|
};
|
|
249
231
|
};
|
|
250
232
|
};
|
|
251
|
-
FLOOR: {
|
|
252
|
-
description: string;
|
|
253
|
-
abstract: string;
|
|
254
|
-
links: {
|
|
255
|
-
title: string;
|
|
256
|
-
url: string;
|
|
257
|
-
}[];
|
|
258
|
-
functionParameter: {
|
|
259
|
-
number1: {
|
|
260
|
-
name: string;
|
|
261
|
-
detail: string;
|
|
262
|
-
};
|
|
263
|
-
number2: {
|
|
264
|
-
name: string;
|
|
265
|
-
detail: string;
|
|
266
|
-
};
|
|
267
|
-
};
|
|
268
|
-
};
|
|
269
|
-
FORECAST: {
|
|
270
|
-
description: string;
|
|
271
|
-
abstract: string;
|
|
272
|
-
links: {
|
|
273
|
-
title: string;
|
|
274
|
-
url: string;
|
|
275
|
-
}[];
|
|
276
|
-
functionParameter: {
|
|
277
|
-
number1: {
|
|
278
|
-
name: string;
|
|
279
|
-
detail: string;
|
|
280
|
-
};
|
|
281
|
-
number2: {
|
|
282
|
-
name: string;
|
|
283
|
-
detail: string;
|
|
284
|
-
};
|
|
285
|
-
};
|
|
286
|
-
};
|
|
287
233
|
FTEST: {
|
|
288
234
|
description: string;
|
|
289
235
|
abstract: string;
|
|
@@ -122,24 +122,6 @@ declare const _default: {
|
|
|
122
122
|
};
|
|
123
123
|
};
|
|
124
124
|
};
|
|
125
|
-
CONCATENATE: {
|
|
126
|
-
description: string;
|
|
127
|
-
abstract: string;
|
|
128
|
-
links: {
|
|
129
|
-
title: string;
|
|
130
|
-
url: string;
|
|
131
|
-
}[];
|
|
132
|
-
functionParameter: {
|
|
133
|
-
number1: {
|
|
134
|
-
name: string;
|
|
135
|
-
detail: string;
|
|
136
|
-
};
|
|
137
|
-
number2: {
|
|
138
|
-
name: string;
|
|
139
|
-
detail: string;
|
|
140
|
-
};
|
|
141
|
-
};
|
|
142
|
-
};
|
|
143
125
|
CONFIDENCE: {
|
|
144
126
|
description: string;
|
|
145
127
|
abstract: string;
|
|
@@ -248,42 +230,6 @@ declare const _default: {
|
|
|
248
230
|
};
|
|
249
231
|
};
|
|
250
232
|
};
|
|
251
|
-
FLOOR: {
|
|
252
|
-
description: string;
|
|
253
|
-
abstract: string;
|
|
254
|
-
links: {
|
|
255
|
-
title: string;
|
|
256
|
-
url: string;
|
|
257
|
-
}[];
|
|
258
|
-
functionParameter: {
|
|
259
|
-
number1: {
|
|
260
|
-
name: string;
|
|
261
|
-
detail: string;
|
|
262
|
-
};
|
|
263
|
-
number2: {
|
|
264
|
-
name: string;
|
|
265
|
-
detail: string;
|
|
266
|
-
};
|
|
267
|
-
};
|
|
268
|
-
};
|
|
269
|
-
FORECAST: {
|
|
270
|
-
description: string;
|
|
271
|
-
abstract: string;
|
|
272
|
-
links: {
|
|
273
|
-
title: string;
|
|
274
|
-
url: string;
|
|
275
|
-
}[];
|
|
276
|
-
functionParameter: {
|
|
277
|
-
number1: {
|
|
278
|
-
name: string;
|
|
279
|
-
detail: string;
|
|
280
|
-
};
|
|
281
|
-
number2: {
|
|
282
|
-
name: string;
|
|
283
|
-
detail: string;
|
|
284
|
-
};
|
|
285
|
-
};
|
|
286
|
-
};
|
|
287
233
|
FTEST: {
|
|
288
234
|
description: string;
|
|
289
235
|
abstract: string;
|
|
@@ -166,11 +166,11 @@ declare const _default: {
|
|
|
166
166
|
url: string;
|
|
167
167
|
}[];
|
|
168
168
|
functionParameter: {
|
|
169
|
-
|
|
169
|
+
parameter: {
|
|
170
170
|
name: string;
|
|
171
171
|
detail: string;
|
|
172
172
|
};
|
|
173
|
-
|
|
173
|
+
calculation: {
|
|
174
174
|
name: string;
|
|
175
175
|
detail: string;
|
|
176
176
|
};
|
|
@@ -210,6 +210,10 @@ declare const _default: {
|
|
|
210
210
|
name: string;
|
|
211
211
|
detail: string;
|
|
212
212
|
};
|
|
213
|
+
value3: {
|
|
214
|
+
name: string;
|
|
215
|
+
detail: string;
|
|
216
|
+
};
|
|
213
217
|
};
|
|
214
218
|
};
|
|
215
219
|
MAP: {
|
|
@@ -166,11 +166,11 @@ declare const _default: {
|
|
|
166
166
|
url: string;
|
|
167
167
|
}[];
|
|
168
168
|
functionParameter: {
|
|
169
|
-
|
|
169
|
+
parameter: {
|
|
170
170
|
name: string;
|
|
171
171
|
detail: string;
|
|
172
172
|
};
|
|
173
|
-
|
|
173
|
+
calculation: {
|
|
174
174
|
name: string;
|
|
175
175
|
detail: string;
|
|
176
176
|
};
|
|
@@ -210,6 +210,10 @@ declare const _default: {
|
|
|
210
210
|
name: string;
|
|
211
211
|
detail: string;
|
|
212
212
|
};
|
|
213
|
+
value3: {
|
|
214
|
+
name: string;
|
|
215
|
+
detail: string;
|
|
216
|
+
};
|
|
213
217
|
};
|
|
214
218
|
};
|
|
215
219
|
MAP: {
|
|
@@ -166,11 +166,11 @@ declare const _default: {
|
|
|
166
166
|
url: string;
|
|
167
167
|
}[];
|
|
168
168
|
functionParameter: {
|
|
169
|
-
|
|
169
|
+
parameter: {
|
|
170
170
|
name: string;
|
|
171
171
|
detail: string;
|
|
172
172
|
};
|
|
173
|
-
|
|
173
|
+
calculation: {
|
|
174
174
|
name: string;
|
|
175
175
|
detail: string;
|
|
176
176
|
};
|
|
@@ -210,6 +210,10 @@ declare const _default: {
|
|
|
210
210
|
name: string;
|
|
211
211
|
detail: string;
|
|
212
212
|
};
|
|
213
|
+
value3: {
|
|
214
|
+
name: string;
|
|
215
|
+
detail: string;
|
|
216
|
+
};
|
|
213
217
|
};
|
|
214
218
|
};
|
|
215
219
|
MAP: {
|
|
@@ -22,11 +22,23 @@ declare const _default: {
|
|
|
22
22
|
url: string;
|
|
23
23
|
}[];
|
|
24
24
|
functionParameter: {
|
|
25
|
-
|
|
25
|
+
row_num: {
|
|
26
26
|
name: string;
|
|
27
27
|
detail: string;
|
|
28
28
|
};
|
|
29
|
-
|
|
29
|
+
column_num: {
|
|
30
|
+
name: string;
|
|
31
|
+
detail: string;
|
|
32
|
+
};
|
|
33
|
+
abs_num: {
|
|
34
|
+
name: string;
|
|
35
|
+
detail: string;
|
|
36
|
+
};
|
|
37
|
+
a1: {
|
|
38
|
+
name: string;
|
|
39
|
+
detail: string;
|
|
40
|
+
};
|
|
41
|
+
sheet_text: {
|
|
30
42
|
name: string;
|
|
31
43
|
detail: string;
|
|
32
44
|
};
|
|
@@ -580,11 +592,19 @@ declare const _default: {
|
|
|
580
592
|
url: string;
|
|
581
593
|
}[];
|
|
582
594
|
functionParameter: {
|
|
583
|
-
|
|
595
|
+
lookupValue: {
|
|
584
596
|
name: string;
|
|
585
597
|
detail: string;
|
|
586
598
|
};
|
|
587
|
-
|
|
599
|
+
tableArray: {
|
|
600
|
+
name: string;
|
|
601
|
+
detail: string;
|
|
602
|
+
};
|
|
603
|
+
colIndexNum: {
|
|
604
|
+
name: string;
|
|
605
|
+
detail: string;
|
|
606
|
+
};
|
|
607
|
+
rangeLookup: {
|
|
588
608
|
name: string;
|
|
589
609
|
detail: string;
|
|
590
610
|
};
|