@univerjs/sheets-formula 0.2.4 → 0.2.6
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 +4 -4
- package/lib/es/index.js +4882 -4712
- package/lib/index.css +1 -1
- package/lib/locale/en-US.json +387 -349
- package/lib/locale/ru-RU.json +315 -325
- package/lib/locale/vi-VN.json +177 -227
- package/lib/locale/zh-CN.json +391 -353
- package/lib/locale/zh-TW.json +403 -365
- package/lib/types/commands/operations/__tests__/create-command-test-bed.d.ts +7 -8
- package/lib/types/controllers/__tests__/create-command-test-bed.d.ts +1 -2
- package/lib/types/controllers/formula-clipboard.controller.d.ts +1 -2
- package/lib/types/controllers/formula-ui.controller.d.ts +1 -2
- package/lib/types/controllers/menu.d.ts +1 -1
- package/lib/types/controllers/prompt.controller.d.ts +3 -0
- package/lib/types/controllers/update-formula.controller.d.ts +1 -2
- package/lib/types/formula-ui-plugin.d.ts +2 -3
- package/lib/types/locale/en-US.d.ts +207 -169
- package/lib/types/locale/function-list/date/en-US.d.ts +25 -17
- package/lib/types/locale/function-list/date/ja-JP.d.ts +25 -17
- package/lib/types/locale/function-list/date/zh-CN.d.ts +25 -17
- package/lib/types/locale/function-list/date/zh-TW.d.ts +27 -19
- package/lib/types/locale/function-list/information/en-US.d.ts +4 -12
- package/lib/types/locale/function-list/information/ja-JP.d.ts +4 -12
- package/lib/types/locale/function-list/information/zh-CN.d.ts +4 -12
- package/lib/types/locale/function-list/information/zh-TW.d.ts +4 -12
- package/lib/types/locale/function-list/lookup/en-US.d.ts +53 -21
- package/lib/types/locale/function-list/lookup/ja-JP.d.ts +53 -21
- package/lib/types/locale/function-list/lookup/zh-CN.d.ts +53 -21
- package/lib/types/locale/function-list/lookup/zh-TW.d.ts +53 -21
- package/lib/types/locale/function-list/math/en-US.d.ts +69 -111
- package/lib/types/locale/function-list/math/ja-JP.d.ts +69 -111
- package/lib/types/locale/function-list/math/zh-CN.d.ts +69 -111
- package/lib/types/locale/function-list/math/zh-TW.d.ts +71 -113
- package/lib/types/locale/function-list/text/en-US.d.ts +56 -8
- package/lib/types/locale/function-list/text/ja-JP.d.ts +56 -8
- package/lib/types/locale/function-list/text/zh-CN.d.ts +56 -8
- package/lib/types/locale/function-list/text/zh-TW.d.ts +56 -8
- package/lib/types/locale/ru-RU.d.ts +151 -161
- package/lib/types/locale/vi-VN.d.ts +73 -123
- package/lib/types/locale/zh-CN.d.ts +207 -169
- package/lib/types/locale/zh-TW.d.ts +211 -173
- package/lib/types/services/description.service.d.ts +2 -3
- package/lib/types/services/formula-ref-range.service.d.ts +1 -2
- package/lib/types/services/prompt.service.d.ts +2 -3
- package/lib/types/services/register-function.service.d.ts +2 -3
- package/lib/types/services/remote/remote-register-function.service.d.ts +1 -1
- package/lib/types/services/render-services/ref-selections.render-service.d.ts +5 -4
- package/lib/umd/index.js +4 -4
- package/package.json +25 -27
|
@@ -224,11 +224,11 @@ declare const _default: {
|
|
|
224
224
|
url: string;
|
|
225
225
|
}[];
|
|
226
226
|
functionParameter: {
|
|
227
|
-
|
|
227
|
+
number: {
|
|
228
228
|
name: string;
|
|
229
229
|
detail: string;
|
|
230
230
|
};
|
|
231
|
-
|
|
231
|
+
significance: {
|
|
232
232
|
name: string;
|
|
233
233
|
detail: string;
|
|
234
234
|
};
|
|
@@ -242,11 +242,15 @@ declare const _default: {
|
|
|
242
242
|
url: string;
|
|
243
243
|
}[];
|
|
244
244
|
functionParameter: {
|
|
245
|
-
|
|
245
|
+
number: {
|
|
246
246
|
name: string;
|
|
247
247
|
detail: string;
|
|
248
248
|
};
|
|
249
|
-
|
|
249
|
+
significance: {
|
|
250
|
+
name: string;
|
|
251
|
+
detail: string;
|
|
252
|
+
};
|
|
253
|
+
mode: {
|
|
250
254
|
name: string;
|
|
251
255
|
detail: string;
|
|
252
256
|
};
|
|
@@ -260,11 +264,11 @@ declare const _default: {
|
|
|
260
264
|
url: string;
|
|
261
265
|
}[];
|
|
262
266
|
functionParameter: {
|
|
263
|
-
|
|
267
|
+
number: {
|
|
264
268
|
name: string;
|
|
265
269
|
detail: string;
|
|
266
270
|
};
|
|
267
|
-
|
|
271
|
+
significance: {
|
|
268
272
|
name: string;
|
|
269
273
|
detail: string;
|
|
270
274
|
};
|
|
@@ -398,11 +402,11 @@ declare const _default: {
|
|
|
398
402
|
url: string;
|
|
399
403
|
}[];
|
|
400
404
|
functionParameter: {
|
|
401
|
-
|
|
405
|
+
text: {
|
|
402
406
|
name: string;
|
|
403
407
|
detail: string;
|
|
404
408
|
};
|
|
405
|
-
|
|
409
|
+
radix: {
|
|
406
410
|
name: string;
|
|
407
411
|
detail: string;
|
|
408
412
|
};
|
|
@@ -416,11 +420,7 @@ declare const _default: {
|
|
|
416
420
|
url: string;
|
|
417
421
|
}[];
|
|
418
422
|
functionParameter: {
|
|
419
|
-
|
|
420
|
-
name: string;
|
|
421
|
-
detail: string;
|
|
422
|
-
};
|
|
423
|
-
number2: {
|
|
423
|
+
angle: {
|
|
424
424
|
name: string;
|
|
425
425
|
detail: string;
|
|
426
426
|
};
|
|
@@ -434,11 +434,7 @@ declare const _default: {
|
|
|
434
434
|
url: string;
|
|
435
435
|
}[];
|
|
436
436
|
functionParameter: {
|
|
437
|
-
|
|
438
|
-
name: string;
|
|
439
|
-
detail: string;
|
|
440
|
-
};
|
|
441
|
-
number2: {
|
|
437
|
+
number: {
|
|
442
438
|
name: string;
|
|
443
439
|
detail: string;
|
|
444
440
|
};
|
|
@@ -452,11 +448,7 @@ declare const _default: {
|
|
|
452
448
|
url: string;
|
|
453
449
|
}[];
|
|
454
450
|
functionParameter: {
|
|
455
|
-
|
|
456
|
-
name: string;
|
|
457
|
-
detail: string;
|
|
458
|
-
};
|
|
459
|
-
number2: {
|
|
451
|
+
number: {
|
|
460
452
|
name: string;
|
|
461
453
|
detail: string;
|
|
462
454
|
};
|
|
@@ -506,11 +498,11 @@ declare const _default: {
|
|
|
506
498
|
url: string;
|
|
507
499
|
}[];
|
|
508
500
|
functionParameter: {
|
|
509
|
-
|
|
501
|
+
number: {
|
|
510
502
|
name: string;
|
|
511
503
|
detail: string;
|
|
512
504
|
};
|
|
513
|
-
|
|
505
|
+
significance: {
|
|
514
506
|
name: string;
|
|
515
507
|
detail: string;
|
|
516
508
|
};
|
|
@@ -524,11 +516,15 @@ declare const _default: {
|
|
|
524
516
|
url: string;
|
|
525
517
|
}[];
|
|
526
518
|
functionParameter: {
|
|
527
|
-
|
|
519
|
+
number: {
|
|
528
520
|
name: string;
|
|
529
521
|
detail: string;
|
|
530
522
|
};
|
|
531
|
-
|
|
523
|
+
significance: {
|
|
524
|
+
name: string;
|
|
525
|
+
detail: string;
|
|
526
|
+
};
|
|
527
|
+
mode: {
|
|
532
528
|
name: string;
|
|
533
529
|
detail: string;
|
|
534
530
|
};
|
|
@@ -542,11 +538,11 @@ declare const _default: {
|
|
|
542
538
|
url: string;
|
|
543
539
|
}[];
|
|
544
540
|
functionParameter: {
|
|
545
|
-
|
|
541
|
+
number: {
|
|
546
542
|
name: string;
|
|
547
543
|
detail: string;
|
|
548
544
|
};
|
|
549
|
-
|
|
545
|
+
significance: {
|
|
550
546
|
name: string;
|
|
551
547
|
detail: string;
|
|
552
548
|
};
|
|
@@ -650,11 +646,7 @@ declare const _default: {
|
|
|
650
646
|
url: string;
|
|
651
647
|
}[];
|
|
652
648
|
functionParameter: {
|
|
653
|
-
|
|
654
|
-
name: string;
|
|
655
|
-
detail: string;
|
|
656
|
-
};
|
|
657
|
-
number2: {
|
|
649
|
+
number: {
|
|
658
650
|
name: string;
|
|
659
651
|
detail: string;
|
|
660
652
|
};
|
|
@@ -668,11 +660,11 @@ declare const _default: {
|
|
|
668
660
|
url: string;
|
|
669
661
|
}[];
|
|
670
662
|
functionParameter: {
|
|
671
|
-
|
|
663
|
+
number: {
|
|
672
664
|
name: string;
|
|
673
665
|
detail: string;
|
|
674
666
|
};
|
|
675
|
-
|
|
667
|
+
base: {
|
|
676
668
|
name: string;
|
|
677
669
|
detail: string;
|
|
678
670
|
};
|
|
@@ -686,11 +678,7 @@ declare const _default: {
|
|
|
686
678
|
url: string;
|
|
687
679
|
}[];
|
|
688
680
|
functionParameter: {
|
|
689
|
-
|
|
690
|
-
name: string;
|
|
691
|
-
detail: string;
|
|
692
|
-
};
|
|
693
|
-
number2: {
|
|
681
|
+
number: {
|
|
694
682
|
name: string;
|
|
695
683
|
detail: string;
|
|
696
684
|
};
|
|
@@ -776,11 +764,11 @@ declare const _default: {
|
|
|
776
764
|
url: string;
|
|
777
765
|
}[];
|
|
778
766
|
functionParameter: {
|
|
779
|
-
|
|
767
|
+
number: {
|
|
780
768
|
name: string;
|
|
781
769
|
detail: string;
|
|
782
770
|
};
|
|
783
|
-
|
|
771
|
+
multiple: {
|
|
784
772
|
name: string;
|
|
785
773
|
detail: string;
|
|
786
774
|
};
|
|
@@ -830,11 +818,7 @@ declare const _default: {
|
|
|
830
818
|
url: string;
|
|
831
819
|
}[];
|
|
832
820
|
functionParameter: {
|
|
833
|
-
|
|
834
|
-
name: string;
|
|
835
|
-
detail: string;
|
|
836
|
-
};
|
|
837
|
-
number2: {
|
|
821
|
+
number: {
|
|
838
822
|
name: string;
|
|
839
823
|
detail: string;
|
|
840
824
|
};
|
|
@@ -847,16 +831,7 @@ declare const _default: {
|
|
|
847
831
|
title: string;
|
|
848
832
|
url: string;
|
|
849
833
|
}[];
|
|
850
|
-
functionParameter: {
|
|
851
|
-
number1: {
|
|
852
|
-
name: string;
|
|
853
|
-
detail: string;
|
|
854
|
-
};
|
|
855
|
-
number2: {
|
|
856
|
-
name: string;
|
|
857
|
-
detail: string;
|
|
858
|
-
};
|
|
859
|
-
};
|
|
834
|
+
functionParameter: {};
|
|
860
835
|
};
|
|
861
836
|
POWER: {
|
|
862
837
|
description: string;
|
|
@@ -920,11 +895,7 @@ declare const _default: {
|
|
|
920
895
|
url: string;
|
|
921
896
|
}[];
|
|
922
897
|
functionParameter: {
|
|
923
|
-
|
|
924
|
-
name: string;
|
|
925
|
-
detail: string;
|
|
926
|
-
};
|
|
927
|
-
number2: {
|
|
898
|
+
angle: {
|
|
928
899
|
name: string;
|
|
929
900
|
detail: string;
|
|
930
901
|
};
|
|
@@ -937,16 +908,7 @@ declare const _default: {
|
|
|
937
908
|
title: string;
|
|
938
909
|
url: string;
|
|
939
910
|
}[];
|
|
940
|
-
functionParameter: {
|
|
941
|
-
number1: {
|
|
942
|
-
name: string;
|
|
943
|
-
detail: string;
|
|
944
|
-
};
|
|
945
|
-
number2: {
|
|
946
|
-
name: string;
|
|
947
|
-
detail: string;
|
|
948
|
-
};
|
|
949
|
-
};
|
|
911
|
+
functionParameter: {};
|
|
950
912
|
};
|
|
951
913
|
RANDARRAY: {
|
|
952
914
|
description: string;
|
|
@@ -956,11 +918,23 @@ declare const _default: {
|
|
|
956
918
|
url: string;
|
|
957
919
|
}[];
|
|
958
920
|
functionParameter: {
|
|
959
|
-
|
|
921
|
+
rows: {
|
|
960
922
|
name: string;
|
|
961
923
|
detail: string;
|
|
962
924
|
};
|
|
963
|
-
|
|
925
|
+
columns: {
|
|
926
|
+
name: string;
|
|
927
|
+
detail: string;
|
|
928
|
+
};
|
|
929
|
+
min: {
|
|
930
|
+
name: string;
|
|
931
|
+
detail: string;
|
|
932
|
+
};
|
|
933
|
+
max: {
|
|
934
|
+
name: string;
|
|
935
|
+
detail: string;
|
|
936
|
+
};
|
|
937
|
+
wholeNumber: {
|
|
964
938
|
name: string;
|
|
965
939
|
detail: string;
|
|
966
940
|
};
|
|
@@ -974,11 +948,11 @@ declare const _default: {
|
|
|
974
948
|
url: string;
|
|
975
949
|
}[];
|
|
976
950
|
functionParameter: {
|
|
977
|
-
|
|
951
|
+
bottom: {
|
|
978
952
|
name: string;
|
|
979
953
|
detail: string;
|
|
980
954
|
};
|
|
981
|
-
|
|
955
|
+
top: {
|
|
982
956
|
name: string;
|
|
983
957
|
detail: string;
|
|
984
958
|
};
|
|
@@ -1010,11 +984,11 @@ declare const _default: {
|
|
|
1010
984
|
url: string;
|
|
1011
985
|
}[];
|
|
1012
986
|
functionParameter: {
|
|
1013
|
-
|
|
987
|
+
number: {
|
|
1014
988
|
name: string;
|
|
1015
989
|
detail: string;
|
|
1016
990
|
};
|
|
1017
|
-
|
|
991
|
+
numDigits: {
|
|
1018
992
|
name: string;
|
|
1019
993
|
detail: string;
|
|
1020
994
|
};
|
|
@@ -1028,11 +1002,11 @@ declare const _default: {
|
|
|
1028
1002
|
url: string;
|
|
1029
1003
|
}[];
|
|
1030
1004
|
functionParameter: {
|
|
1031
|
-
|
|
1005
|
+
number: {
|
|
1032
1006
|
name: string;
|
|
1033
1007
|
detail: string;
|
|
1034
1008
|
};
|
|
1035
|
-
|
|
1009
|
+
numDigits: {
|
|
1036
1010
|
name: string;
|
|
1037
1011
|
detail: string;
|
|
1038
1012
|
};
|
|
@@ -1046,11 +1020,11 @@ declare const _default: {
|
|
|
1046
1020
|
url: string;
|
|
1047
1021
|
}[];
|
|
1048
1022
|
functionParameter: {
|
|
1049
|
-
|
|
1023
|
+
number: {
|
|
1050
1024
|
name: string;
|
|
1051
1025
|
detail: string;
|
|
1052
1026
|
};
|
|
1053
|
-
|
|
1027
|
+
numDigits: {
|
|
1054
1028
|
name: string;
|
|
1055
1029
|
detail: string;
|
|
1056
1030
|
};
|
|
@@ -1064,11 +1038,7 @@ declare const _default: {
|
|
|
1064
1038
|
url: string;
|
|
1065
1039
|
}[];
|
|
1066
1040
|
functionParameter: {
|
|
1067
|
-
|
|
1068
|
-
name: string;
|
|
1069
|
-
detail: string;
|
|
1070
|
-
};
|
|
1071
|
-
number2: {
|
|
1041
|
+
number: {
|
|
1072
1042
|
name: string;
|
|
1073
1043
|
detail: string;
|
|
1074
1044
|
};
|
|
@@ -1082,11 +1052,7 @@ declare const _default: {
|
|
|
1082
1052
|
url: string;
|
|
1083
1053
|
}[];
|
|
1084
1054
|
functionParameter: {
|
|
1085
|
-
|
|
1086
|
-
name: string;
|
|
1087
|
-
detail: string;
|
|
1088
|
-
};
|
|
1089
|
-
number2: {
|
|
1055
|
+
number: {
|
|
1090
1056
|
name: string;
|
|
1091
1057
|
detail: string;
|
|
1092
1058
|
};
|
|
@@ -1182,11 +1148,7 @@ declare const _default: {
|
|
|
1182
1148
|
url: string;
|
|
1183
1149
|
}[];
|
|
1184
1150
|
functionParameter: {
|
|
1185
|
-
|
|
1186
|
-
name: string;
|
|
1187
|
-
detail: string;
|
|
1188
|
-
};
|
|
1189
|
-
number2: {
|
|
1151
|
+
number: {
|
|
1190
1152
|
name: string;
|
|
1191
1153
|
detail: string;
|
|
1192
1154
|
};
|
|
@@ -1200,11 +1162,7 @@ declare const _default: {
|
|
|
1200
1162
|
url: string;
|
|
1201
1163
|
}[];
|
|
1202
1164
|
functionParameter: {
|
|
1203
|
-
|
|
1204
|
-
name: string;
|
|
1205
|
-
detail: string;
|
|
1206
|
-
};
|
|
1207
|
-
number2: {
|
|
1165
|
+
number: {
|
|
1208
1166
|
name: string;
|
|
1209
1167
|
detail: string;
|
|
1210
1168
|
};
|
|
@@ -1346,11 +1304,11 @@ declare const _default: {
|
|
|
1346
1304
|
url: string;
|
|
1347
1305
|
}[];
|
|
1348
1306
|
functionParameter: {
|
|
1349
|
-
|
|
1307
|
+
arrayX: {
|
|
1350
1308
|
name: string;
|
|
1351
1309
|
detail: string;
|
|
1352
1310
|
};
|
|
1353
|
-
|
|
1311
|
+
arrayY: {
|
|
1354
1312
|
name: string;
|
|
1355
1313
|
detail: string;
|
|
1356
1314
|
};
|
|
@@ -1364,11 +1322,11 @@ declare const _default: {
|
|
|
1364
1322
|
url: string;
|
|
1365
1323
|
}[];
|
|
1366
1324
|
functionParameter: {
|
|
1367
|
-
|
|
1325
|
+
arrayX: {
|
|
1368
1326
|
name: string;
|
|
1369
1327
|
detail: string;
|
|
1370
1328
|
};
|
|
1371
|
-
|
|
1329
|
+
arrayY: {
|
|
1372
1330
|
name: string;
|
|
1373
1331
|
detail: string;
|
|
1374
1332
|
};
|
|
@@ -1382,11 +1340,11 @@ declare const _default: {
|
|
|
1382
1340
|
url: string;
|
|
1383
1341
|
}[];
|
|
1384
1342
|
functionParameter: {
|
|
1385
|
-
|
|
1343
|
+
arrayX: {
|
|
1386
1344
|
name: string;
|
|
1387
1345
|
detail: string;
|
|
1388
1346
|
};
|
|
1389
|
-
|
|
1347
|
+
arrayY: {
|
|
1390
1348
|
name: string;
|
|
1391
1349
|
detail: string;
|
|
1392
1350
|
};
|
|
@@ -1428,11 +1386,11 @@ declare const _default: {
|
|
|
1428
1386
|
url: string;
|
|
1429
1387
|
}[];
|
|
1430
1388
|
functionParameter: {
|
|
1431
|
-
|
|
1389
|
+
number: {
|
|
1432
1390
|
name: string;
|
|
1433
1391
|
detail: string;
|
|
1434
1392
|
};
|
|
1435
|
-
|
|
1393
|
+
numDigits: {
|
|
1436
1394
|
name: string;
|
|
1437
1395
|
detail: string;
|
|
1438
1396
|
};
|