@univerjs/sheets-formula 0.1.0-beta.3 → 0.1.0-beta.5
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 +23 -7
- package/lib/es/index.js +2918 -2552
- package/lib/index.css +1 -1
- package/lib/types/commands/operations/insert-function.operation.d.ts +1 -1
- package/lib/types/controllers/array-formula-display.controller.d.ts +3 -2
- package/lib/types/controllers/menu.d.ts +1 -1
- package/lib/types/controllers/numfmt-formula-display.controller.d.ts +28 -0
- package/lib/types/controllers/prompt.controller.d.ts +1 -0
- package/lib/types/controllers/trigger-calculation.controller.d.ts +5 -1
- package/lib/types/controllers/update-formula.controller.d.ts +1 -1
- package/lib/types/locale/en-US.d.ts +104 -57
- package/lib/types/locale/function-list/date/en-US.d.ts +12 -29
- package/lib/types/locale/function-list/date/ja-JP.d.ts +12 -29
- package/lib/types/locale/function-list/date/zh-CN.d.ts +12 -29
- 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 +64 -12
- package/lib/types/locale/function-list/lookup/ja-JP.d.ts +64 -12
- package/lib/types/locale/function-list/lookup/zh-CN.d.ts +64 -12
- 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 +104 -57
- package/lib/types/services/function-list/array.d.ts +1 -1
- package/lib/umd/index.js +22 -6
- package/package.json +38 -24
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;white-space:pre-wrap;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}
|
|
@@ -21,7 +21,7 @@ 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
|
|
24
|
+
export declare function isNumberCell(cell: Nullable<ICellData>): boolean | void | null;
|
|
25
25
|
/**
|
|
26
26
|
* Check if a single cell
|
|
27
27
|
* @param range
|
|
@@ -13,14 +13,15 @@
|
|
|
13
13
|
* See the License for the specific language governing permissions and
|
|
14
14
|
* limitations under the License.
|
|
15
15
|
*/
|
|
16
|
-
import { Disposable, ICommandService } from '@univerjs/core';
|
|
16
|
+
import { Disposable, ICommandService, ThemeService } from '@univerjs/core';
|
|
17
17
|
import { FormulaDataModel } from '@univerjs/engine-formula';
|
|
18
18
|
import { SheetInterceptorService } from '@univerjs/sheets';
|
|
19
19
|
export declare class ArrayFormulaDisplayController extends Disposable {
|
|
20
20
|
private readonly _commandService;
|
|
21
21
|
private _sheetInterceptorService;
|
|
22
22
|
private readonly _formulaDataModel;
|
|
23
|
-
|
|
23
|
+
private readonly _themeService;
|
|
24
|
+
constructor(_commandService: ICommandService, _sheetInterceptorService: SheetInterceptorService, _formulaDataModel: FormulaDataModel, _themeService: ThemeService);
|
|
24
25
|
private _initialize;
|
|
25
26
|
private _commandExecutedListener;
|
|
26
27
|
private _initInterceptorCellContent;
|
|
@@ -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;
|
|
@@ -0,0 +1,28 @@
|
|
|
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 { Disposable, ICommandService, ThemeService } from '@univerjs/core';
|
|
17
|
+
import { FormulaDataModel } from '@univerjs/engine-formula';
|
|
18
|
+
import { SheetInterceptorService } from '@univerjs/sheets';
|
|
19
|
+
export declare class NumfmtFormulaDisplayController extends Disposable {
|
|
20
|
+
private readonly _commandService;
|
|
21
|
+
private _sheetInterceptorService;
|
|
22
|
+
private readonly _formulaDataModel;
|
|
23
|
+
private readonly _themeService;
|
|
24
|
+
constructor(_commandService: ICommandService, _sheetInterceptorService: SheetInterceptorService, _formulaDataModel: FormulaDataModel, _themeService: ThemeService);
|
|
25
|
+
private _initialize;
|
|
26
|
+
private _commandExecutedListener;
|
|
27
|
+
private _initInterceptorCellContent;
|
|
28
|
+
}
|
|
@@ -14,15 +14,19 @@
|
|
|
14
14
|
* limitations under the License.
|
|
15
15
|
*/
|
|
16
16
|
import { Disposable, ICommandService } from '@univerjs/core';
|
|
17
|
+
import { FormulaDataModel } from '@univerjs/engine-formula';
|
|
18
|
+
import { INumfmtService } from '@univerjs/sheets';
|
|
17
19
|
import { IActiveDirtyManagerService } from '../services/active-dirty-manager.service';
|
|
18
20
|
export declare class TriggerCalculationController extends Disposable {
|
|
19
21
|
private readonly _commandService;
|
|
20
22
|
private readonly _activeDirtyManagerService;
|
|
23
|
+
private readonly _numfmtService;
|
|
24
|
+
private readonly _formulaDataModel;
|
|
21
25
|
private _waitingCommandQueue;
|
|
22
26
|
private _executingCommandQueue;
|
|
23
27
|
private _setTimeoutKey;
|
|
24
28
|
private _startExecutionTime;
|
|
25
|
-
constructor(_commandService: ICommandService, _activeDirtyManagerService: IActiveDirtyManagerService);
|
|
29
|
+
constructor(_commandService: ICommandService, _activeDirtyManagerService: IActiveDirtyManagerService, _numfmtService: INumfmtService, _formulaDataModel: FormulaDataModel);
|
|
26
30
|
private _initialize;
|
|
27
31
|
private _commandExecutedListener;
|
|
28
32
|
private _generateDirty;
|
|
@@ -45,6 +45,7 @@ export declare class UpdateFormulaController extends Disposable {
|
|
|
45
45
|
private _handleDeleteRangeMoveUp;
|
|
46
46
|
private _handleDeleteRangeMoveLeft;
|
|
47
47
|
private _handleSetWorksheetName;
|
|
48
|
+
private _handleRemoveWorksheet;
|
|
48
49
|
private _getUpdateFormulaMutations;
|
|
49
50
|
private _getFormulaReferenceMoveInfo;
|
|
50
51
|
private _getNewRangeByMoveParam;
|
|
@@ -71,6 +72,5 @@ export declare class UpdateFormulaController extends Disposable {
|
|
|
71
72
|
* @returns
|
|
72
73
|
*/
|
|
73
74
|
private _getMoveNewRange;
|
|
74
|
-
private _getInsertNewRange;
|
|
75
75
|
private _getCurrentSheetInfo;
|
|
76
76
|
}
|
|
@@ -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
|
};
|
|
@@ -4009,11 +4021,15 @@ declare const _default: {
|
|
|
4009
4021
|
url: string;
|
|
4010
4022
|
}[];
|
|
4011
4023
|
functionParameter: {
|
|
4012
|
-
|
|
4024
|
+
lookupValue: {
|
|
4013
4025
|
name: string;
|
|
4014
4026
|
detail: string;
|
|
4015
4027
|
};
|
|
4016
|
-
|
|
4028
|
+
lookupArray: {
|
|
4029
|
+
name: string;
|
|
4030
|
+
detail: string;
|
|
4031
|
+
};
|
|
4032
|
+
matchType: {
|
|
4017
4033
|
name: string;
|
|
4018
4034
|
detail: string;
|
|
4019
4035
|
};
|
|
@@ -4027,11 +4043,23 @@ declare const _default: {
|
|
|
4027
4043
|
url: string;
|
|
4028
4044
|
}[];
|
|
4029
4045
|
functionParameter: {
|
|
4030
|
-
|
|
4046
|
+
reference: {
|
|
4031
4047
|
name: string;
|
|
4032
4048
|
detail: string;
|
|
4033
4049
|
};
|
|
4034
|
-
|
|
4050
|
+
rows: {
|
|
4051
|
+
name: string;
|
|
4052
|
+
detail: string;
|
|
4053
|
+
};
|
|
4054
|
+
cols: {
|
|
4055
|
+
name: string;
|
|
4056
|
+
detail: string;
|
|
4057
|
+
};
|
|
4058
|
+
height: {
|
|
4059
|
+
name: string;
|
|
4060
|
+
detail: string;
|
|
4061
|
+
};
|
|
4062
|
+
width: {
|
|
4035
4063
|
name: string;
|
|
4036
4064
|
detail: string;
|
|
4037
4065
|
};
|
|
@@ -4305,11 +4333,27 @@ declare const _default: {
|
|
|
4305
4333
|
url: string;
|
|
4306
4334
|
}[];
|
|
4307
4335
|
functionParameter: {
|
|
4308
|
-
|
|
4336
|
+
lookupValue: {
|
|
4309
4337
|
name: string;
|
|
4310
4338
|
detail: string;
|
|
4311
4339
|
};
|
|
4312
|
-
|
|
4340
|
+
lookupArray: {
|
|
4341
|
+
name: string;
|
|
4342
|
+
detail: string;
|
|
4343
|
+
};
|
|
4344
|
+
returnArray: {
|
|
4345
|
+
name: string;
|
|
4346
|
+
detail: string;
|
|
4347
|
+
};
|
|
4348
|
+
ifNotFound: {
|
|
4349
|
+
name: string;
|
|
4350
|
+
detail: string;
|
|
4351
|
+
};
|
|
4352
|
+
matchMode: {
|
|
4353
|
+
name: string;
|
|
4354
|
+
detail: string;
|
|
4355
|
+
};
|
|
4356
|
+
searchMode: {
|
|
4313
4357
|
name: string;
|
|
4314
4358
|
detail: string;
|
|
4315
4359
|
};
|
|
@@ -4323,11 +4367,19 @@ declare const _default: {
|
|
|
4323
4367
|
url: string;
|
|
4324
4368
|
}[];
|
|
4325
4369
|
functionParameter: {
|
|
4326
|
-
|
|
4370
|
+
lookupValue: {
|
|
4327
4371
|
name: string;
|
|
4328
4372
|
detail: string;
|
|
4329
4373
|
};
|
|
4330
|
-
|
|
4374
|
+
lookupArray: {
|
|
4375
|
+
name: string;
|
|
4376
|
+
detail: string;
|
|
4377
|
+
};
|
|
4378
|
+
matchMode: {
|
|
4379
|
+
name: string;
|
|
4380
|
+
detail: string;
|
|
4381
|
+
};
|
|
4382
|
+
searchMode: {
|
|
4331
4383
|
name: string;
|
|
4332
4384
|
detail: string;
|
|
4333
4385
|
};
|
|
@@ -7609,7 +7661,7 @@ declare const _default: {
|
|
|
7609
7661
|
name: string;
|
|
7610
7662
|
detail: string;
|
|
7611
7663
|
};
|
|
7612
|
-
|
|
7664
|
+
sumRange: {
|
|
7613
7665
|
name: string;
|
|
7614
7666
|
detail: string;
|
|
7615
7667
|
};
|
|
@@ -7623,11 +7675,23 @@ declare const _default: {
|
|
|
7623
7675
|
url: string;
|
|
7624
7676
|
}[];
|
|
7625
7677
|
functionParameter: {
|
|
7626
|
-
|
|
7678
|
+
sumRange: {
|
|
7627
7679
|
name: string;
|
|
7628
7680
|
detail: string;
|
|
7629
7681
|
};
|
|
7630
|
-
|
|
7682
|
+
criteriaRange1: {
|
|
7683
|
+
name: string;
|
|
7684
|
+
detail: string;
|
|
7685
|
+
};
|
|
7686
|
+
criteria1: {
|
|
7687
|
+
name: string;
|
|
7688
|
+
detail: string;
|
|
7689
|
+
};
|
|
7690
|
+
criteriaRange2: {
|
|
7691
|
+
name: string;
|
|
7692
|
+
detail: string;
|
|
7693
|
+
};
|
|
7694
|
+
criteria2: {
|
|
7631
7695
|
name: string;
|
|
7632
7696
|
detail: string;
|
|
7633
7697
|
};
|
|
@@ -7785,11 +7849,15 @@ declare const _default: {
|
|
|
7785
7849
|
url: string;
|
|
7786
7850
|
}[];
|
|
7787
7851
|
functionParameter: {
|
|
7788
|
-
|
|
7852
|
+
year: {
|
|
7789
7853
|
name: string;
|
|
7790
7854
|
detail: string;
|
|
7791
7855
|
};
|
|
7792
|
-
|
|
7856
|
+
month: {
|
|
7857
|
+
name: string;
|
|
7858
|
+
detail: string;
|
|
7859
|
+
};
|
|
7860
|
+
day: {
|
|
7793
7861
|
name: string;
|
|
7794
7862
|
detail: string;
|
|
7795
7863
|
};
|
|
@@ -7839,11 +7907,7 @@ declare const _default: {
|
|
|
7839
7907
|
url: string;
|
|
7840
7908
|
}[];
|
|
7841
7909
|
functionParameter: {
|
|
7842
|
-
|
|
7843
|
-
name: string;
|
|
7844
|
-
detail: string;
|
|
7845
|
-
};
|
|
7846
|
-
number2: {
|
|
7910
|
+
serialNumber: {
|
|
7847
7911
|
name: string;
|
|
7848
7912
|
detail: string;
|
|
7849
7913
|
};
|
|
@@ -7893,11 +7957,11 @@ declare const _default: {
|
|
|
7893
7957
|
url: string;
|
|
7894
7958
|
}[];
|
|
7895
7959
|
functionParameter: {
|
|
7896
|
-
|
|
7960
|
+
startDate: {
|
|
7897
7961
|
name: string;
|
|
7898
7962
|
detail: string;
|
|
7899
7963
|
};
|
|
7900
|
-
|
|
7964
|
+
months: {
|
|
7901
7965
|
name: string;
|
|
7902
7966
|
detail: string;
|
|
7903
7967
|
};
|
|
@@ -7983,11 +8047,7 @@ declare const _default: {
|
|
|
7983
8047
|
url: string;
|
|
7984
8048
|
}[];
|
|
7985
8049
|
functionParameter: {
|
|
7986
|
-
|
|
7987
|
-
name: string;
|
|
7988
|
-
detail: string;
|
|
7989
|
-
};
|
|
7990
|
-
number2: {
|
|
8050
|
+
serialNumber: {
|
|
7991
8051
|
name: string;
|
|
7992
8052
|
detail: string;
|
|
7993
8053
|
};
|
|
@@ -8108,16 +8168,7 @@ declare const _default: {
|
|
|
8108
8168
|
title: string;
|
|
8109
8169
|
url: string;
|
|
8110
8170
|
}[];
|
|
8111
|
-
functionParameter: {
|
|
8112
|
-
number1: {
|
|
8113
|
-
name: string;
|
|
8114
|
-
detail: string;
|
|
8115
|
-
};
|
|
8116
|
-
number2: {
|
|
8117
|
-
name: string;
|
|
8118
|
-
detail: string;
|
|
8119
|
-
};
|
|
8120
|
-
};
|
|
8171
|
+
functionParameter: {};
|
|
8121
8172
|
};
|
|
8122
8173
|
WEEKDAY: {
|
|
8123
8174
|
description: string;
|
|
@@ -8199,11 +8250,7 @@ declare const _default: {
|
|
|
8199
8250
|
url: string;
|
|
8200
8251
|
}[];
|
|
8201
8252
|
functionParameter: {
|
|
8202
|
-
|
|
8203
|
-
name: string;
|
|
8204
|
-
detail: string;
|
|
8205
|
-
};
|
|
8206
|
-
number2: {
|
|
8253
|
+
serialNumber: {
|
|
8207
8254
|
name: string;
|
|
8208
8255
|
detail: string;
|
|
8209
8256
|
};
|
|
@@ -22,11 +22,15 @@ declare const _default: {
|
|
|
22
22
|
url: string;
|
|
23
23
|
}[];
|
|
24
24
|
functionParameter: {
|
|
25
|
-
|
|
25
|
+
year: {
|
|
26
26
|
name: string;
|
|
27
27
|
detail: string;
|
|
28
28
|
};
|
|
29
|
-
|
|
29
|
+
month: {
|
|
30
|
+
name: string;
|
|
31
|
+
detail: string;
|
|
32
|
+
};
|
|
33
|
+
day: {
|
|
30
34
|
name: string;
|
|
31
35
|
detail: string;
|
|
32
36
|
};
|
|
@@ -76,11 +80,7 @@ declare const _default: {
|
|
|
76
80
|
url: string;
|
|
77
81
|
}[];
|
|
78
82
|
functionParameter: {
|
|
79
|
-
|
|
80
|
-
name: string;
|
|
81
|
-
detail: string;
|
|
82
|
-
};
|
|
83
|
-
number2: {
|
|
83
|
+
serialNumber: {
|
|
84
84
|
name: string;
|
|
85
85
|
detail: string;
|
|
86
86
|
};
|
|
@@ -130,11 +130,11 @@ declare const _default: {
|
|
|
130
130
|
url: string;
|
|
131
131
|
}[];
|
|
132
132
|
functionParameter: {
|
|
133
|
-
|
|
133
|
+
startDate: {
|
|
134
134
|
name: string;
|
|
135
135
|
detail: string;
|
|
136
136
|
};
|
|
137
|
-
|
|
137
|
+
months: {
|
|
138
138
|
name: string;
|
|
139
139
|
detail: string;
|
|
140
140
|
};
|
|
@@ -220,11 +220,7 @@ declare const _default: {
|
|
|
220
220
|
url: string;
|
|
221
221
|
}[];
|
|
222
222
|
functionParameter: {
|
|
223
|
-
|
|
224
|
-
name: string;
|
|
225
|
-
detail: string;
|
|
226
|
-
};
|
|
227
|
-
number2: {
|
|
223
|
+
serialNumber: {
|
|
228
224
|
name: string;
|
|
229
225
|
detail: string;
|
|
230
226
|
};
|
|
@@ -345,16 +341,7 @@ declare const _default: {
|
|
|
345
341
|
title: string;
|
|
346
342
|
url: string;
|
|
347
343
|
}[];
|
|
348
|
-
functionParameter: {
|
|
349
|
-
number1: {
|
|
350
|
-
name: string;
|
|
351
|
-
detail: string;
|
|
352
|
-
};
|
|
353
|
-
number2: {
|
|
354
|
-
name: string;
|
|
355
|
-
detail: string;
|
|
356
|
-
};
|
|
357
|
-
};
|
|
344
|
+
functionParameter: {};
|
|
358
345
|
};
|
|
359
346
|
WEEKDAY: {
|
|
360
347
|
description: string;
|
|
@@ -436,11 +423,7 @@ declare const _default: {
|
|
|
436
423
|
url: string;
|
|
437
424
|
}[];
|
|
438
425
|
functionParameter: {
|
|
439
|
-
|
|
440
|
-
name: string;
|
|
441
|
-
detail: string;
|
|
442
|
-
};
|
|
443
|
-
number2: {
|
|
426
|
+
serialNumber: {
|
|
444
427
|
name: string;
|
|
445
428
|
detail: string;
|
|
446
429
|
};
|
|
@@ -22,11 +22,15 @@ declare const _default: {
|
|
|
22
22
|
url: string;
|
|
23
23
|
}[];
|
|
24
24
|
functionParameter: {
|
|
25
|
-
|
|
25
|
+
year: {
|
|
26
26
|
name: string;
|
|
27
27
|
detail: string;
|
|
28
28
|
};
|
|
29
|
-
|
|
29
|
+
month: {
|
|
30
|
+
name: string;
|
|
31
|
+
detail: string;
|
|
32
|
+
};
|
|
33
|
+
day: {
|
|
30
34
|
name: string;
|
|
31
35
|
detail: string;
|
|
32
36
|
};
|
|
@@ -76,11 +80,7 @@ declare const _default: {
|
|
|
76
80
|
url: string;
|
|
77
81
|
}[];
|
|
78
82
|
functionParameter: {
|
|
79
|
-
|
|
80
|
-
name: string;
|
|
81
|
-
detail: string;
|
|
82
|
-
};
|
|
83
|
-
number2: {
|
|
83
|
+
serialNumber: {
|
|
84
84
|
name: string;
|
|
85
85
|
detail: string;
|
|
86
86
|
};
|
|
@@ -130,11 +130,11 @@ declare const _default: {
|
|
|
130
130
|
url: string;
|
|
131
131
|
}[];
|
|
132
132
|
functionParameter: {
|
|
133
|
-
|
|
133
|
+
startDate: {
|
|
134
134
|
name: string;
|
|
135
135
|
detail: string;
|
|
136
136
|
};
|
|
137
|
-
|
|
137
|
+
months: {
|
|
138
138
|
name: string;
|
|
139
139
|
detail: string;
|
|
140
140
|
};
|
|
@@ -220,11 +220,7 @@ declare const _default: {
|
|
|
220
220
|
url: string;
|
|
221
221
|
}[];
|
|
222
222
|
functionParameter: {
|
|
223
|
-
|
|
224
|
-
name: string;
|
|
225
|
-
detail: string;
|
|
226
|
-
};
|
|
227
|
-
number2: {
|
|
223
|
+
serialNumber: {
|
|
228
224
|
name: string;
|
|
229
225
|
detail: string;
|
|
230
226
|
};
|
|
@@ -345,16 +341,7 @@ declare const _default: {
|
|
|
345
341
|
title: string;
|
|
346
342
|
url: string;
|
|
347
343
|
}[];
|
|
348
|
-
functionParameter: {
|
|
349
|
-
number1: {
|
|
350
|
-
name: string;
|
|
351
|
-
detail: string;
|
|
352
|
-
};
|
|
353
|
-
number2: {
|
|
354
|
-
name: string;
|
|
355
|
-
detail: string;
|
|
356
|
-
};
|
|
357
|
-
};
|
|
344
|
+
functionParameter: {};
|
|
358
345
|
};
|
|
359
346
|
WEEKDAY: {
|
|
360
347
|
description: string;
|
|
@@ -436,11 +423,7 @@ declare const _default: {
|
|
|
436
423
|
url: string;
|
|
437
424
|
}[];
|
|
438
425
|
functionParameter: {
|
|
439
|
-
|
|
440
|
-
name: string;
|
|
441
|
-
detail: string;
|
|
442
|
-
};
|
|
443
|
-
number2: {
|
|
426
|
+
serialNumber: {
|
|
444
427
|
name: string;
|
|
445
428
|
detail: string;
|
|
446
429
|
};
|