@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,784 @@
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
+ ASC: {
18
+ description: string;
19
+ abstract: string;
20
+ links: {
21
+ title: string;
22
+ url: string;
23
+ }[];
24
+ functionParameter: {
25
+ number1: {
26
+ name: string;
27
+ detail: string;
28
+ };
29
+ number2: {
30
+ name: string;
31
+ detail: string;
32
+ };
33
+ };
34
+ };
35
+ ARRAYTOTEXT: {
36
+ description: string;
37
+ abstract: string;
38
+ links: {
39
+ title: string;
40
+ url: string;
41
+ }[];
42
+ functionParameter: {
43
+ number1: {
44
+ name: string;
45
+ detail: string;
46
+ };
47
+ number2: {
48
+ name: string;
49
+ detail: string;
50
+ };
51
+ };
52
+ };
53
+ BAHTTEXT: {
54
+ description: string;
55
+ abstract: string;
56
+ links: {
57
+ title: string;
58
+ url: string;
59
+ }[];
60
+ functionParameter: {
61
+ number1: {
62
+ name: string;
63
+ detail: string;
64
+ };
65
+ number2: {
66
+ name: string;
67
+ detail: string;
68
+ };
69
+ };
70
+ };
71
+ CHAR: {
72
+ description: string;
73
+ abstract: string;
74
+ links: {
75
+ title: string;
76
+ url: string;
77
+ }[];
78
+ functionParameter: {
79
+ number1: {
80
+ name: string;
81
+ detail: string;
82
+ };
83
+ number2: {
84
+ name: string;
85
+ detail: string;
86
+ };
87
+ };
88
+ };
89
+ CLEAN: {
90
+ description: string;
91
+ abstract: string;
92
+ links: {
93
+ title: string;
94
+ url: string;
95
+ }[];
96
+ functionParameter: {
97
+ number1: {
98
+ name: string;
99
+ detail: string;
100
+ };
101
+ number2: {
102
+ name: string;
103
+ detail: string;
104
+ };
105
+ };
106
+ };
107
+ CODE: {
108
+ description: string;
109
+ abstract: string;
110
+ links: {
111
+ title: string;
112
+ url: string;
113
+ }[];
114
+ functionParameter: {
115
+ number1: {
116
+ name: string;
117
+ detail: string;
118
+ };
119
+ number2: {
120
+ name: string;
121
+ detail: string;
122
+ };
123
+ };
124
+ };
125
+ CONCAT: {
126
+ description: string;
127
+ abstract: string;
128
+ links: {
129
+ title: string;
130
+ url: string;
131
+ }[];
132
+ functionParameter: {
133
+ text1: {
134
+ name: string;
135
+ detail: string;
136
+ };
137
+ text2: {
138
+ name: string;
139
+ detail: string;
140
+ };
141
+ };
142
+ };
143
+ CONCATENATE: {
144
+ description: string;
145
+ abstract: string;
146
+ links: {
147
+ title: string;
148
+ url: string;
149
+ }[];
150
+ functionParameter: {
151
+ text1: {
152
+ name: string;
153
+ detail: string;
154
+ };
155
+ text2: {
156
+ name: string;
157
+ detail: string;
158
+ };
159
+ };
160
+ };
161
+ DBCS: {
162
+ description: string;
163
+ abstract: string;
164
+ links: {
165
+ title: string;
166
+ url: string;
167
+ }[];
168
+ functionParameter: {
169
+ number1: {
170
+ name: string;
171
+ detail: string;
172
+ };
173
+ number2: {
174
+ name: string;
175
+ detail: string;
176
+ };
177
+ };
178
+ };
179
+ DOLLAR: {
180
+ description: string;
181
+ abstract: string;
182
+ links: {
183
+ title: string;
184
+ url: string;
185
+ }[];
186
+ functionParameter: {
187
+ number1: {
188
+ name: string;
189
+ detail: string;
190
+ };
191
+ number2: {
192
+ name: string;
193
+ detail: string;
194
+ };
195
+ };
196
+ };
197
+ EXACT: {
198
+ description: string;
199
+ abstract: string;
200
+ links: {
201
+ title: string;
202
+ url: string;
203
+ }[];
204
+ functionParameter: {
205
+ text1: {
206
+ name: string;
207
+ detail: string;
208
+ };
209
+ text2: {
210
+ name: string;
211
+ detail: string;
212
+ };
213
+ };
214
+ };
215
+ FIND: {
216
+ description: string;
217
+ abstract: string;
218
+ links: {
219
+ title: string;
220
+ url: string;
221
+ }[];
222
+ functionParameter: {
223
+ find_text: {
224
+ name: string;
225
+ detail: string;
226
+ };
227
+ within_text: {
228
+ name: string;
229
+ detail: string;
230
+ };
231
+ start_num: {
232
+ name: string;
233
+ detail: string;
234
+ };
235
+ };
236
+ };
237
+ FIXED: {
238
+ description: string;
239
+ abstract: string;
240
+ links: {
241
+ title: string;
242
+ url: string;
243
+ }[];
244
+ functionParameter: {
245
+ number: {
246
+ name: string;
247
+ detail: string;
248
+ };
249
+ decimals: {
250
+ name: string;
251
+ detail: string;
252
+ };
253
+ no_commas: {
254
+ name: string;
255
+ detail: string;
256
+ };
257
+ };
258
+ };
259
+ LEFT: {
260
+ description: string;
261
+ abstract: string;
262
+ links: {
263
+ title: string;
264
+ url: string;
265
+ }[];
266
+ functionParameter: {
267
+ text: {
268
+ name: string;
269
+ detail: string;
270
+ };
271
+ num_chars: {
272
+ name: string;
273
+ detail: string;
274
+ };
275
+ };
276
+ };
277
+ LEN: {
278
+ description: string;
279
+ abstract: string;
280
+ links: {
281
+ title: string;
282
+ url: string;
283
+ }[];
284
+ functionParameter: {
285
+ text: {
286
+ name: string;
287
+ detail: string;
288
+ };
289
+ };
290
+ };
291
+ LENB: {
292
+ description: string;
293
+ abstract: string;
294
+ links: {
295
+ title: string;
296
+ url: string;
297
+ }[];
298
+ functionParameter: {
299
+ text: {
300
+ name: string;
301
+ detail: string;
302
+ };
303
+ };
304
+ };
305
+ LOWER: {
306
+ description: string;
307
+ abstract: string;
308
+ links: {
309
+ title: string;
310
+ url: string;
311
+ }[];
312
+ functionParameter: {
313
+ text: {
314
+ name: string;
315
+ detail: string;
316
+ };
317
+ };
318
+ };
319
+ MID: {
320
+ description: string;
321
+ abstract: string;
322
+ links: {
323
+ title: string;
324
+ url: string;
325
+ }[];
326
+ functionParameter: {
327
+ text: {
328
+ name: string;
329
+ detail: string;
330
+ };
331
+ start_num: {
332
+ name: string;
333
+ detail: string;
334
+ };
335
+ num_chars: {
336
+ name: string;
337
+ detail: string;
338
+ };
339
+ };
340
+ };
341
+ PHONETIC: {
342
+ description: string;
343
+ abstract: string;
344
+ links: {
345
+ title: string;
346
+ url: string;
347
+ }[];
348
+ functionParameter: {
349
+ number1: {
350
+ name: string;
351
+ detail: string;
352
+ };
353
+ number2: {
354
+ name: string;
355
+ detail: string;
356
+ };
357
+ };
358
+ };
359
+ PROPER: {
360
+ description: string;
361
+ abstract: string;
362
+ links: {
363
+ title: string;
364
+ url: string;
365
+ }[];
366
+ functionParameter: {
367
+ text: {
368
+ name: string;
369
+ detail: string;
370
+ };
371
+ };
372
+ };
373
+ REGEXEXTRACT: {
374
+ description: string;
375
+ abstract: string;
376
+ links: {
377
+ title: string;
378
+ url: string;
379
+ }[];
380
+ functionParameter: {
381
+ text: {
382
+ name: string;
383
+ detail: string;
384
+ };
385
+ regex: {
386
+ name: string;
387
+ detail: string;
388
+ };
389
+ };
390
+ };
391
+ REGEXMATCH: {
392
+ description: string;
393
+ abstract: string;
394
+ links: {
395
+ title: string;
396
+ url: string;
397
+ }[];
398
+ functionParameter: {
399
+ text: {
400
+ name: string;
401
+ detail: string;
402
+ };
403
+ regex: {
404
+ name: string;
405
+ detail: string;
406
+ };
407
+ };
408
+ };
409
+ REGEXREPLACE: {
410
+ description: string;
411
+ abstract: string;
412
+ links: {
413
+ title: string;
414
+ url: string;
415
+ }[];
416
+ functionParameter: {
417
+ text: {
418
+ name: string;
419
+ detail: string;
420
+ };
421
+ regex: {
422
+ name: string;
423
+ detail: string;
424
+ };
425
+ replacement: {
426
+ name: string;
427
+ detail: string;
428
+ };
429
+ };
430
+ };
431
+ REPLACE: {
432
+ description: string;
433
+ abstract: string;
434
+ links: {
435
+ title: string;
436
+ url: string;
437
+ }[];
438
+ functionParameter: {
439
+ old_text: {
440
+ name: string;
441
+ detail: string;
442
+ };
443
+ start_num: {
444
+ name: string;
445
+ detail: string;
446
+ };
447
+ num_chars: {
448
+ name: string;
449
+ detail: string;
450
+ };
451
+ new_text: {
452
+ name: string;
453
+ detail: string;
454
+ };
455
+ };
456
+ };
457
+ REPT: {
458
+ description: string;
459
+ abstract: string;
460
+ links: {
461
+ title: string;
462
+ url: string;
463
+ }[];
464
+ functionParameter: {
465
+ text: {
466
+ name: string;
467
+ detail: string;
468
+ };
469
+ numberTimes: {
470
+ name: string;
471
+ detail: string;
472
+ };
473
+ };
474
+ };
475
+ RIGHT: {
476
+ description: string;
477
+ abstract: string;
478
+ links: {
479
+ title: string;
480
+ url: string;
481
+ }[];
482
+ functionParameter: {
483
+ text: {
484
+ name: string;
485
+ detail: string;
486
+ };
487
+ num_chars: {
488
+ name: string;
489
+ detail: string;
490
+ };
491
+ };
492
+ };
493
+ SEARCH: {
494
+ description: string;
495
+ abstract: string;
496
+ links: {
497
+ title: string;
498
+ url: string;
499
+ }[];
500
+ functionParameter: {
501
+ find_text: {
502
+ name: string;
503
+ detail: string;
504
+ };
505
+ within_text: {
506
+ name: string;
507
+ detail: string;
508
+ };
509
+ start_num: {
510
+ name: string;
511
+ detail: string;
512
+ };
513
+ };
514
+ };
515
+ SPLIT: {
516
+ description: string;
517
+ abstract: string;
518
+ links: {
519
+ title: string;
520
+ url: string;
521
+ }[];
522
+ functionParameter: {
523
+ text: {
524
+ name: string;
525
+ detail: string;
526
+ };
527
+ delimiter: {
528
+ name: string;
529
+ detail: string;
530
+ };
531
+ split_by_each: {
532
+ name: string;
533
+ detail: string;
534
+ };
535
+ remove_empty_text: {
536
+ name: string;
537
+ detail: string;
538
+ };
539
+ };
540
+ };
541
+ SUBSTITUTE: {
542
+ description: string;
543
+ abstract: string;
544
+ links: {
545
+ title: string;
546
+ url: string;
547
+ }[];
548
+ functionParameter: {
549
+ text: {
550
+ name: string;
551
+ detail: string;
552
+ };
553
+ old_text: {
554
+ name: string;
555
+ detail: string;
556
+ };
557
+ new_text: {
558
+ name: string;
559
+ detail: string;
560
+ };
561
+ instance_num: {
562
+ name: string;
563
+ detail: string;
564
+ };
565
+ };
566
+ };
567
+ TEXT: {
568
+ description: string;
569
+ abstract: string;
570
+ links: {
571
+ title: string;
572
+ url: string;
573
+ }[];
574
+ functionParameter: {
575
+ value: {
576
+ name: string;
577
+ detail: string;
578
+ };
579
+ formatText: {
580
+ name: string;
581
+ detail: string;
582
+ };
583
+ };
584
+ };
585
+ TEXTAFTER: {
586
+ description: string;
587
+ abstract: string;
588
+ links: {
589
+ title: string;
590
+ url: string;
591
+ }[];
592
+ functionParameter: {
593
+ text: {
594
+ name: string;
595
+ detail: string;
596
+ };
597
+ delimiter: {
598
+ name: string;
599
+ detail: string;
600
+ };
601
+ instanceNum: {
602
+ name: string;
603
+ detail: string;
604
+ };
605
+ matchMode: {
606
+ name: string;
607
+ detail: string;
608
+ };
609
+ matchEnd: {
610
+ name: string;
611
+ detail: string;
612
+ };
613
+ ifNotFound: {
614
+ name: string;
615
+ detail: string;
616
+ };
617
+ };
618
+ };
619
+ TEXTBEFORE: {
620
+ description: string;
621
+ abstract: string;
622
+ links: {
623
+ title: string;
624
+ url: string;
625
+ }[];
626
+ functionParameter: {
627
+ text: {
628
+ name: string;
629
+ detail: string;
630
+ };
631
+ delimiter: {
632
+ name: string;
633
+ detail: string;
634
+ };
635
+ instanceNum: {
636
+ name: string;
637
+ detail: string;
638
+ };
639
+ matchMode: {
640
+ name: string;
641
+ detail: string;
642
+ };
643
+ matchEnd: {
644
+ name: string;
645
+ detail: string;
646
+ };
647
+ ifNotFound: {
648
+ name: string;
649
+ detail: string;
650
+ };
651
+ };
652
+ };
653
+ TEXTJOIN: {
654
+ description: string;
655
+ abstract: string;
656
+ links: {
657
+ title: string;
658
+ url: string;
659
+ }[];
660
+ functionParameter: {
661
+ delimiter: {
662
+ name: string;
663
+ detail: string;
664
+ };
665
+ ignore_empty: {
666
+ name: string;
667
+ detail: string;
668
+ };
669
+ text1: {
670
+ name: string;
671
+ detail: string;
672
+ };
673
+ text2: {
674
+ name: string;
675
+ detail: string;
676
+ };
677
+ };
678
+ };
679
+ TEXTSPLIT: {
680
+ description: string;
681
+ abstract: string;
682
+ links: {
683
+ title: string;
684
+ url: string;
685
+ }[];
686
+ functionParameter: {
687
+ text: {
688
+ name: string;
689
+ detail: string;
690
+ };
691
+ colDelimiter: {
692
+ name: string;
693
+ detail: string;
694
+ };
695
+ rowDelimiter: {
696
+ name: string;
697
+ detail: string;
698
+ };
699
+ ignoreEmpty: {
700
+ name: string;
701
+ detail: string;
702
+ };
703
+ matchMode: {
704
+ name: string;
705
+ detail: string;
706
+ };
707
+ padWith: {
708
+ name: string;
709
+ detail: string;
710
+ };
711
+ };
712
+ };
713
+ TRIM: {
714
+ description: string;
715
+ abstract: string;
716
+ links: {
717
+ title: string;
718
+ url: string;
719
+ }[];
720
+ functionParameter: {
721
+ text: {
722
+ name: string;
723
+ detail: string;
724
+ };
725
+ };
726
+ };
727
+ UNICHAR: {
728
+ description: string;
729
+ abstract: string;
730
+ links: {
731
+ title: string;
732
+ url: string;
733
+ }[];
734
+ functionParameter: {
735
+ number: {
736
+ name: string;
737
+ detail: string;
738
+ };
739
+ };
740
+ };
741
+ UNICODE: {
742
+ description: string;
743
+ abstract: string;
744
+ links: {
745
+ title: string;
746
+ url: string;
747
+ }[];
748
+ functionParameter: {
749
+ text: {
750
+ name: string;
751
+ detail: string;
752
+ };
753
+ };
754
+ };
755
+ UPPER: {
756
+ description: string;
757
+ abstract: string;
758
+ links: {
759
+ title: string;
760
+ url: string;
761
+ }[];
762
+ functionParameter: {
763
+ text: {
764
+ name: string;
765
+ detail: string;
766
+ };
767
+ };
768
+ };
769
+ VALUE: {
770
+ description: string;
771
+ abstract: string;
772
+ links: {
773
+ title: string;
774
+ url: string;
775
+ }[];
776
+ functionParameter: {
777
+ text: {
778
+ name: string;
779
+ detail: string;
780
+ };
781
+ };
782
+ };
783
+ };
784
+ export default _default;