@univerjs/sheets-formula 0.1.0-beta.2 → 0.1.0-beta.4
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/{LICENSE.txt → LICENSE} +0 -2
- package/lib/cjs/index.js +7 -7
- package/lib/es/index.js +3242 -2820
- package/lib/index.css +1 -1
- package/lib/types/controllers/menu.d.ts +1 -1
- package/lib/types/controllers/prompt.controller.d.ts +5 -1
- package/lib/types/controllers/update-formula.controller.d.ts +2 -0
- package/lib/types/controllers/utils/__tests__/redo-undo-formula-data.spec.d.ts +16 -0
- package/lib/types/controllers/utils/offset-formula-data.d.ts +52 -0
- package/lib/types/controllers/utils/redo-undo-formula-data.d.ts +19 -0
- package/lib/types/locale/en-US.d.ts +76 -24
- package/lib/types/locale/function-list/information/en-US.d.ts +1 -5
- package/lib/types/locale/function-list/information/ja-JP.d.ts +1 -5
- package/lib/types/locale/function-list/information/zh-CN.d.ts +1 -5
- package/lib/types/locale/function-list/logical/en-US.d.ts +10 -6
- package/lib/types/locale/function-list/logical/ja-JP.d.ts +10 -6
- package/lib/types/locale/function-list/logical/zh-CN.d.ts +10 -6
- package/lib/types/locale/function-list/lookup/en-US.d.ts +48 -8
- package/lib/types/locale/function-list/lookup/ja-JP.d.ts +48 -8
- package/lib/types/locale/function-list/lookup/zh-CN.d.ts +48 -8
- package/lib/types/locale/function-list/math/en-US.d.ts +15 -3
- package/lib/types/locale/function-list/math/ja-JP.d.ts +20 -4
- package/lib/types/locale/function-list/math/zh-CN.d.ts +15 -3
- package/lib/types/locale/function-list/statistical/ja-JP.d.ts +2 -2
- package/lib/types/locale/function-list/text/en-US.d.ts +2 -2
- package/lib/types/locale/function-list/text/ja-JP.d.ts +2 -2
- package/lib/types/locale/function-list/text/zh-CN.d.ts +2 -2
- package/lib/types/locale/zh-CN.d.ts +76 -24
- package/lib/umd/index.js +6 -6
- package/package.json +45 -43
- package/lib/types/controllers/utils.d.ts +0 -27
- /package/lib/types/controllers/{__tests__/utils.spec.d.ts → utils/__tests__/offset-formula-data.spec.d.ts} +0 -0
package/lib/index.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
.univer-formula-error-function{position:absolute}.univer-formula-help-function{
|
|
1
|
+
.univer-formula-error-function{position:absolute}.univer-formula-help-function{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));overflow-wrap:anywhere;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{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}
|
|
@@ -16,5 +16,5 @@
|
|
|
16
16
|
import type { IMenuItem } from '@univerjs/ui';
|
|
17
17
|
import type { IAccessor } from '@wendellhu/redi';
|
|
18
18
|
export declare function InsertFunctionMenuItemFactory(accessor: IAccessor): IMenuItem;
|
|
19
|
-
export declare function MoreFunctionsMenuItemFactory(
|
|
19
|
+
export declare function MoreFunctionsMenuItemFactory(): IMenuItem;
|
|
20
20
|
export declare function PasteFormulaMenuItemFactory(accessor: IAccessor): IMenuItem;
|
|
@@ -20,6 +20,7 @@ import { IRenderManagerService, ITextSelectionRenderManager } from '@univerjs/en
|
|
|
20
20
|
import { SelectionManagerService } from '@univerjs/sheets';
|
|
21
21
|
import type { EditorBridgeService } from '@univerjs/sheets-ui';
|
|
22
22
|
import { ISelectionRenderService, SheetSkeletonManagerService } from '@univerjs/sheets-ui';
|
|
23
|
+
import { IContextMenuService } from '@univerjs/ui';
|
|
23
24
|
import { IDescriptionService } from '../services/description.service';
|
|
24
25
|
import { IFormulaInputService } from '../services/formula-input.service';
|
|
25
26
|
import { IFormulaPromptService } from '../services/prompt.service';
|
|
@@ -40,6 +41,7 @@ export declare class PromptController extends Disposable {
|
|
|
40
41
|
private readonly _textSelectionManagerService;
|
|
41
42
|
private readonly _formulaInputService;
|
|
42
43
|
private readonly _docViewModelManagerService;
|
|
44
|
+
private readonly _contextMenuService;
|
|
43
45
|
private _formulaRefColors;
|
|
44
46
|
private _previousSequenceNodes;
|
|
45
47
|
private _previousRangesCount;
|
|
@@ -53,7 +55,7 @@ export declare class PromptController extends Disposable {
|
|
|
53
55
|
private _numberColor;
|
|
54
56
|
private _insertSelections;
|
|
55
57
|
private _inputPanelState;
|
|
56
|
-
constructor(_commandService: ICommandService, _contextService: IContextService, _textSelectionRenderManager: ITextSelectionRenderManager, _editorBridgeService: EditorBridgeService, _formulaPromptService: IFormulaPromptService, _lexerTreeBuilder: LexerTreeBuilder, _renderManagerService: IRenderManagerService, _themeService: ThemeService, _selectionManagerService: SelectionManagerService, _sheetSkeletonManagerService: SheetSkeletonManagerService, _currentUniverService: IUniverInstanceService, _selectionRenderService: ISelectionRenderService, _descriptionService: IDescriptionService, _textSelectionManagerService: TextSelectionManagerService, _formulaInputService: IFormulaInputService, _docViewModelManagerService: DocViewModelManagerService);
|
|
58
|
+
constructor(_commandService: ICommandService, _contextService: IContextService, _textSelectionRenderManager: ITextSelectionRenderManager, _editorBridgeService: EditorBridgeService, _formulaPromptService: IFormulaPromptService, _lexerTreeBuilder: LexerTreeBuilder, _renderManagerService: IRenderManagerService, _themeService: ThemeService, _selectionManagerService: SelectionManagerService, _sheetSkeletonManagerService: SheetSkeletonManagerService, _currentUniverService: IUniverInstanceService, _selectionRenderService: ISelectionRenderService, _descriptionService: IDescriptionService, _textSelectionManagerService: TextSelectionManagerService, _formulaInputService: IFormulaInputService, _docViewModelManagerService: DocViewModelManagerService, _contextMenuService: IContextMenuService);
|
|
57
59
|
dispose(): void;
|
|
58
60
|
private _resetTemp;
|
|
59
61
|
private _initialize;
|
|
@@ -117,6 +119,7 @@ export declare class PromptController extends Disposable {
|
|
|
117
119
|
* @returns
|
|
118
120
|
*/
|
|
119
121
|
private _buildTextRuns;
|
|
122
|
+
private _exceedCurrentRange;
|
|
120
123
|
/**
|
|
121
124
|
* Draw the referenced selection text based on the style and token.
|
|
122
125
|
* @param refSelections
|
|
@@ -152,6 +155,7 @@ export declare class PromptController extends Disposable {
|
|
|
152
155
|
private _updateRefSelectionStyle;
|
|
153
156
|
private _changeControlSelection;
|
|
154
157
|
private _refreshFormulaAndCellEditor;
|
|
158
|
+
private _setRemainCapture;
|
|
155
159
|
private _cursorStateListener;
|
|
156
160
|
private _commandExecutedListener;
|
|
157
161
|
private _moveInEditor;
|
|
@@ -28,6 +28,7 @@ export declare class UpdateFormulaController extends Disposable {
|
|
|
28
28
|
constructor(_currentUniverService: IUniverInstanceService, _commandService: ICommandService, _lexerTreeBuilder: LexerTreeBuilder, _formulaDataModel: FormulaDataModel, _sheetInterceptorService: SheetInterceptorService, _selectionManagerService: SelectionManagerService, _injector: Injector);
|
|
29
29
|
private _initialize;
|
|
30
30
|
private _commandExecutedListener;
|
|
31
|
+
private _handleRedoUndo;
|
|
31
32
|
private _handleSetRangeValuesMutation;
|
|
32
33
|
private _handleRemoveSheetMutation;
|
|
33
34
|
private _handleInsertSheetMutation;
|
|
@@ -44,6 +45,7 @@ export declare class UpdateFormulaController extends Disposable {
|
|
|
44
45
|
private _handleDeleteRangeMoveUp;
|
|
45
46
|
private _handleDeleteRangeMoveLeft;
|
|
46
47
|
private _handleSetWorksheetName;
|
|
48
|
+
private _handleRemoveWorksheet;
|
|
47
49
|
private _getUpdateFormulaMutations;
|
|
48
50
|
private _getFormulaReferenceMoveInfo;
|
|
49
51
|
private _getNewRangeByMoveParam;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright 2023-present DreamNum Inc.
|
|
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
|
+
export {};
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright 2023-present DreamNum Inc.
|
|
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 { ICommandInfo, IObjectMatrixPrimitiveType, IRange, Nullable } from '@univerjs/core';
|
|
17
|
+
import { ObjectMatrix } from '@univerjs/core';
|
|
18
|
+
import type { IArrayFormulaRangeType } from '@univerjs/engine-formula';
|
|
19
|
+
import type { ISelectionWithStyle } from '@univerjs/sheets';
|
|
20
|
+
interface IFormulaDataGenerics<T> {
|
|
21
|
+
[unitId: string]: Nullable<{
|
|
22
|
+
[sheetId: string]: IObjectMatrixPrimitiveType<T>;
|
|
23
|
+
}>;
|
|
24
|
+
}
|
|
25
|
+
export interface IRefRangeWithPosition {
|
|
26
|
+
row: number;
|
|
27
|
+
column: number;
|
|
28
|
+
range: IRange;
|
|
29
|
+
}
|
|
30
|
+
export declare function offsetFormula<T>(formulaData: IFormulaDataGenerics<T>, command: ICommandInfo, unitId: string, sheetId: string, selections?: Readonly<Nullable<ISelectionWithStyle[]>>, formulaRangeData?: IFormulaDataGenerics<IRange>, refRanges?: IRefRangeWithPosition[]): IFormulaDataGenerics<T>;
|
|
31
|
+
export declare function offsetArrayFormula(arrayFormulaRange: IArrayFormulaRangeType, command: ICommandInfo, unitId: string, sheetId: string): IArrayFormulaRangeType;
|
|
32
|
+
export declare function checkFormulaDataNull<T>(formulaData: IFormulaDataGenerics<T>, unitId: string, sheetId: string): boolean;
|
|
33
|
+
export declare function removeFormulaData<T>(formulaData: IFormulaDataGenerics<T>, unitId: string, sheetId: string): void;
|
|
34
|
+
export declare function removeValueFormulaArray<T>(formulaRange: IRange, formulaMatrix: ObjectMatrix<T>): void;
|
|
35
|
+
export declare function inFormulaRange(row: number, column: number, formulaMatrix?: ObjectMatrix<IRange>): boolean;
|
|
36
|
+
export declare function moveRangeUpdateFormulaData<T>(fromRange: IRange, toRange: IRange, fromArrayFormulaCellDataMatrix: ObjectMatrix<T>, toArrayFormulaCellDataMatrix: ObjectMatrix<T>, arrayFormulaRangeMatrix?: ObjectMatrix<IRange>): void;
|
|
37
|
+
/**
|
|
38
|
+
* Handle arrayFormulaRange and arrayFormulaCellData. If removing rows affects the array formula, the array formula cell data needs to be cleared and will be regenerated during recalculation.
|
|
39
|
+
* @param range
|
|
40
|
+
* @param formulaMatrix
|
|
41
|
+
* @param formulaRangeMatrix
|
|
42
|
+
* @param refRanges
|
|
43
|
+
*/
|
|
44
|
+
export declare function removeFormulaArrayRow<T>(range: IRange, formulaMatrix: ObjectMatrix<T>, formulaRangeMatrix: ObjectMatrix<IRange>, refRanges?: IRefRangeWithPosition[]): void;
|
|
45
|
+
/**
|
|
46
|
+
* Handle arrayFormulaRange and arrayFormulaCellData. If removing columns affects the array formula, the array formula cell data needs to be cleared and will be regenerated during recalculation.
|
|
47
|
+
* @param range
|
|
48
|
+
* @param formulaRangeMatrix
|
|
49
|
+
* @param refRanges
|
|
50
|
+
*/
|
|
51
|
+
export declare function removeFormulaArrayColumn<T>(range: IRange, formulaMatrix: ObjectMatrix<T>, formulaRangeMatrix: ObjectMatrix<IRange>, refRanges?: IRefRangeWithPosition[]): void;
|
|
52
|
+
export {};
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright 2023-present DreamNum Inc.
|
|
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 { ICommandInfo } from '@univerjs/core';
|
|
17
|
+
import type { IArrayFormulaRangeType, IArrayFormulaUnitCellType, IFormulaData } from '@univerjs/engine-formula';
|
|
18
|
+
import type { IMoveRangeMutationParams } from '@univerjs/sheets';
|
|
19
|
+
export declare function handleRedoUndoMoveRange(command: ICommandInfo<IMoveRangeMutationParams>, formulaData: IFormulaData, arrayFormulaRange: IArrayFormulaRangeType, arrayFormulaCellData: IArrayFormulaUnitCellType): void;
|
|
@@ -1923,11 +1923,7 @@ declare const _default: {
|
|
|
1923
1923
|
url: string;
|
|
1924
1924
|
}[];
|
|
1925
1925
|
functionParameter: {
|
|
1926
|
-
|
|
1927
|
-
name: string;
|
|
1928
|
-
detail: string;
|
|
1929
|
-
};
|
|
1930
|
-
number2: {
|
|
1926
|
+
value: {
|
|
1931
1927
|
name: string;
|
|
1932
1928
|
detail: string;
|
|
1933
1929
|
};
|
|
@@ -2247,11 +2243,11 @@ declare const _default: {
|
|
|
2247
2243
|
url: string;
|
|
2248
2244
|
}[];
|
|
2249
2245
|
functionParameter: {
|
|
2250
|
-
|
|
2246
|
+
logical1: {
|
|
2251
2247
|
name: string;
|
|
2252
2248
|
detail: string;
|
|
2253
2249
|
};
|
|
2254
|
-
|
|
2250
|
+
logical2: {
|
|
2255
2251
|
name: string;
|
|
2256
2252
|
detail: string;
|
|
2257
2253
|
};
|
|
@@ -2319,11 +2315,15 @@ declare const _default: {
|
|
|
2319
2315
|
url: string;
|
|
2320
2316
|
}[];
|
|
2321
2317
|
functionParameter: {
|
|
2322
|
-
|
|
2318
|
+
logicalTest: {
|
|
2323
2319
|
name: string;
|
|
2324
2320
|
detail: string;
|
|
2325
2321
|
};
|
|
2326
|
-
|
|
2322
|
+
valueIfTrue: {
|
|
2323
|
+
name: string;
|
|
2324
|
+
detail: string;
|
|
2325
|
+
};
|
|
2326
|
+
valueIfFalse: {
|
|
2327
2327
|
name: string;
|
|
2328
2328
|
detail: string;
|
|
2329
2329
|
};
|
|
@@ -2337,11 +2337,11 @@ declare const _default: {
|
|
|
2337
2337
|
url: string;
|
|
2338
2338
|
}[];
|
|
2339
2339
|
functionParameter: {
|
|
2340
|
-
|
|
2340
|
+
value: {
|
|
2341
2341
|
name: string;
|
|
2342
2342
|
detail: string;
|
|
2343
2343
|
};
|
|
2344
|
-
|
|
2344
|
+
valueIfError: {
|
|
2345
2345
|
name: string;
|
|
2346
2346
|
detail: string;
|
|
2347
2347
|
};
|
|
@@ -2719,11 +2719,11 @@ declare const _default: {
|
|
|
2719
2719
|
url: string;
|
|
2720
2720
|
}[];
|
|
2721
2721
|
functionParameter: {
|
|
2722
|
-
|
|
2722
|
+
text1: {
|
|
2723
2723
|
name: string;
|
|
2724
2724
|
detail: string;
|
|
2725
2725
|
};
|
|
2726
|
-
|
|
2726
|
+
text2: {
|
|
2727
2727
|
name: string;
|
|
2728
2728
|
detail: string;
|
|
2729
2729
|
};
|
|
@@ -3883,11 +3883,19 @@ declare const _default: {
|
|
|
3883
3883
|
url: string;
|
|
3884
3884
|
}[];
|
|
3885
3885
|
functionParameter: {
|
|
3886
|
-
|
|
3886
|
+
lookupValue: {
|
|
3887
3887
|
name: string;
|
|
3888
3888
|
detail: string;
|
|
3889
3889
|
};
|
|
3890
|
-
|
|
3890
|
+
tableArray: {
|
|
3891
|
+
name: string;
|
|
3892
|
+
detail: string;
|
|
3893
|
+
};
|
|
3894
|
+
rowIndexNum: {
|
|
3895
|
+
name: string;
|
|
3896
|
+
detail: string;
|
|
3897
|
+
};
|
|
3898
|
+
rangeLookup: {
|
|
3891
3899
|
name: string;
|
|
3892
3900
|
detail: string;
|
|
3893
3901
|
};
|
|
@@ -3991,11 +3999,15 @@ declare const _default: {
|
|
|
3991
3999
|
url: string;
|
|
3992
4000
|
}[];
|
|
3993
4001
|
functionParameter: {
|
|
3994
|
-
|
|
4002
|
+
lookupValue: {
|
|
3995
4003
|
name: string;
|
|
3996
4004
|
detail: string;
|
|
3997
4005
|
};
|
|
3998
|
-
|
|
4006
|
+
lookupVectorOrArray: {
|
|
4007
|
+
name: string;
|
|
4008
|
+
detail: string;
|
|
4009
|
+
};
|
|
4010
|
+
resultVector: {
|
|
3999
4011
|
name: string;
|
|
4000
4012
|
detail: string;
|
|
4001
4013
|
};
|
|
@@ -4027,11 +4039,23 @@ declare const _default: {
|
|
|
4027
4039
|
url: string;
|
|
4028
4040
|
}[];
|
|
4029
4041
|
functionParameter: {
|
|
4030
|
-
|
|
4042
|
+
reference: {
|
|
4031
4043
|
name: string;
|
|
4032
4044
|
detail: string;
|
|
4033
4045
|
};
|
|
4034
|
-
|
|
4046
|
+
rows: {
|
|
4047
|
+
name: string;
|
|
4048
|
+
detail: string;
|
|
4049
|
+
};
|
|
4050
|
+
cols: {
|
|
4051
|
+
name: string;
|
|
4052
|
+
detail: string;
|
|
4053
|
+
};
|
|
4054
|
+
height: {
|
|
4055
|
+
name: string;
|
|
4056
|
+
detail: string;
|
|
4057
|
+
};
|
|
4058
|
+
width: {
|
|
4035
4059
|
name: string;
|
|
4036
4060
|
detail: string;
|
|
4037
4061
|
};
|
|
@@ -4305,11 +4329,27 @@ declare const _default: {
|
|
|
4305
4329
|
url: string;
|
|
4306
4330
|
}[];
|
|
4307
4331
|
functionParameter: {
|
|
4308
|
-
|
|
4332
|
+
lookupValue: {
|
|
4309
4333
|
name: string;
|
|
4310
4334
|
detail: string;
|
|
4311
4335
|
};
|
|
4312
|
-
|
|
4336
|
+
lookupArray: {
|
|
4337
|
+
name: string;
|
|
4338
|
+
detail: string;
|
|
4339
|
+
};
|
|
4340
|
+
returnArray: {
|
|
4341
|
+
name: string;
|
|
4342
|
+
detail: string;
|
|
4343
|
+
};
|
|
4344
|
+
ifNotFound: {
|
|
4345
|
+
name: string;
|
|
4346
|
+
detail: string;
|
|
4347
|
+
};
|
|
4348
|
+
matchMode: {
|
|
4349
|
+
name: string;
|
|
4350
|
+
detail: string;
|
|
4351
|
+
};
|
|
4352
|
+
searchMode: {
|
|
4313
4353
|
name: string;
|
|
4314
4354
|
detail: string;
|
|
4315
4355
|
};
|
|
@@ -7609,7 +7649,7 @@ declare const _default: {
|
|
|
7609
7649
|
name: string;
|
|
7610
7650
|
detail: string;
|
|
7611
7651
|
};
|
|
7612
|
-
|
|
7652
|
+
sumRange: {
|
|
7613
7653
|
name: string;
|
|
7614
7654
|
detail: string;
|
|
7615
7655
|
};
|
|
@@ -7623,11 +7663,23 @@ declare const _default: {
|
|
|
7623
7663
|
url: string;
|
|
7624
7664
|
}[];
|
|
7625
7665
|
functionParameter: {
|
|
7626
|
-
|
|
7666
|
+
sumRange: {
|
|
7627
7667
|
name: string;
|
|
7628
7668
|
detail: string;
|
|
7629
7669
|
};
|
|
7630
|
-
|
|
7670
|
+
criteriaRange1: {
|
|
7671
|
+
name: string;
|
|
7672
|
+
detail: string;
|
|
7673
|
+
};
|
|
7674
|
+
criteria1: {
|
|
7675
|
+
name: string;
|
|
7676
|
+
detail: string;
|
|
7677
|
+
};
|
|
7678
|
+
criteriaRange2: {
|
|
7679
|
+
name: string;
|
|
7680
|
+
detail: string;
|
|
7681
|
+
};
|
|
7682
|
+
criteria2: {
|
|
7631
7683
|
name: string;
|
|
7632
7684
|
detail: string;
|
|
7633
7685
|
};
|
|
@@ -22,11 +22,11 @@ declare const _default: {
|
|
|
22
22
|
url: string;
|
|
23
23
|
}[];
|
|
24
24
|
functionParameter: {
|
|
25
|
-
|
|
25
|
+
logical1: {
|
|
26
26
|
name: string;
|
|
27
27
|
detail: string;
|
|
28
28
|
};
|
|
29
|
-
|
|
29
|
+
logical2: {
|
|
30
30
|
name: string;
|
|
31
31
|
detail: string;
|
|
32
32
|
};
|
|
@@ -94,11 +94,15 @@ declare const _default: {
|
|
|
94
94
|
url: string;
|
|
95
95
|
}[];
|
|
96
96
|
functionParameter: {
|
|
97
|
-
|
|
97
|
+
logicalTest: {
|
|
98
98
|
name: string;
|
|
99
99
|
detail: string;
|
|
100
100
|
};
|
|
101
|
-
|
|
101
|
+
valueIfTrue: {
|
|
102
|
+
name: string;
|
|
103
|
+
detail: string;
|
|
104
|
+
};
|
|
105
|
+
valueIfFalse: {
|
|
102
106
|
name: string;
|
|
103
107
|
detail: string;
|
|
104
108
|
};
|
|
@@ -112,11 +116,11 @@ declare const _default: {
|
|
|
112
116
|
url: string;
|
|
113
117
|
}[];
|
|
114
118
|
functionParameter: {
|
|
115
|
-
|
|
119
|
+
value: {
|
|
116
120
|
name: string;
|
|
117
121
|
detail: string;
|
|
118
122
|
};
|
|
119
|
-
|
|
123
|
+
valueIfError: {
|
|
120
124
|
name: string;
|
|
121
125
|
detail: string;
|
|
122
126
|
};
|
|
@@ -22,11 +22,11 @@ declare const _default: {
|
|
|
22
22
|
url: string;
|
|
23
23
|
}[];
|
|
24
24
|
functionParameter: {
|
|
25
|
-
|
|
25
|
+
logical1: {
|
|
26
26
|
name: string;
|
|
27
27
|
detail: string;
|
|
28
28
|
};
|
|
29
|
-
|
|
29
|
+
logical2: {
|
|
30
30
|
name: string;
|
|
31
31
|
detail: string;
|
|
32
32
|
};
|
|
@@ -94,11 +94,15 @@ declare const _default: {
|
|
|
94
94
|
url: string;
|
|
95
95
|
}[];
|
|
96
96
|
functionParameter: {
|
|
97
|
-
|
|
97
|
+
logicalTest: {
|
|
98
98
|
name: string;
|
|
99
99
|
detail: string;
|
|
100
100
|
};
|
|
101
|
-
|
|
101
|
+
valueIfTrue: {
|
|
102
|
+
name: string;
|
|
103
|
+
detail: string;
|
|
104
|
+
};
|
|
105
|
+
valueIfFalse: {
|
|
102
106
|
name: string;
|
|
103
107
|
detail: string;
|
|
104
108
|
};
|
|
@@ -112,11 +116,11 @@ declare const _default: {
|
|
|
112
116
|
url: string;
|
|
113
117
|
}[];
|
|
114
118
|
functionParameter: {
|
|
115
|
-
|
|
119
|
+
value: {
|
|
116
120
|
name: string;
|
|
117
121
|
detail: string;
|
|
118
122
|
};
|
|
119
|
-
|
|
123
|
+
valueIfError: {
|
|
120
124
|
name: string;
|
|
121
125
|
detail: string;
|
|
122
126
|
};
|
|
@@ -22,11 +22,11 @@ declare const _default: {
|
|
|
22
22
|
url: string;
|
|
23
23
|
}[];
|
|
24
24
|
functionParameter: {
|
|
25
|
-
|
|
25
|
+
logical1: {
|
|
26
26
|
name: string;
|
|
27
27
|
detail: string;
|
|
28
28
|
};
|
|
29
|
-
|
|
29
|
+
logical2: {
|
|
30
30
|
name: string;
|
|
31
31
|
detail: string;
|
|
32
32
|
};
|
|
@@ -94,11 +94,15 @@ declare const _default: {
|
|
|
94
94
|
url: string;
|
|
95
95
|
}[];
|
|
96
96
|
functionParameter: {
|
|
97
|
-
|
|
97
|
+
logicalTest: {
|
|
98
98
|
name: string;
|
|
99
99
|
detail: string;
|
|
100
100
|
};
|
|
101
|
-
|
|
101
|
+
valueIfTrue: {
|
|
102
|
+
name: string;
|
|
103
|
+
detail: string;
|
|
104
|
+
};
|
|
105
|
+
valueIfFalse: {
|
|
102
106
|
name: string;
|
|
103
107
|
detail: string;
|
|
104
108
|
};
|
|
@@ -112,11 +116,11 @@ declare const _default: {
|
|
|
112
116
|
url: string;
|
|
113
117
|
}[];
|
|
114
118
|
functionParameter: {
|
|
115
|
-
|
|
119
|
+
value: {
|
|
116
120
|
name: string;
|
|
117
121
|
detail: string;
|
|
118
122
|
};
|
|
119
|
-
|
|
123
|
+
valueIfError: {
|
|
120
124
|
name: string;
|
|
121
125
|
detail: string;
|
|
122
126
|
};
|
|
@@ -250,11 +250,19 @@ declare const _default: {
|
|
|
250
250
|
url: string;
|
|
251
251
|
}[];
|
|
252
252
|
functionParameter: {
|
|
253
|
-
|
|
253
|
+
lookupValue: {
|
|
254
254
|
name: string;
|
|
255
255
|
detail: string;
|
|
256
256
|
};
|
|
257
|
-
|
|
257
|
+
tableArray: {
|
|
258
|
+
name: string;
|
|
259
|
+
detail: string;
|
|
260
|
+
};
|
|
261
|
+
rowIndexNum: {
|
|
262
|
+
name: string;
|
|
263
|
+
detail: string;
|
|
264
|
+
};
|
|
265
|
+
rangeLookup: {
|
|
258
266
|
name: string;
|
|
259
267
|
detail: string;
|
|
260
268
|
};
|
|
@@ -358,11 +366,15 @@ declare const _default: {
|
|
|
358
366
|
url: string;
|
|
359
367
|
}[];
|
|
360
368
|
functionParameter: {
|
|
361
|
-
|
|
369
|
+
lookupValue: {
|
|
362
370
|
name: string;
|
|
363
371
|
detail: string;
|
|
364
372
|
};
|
|
365
|
-
|
|
373
|
+
lookupVectorOrArray: {
|
|
374
|
+
name: string;
|
|
375
|
+
detail: string;
|
|
376
|
+
};
|
|
377
|
+
resultVector: {
|
|
366
378
|
name: string;
|
|
367
379
|
detail: string;
|
|
368
380
|
};
|
|
@@ -394,11 +406,23 @@ declare const _default: {
|
|
|
394
406
|
url: string;
|
|
395
407
|
}[];
|
|
396
408
|
functionParameter: {
|
|
397
|
-
|
|
409
|
+
reference: {
|
|
398
410
|
name: string;
|
|
399
411
|
detail: string;
|
|
400
412
|
};
|
|
401
|
-
|
|
413
|
+
rows: {
|
|
414
|
+
name: string;
|
|
415
|
+
detail: string;
|
|
416
|
+
};
|
|
417
|
+
cols: {
|
|
418
|
+
name: string;
|
|
419
|
+
detail: string;
|
|
420
|
+
};
|
|
421
|
+
height: {
|
|
422
|
+
name: string;
|
|
423
|
+
detail: string;
|
|
424
|
+
};
|
|
425
|
+
width: {
|
|
402
426
|
name: string;
|
|
403
427
|
detail: string;
|
|
404
428
|
};
|
|
@@ -672,11 +696,27 @@ declare const _default: {
|
|
|
672
696
|
url: string;
|
|
673
697
|
}[];
|
|
674
698
|
functionParameter: {
|
|
675
|
-
|
|
699
|
+
lookupValue: {
|
|
676
700
|
name: string;
|
|
677
701
|
detail: string;
|
|
678
702
|
};
|
|
679
|
-
|
|
703
|
+
lookupArray: {
|
|
704
|
+
name: string;
|
|
705
|
+
detail: string;
|
|
706
|
+
};
|
|
707
|
+
returnArray: {
|
|
708
|
+
name: string;
|
|
709
|
+
detail: string;
|
|
710
|
+
};
|
|
711
|
+
ifNotFound: {
|
|
712
|
+
name: string;
|
|
713
|
+
detail: string;
|
|
714
|
+
};
|
|
715
|
+
matchMode: {
|
|
716
|
+
name: string;
|
|
717
|
+
detail: string;
|
|
718
|
+
};
|
|
719
|
+
searchMode: {
|
|
680
720
|
name: string;
|
|
681
721
|
detail: string;
|
|
682
722
|
};
|