@univerjs/sheets-formula-ui 0.3.0-nightly.202410101606

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 (156) hide show
  1. package/README.md +39 -0
  2. package/lib/cjs/index.js +1 -0
  3. package/lib/es/index.js +1 -0
  4. package/lib/index.css +1 -0
  5. package/lib/locale/en-US.json +10987 -0
  6. package/lib/locale/ru-RU.json +10938 -0
  7. package/lib/locale/vi-VN.json +9511 -0
  8. package/lib/locale/zh-CN.json +10987 -0
  9. package/lib/locale/zh-TW.json +10987 -0
  10. package/lib/types/commands/commands/formula-clipboard.command.d.ts +2 -0
  11. package/lib/types/commands/operations/__tests__/create-command-test-bed.d.ts +13 -0
  12. package/lib/types/commands/operations/__tests__/insert-function.operation.spec.d.ts +16 -0
  13. package/lib/types/commands/operations/editor-formula.operation.d.ts +11 -0
  14. package/lib/types/commands/operations/help-function.operation.d.ts +2 -0
  15. package/lib/types/commands/operations/insert-function.operation.d.ts +19 -0
  16. package/lib/types/commands/operations/more-functions.operation.d.ts +2 -0
  17. package/lib/types/commands/operations/reference-absolute.operation.d.ts +2 -0
  18. package/lib/types/commands/operations/search-function.operation.d.ts +2 -0
  19. package/lib/types/common/plugin-name.d.ts +16 -0
  20. package/lib/types/common/prompt.d.ts +16 -0
  21. package/lib/types/common/selection.d.ts +4 -0
  22. package/lib/types/controllers/__tests__/create-command-test-bed.d.ts +7 -0
  23. package/lib/types/controllers/__tests__/formula-auto-fill.controller.spec.d.ts +16 -0
  24. package/lib/types/controllers/__tests__/formula-clipboard.controller.spec.d.ts +16 -0
  25. package/lib/types/controllers/__tests__/update-formula.controller.spec.d.ts +16 -0
  26. package/lib/types/controllers/config.schema.d.ts +15 -0
  27. package/lib/types/controllers/formula-alert-render.controller.d.ts +15 -0
  28. package/lib/types/controllers/formula-auto-fill.controller.d.ts +10 -0
  29. package/lib/types/controllers/formula-clipboard.controller.d.ts +25 -0
  30. package/lib/types/controllers/formula-editor-show.controller.d.ts +28 -0
  31. package/lib/types/controllers/formula-process.controller.d.ts +15 -0
  32. package/lib/types/controllers/formula-render.controller.d.ts +6 -0
  33. package/lib/types/controllers/formula-ui.controller.d.ts +19 -0
  34. package/lib/types/controllers/menu.d.ts +5 -0
  35. package/lib/types/controllers/menu.schema.d.ts +2 -0
  36. package/lib/types/controllers/prompt.controller.d.ts +170 -0
  37. package/lib/types/controllers/shortcuts/prompt.shortcut.d.ts +9 -0
  38. package/lib/types/controllers/utils/__tests__/offset-formula-data.spec.d.ts +16 -0
  39. package/lib/types/controllers/utils/__tests__/ref-range-formula.spec.d.ts +16 -0
  40. package/lib/types/controllers/utils/__tests__/utils.spec.d.ts +16 -0
  41. package/lib/types/controllers/utils/offset-formula-data.d.ts +15 -0
  42. package/lib/types/controllers/utils/ref-range-formula.d.ts +71 -0
  43. package/lib/types/controllers/utils/utils.d.ts +15 -0
  44. package/lib/types/index.d.ts +25 -0
  45. package/lib/types/locale/en-US.d.ts +9983 -0
  46. package/lib/types/locale/function-list/array/en-US.d.ts +17 -0
  47. package/lib/types/locale/function-list/array/ja-JP.d.ts +17 -0
  48. package/lib/types/locale/function-list/array/ru-RU.d.ts +2 -0
  49. package/lib/types/locale/function-list/array/vi-VN.d.ts +17 -0
  50. package/lib/types/locale/function-list/array/zh-CN.d.ts +17 -0
  51. package/lib/types/locale/function-list/array/zh-TW.d.ts +17 -0
  52. package/lib/types/locale/function-list/compatibility/en-US.d.ts +762 -0
  53. package/lib/types/locale/function-list/compatibility/ja-JP.d.ts +762 -0
  54. package/lib/types/locale/function-list/compatibility/ru-RU.d.ts +2 -0
  55. package/lib/types/locale/function-list/compatibility/vi-VN.d.ts +762 -0
  56. package/lib/types/locale/function-list/compatibility/zh-CN.d.ts +762 -0
  57. package/lib/types/locale/function-list/compatibility/zh-TW.d.ts +762 -0
  58. package/lib/types/locale/function-list/cube/en-US.d.ts +144 -0
  59. package/lib/types/locale/function-list/cube/ja-JP.d.ts +144 -0
  60. package/lib/types/locale/function-list/cube/ru-RU.d.ts +144 -0
  61. package/lib/types/locale/function-list/cube/vi-VN.d.ts +144 -0
  62. package/lib/types/locale/function-list/cube/zh-CN.d.ts +144 -0
  63. package/lib/types/locale/function-list/cube/zh-TW.d.ts +144 -0
  64. package/lib/types/locale/function-list/database/en-US.d.ts +234 -0
  65. package/lib/types/locale/function-list/database/ja-JP.d.ts +234 -0
  66. package/lib/types/locale/function-list/database/ru-RU.d.ts +234 -0
  67. package/lib/types/locale/function-list/database/vi-VN.d.ts +234 -0
  68. package/lib/types/locale/function-list/database/zh-CN.d.ts +234 -0
  69. package/lib/types/locale/function-list/database/zh-TW.d.ts +234 -0
  70. package/lib/types/locale/function-list/date/en-US.d.ts +458 -0
  71. package/lib/types/locale/function-list/date/ja-JP.d.ts +458 -0
  72. package/lib/types/locale/function-list/date/ru-RU.d.ts +2 -0
  73. package/lib/types/locale/function-list/date/vi-VN.d.ts +458 -0
  74. package/lib/types/locale/function-list/date/zh-CN.d.ts +458 -0
  75. package/lib/types/locale/function-list/date/zh-TW.d.ts +458 -0
  76. package/lib/types/locale/function-list/engineering/en-US.d.ts +894 -0
  77. package/lib/types/locale/function-list/engineering/ja-JP.d.ts +894 -0
  78. package/lib/types/locale/function-list/engineering/ru-RU.d.ts +2 -0
  79. package/lib/types/locale/function-list/engineering/vi-VN.d.ts +894 -0
  80. package/lib/types/locale/function-list/engineering/zh-CN.d.ts +894 -0
  81. package/lib/types/locale/function-list/engineering/zh-TW.d.ts +894 -0
  82. package/lib/types/locale/function-list/financial/en-US.d.ts +1608 -0
  83. package/lib/types/locale/function-list/financial/ja-JP.d.ts +1608 -0
  84. package/lib/types/locale/function-list/financial/ru-RU.d.ts +2 -0
  85. package/lib/types/locale/function-list/financial/vi-VN.d.ts +1608 -0
  86. package/lib/types/locale/function-list/financial/zh-CN.d.ts +1608 -0
  87. package/lib/types/locale/function-list/financial/zh-TW.d.ts +1608 -0
  88. package/lib/types/locale/function-list/information/en-US.d.ts +327 -0
  89. package/lib/types/locale/function-list/information/ja-JP.d.ts +327 -0
  90. package/lib/types/locale/function-list/information/ru-RU.d.ts +2 -0
  91. package/lib/types/locale/function-list/information/vi-VN.d.ts +255 -0
  92. package/lib/types/locale/function-list/information/zh-CN.d.ts +327 -0
  93. package/lib/types/locale/function-list/information/zh-TW.d.ts +327 -0
  94. package/lib/types/locale/function-list/logical/en-US.d.ts +390 -0
  95. package/lib/types/locale/function-list/logical/ja-JP.d.ts +390 -0
  96. package/lib/types/locale/function-list/logical/ru-RU.d.ts +2 -0
  97. package/lib/types/locale/function-list/logical/vi-VN.d.ts +390 -0
  98. package/lib/types/locale/function-list/logical/zh-CN.d.ts +390 -0
  99. package/lib/types/locale/function-list/logical/zh-TW.d.ts +390 -0
  100. package/lib/types/locale/function-list/lookup/en-US.d.ts +812 -0
  101. package/lib/types/locale/function-list/lookup/ja-JP.d.ts +812 -0
  102. package/lib/types/locale/function-list/lookup/ru-RU.d.ts +2 -0
  103. package/lib/types/locale/function-list/lookup/vi-VN.d.ts +722 -0
  104. package/lib/types/locale/function-list/lookup/zh-CN.d.ts +812 -0
  105. package/lib/types/locale/function-list/lookup/zh-TW.d.ts +812 -0
  106. package/lib/types/locale/function-list/math/en-US.d.ts +1388 -0
  107. package/lib/types/locale/function-list/math/ja-JP.d.ts +1388 -0
  108. package/lib/types/locale/function-list/math/ru-RU.d.ts +2 -0
  109. package/lib/types/locale/function-list/math/vi-VN.d.ts +1298 -0
  110. package/lib/types/locale/function-list/math/zh-CN.d.ts +1388 -0
  111. package/lib/types/locale/function-list/math/zh-TW.d.ts +1388 -0
  112. package/lib/types/locale/function-list/statistical/en-US.d.ts +2160 -0
  113. package/lib/types/locale/function-list/statistical/ja-JP.d.ts +2160 -0
  114. package/lib/types/locale/function-list/statistical/ru-RU.d.ts +2 -0
  115. package/lib/types/locale/function-list/statistical/vi-VN.d.ts +1188 -0
  116. package/lib/types/locale/function-list/statistical/zh-CN.d.ts +2160 -0
  117. package/lib/types/locale/function-list/statistical/zh-TW.d.ts +2160 -0
  118. package/lib/types/locale/function-list/text/en-US.d.ts +904 -0
  119. package/lib/types/locale/function-list/text/ja-JP.d.ts +905 -0
  120. package/lib/types/locale/function-list/text/ru-RU.d.ts +856 -0
  121. package/lib/types/locale/function-list/text/vi-VN.d.ts +784 -0
  122. package/lib/types/locale/function-list/text/zh-CN.d.ts +904 -0
  123. package/lib/types/locale/function-list/text/zh-TW.d.ts +904 -0
  124. package/lib/types/locale/function-list/univer/en-US.d.ts +17 -0
  125. package/lib/types/locale/function-list/univer/ja-JP.d.ts +17 -0
  126. package/lib/types/locale/function-list/univer/ru-RU.d.ts +17 -0
  127. package/lib/types/locale/function-list/univer/vi-VN.d.ts +17 -0
  128. package/lib/types/locale/function-list/univer/zh-CN.d.ts +17 -0
  129. package/lib/types/locale/function-list/univer/zh-TW.d.ts +17 -0
  130. package/lib/types/locale/function-list/web/en-US.d.ts +72 -0
  131. package/lib/types/locale/function-list/web/ja-JP.d.ts +72 -0
  132. package/lib/types/locale/function-list/web/ru-RU.d.ts +72 -0
  133. package/lib/types/locale/function-list/web/vi-VN.d.ts +2 -0
  134. package/lib/types/locale/function-list/web/zh-CN.d.ts +72 -0
  135. package/lib/types/locale/function-list/web/zh-TW.d.ts +72 -0
  136. package/lib/types/locale/ru-RU.d.ts +9934 -0
  137. package/lib/types/locale/vi-VN.d.ts +8657 -0
  138. package/lib/types/locale/zh-CN.d.ts +9983 -0
  139. package/lib/types/locale/zh-TW.d.ts +9983 -0
  140. package/lib/types/services/formula-common.d.ts +18 -0
  141. package/lib/types/services/prompt.service.d.ts +160 -0
  142. package/lib/types/services/render-services/ref-selections.render-service.d.ts +42 -0
  143. package/lib/types/services/utils.d.ts +8 -0
  144. package/lib/types/sheets-formula-ui.plugin.d.ts +19 -0
  145. package/lib/types/views/FormulaPromptContainer.d.ts +2 -0
  146. package/lib/types/views/more-functions/MoreFunctions.d.ts +2 -0
  147. package/lib/types/views/more-functions/function-help/FunctionHelp.d.ts +22 -0
  148. package/lib/types/views/more-functions/function-params/FunctionParams.d.ts +8 -0
  149. package/lib/types/views/more-functions/input-params/InputParams.d.ts +7 -0
  150. package/lib/types/views/more-functions/interface.d.ts +16 -0
  151. package/lib/types/views/more-functions/select-function/SelectFunction.d.ts +6 -0
  152. package/lib/types/views/prompt/help-function/HelpFunction.d.ts +2 -0
  153. package/lib/types/views/prompt/resize-scroll-observer.d.ts +18 -0
  154. package/lib/types/views/prompt/search-function/SearchFunction.d.ts +2 -0
  155. package/lib/umd/index.js +1 -0
  156. package/package.json +113 -0
@@ -0,0 +1,2 @@
1
+ import { default as enUS } from './en-US';
2
+ export default enUS;
@@ -0,0 +1,722 @@
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
+ HLOOKUP: {
226
+ description: string;
227
+ abstract: string;
228
+ links: {
229
+ title: string;
230
+ url: string;
231
+ }[];
232
+ functionParameter: {
233
+ lookupValue: {
234
+ name: string;
235
+ detail: string;
236
+ };
237
+ tableArray: {
238
+ name: string;
239
+ detail: string;
240
+ };
241
+ rowIndexNum: {
242
+ name: string;
243
+ detail: string;
244
+ };
245
+ rangeLookup: {
246
+ name: string;
247
+ detail: string;
248
+ };
249
+ };
250
+ };
251
+ HSTACK: {
252
+ description: string;
253
+ abstract: string;
254
+ links: {
255
+ title: string;
256
+ url: string;
257
+ }[];
258
+ functionParameter: {
259
+ array1: {
260
+ name: string;
261
+ detail: string;
262
+ };
263
+ array2: {
264
+ name: string;
265
+ detail: string;
266
+ };
267
+ };
268
+ };
269
+ INDEX: {
270
+ description: string;
271
+ abstract: string;
272
+ links: {
273
+ title: string;
274
+ url: string;
275
+ }[];
276
+ functionParameter: {
277
+ reference: {
278
+ name: string;
279
+ detail: string;
280
+ };
281
+ rowNum: {
282
+ name: string;
283
+ detail: string;
284
+ };
285
+ columnNum: {
286
+ name: string;
287
+ detail: string;
288
+ };
289
+ areaNum: {
290
+ name: string;
291
+ detail: string;
292
+ };
293
+ };
294
+ };
295
+ INDIRECT: {
296
+ description: string;
297
+ abstract: string;
298
+ links: {
299
+ title: string;
300
+ url: string;
301
+ }[];
302
+ functionParameter: {
303
+ refText: {
304
+ name: string;
305
+ detail: string;
306
+ };
307
+ a1: {
308
+ name: string;
309
+ detail: string;
310
+ };
311
+ };
312
+ };
313
+ LOOKUP: {
314
+ description: string;
315
+ abstract: string;
316
+ links: {
317
+ title: string;
318
+ url: string;
319
+ }[];
320
+ functionParameter: {
321
+ lookupValue: {
322
+ name: string;
323
+ detail: string;
324
+ };
325
+ lookupVectorOrArray: {
326
+ name: string;
327
+ detail: string;
328
+ };
329
+ resultVector: {
330
+ name: string;
331
+ detail: string;
332
+ };
333
+ };
334
+ };
335
+ MATCH: {
336
+ description: string;
337
+ abstract: string;
338
+ links: {
339
+ title: string;
340
+ url: string;
341
+ }[];
342
+ functionParameter: {
343
+ lookupValue: {
344
+ name: string;
345
+ detail: string;
346
+ };
347
+ lookupArray: {
348
+ name: string;
349
+ detail: string;
350
+ };
351
+ matchType: {
352
+ name: string;
353
+ detail: string;
354
+ };
355
+ };
356
+ };
357
+ OFFSET: {
358
+ description: string;
359
+ abstract: string;
360
+ links: {
361
+ title: string;
362
+ url: string;
363
+ }[];
364
+ functionParameter: {
365
+ reference: {
366
+ name: string;
367
+ detail: string;
368
+ };
369
+ rows: {
370
+ name: string;
371
+ detail: string;
372
+ };
373
+ cols: {
374
+ name: string;
375
+ detail: string;
376
+ };
377
+ height: {
378
+ name: string;
379
+ detail: string;
380
+ };
381
+ width: {
382
+ name: string;
383
+ detail: string;
384
+ };
385
+ };
386
+ };
387
+ ROW: {
388
+ description: string;
389
+ abstract: string;
390
+ links: {
391
+ title: string;
392
+ url: string;
393
+ }[];
394
+ functionParameter: {
395
+ reference: {
396
+ name: string;
397
+ detail: string;
398
+ };
399
+ };
400
+ };
401
+ ROWS: {
402
+ description: string;
403
+ abstract: string;
404
+ links: {
405
+ title: string;
406
+ url: string;
407
+ }[];
408
+ functionParameter: {
409
+ array: {
410
+ name: string;
411
+ detail: string;
412
+ };
413
+ };
414
+ };
415
+ SORT: {
416
+ description: string;
417
+ abstract: string;
418
+ links: {
419
+ title: string;
420
+ url: string;
421
+ }[];
422
+ functionParameter: {
423
+ array: {
424
+ name: string;
425
+ detail: string;
426
+ };
427
+ sortIndex: {
428
+ name: string;
429
+ detail: string;
430
+ };
431
+ sortOrder: {
432
+ name: string;
433
+ detail: string;
434
+ };
435
+ byCol: {
436
+ name: string;
437
+ detail: string;
438
+ };
439
+ };
440
+ };
441
+ SORTBY: {
442
+ description: string;
443
+ abstract: string;
444
+ links: {
445
+ title: string;
446
+ url: string;
447
+ }[];
448
+ functionParameter: {
449
+ array: {
450
+ name: string;
451
+ detail: string;
452
+ };
453
+ byArray1: {
454
+ name: string;
455
+ detail: string;
456
+ };
457
+ sortOrder1: {
458
+ name: string;
459
+ detail: string;
460
+ };
461
+ byArray2: {
462
+ name: string;
463
+ detail: string;
464
+ };
465
+ sortOrder2: {
466
+ name: string;
467
+ detail: string;
468
+ };
469
+ };
470
+ };
471
+ TAKE: {
472
+ description: string;
473
+ abstract: string;
474
+ links: {
475
+ title: string;
476
+ url: string;
477
+ }[];
478
+ functionParameter: {
479
+ array: {
480
+ name: string;
481
+ detail: string;
482
+ };
483
+ rows: {
484
+ name: string;
485
+ detail: string;
486
+ };
487
+ columns: {
488
+ name: string;
489
+ detail: string;
490
+ };
491
+ };
492
+ };
493
+ TOCOL: {
494
+ description: string;
495
+ abstract: string;
496
+ links: {
497
+ title: string;
498
+ url: string;
499
+ }[];
500
+ functionParameter: {
501
+ array: {
502
+ name: string;
503
+ detail: string;
504
+ };
505
+ ignore: {
506
+ name: string;
507
+ detail: string;
508
+ };
509
+ scanByColumn: {
510
+ name: string;
511
+ detail: string;
512
+ };
513
+ };
514
+ };
515
+ TOROW: {
516
+ description: string;
517
+ abstract: string;
518
+ links: {
519
+ title: string;
520
+ url: string;
521
+ }[];
522
+ functionParameter: {
523
+ array: {
524
+ name: string;
525
+ detail: string;
526
+ };
527
+ ignore: {
528
+ name: string;
529
+ detail: string;
530
+ };
531
+ scanByColumn: {
532
+ name: string;
533
+ detail: string;
534
+ };
535
+ };
536
+ };
537
+ TRANSPOSE: {
538
+ description: string;
539
+ abstract: string;
540
+ links: {
541
+ title: string;
542
+ url: string;
543
+ }[];
544
+ functionParameter: {
545
+ array: {
546
+ name: string;
547
+ detail: string;
548
+ };
549
+ };
550
+ };
551
+ UNIQUE: {
552
+ description: string;
553
+ abstract: string;
554
+ links: {
555
+ title: string;
556
+ url: string;
557
+ }[];
558
+ functionParameter: {
559
+ array: {
560
+ name: string;
561
+ detail: string;
562
+ };
563
+ byCol: {
564
+ name: string;
565
+ detail: string;
566
+ };
567
+ exactlyOnce: {
568
+ name: string;
569
+ detail: string;
570
+ };
571
+ };
572
+ };
573
+ VLOOKUP: {
574
+ description: string;
575
+ abstract: string;
576
+ links: {
577
+ title: string;
578
+ url: string;
579
+ }[];
580
+ functionParameter: {
581
+ lookupValue: {
582
+ name: string;
583
+ detail: string;
584
+ };
585
+ tableArray: {
586
+ name: string;
587
+ detail: string;
588
+ };
589
+ colIndexNum: {
590
+ name: string;
591
+ detail: string;
592
+ };
593
+ rangeLookup: {
594
+ name: string;
595
+ detail: string;
596
+ };
597
+ };
598
+ };
599
+ VSTACK: {
600
+ description: string;
601
+ abstract: string;
602
+ links: {
603
+ title: string;
604
+ url: string;
605
+ }[];
606
+ functionParameter: {
607
+ array1: {
608
+ name: string;
609
+ detail: string;
610
+ };
611
+ array2: {
612
+ name: string;
613
+ detail: string;
614
+ };
615
+ };
616
+ };
617
+ WRAPCOLS: {
618
+ description: string;
619
+ abstract: string;
620
+ links: {
621
+ title: string;
622
+ url: string;
623
+ }[];
624
+ functionParameter: {
625
+ vector: {
626
+ name: string;
627
+ detail: string;
628
+ };
629
+ wrapCount: {
630
+ name: string;
631
+ detail: string;
632
+ };
633
+ padWith: {
634
+ name: string;
635
+ detail: string;
636
+ };
637
+ };
638
+ };
639
+ WRAPROWS: {
640
+ description: string;
641
+ abstract: string;
642
+ links: {
643
+ title: string;
644
+ url: string;
645
+ }[];
646
+ functionParameter: {
647
+ vector: {
648
+ name: string;
649
+ detail: string;
650
+ };
651
+ wrapCount: {
652
+ name: string;
653
+ detail: string;
654
+ };
655
+ padWith: {
656
+ name: string;
657
+ detail: string;
658
+ };
659
+ };
660
+ };
661
+ XLOOKUP: {
662
+ description: string;
663
+ abstract: string;
664
+ links: {
665
+ title: string;
666
+ url: string;
667
+ }[];
668
+ functionParameter: {
669
+ lookupValue: {
670
+ name: string;
671
+ detail: string;
672
+ };
673
+ lookupArray: {
674
+ name: string;
675
+ detail: string;
676
+ };
677
+ returnArray: {
678
+ name: string;
679
+ detail: string;
680
+ };
681
+ ifNotFound: {
682
+ name: string;
683
+ detail: string;
684
+ };
685
+ matchMode: {
686
+ name: string;
687
+ detail: string;
688
+ };
689
+ searchMode: {
690
+ name: string;
691
+ detail: string;
692
+ };
693
+ };
694
+ };
695
+ XMATCH: {
696
+ description: string;
697
+ abstract: string;
698
+ links: {
699
+ title: string;
700
+ url: string;
701
+ }[];
702
+ functionParameter: {
703
+ lookupValue: {
704
+ name: string;
705
+ detail: string;
706
+ };
707
+ lookupArray: {
708
+ name: string;
709
+ detail: string;
710
+ };
711
+ matchMode: {
712
+ name: string;
713
+ detail: string;
714
+ };
715
+ searchMode: {
716
+ name: string;
717
+ detail: string;
718
+ };
719
+ };
720
+ };
721
+ };
722
+ export default _default;