@univerjs/sheets-formula 0.2.5 → 0.2.7

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.
Files changed (44) hide show
  1. package/lib/cjs/index.js +4 -4
  2. package/lib/es/index.js +4695 -4511
  3. package/lib/locale/en-US.json +246 -172
  4. package/lib/locale/ru-RU.json +172 -146
  5. package/lib/locale/vi-VN.json +1986 -1481
  6. package/lib/locale/zh-CN.json +287 -213
  7. package/lib/locale/zh-TW.json +371 -329
  8. package/lib/types/controllers/prompt.controller.d.ts +3 -5
  9. package/lib/types/formula-ui-plugin.d.ts +1 -1
  10. package/lib/types/index.d.ts +1 -0
  11. package/lib/types/locale/en-US.d.ts +143 -69
  12. package/lib/types/locale/function-list/date/vi-VN.d.ts +105 -26
  13. package/lib/types/locale/function-list/date/zh-TW.d.ts +32 -8
  14. package/lib/types/locale/function-list/information/ja-JP.d.ts +8 -40
  15. package/lib/types/locale/function-list/information/vi-VN.d.ts +218 -3
  16. package/lib/types/locale/function-list/logical/en-US.d.ts +31 -33
  17. package/lib/types/locale/function-list/logical/ja-JP.d.ts +31 -33
  18. package/lib/types/locale/function-list/logical/vi-VN.d.ts +31 -33
  19. package/lib/types/locale/function-list/logical/zh-CN.d.ts +31 -33
  20. package/lib/types/locale/function-list/logical/zh-TW.d.ts +31 -33
  21. package/lib/types/locale/function-list/lookup/en-US.d.ts +54 -26
  22. package/lib/types/locale/function-list/lookup/ja-JP.d.ts +54 -26
  23. package/lib/types/locale/function-list/lookup/vi-VN.d.ts +421 -9
  24. package/lib/types/locale/function-list/lookup/zh-CN.d.ts +54 -26
  25. package/lib/types/locale/function-list/lookup/zh-TW.d.ts +54 -26
  26. package/lib/types/locale/function-list/math/en-US.d.ts +2 -2
  27. package/lib/types/locale/function-list/math/ja-JP.d.ts +2 -2
  28. package/lib/types/locale/function-list/math/vi-VN.d.ts +1022 -3
  29. package/lib/types/locale/function-list/math/zh-CN.d.ts +2 -2
  30. package/lib/types/locale/function-list/math/zh-TW.d.ts +23 -79
  31. package/lib/types/locale/function-list/statistical/vi-VN.d.ts +334 -0
  32. package/lib/types/locale/function-list/text/en-US.d.ts +56 -8
  33. package/lib/types/locale/function-list/text/ja-JP.d.ts +56 -8
  34. package/lib/types/locale/function-list/text/vi-VN.d.ts +135 -1
  35. package/lib/types/locale/function-list/text/zh-CN.d.ts +56 -8
  36. package/lib/types/locale/function-list/text/zh-TW.d.ts +56 -8
  37. package/lib/types/locale/ru-RU.d.ts +87 -61
  38. package/lib/types/locale/vi-VN.d.ts +953 -482
  39. package/lib/types/locale/zh-CN.d.ts +143 -69
  40. package/lib/types/locale/zh-TW.d.ts +196 -154
  41. package/lib/types/services/prompt.service.d.ts +5 -1
  42. package/lib/types/services/render-services/ref-selections.render-service.d.ts +4 -2
  43. package/lib/umd/index.js +4 -4
  44. package/package.json +25 -25
@@ -2248,16 +2248,7 @@ declare const _default: {
2248
2248
  title: string;
2249
2249
  url: string;
2250
2250
  }[];
2251
- functionParameter: {
2252
- number1: {
2253
- name: string;
2254
- detail: string;
2255
- };
2256
- number2: {
2257
- name: string;
2258
- detail: string;
2259
- };
2260
- };
2251
+ functionParameter: {};
2261
2252
  };
2262
2253
  IF: {
2263
2254
  description: string;
@@ -2307,11 +2298,11 @@ declare const _default: {
2307
2298
  url: string;
2308
2299
  }[];
2309
2300
  functionParameter: {
2310
- number1: {
2301
+ value: {
2311
2302
  name: string;
2312
2303
  detail: string;
2313
2304
  };
2314
- number2: {
2305
+ valueIfNa: {
2315
2306
  name: string;
2316
2307
  detail: string;
2317
2308
  };
@@ -2325,11 +2316,19 @@ declare const _default: {
2325
2316
  url: string;
2326
2317
  }[];
2327
2318
  functionParameter: {
2328
- number1: {
2319
+ logicalTest1: {
2329
2320
  name: string;
2330
2321
  detail: string;
2331
2322
  };
2332
- number2: {
2323
+ valueIfTrue1: {
2324
+ name: string;
2325
+ detail: string;
2326
+ };
2327
+ logicalTest2: {
2328
+ name: string;
2329
+ detail: string;
2330
+ };
2331
+ valueIfTrue2: {
2333
2332
  name: string;
2334
2333
  detail: string;
2335
2334
  };
@@ -2419,11 +2418,7 @@ declare const _default: {
2419
2418
  url: string;
2420
2419
  }[];
2421
2420
  functionParameter: {
2422
- number1: {
2423
- name: string;
2424
- detail: string;
2425
- };
2426
- number2: {
2421
+ logical: {
2427
2422
  name: string;
2428
2423
  detail: string;
2429
2424
  };
@@ -2491,11 +2486,23 @@ declare const _default: {
2491
2486
  url: string;
2492
2487
  }[];
2493
2488
  functionParameter: {
2494
- number1: {
2489
+ expression: {
2495
2490
  name: string;
2496
2491
  detail: string;
2497
2492
  };
2498
- number2: {
2493
+ value1: {
2494
+ name: string;
2495
+ detail: string;
2496
+ };
2497
+ result1: {
2498
+ name: string;
2499
+ detail: string;
2500
+ };
2501
+ defaultOrValue2: {
2502
+ name: string;
2503
+ detail: string;
2504
+ };
2505
+ result2: {
2499
2506
  name: string;
2500
2507
  detail: string;
2501
2508
  };
@@ -2508,16 +2515,7 @@ declare const _default: {
2508
2515
  title: string;
2509
2516
  url: string;
2510
2517
  }[];
2511
- functionParameter: {
2512
- number1: {
2513
- name: string;
2514
- detail: string;
2515
- };
2516
- number2: {
2517
- name: string;
2518
- detail: string;
2519
- };
2520
- };
2518
+ functionParameter: {};
2521
2519
  };
2522
2520
  XOR: {
2523
2521
  description: string;
@@ -2527,11 +2525,11 @@ declare const _default: {
2527
2525
  url: string;
2528
2526
  }[];
2529
2527
  functionParameter: {
2530
- number1: {
2528
+ logical1: {
2531
2529
  name: string;
2532
2530
  detail: string;
2533
2531
  };
2534
- number2: {
2532
+ logical2: {
2535
2533
  name: string;
2536
2534
  detail: string;
2537
2535
  };
@@ -3625,11 +3623,7 @@ declare const _default: {
3625
3623
  url: string;
3626
3624
  }[];
3627
3625
  functionParameter: {
3628
- number1: {
3629
- name: string;
3630
- detail: string;
3631
- };
3632
- number2: {
3626
+ reference: {
3633
3627
  name: string;
3634
3628
  detail: string;
3635
3629
  };
@@ -3665,11 +3659,15 @@ declare const _default: {
3665
3659
  url: string;
3666
3660
  }[];
3667
3661
  functionParameter: {
3668
- number1: {
3662
+ array: {
3669
3663
  name: string;
3670
3664
  detail: string;
3671
3665
  };
3672
- number2: {
3666
+ colNum1: {
3667
+ name: string;
3668
+ detail: string;
3669
+ };
3670
+ colNum2: {
3673
3671
  name: string;
3674
3672
  detail: string;
3675
3673
  };
@@ -3683,11 +3681,15 @@ declare const _default: {
3683
3681
  url: string;
3684
3682
  }[];
3685
3683
  functionParameter: {
3686
- number1: {
3684
+ array: {
3687
3685
  name: string;
3688
3686
  detail: string;
3689
3687
  };
3690
- number2: {
3688
+ rowNum1: {
3689
+ name: string;
3690
+ detail: string;
3691
+ };
3692
+ rowNum2: {
3691
3693
  name: string;
3692
3694
  detail: string;
3693
3695
  };
@@ -3765,11 +3767,15 @@ declare const _default: {
3765
3767
  url: string;
3766
3768
  }[];
3767
3769
  functionParameter: {
3768
- number1: {
3770
+ array: {
3769
3771
  name: string;
3770
3772
  detail: string;
3771
3773
  };
3772
- number2: {
3774
+ include: {
3775
+ name: string;
3776
+ detail: string;
3777
+ };
3778
+ ifEmpty: {
3773
3779
  name: string;
3774
3780
  detail: string;
3775
3781
  };
@@ -3845,11 +3851,11 @@ declare const _default: {
3845
3851
  url: string;
3846
3852
  }[];
3847
3853
  functionParameter: {
3848
- number1: {
3854
+ array1: {
3849
3855
  name: string;
3850
3856
  detail: string;
3851
3857
  };
3852
- number2: {
3858
+ array2: {
3853
3859
  name: string;
3854
3860
  detail: string;
3855
3861
  };
@@ -4063,11 +4069,19 @@ declare const _default: {
4063
4069
  url: string;
4064
4070
  }[];
4065
4071
  functionParameter: {
4066
- number1: {
4072
+ array: {
4067
4073
  name: string;
4068
4074
  detail: string;
4069
4075
  };
4070
- number2: {
4076
+ sortIndex: {
4077
+ name: string;
4078
+ detail: string;
4079
+ };
4080
+ sortOrder: {
4081
+ name: string;
4082
+ detail: string;
4083
+ };
4084
+ byCol: {
4071
4085
  name: string;
4072
4086
  detail: string;
4073
4087
  };
@@ -4081,11 +4095,23 @@ declare const _default: {
4081
4095
  url: string;
4082
4096
  }[];
4083
4097
  functionParameter: {
4084
- number1: {
4098
+ array: {
4085
4099
  name: string;
4086
4100
  detail: string;
4087
4101
  };
4088
- number2: {
4102
+ byArray1: {
4103
+ name: string;
4104
+ detail: string;
4105
+ };
4106
+ sortOrder1: {
4107
+ name: string;
4108
+ detail: string;
4109
+ };
4110
+ byArray2: {
4111
+ name: string;
4112
+ detail: string;
4113
+ };
4114
+ sortOrder2: {
4089
4115
  name: string;
4090
4116
  detail: string;
4091
4117
  };
@@ -4153,11 +4179,7 @@ declare const _default: {
4153
4179
  url: string;
4154
4180
  }[];
4155
4181
  functionParameter: {
4156
- number1: {
4157
- name: string;
4158
- detail: string;
4159
- };
4160
- number2: {
4182
+ array: {
4161
4183
  name: string;
4162
4184
  detail: string;
4163
4185
  };
@@ -4171,11 +4193,15 @@ declare const _default: {
4171
4193
  url: string;
4172
4194
  }[];
4173
4195
  functionParameter: {
4174
- number1: {
4196
+ array: {
4175
4197
  name: string;
4176
4198
  detail: string;
4177
4199
  };
4178
- number2: {
4200
+ byCol: {
4201
+ name: string;
4202
+ detail: string;
4203
+ };
4204
+ exactlyOnce: {
4179
4205
  name: string;
4180
4206
  detail: string;
4181
4207
  };
@@ -4215,11 +4241,11 @@ declare const _default: {
4215
4241
  url: string;
4216
4242
  }[];
4217
4243
  functionParameter: {
4218
- number1: {
4244
+ array1: {
4219
4245
  name: string;
4220
4246
  detail: string;
4221
4247
  };
4222
- number2: {
4248
+ array2: {
4223
4249
  name: string;
4224
4250
  detail: string;
4225
4251
  };
@@ -7717,11 +7743,11 @@ declare const _default: {
7717
7743
  url: string;
7718
7744
  }[];
7719
7745
  functionParameter: {
7720
- number1: {
7746
+ number: {
7721
7747
  name: string;
7722
7748
  detail: string;
7723
7749
  };
7724
- number2: {
7750
+ numDigits: {
7725
7751
  name: string;
7726
7752
  detail: string;
7727
7753
  };