@univerjs/sheets-formula-ui 0.5.0 → 0.5.1

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 (27) hide show
  1. package/lib/cjs/index.js +27 -9
  2. package/lib/cjs/locale/fr-FR.js +43 -0
  3. package/lib/es/index.js +1318 -1277
  4. package/lib/es/locale/fr-FR.js +7889 -0
  5. package/lib/types/controllers/__tests__/create-command-test-bed.d.ts +1 -0
  6. package/lib/types/controllers/formula-alert-render.controller.d.ts +1 -0
  7. package/lib/types/index.d.ts +1 -1
  8. package/lib/types/locale/fr-FR.d.ts +10504 -0
  9. package/lib/types/locale/function-list/array/fr-FR.d.ts +17 -0
  10. package/lib/types/locale/function-list/compatibility/fr-FR.d.ts +706 -0
  11. package/lib/types/locale/function-list/cube/fr-FR.d.ts +144 -0
  12. package/lib/types/locale/function-list/database/fr-FR.d.ts +234 -0
  13. package/lib/types/locale/function-list/date/fr-FR.d.ts +458 -0
  14. package/lib/types/locale/function-list/engineering/fr-FR.d.ts +894 -0
  15. package/lib/types/locale/function-list/financial/fr-FR.d.ts +1608 -0
  16. package/lib/types/locale/function-list/information/fr-FR.d.ts +327 -0
  17. package/lib/types/locale/function-list/logical/fr-FR.d.ts +390 -0
  18. package/lib/types/locale/function-list/lookup/fr-FR.d.ts +812 -0
  19. package/lib/types/locale/function-list/math/fr-FR.d.ts +1388 -0
  20. package/lib/types/locale/function-list/statistical/fr-FR.d.ts +2068 -0
  21. package/lib/types/locale/function-list/text/fr-FR.d.ts +904 -0
  22. package/lib/types/locale/function-list/univer/fr-FR.d.ts +17 -0
  23. package/lib/types/locale/function-list/web/fr-FR.d.ts +72 -0
  24. package/lib/umd/index.js +27 -9
  25. package/lib/umd/locale/fr-FR.js +43 -0
  26. package/package.json +19 -17
  27. package/lib/types/services/formula-common.d.ts +0 -18
@@ -0,0 +1,812 @@
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
+ declare const _default: {
17
+ ADDRESS: {
18
+ description: string;
19
+ abstract: string;
20
+ links: {
21
+ title: string;
22
+ url: string;
23
+ }[];
24
+ functionParameter: {
25
+ row_num: {
26
+ name: string;
27
+ detail: string;
28
+ };
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: {
42
+ name: string;
43
+ detail: string;
44
+ };
45
+ };
46
+ };
47
+ AREAS: {
48
+ description: string;
49
+ abstract: string;
50
+ links: {
51
+ title: string;
52
+ url: string;
53
+ }[];
54
+ functionParameter: {
55
+ reference: {
56
+ name: string;
57
+ detail: string;
58
+ };
59
+ };
60
+ };
61
+ CHOOSE: {
62
+ description: string;
63
+ abstract: string;
64
+ links: {
65
+ title: string;
66
+ url: string;
67
+ }[];
68
+ functionParameter: {
69
+ indexNum: {
70
+ name: string;
71
+ detail: string;
72
+ };
73
+ value1: {
74
+ name: string;
75
+ detail: string;
76
+ };
77
+ value2: {
78
+ name: string;
79
+ detail: string;
80
+ };
81
+ };
82
+ };
83
+ CHOOSECOLS: {
84
+ description: string;
85
+ abstract: string;
86
+ links: {
87
+ title: string;
88
+ url: string;
89
+ }[];
90
+ functionParameter: {
91
+ array: {
92
+ name: string;
93
+ detail: string;
94
+ };
95
+ colNum1: {
96
+ name: string;
97
+ detail: string;
98
+ };
99
+ colNum2: {
100
+ name: string;
101
+ detail: string;
102
+ };
103
+ };
104
+ };
105
+ CHOOSEROWS: {
106
+ description: string;
107
+ abstract: string;
108
+ links: {
109
+ title: string;
110
+ url: string;
111
+ }[];
112
+ functionParameter: {
113
+ array: {
114
+ name: string;
115
+ detail: string;
116
+ };
117
+ rowNum1: {
118
+ name: string;
119
+ detail: string;
120
+ };
121
+ rowNum2: {
122
+ name: string;
123
+ detail: string;
124
+ };
125
+ };
126
+ };
127
+ COLUMN: {
128
+ description: string;
129
+ abstract: string;
130
+ links: {
131
+ title: string;
132
+ url: string;
133
+ }[];
134
+ functionParameter: {
135
+ reference: {
136
+ name: string;
137
+ detail: string;
138
+ };
139
+ };
140
+ };
141
+ COLUMNS: {
142
+ description: string;
143
+ abstract: string;
144
+ links: {
145
+ title: string;
146
+ url: string;
147
+ }[];
148
+ functionParameter: {
149
+ array: {
150
+ name: string;
151
+ detail: string;
152
+ };
153
+ };
154
+ };
155
+ DROP: {
156
+ description: string;
157
+ abstract: string;
158
+ links: {
159
+ title: string;
160
+ url: string;
161
+ }[];
162
+ functionParameter: {
163
+ array: {
164
+ name: string;
165
+ detail: string;
166
+ };
167
+ rows: {
168
+ name: string;
169
+ detail: string;
170
+ };
171
+ columns: {
172
+ name: string;
173
+ detail: string;
174
+ };
175
+ };
176
+ };
177
+ EXPAND: {
178
+ description: string;
179
+ abstract: string;
180
+ links: {
181
+ title: string;
182
+ url: string;
183
+ }[];
184
+ functionParameter: {
185
+ array: {
186
+ name: string;
187
+ detail: string;
188
+ };
189
+ rows: {
190
+ name: string;
191
+ detail: string;
192
+ };
193
+ columns: {
194
+ name: string;
195
+ detail: string;
196
+ };
197
+ padWith: {
198
+ name: string;
199
+ detail: string;
200
+ };
201
+ };
202
+ };
203
+ FILTER: {
204
+ description: string;
205
+ abstract: string;
206
+ links: {
207
+ title: string;
208
+ url: string;
209
+ }[];
210
+ functionParameter: {
211
+ array: {
212
+ name: string;
213
+ detail: string;
214
+ };
215
+ include: {
216
+ name: string;
217
+ detail: string;
218
+ };
219
+ ifEmpty: {
220
+ name: string;
221
+ detail: string;
222
+ };
223
+ };
224
+ };
225
+ FORMULATEXT: {
226
+ description: string;
227
+ abstract: string;
228
+ links: {
229
+ title: string;
230
+ url: string;
231
+ }[];
232
+ functionParameter: {
233
+ number1: {
234
+ name: string;
235
+ detail: string;
236
+ };
237
+ number2: {
238
+ name: string;
239
+ detail: string;
240
+ };
241
+ };
242
+ };
243
+ GETPIVOTDATA: {
244
+ description: string;
245
+ abstract: string;
246
+ links: {
247
+ title: string;
248
+ url: string;
249
+ }[];
250
+ functionParameter: {
251
+ number1: {
252
+ name: string;
253
+ detail: string;
254
+ };
255
+ number2: {
256
+ name: string;
257
+ detail: string;
258
+ };
259
+ };
260
+ };
261
+ HLOOKUP: {
262
+ description: string;
263
+ abstract: string;
264
+ links: {
265
+ title: string;
266
+ url: string;
267
+ }[];
268
+ functionParameter: {
269
+ lookupValue: {
270
+ name: string;
271
+ detail: string;
272
+ };
273
+ tableArray: {
274
+ name: string;
275
+ detail: string;
276
+ };
277
+ rowIndexNum: {
278
+ name: string;
279
+ detail: string;
280
+ };
281
+ rangeLookup: {
282
+ name: string;
283
+ detail: string;
284
+ };
285
+ };
286
+ };
287
+ HSTACK: {
288
+ description: string;
289
+ abstract: string;
290
+ links: {
291
+ title: string;
292
+ url: string;
293
+ }[];
294
+ functionParameter: {
295
+ array1: {
296
+ name: string;
297
+ detail: string;
298
+ };
299
+ array2: {
300
+ name: string;
301
+ detail: string;
302
+ };
303
+ };
304
+ };
305
+ HYPERLINK: {
306
+ description: string;
307
+ abstract: string;
308
+ links: {
309
+ title: string;
310
+ url: string;
311
+ }[];
312
+ functionParameter: {
313
+ number1: {
314
+ name: string;
315
+ detail: string;
316
+ };
317
+ number2: {
318
+ name: string;
319
+ detail: string;
320
+ };
321
+ };
322
+ };
323
+ IMAGE: {
324
+ description: string;
325
+ abstract: string;
326
+ links: {
327
+ title: string;
328
+ url: string;
329
+ }[];
330
+ functionParameter: {
331
+ number1: {
332
+ name: string;
333
+ detail: string;
334
+ };
335
+ number2: {
336
+ name: string;
337
+ detail: string;
338
+ };
339
+ };
340
+ };
341
+ INDEX: {
342
+ description: string;
343
+ abstract: string;
344
+ links: {
345
+ title: string;
346
+ url: string;
347
+ }[];
348
+ functionParameter: {
349
+ reference: {
350
+ name: string;
351
+ detail: string;
352
+ };
353
+ rowNum: {
354
+ name: string;
355
+ detail: string;
356
+ };
357
+ columnNum: {
358
+ name: string;
359
+ detail: string;
360
+ };
361
+ areaNum: {
362
+ name: string;
363
+ detail: string;
364
+ };
365
+ };
366
+ };
367
+ INDIRECT: {
368
+ description: string;
369
+ abstract: string;
370
+ links: {
371
+ title: string;
372
+ url: string;
373
+ }[];
374
+ functionParameter: {
375
+ refText: {
376
+ name: string;
377
+ detail: string;
378
+ };
379
+ a1: {
380
+ name: string;
381
+ detail: string;
382
+ };
383
+ };
384
+ };
385
+ LOOKUP: {
386
+ description: string;
387
+ abstract: string;
388
+ links: {
389
+ title: string;
390
+ url: string;
391
+ }[];
392
+ functionParameter: {
393
+ lookupValue: {
394
+ name: string;
395
+ detail: string;
396
+ };
397
+ lookupVectorOrArray: {
398
+ name: string;
399
+ detail: string;
400
+ };
401
+ resultVector: {
402
+ name: string;
403
+ detail: string;
404
+ };
405
+ };
406
+ };
407
+ MATCH: {
408
+ description: string;
409
+ abstract: string;
410
+ links: {
411
+ title: string;
412
+ url: string;
413
+ }[];
414
+ functionParameter: {
415
+ lookupValue: {
416
+ name: string;
417
+ detail: string;
418
+ };
419
+ lookupArray: {
420
+ name: string;
421
+ detail: string;
422
+ };
423
+ matchType: {
424
+ name: string;
425
+ detail: string;
426
+ };
427
+ };
428
+ };
429
+ OFFSET: {
430
+ description: string;
431
+ abstract: string;
432
+ links: {
433
+ title: string;
434
+ url: string;
435
+ }[];
436
+ functionParameter: {
437
+ reference: {
438
+ name: string;
439
+ detail: string;
440
+ };
441
+ rows: {
442
+ name: string;
443
+ detail: string;
444
+ };
445
+ cols: {
446
+ name: string;
447
+ detail: string;
448
+ };
449
+ height: {
450
+ name: string;
451
+ detail: string;
452
+ };
453
+ width: {
454
+ name: string;
455
+ detail: string;
456
+ };
457
+ };
458
+ };
459
+ ROW: {
460
+ description: string;
461
+ abstract: string;
462
+ links: {
463
+ title: string;
464
+ url: string;
465
+ }[];
466
+ functionParameter: {
467
+ reference: {
468
+ name: string;
469
+ detail: string;
470
+ };
471
+ };
472
+ };
473
+ ROWS: {
474
+ description: string;
475
+ abstract: string;
476
+ links: {
477
+ title: string;
478
+ url: string;
479
+ }[];
480
+ functionParameter: {
481
+ array: {
482
+ name: string;
483
+ detail: string;
484
+ };
485
+ };
486
+ };
487
+ RTD: {
488
+ description: string;
489
+ abstract: string;
490
+ links: {
491
+ title: string;
492
+ url: string;
493
+ }[];
494
+ functionParameter: {
495
+ number1: {
496
+ name: string;
497
+ detail: string;
498
+ };
499
+ number2: {
500
+ name: string;
501
+ detail: string;
502
+ };
503
+ };
504
+ };
505
+ SORT: {
506
+ description: string;
507
+ abstract: string;
508
+ links: {
509
+ title: string;
510
+ url: string;
511
+ }[];
512
+ functionParameter: {
513
+ array: {
514
+ name: string;
515
+ detail: string;
516
+ };
517
+ sortIndex: {
518
+ name: string;
519
+ detail: string;
520
+ };
521
+ sortOrder: {
522
+ name: string;
523
+ detail: string;
524
+ };
525
+ byCol: {
526
+ name: string;
527
+ detail: string;
528
+ };
529
+ };
530
+ };
531
+ SORTBY: {
532
+ description: string;
533
+ abstract: string;
534
+ links: {
535
+ title: string;
536
+ url: string;
537
+ }[];
538
+ functionParameter: {
539
+ array: {
540
+ name: string;
541
+ detail: string;
542
+ };
543
+ byArray1: {
544
+ name: string;
545
+ detail: string;
546
+ };
547
+ sortOrder1: {
548
+ name: string;
549
+ detail: string;
550
+ };
551
+ byArray2: {
552
+ name: string;
553
+ detail: string;
554
+ };
555
+ sortOrder2: {
556
+ name: string;
557
+ detail: string;
558
+ };
559
+ };
560
+ };
561
+ TAKE: {
562
+ description: string;
563
+ abstract: string;
564
+ links: {
565
+ title: string;
566
+ url: string;
567
+ }[];
568
+ functionParameter: {
569
+ array: {
570
+ name: string;
571
+ detail: string;
572
+ };
573
+ rows: {
574
+ name: string;
575
+ detail: string;
576
+ };
577
+ columns: {
578
+ name: string;
579
+ detail: string;
580
+ };
581
+ };
582
+ };
583
+ TOCOL: {
584
+ description: string;
585
+ abstract: string;
586
+ links: {
587
+ title: string;
588
+ url: string;
589
+ }[];
590
+ functionParameter: {
591
+ array: {
592
+ name: string;
593
+ detail: string;
594
+ };
595
+ ignore: {
596
+ name: string;
597
+ detail: string;
598
+ };
599
+ scanByColumn: {
600
+ name: string;
601
+ detail: string;
602
+ };
603
+ };
604
+ };
605
+ TOROW: {
606
+ description: string;
607
+ abstract: string;
608
+ links: {
609
+ title: string;
610
+ url: string;
611
+ }[];
612
+ functionParameter: {
613
+ array: {
614
+ name: string;
615
+ detail: string;
616
+ };
617
+ ignore: {
618
+ name: string;
619
+ detail: string;
620
+ };
621
+ scanByColumn: {
622
+ name: string;
623
+ detail: string;
624
+ };
625
+ };
626
+ };
627
+ TRANSPOSE: {
628
+ description: string;
629
+ abstract: string;
630
+ links: {
631
+ title: string;
632
+ url: string;
633
+ }[];
634
+ functionParameter: {
635
+ array: {
636
+ name: string;
637
+ detail: string;
638
+ };
639
+ };
640
+ };
641
+ UNIQUE: {
642
+ description: string;
643
+ abstract: string;
644
+ links: {
645
+ title: string;
646
+ url: string;
647
+ }[];
648
+ functionParameter: {
649
+ array: {
650
+ name: string;
651
+ detail: string;
652
+ };
653
+ byCol: {
654
+ name: string;
655
+ detail: string;
656
+ };
657
+ exactlyOnce: {
658
+ name: string;
659
+ detail: string;
660
+ };
661
+ };
662
+ };
663
+ VLOOKUP: {
664
+ description: string;
665
+ abstract: string;
666
+ links: {
667
+ title: string;
668
+ url: string;
669
+ }[];
670
+ functionParameter: {
671
+ lookupValue: {
672
+ name: string;
673
+ detail: string;
674
+ };
675
+ tableArray: {
676
+ name: string;
677
+ detail: string;
678
+ };
679
+ colIndexNum: {
680
+ name: string;
681
+ detail: string;
682
+ };
683
+ rangeLookup: {
684
+ name: string;
685
+ detail: string;
686
+ };
687
+ };
688
+ };
689
+ VSTACK: {
690
+ description: string;
691
+ abstract: string;
692
+ links: {
693
+ title: string;
694
+ url: string;
695
+ }[];
696
+ functionParameter: {
697
+ array1: {
698
+ name: string;
699
+ detail: string;
700
+ };
701
+ array2: {
702
+ name: string;
703
+ detail: string;
704
+ };
705
+ };
706
+ };
707
+ WRAPCOLS: {
708
+ description: string;
709
+ abstract: string;
710
+ links: {
711
+ title: string;
712
+ url: string;
713
+ }[];
714
+ functionParameter: {
715
+ vector: {
716
+ name: string;
717
+ detail: string;
718
+ };
719
+ wrapCount: {
720
+ name: string;
721
+ detail: string;
722
+ };
723
+ padWith: {
724
+ name: string;
725
+ detail: string;
726
+ };
727
+ };
728
+ };
729
+ WRAPROWS: {
730
+ description: string;
731
+ abstract: string;
732
+ links: {
733
+ title: string;
734
+ url: string;
735
+ }[];
736
+ functionParameter: {
737
+ vector: {
738
+ name: string;
739
+ detail: string;
740
+ };
741
+ wrapCount: {
742
+ name: string;
743
+ detail: string;
744
+ };
745
+ padWith: {
746
+ name: string;
747
+ detail: string;
748
+ };
749
+ };
750
+ };
751
+ XLOOKUP: {
752
+ description: string;
753
+ abstract: string;
754
+ links: {
755
+ title: string;
756
+ url: string;
757
+ }[];
758
+ functionParameter: {
759
+ lookupValue: {
760
+ name: string;
761
+ detail: string;
762
+ };
763
+ lookupArray: {
764
+ name: string;
765
+ detail: string;
766
+ };
767
+ returnArray: {
768
+ name: string;
769
+ detail: string;
770
+ };
771
+ ifNotFound: {
772
+ name: string;
773
+ detail: string;
774
+ };
775
+ matchMode: {
776
+ name: string;
777
+ detail: string;
778
+ };
779
+ searchMode: {
780
+ name: string;
781
+ detail: string;
782
+ };
783
+ };
784
+ };
785
+ XMATCH: {
786
+ description: string;
787
+ abstract: string;
788
+ links: {
789
+ title: string;
790
+ url: string;
791
+ }[];
792
+ functionParameter: {
793
+ lookupValue: {
794
+ name: string;
795
+ detail: string;
796
+ };
797
+ lookupArray: {
798
+ name: string;
799
+ detail: string;
800
+ };
801
+ matchMode: {
802
+ name: string;
803
+ detail: string;
804
+ };
805
+ searchMode: {
806
+ name: string;
807
+ detail: string;
808
+ };
809
+ };
810
+ };
811
+ };
812
+ export default _default;