@leankylin-sheet/core 0.3.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 (66) hide show
  1. package/README.md +19 -0
  2. package/dist/api/cell.d.ts +10 -0
  3. package/dist/api/common.d.ts +57 -0
  4. package/dist/api/errors.d.ts +2 -0
  5. package/dist/api/index.d.ts +9 -0
  6. package/dist/api/merge.d.ts +5 -0
  7. package/dist/api/range.d.ts +22 -0
  8. package/dist/api/rowcol.d.ts +12 -0
  9. package/dist/api/sheet.d.ts +10 -0
  10. package/dist/api/workbook.d.ts +15 -0
  11. package/dist/canvas.d.ts +46 -0
  12. package/dist/context.d.ts +178 -0
  13. package/dist/events/copy.d.ts +2 -0
  14. package/dist/events/index.d.ts +4 -0
  15. package/dist/events/keyboard.d.ts +6 -0
  16. package/dist/events/mouse.d.ts +22 -0
  17. package/dist/events/paste.d.ts +3 -0
  18. package/dist/index.d.ts +10 -0
  19. package/dist/index.esm.js +69044 -0
  20. package/dist/index.js +69376 -0
  21. package/dist/locale/en.d.ts +1028 -0
  22. package/dist/locale/es.d.ts +1132 -0
  23. package/dist/locale/index.d.ts +1046 -0
  24. package/dist/locale/zh.d.ts +1045 -0
  25. package/dist/locale/zh_tw.d.ts +1185 -0
  26. package/dist/modules/ConditionFormat.d.ts +17 -0
  27. package/dist/modules/border.d.ts +3 -0
  28. package/dist/modules/cell.d.ts +32 -0
  29. package/dist/modules/clipboard.d.ts +3 -0
  30. package/dist/modules/color.d.ts +1 -0
  31. package/dist/modules/comment.d.ts +96 -0
  32. package/dist/modules/conditionalFormat.d.ts +2 -0
  33. package/dist/modules/cursor.d.ts +3 -0
  34. package/dist/modules/dataVerification.d.ts +11 -0
  35. package/dist/modules/dropCell.d.ts +10 -0
  36. package/dist/modules/filter.d.ts +45 -0
  37. package/dist/modules/format.d.ts +6 -0
  38. package/dist/modules/formula.d.ts +53 -0
  39. package/dist/modules/freeze.d.ts +5 -0
  40. package/dist/modules/hyperlink.d.ts +21 -0
  41. package/dist/modules/image.d.ts +31 -0
  42. package/dist/modules/index.d.ts +35 -0
  43. package/dist/modules/inline-string.d.ts +36 -0
  44. package/dist/modules/location.d.ts +6 -0
  45. package/dist/modules/locationCondition.d.ts +21 -0
  46. package/dist/modules/merge.d.ts +3 -0
  47. package/dist/modules/mobile.d.ts +5 -0
  48. package/dist/modules/moveCells.d.ts +5 -0
  49. package/dist/modules/protection.d.ts +5 -0
  50. package/dist/modules/refresh.d.ts +3 -0
  51. package/dist/modules/rowcol.d.ts +19 -0
  52. package/dist/modules/screenshot.d.ts +2 -0
  53. package/dist/modules/searchReplace.d.ts +36 -0
  54. package/dist/modules/selection.d.ts +46 -0
  55. package/dist/modules/sheet.d.ts +10 -0
  56. package/dist/modules/sort.d.ts +7 -0
  57. package/dist/modules/splitColumn.d.ts +5 -0
  58. package/dist/modules/text.d.ts +10 -0
  59. package/dist/modules/toolbar.d.ts +32 -0
  60. package/dist/modules/validation.d.ts +19 -0
  61. package/dist/modules/zoom.d.ts +3 -0
  62. package/dist/settings.d.ts +94 -0
  63. package/dist/types.d.ts +352 -0
  64. package/dist/utils/index.d.ts +17 -0
  65. package/dist/utils/patch.d.ts +37 -0
  66. package/package.json +42 -0
@@ -0,0 +1,1185 @@
1
+ declare const _default: {
2
+ generalDialog: {
3
+ partiallyError: string;
4
+ readOnlyError: string;
5
+ dataNullError: string;
6
+ noSeletionError: string;
7
+ cannotSelectMultiple: string;
8
+ };
9
+ functionlist: ({
10
+ n: string;
11
+ t: number;
12
+ d: string;
13
+ a: string;
14
+ m: number[];
15
+ p: {
16
+ name: string;
17
+ detail: string;
18
+ example: string;
19
+ require: string;
20
+ repeat: string;
21
+ type: string;
22
+ }[];
23
+ } | {
24
+ n: string;
25
+ t: number;
26
+ d: string;
27
+ a: string;
28
+ p: {
29
+ name: string;
30
+ detail: string;
31
+ example: string;
32
+ require: string;
33
+ repeat: string;
34
+ type: string;
35
+ }[];
36
+ m?: undefined;
37
+ } | {
38
+ n: string;
39
+ t: number;
40
+ d: boolean;
41
+ a: boolean;
42
+ m: number[];
43
+ p: {
44
+ name: string;
45
+ detail: string;
46
+ example: string;
47
+ require: string;
48
+ repeat: string;
49
+ type: string;
50
+ }[];
51
+ } | {
52
+ n: string;
53
+ t: string;
54
+ d: string;
55
+ a: string;
56
+ m: number[];
57
+ p: {
58
+ name: string;
59
+ example: string;
60
+ detail: string;
61
+ require: string;
62
+ repeat: string;
63
+ type: string;
64
+ }[];
65
+ })[];
66
+ toolbar: {
67
+ undo: string;
68
+ redo: string;
69
+ paintFormat: string;
70
+ currencyFormat: string;
71
+ percentageFormat: string;
72
+ numberDecrease: string;
73
+ numberIncrease: string;
74
+ moreFormats: string;
75
+ font: string;
76
+ "font-size": string;
77
+ bold: string;
78
+ italic: string;
79
+ strikethrough: string;
80
+ underline: string;
81
+ "font-color": string;
82
+ chooseColor: string;
83
+ resetColor: string;
84
+ customColor: string;
85
+ alternatingColors: string;
86
+ confirmColor: string;
87
+ cancelColor: string;
88
+ collapse: string;
89
+ background: string;
90
+ border: string;
91
+ borderStyle: string;
92
+ "merge-cell": string;
93
+ chooseMergeType: string;
94
+ horizontalAlign: string;
95
+ verticalAlign: string;
96
+ alignment: string;
97
+ textWrap: string;
98
+ textWrapMode: string;
99
+ textRotate: string;
100
+ textRotateMode: string;
101
+ freeze: string;
102
+ sort: string;
103
+ filter: string;
104
+ findAndReplace: string;
105
+ "formula-sum": string;
106
+ autoSum: string;
107
+ moreFunction: string;
108
+ conditionalFormat: string;
109
+ comment: string;
110
+ pivotTable: string;
111
+ chart: string;
112
+ screenshot: string;
113
+ splitColumn: string;
114
+ insertImage: string;
115
+ insertLink: string;
116
+ dataVerification: string;
117
+ protection: string;
118
+ clearText: string;
119
+ noColorSelectedText: string;
120
+ toolMore: string;
121
+ toolLess: string;
122
+ toolClose: string;
123
+ toolMoreTip: string;
124
+ moreOptions: string;
125
+ cellFormat: string;
126
+ print: string;
127
+ };
128
+ alternatingColors: {
129
+ applyRange: string;
130
+ selectRange: string;
131
+ header: string;
132
+ footer: string;
133
+ errorInfo: string;
134
+ textTitle: string;
135
+ custom: string;
136
+ close: string;
137
+ selectionTextColor: string;
138
+ selectionCellColor: string;
139
+ removeColor: string;
140
+ colorShow: string;
141
+ currentColor: string;
142
+ tipSelectRange: string;
143
+ errorNoRange: string;
144
+ errorExistColors: string;
145
+ };
146
+ button: {
147
+ confirm: string;
148
+ cancel: string;
149
+ close: string;
150
+ update: string;
151
+ delete: string;
152
+ insert: string;
153
+ prevPage: string;
154
+ nextPage: string;
155
+ total: string;
156
+ };
157
+ paint: {
158
+ start: string;
159
+ end: string;
160
+ tipSelectRange: string;
161
+ tipNotMulti: string;
162
+ };
163
+ format: {
164
+ moreCurrency: string;
165
+ moreDateTime: string;
166
+ moreNumber: string;
167
+ titleCurrency: string;
168
+ decimalPlaces: string;
169
+ titleDateTime: string;
170
+ titleNumber: string;
171
+ };
172
+ info: {
173
+ detailUpdate: string;
174
+ detailSave: string;
175
+ row: string;
176
+ column: string;
177
+ loading: string;
178
+ copy: string;
179
+ return: string;
180
+ rename: string;
181
+ tips: string;
182
+ noName: string;
183
+ wait: string;
184
+ add: string;
185
+ addLast: string;
186
+ backTop: string;
187
+ pageInfo: string;
188
+ nextPage: string;
189
+ tipInputNumber: string;
190
+ tipInputNumberLimit: string;
191
+ tipRowHeightLimit: string;
192
+ tipColumnWidthLimit: string;
193
+ pageInfoFull: string;
194
+ };
195
+ currencyDetail: {
196
+ RMB: string;
197
+ USdollar: string;
198
+ EUR: string;
199
+ GBP: string;
200
+ HK: string;
201
+ JPY: string;
202
+ AlbanianLek: string;
203
+ AlgerianDinar: string;
204
+ Afghani: string;
205
+ ArgentinePeso: string;
206
+ UnitedArabEmiratesDirham: string;
207
+ ArubanFlorin: string;
208
+ OmaniRial: string;
209
+ Azerbaijanimanat: string;
210
+ EgyptianPound: string;
211
+ EthiopianBirr: string;
212
+ AngolaKwanza: string;
213
+ AustralianDollar: string;
214
+ Patacas: string;
215
+ BarbadosDollar: string;
216
+ PapuaNewGuineaKina: string;
217
+ BahamianDollar: string;
218
+ PakistanRupee: string;
219
+ ParaguayanGuarani: string;
220
+ BahrainiDinar: string;
221
+ PanamanianBalboa: string;
222
+ Brazilianreal: string;
223
+ Belarusianruble: string;
224
+ BermudianDollar: string;
225
+ BulgarianLev: string;
226
+ IcelandKrona: string;
227
+ BosniaHerzegovinaConvertibleMark: string;
228
+ PolishZloty: string;
229
+ Boliviano: string;
230
+ BelizeDollar: string;
231
+ BotswanaPula: string;
232
+ NotDannuzhamu: string;
233
+ BurundiFranc: string;
234
+ NorthKoreanWon: string;
235
+ DanishKrone: string;
236
+ EastCaribbeanDollar: string;
237
+ DominicaPeso: string;
238
+ RussianRuble: string;
239
+ EritreanNakfa: string;
240
+ CFAfranc: string;
241
+ PhilippinePeso: string;
242
+ FijiDollar: string;
243
+ CapeVerdeEscudo: string;
244
+ FalklandIslandsPound: string;
245
+ GambianDalasi: string;
246
+ Congolesefranc: string;
247
+ ColombianPeso: string;
248
+ CostaRicanColon: string;
249
+ CubanPeso: string;
250
+ Cubanconvertiblepeso: string;
251
+ GuyanaDollar: string;
252
+ KazakhstanTenge: string;
253
+ Haitiangourde: string;
254
+ won: string;
255
+ NetherlandsAntillesGuilder: string;
256
+ Honduraslempiras: string;
257
+ DjiboutiFranc: string;
258
+ KyrgyzstanSom: string;
259
+ GuineaFranc: string;
260
+ CanadianDollar: string;
261
+ GhanaianCedi: string;
262
+ Cambodianriel: string;
263
+ CzechKoruna: string;
264
+ ZimbabweDollar: string;
265
+ QatariRiyal: string;
266
+ CaymanIslandsDollar: string;
267
+ Comorianfranc: string;
268
+ KuwaitiDinar: string;
269
+ CroatianKuna: string;
270
+ KenyanShilling: string;
271
+ LesothoLoti: string;
272
+ LaoKip: string;
273
+ LebanesePound: string;
274
+ Lithuanianlitas: string;
275
+ LibyanDinar: string;
276
+ LiberianDollar: string;
277
+ RwandaFranc: string;
278
+ RomanianLeu: string;
279
+ MalagasyAriary: string;
280
+ MaldivianRufiyaa: string;
281
+ MalawiKwacha: string;
282
+ MalaysianRinggit: string;
283
+ MacedoniawearingDinar: string;
284
+ MauritiusRupee: string;
285
+ MauritanianOuguiya: string;
286
+ MongolianTugrik: string;
287
+ BangladeshiTaka: string;
288
+ PeruvianNuevoSol: string;
289
+ MyanmarKyat: string;
290
+ MoldovanLeu: string;
291
+ MoroccanDirham: string;
292
+ MozambiqueMetical: string;
293
+ MexicanPeso: string;
294
+ NamibianDollar: string;
295
+ SouthAfricanRand: string;
296
+ SouthSudanesePound: string;
297
+ NicaraguaCordoba: string;
298
+ NepaleseRupee: string;
299
+ NigerianNaira: string;
300
+ NorwegianKrone: string;
301
+ GeorgianLari: string;
302
+ RMBOffshore: string;
303
+ SwedishKrona: string;
304
+ SwissFranc: string;
305
+ SerbianDinar: string;
306
+ SierraLeone: string;
307
+ SeychellesRupee: string;
308
+ SaudiRiyal: string;
309
+ SaoTomeDobra: string;
310
+ SaintHelenapound: string;
311
+ SriLankaRupee: string;
312
+ SwazilandLilangeni: string;
313
+ SudanesePound: string;
314
+ Surinamesedollar: string;
315
+ SolomonIslandsDollar: string;
316
+ SomaliShilling: string;
317
+ TajikistanSomoni: string;
318
+ PacificFranc: string;
319
+ ThaiBaht: string;
320
+ TanzanianShilling: string;
321
+ TonganPaanga: string;
322
+ TrinidadandTobagoDollar: string;
323
+ TunisianDinar: string;
324
+ TurkishLira: string;
325
+ VanuatuVatu: string;
326
+ GuatemalanQuetzal: string;
327
+ CommissionBolivar: string;
328
+ BruneiDollar: string;
329
+ UgandanShilling: string;
330
+ UkrainianHryvnia: string;
331
+ UruguayanPeso: string;
332
+ Uzbekistansom: string;
333
+ WesternSamoaTala: string;
334
+ SingaporeDollar: string;
335
+ NT: string;
336
+ NewZealandDollar: string;
337
+ HungarianForint: string;
338
+ SyrianPound: string;
339
+ JamaicanDollar: string;
340
+ ArmenianDram: string;
341
+ YemeniRial: string;
342
+ IraqiDinar: string;
343
+ IranianRial: string;
344
+ NewIsraeliShekel: string;
345
+ IndianRupee: string;
346
+ IndonesianRupiah: string;
347
+ JordanianDinar: string;
348
+ VND: string;
349
+ ZambianKwacha: string;
350
+ GibraltarPound: string;
351
+ ChileanPeso: string;
352
+ CFAFrancBEAC: string;
353
+ };
354
+ defaultFmt: {
355
+ text: string;
356
+ value: string;
357
+ example: string;
358
+ }[];
359
+ dateFmtList: {
360
+ name: string;
361
+ value: string;
362
+ }[];
363
+ fontFamily: {
364
+ MicrosoftYaHei: string;
365
+ };
366
+ fontarray: string[];
367
+ fontjson: {
368
+ "times new roman": number;
369
+ arial: number;
370
+ tahoma: number;
371
+ verdana: number;
372
+ 微軟雅黑: number;
373
+ "microsoft yahei": number;
374
+ 宋體: number;
375
+ simsun: number;
376
+ 黑體: number;
377
+ simhei: number;
378
+ 楷體: number;
379
+ kaiti: number;
380
+ 仿宋: number;
381
+ fangsong: number;
382
+ 新宋體: number;
383
+ nsimsun: number;
384
+ 華文新魏: number;
385
+ stxinwei: number;
386
+ 華文行楷: number;
387
+ stxingkai: number;
388
+ 華文隸書: number;
389
+ stliti: number;
390
+ };
391
+ border: {
392
+ borderTop: string;
393
+ borderBottom: string;
394
+ borderLeft: string;
395
+ borderRight: string;
396
+ borderNone: string;
397
+ borderAll: string;
398
+ borderOutside: string;
399
+ borderInside: string;
400
+ borderHorizontal: string;
401
+ borderVertical: string;
402
+ borderColor: string;
403
+ borderSize: string;
404
+ borderSlash: string;
405
+ };
406
+ merge: {
407
+ mergeAll: string;
408
+ mergeV: string;
409
+ mergeH: string;
410
+ mergeCancel: string;
411
+ overlappingError: string;
412
+ partiallyError: string;
413
+ };
414
+ align: {
415
+ left: string;
416
+ center: string;
417
+ right: string;
418
+ top: string;
419
+ middle: string;
420
+ bottom: string;
421
+ };
422
+ textWrap: {
423
+ overflow: string;
424
+ wrap: string;
425
+ clip: string;
426
+ };
427
+ rotation: {
428
+ none: string;
429
+ angleup: string;
430
+ angledown: string;
431
+ vertical: string;
432
+ rotationUp: string;
433
+ rotationDown: string;
434
+ };
435
+ freezen: {
436
+ default: string;
437
+ freezenRow: string;
438
+ freezenColumn: string;
439
+ freezenRC: string;
440
+ freezenRowRange: string;
441
+ freezenColumnRange: string;
442
+ freezenRCRange: string;
443
+ freezenCancel: string;
444
+ noSeletionError: string;
445
+ rangeRCOverErrorTitle: string;
446
+ rangeRCOverError: string;
447
+ };
448
+ sort: {
449
+ asc: string;
450
+ desc: string;
451
+ custom: string;
452
+ hasTitle: string;
453
+ sortBy: string;
454
+ addOthers: string;
455
+ close: string;
456
+ confirm: string;
457
+ columnOperation: string;
458
+ secondaryTitle: string;
459
+ sortTitle: string;
460
+ sortRangeTitle: string;
461
+ sortRangeTitleTo: string;
462
+ noRangeError: string;
463
+ mergeError: string;
464
+ };
465
+ filter: {
466
+ filter: string;
467
+ clearFilter: string;
468
+ sortByAsc: string;
469
+ sortByDesc: string;
470
+ filterByColor: string;
471
+ filterByCondition: string;
472
+ filterByValues: string;
473
+ filiterInputNone: string;
474
+ filiterInputTip: string;
475
+ filiterRangeStartTip: string;
476
+ filiterRangeEndTip: string;
477
+ filterValueByAllBtn: string;
478
+ filterValueByClearBtn: string;
479
+ filterValueByInverseBtn: string;
480
+ filterValueByTip: string;
481
+ filterConform: string;
482
+ filterCancel: string;
483
+ conditionNone: string;
484
+ conditionCellIsNull: string;
485
+ conditionCellNotNull: string;
486
+ conditionCellTextContain: string;
487
+ conditionCellTextNotContain: string;
488
+ conditionCellTextStart: string;
489
+ conditionCellTextEnd: string;
490
+ conditionCellTextEqual: string;
491
+ conditionCellDateEqual: string;
492
+ conditionCellDateBefore: string;
493
+ conditionCellDateAfter: string;
494
+ conditionCellGreater: string;
495
+ conditionCellGreaterEqual: string;
496
+ conditionCellLess: string;
497
+ conditionCellLessEqual: string;
498
+ conditionCellEqual: string;
499
+ conditionCellNotEqual: string;
500
+ conditionCellBetween: string;
501
+ conditionCellNotBetween: string;
502
+ filiterMoreDataTip: string;
503
+ filiterMonthText: string;
504
+ filiterYearText: string;
505
+ filiterByColorTip: string;
506
+ filiterByTextColorTip: string;
507
+ filterContainerOneColorTip: string;
508
+ filterDateFormatTip: string;
509
+ valueBlank: string;
510
+ mergeError: string;
511
+ };
512
+ rightclick: {
513
+ copy: string;
514
+ copyAs: string;
515
+ paste: string;
516
+ insert: string;
517
+ image: string;
518
+ link: string;
519
+ delete: string;
520
+ deleteCell: string;
521
+ deleteSelected: string;
522
+ hide: string;
523
+ hideSelected: string;
524
+ showHide: string;
525
+ to: string;
526
+ left: string;
527
+ right: string;
528
+ top: string;
529
+ bottom: string;
530
+ moveLeft: string;
531
+ moveUp: string;
532
+ add: string;
533
+ row: string;
534
+ column: string;
535
+ width: string;
536
+ height: string;
537
+ number: string;
538
+ confirm: string;
539
+ orderAZ: string;
540
+ orderZA: string;
541
+ clearContent: string;
542
+ matrix: string;
543
+ sortSelection: string;
544
+ filterSelection: string;
545
+ chartGeneration: string;
546
+ firstLineTitle: string;
547
+ untitled: string;
548
+ array1: string;
549
+ array2: string;
550
+ array3: string;
551
+ diagonal: string;
552
+ antiDiagonal: string;
553
+ diagonalOffset: string;
554
+ offset: string;
555
+ boolean: string;
556
+ flip: string;
557
+ upAndDown: string;
558
+ leftAndRight: string;
559
+ clockwise: string;
560
+ counterclockwise: string;
561
+ transpose: string;
562
+ matrixCalculation: string;
563
+ plus: string;
564
+ minus: string;
565
+ multiply: string;
566
+ divided: string;
567
+ power: string;
568
+ root: string;
569
+ log: string;
570
+ delete0: string;
571
+ removeDuplicate: string;
572
+ byRow: string;
573
+ byCol: string;
574
+ generateNewMatrix: string;
575
+ noMulti: string;
576
+ cannotDeleteAllRow: string;
577
+ cannotDeleteAllColumn: string;
578
+ cannotDeleteRowReadOnly: string;
579
+ cannotDeleteColumnReadOnly: string;
580
+ cannotInsertOnRowReadOnly: string;
581
+ cannotInsertOnColumnReadOnly: string;
582
+ rowOverLimit: string;
583
+ columnOverLimit: string;
584
+ };
585
+ comment: {
586
+ insert: string;
587
+ edit: string;
588
+ delete: string;
589
+ showOne: string;
590
+ showAll: string;
591
+ };
592
+ screenshot: {
593
+ screenshotTipNoSelection: string;
594
+ screenshotTipTitle: string;
595
+ screenshotTipHasMerge: string;
596
+ screenshotTipHasMulti: string;
597
+ screenshotTipSuccess: string;
598
+ screenshotImageName: string;
599
+ downLoadClose: string;
600
+ downLoadCopy: string;
601
+ downLoadBtn: string;
602
+ browserNotTip: string;
603
+ rightclickTip: string;
604
+ successTip: string;
605
+ };
606
+ splitText: {
607
+ splitDelimiters: string;
608
+ splitOther: string;
609
+ splitContinueSymbol: string;
610
+ splitDataPreview: string;
611
+ splitTextTitle: string;
612
+ splitConfirmToExe: string;
613
+ splitSymbols: {
614
+ name: string;
615
+ value: string;
616
+ }[];
617
+ tipNoMulti: string;
618
+ tipNoMultiColumn: string;
619
+ tipNoSelect: string;
620
+ };
621
+ imageText: {
622
+ imageSetting: string;
623
+ close: string;
624
+ conventional: string;
625
+ moveCell1: string;
626
+ moveCell2: string;
627
+ moveCell3: string;
628
+ fixedPos: string;
629
+ border: string;
630
+ width: string;
631
+ radius: string;
632
+ style: string;
633
+ solid: string;
634
+ dashed: string;
635
+ dotted: string;
636
+ double: string;
637
+ color: string;
638
+ };
639
+ punctuation: {
640
+ tab: string;
641
+ semicolon: string;
642
+ comma: string;
643
+ space: string;
644
+ };
645
+ findAndReplace: {
646
+ find: string;
647
+ replace: string;
648
+ goto: string;
649
+ location: string;
650
+ formula: string;
651
+ date: string;
652
+ number: string;
653
+ string: string;
654
+ error: string;
655
+ condition: string;
656
+ rowSpan: string;
657
+ columnSpan: string;
658
+ locationExample: string;
659
+ lessTwoRowTip: string;
660
+ lessTwoColumnTip: string;
661
+ findTextbox: string;
662
+ replaceTextbox: string;
663
+ regexTextbox: string;
664
+ wholeTextbox: string;
665
+ distinguishTextbox: string;
666
+ allReplaceBtn: string;
667
+ replaceBtn: string;
668
+ allFindBtn: string;
669
+ findBtn: string;
670
+ noFindTip: string;
671
+ modeTip: string;
672
+ searchTargetSheet: string;
673
+ searchTargetCell: string;
674
+ searchTargetValue: string;
675
+ searchInputTip: string;
676
+ noReplceTip: string;
677
+ noMatchTip: string;
678
+ successTip: string;
679
+ locationConstant: string;
680
+ locationFormula: string;
681
+ locationDate: string;
682
+ locationDigital: string;
683
+ locationString: string;
684
+ locationBool: string;
685
+ locationError: string;
686
+ locationNull: string;
687
+ locationCondition: string;
688
+ locationRowSpan: string;
689
+ locationColumnSpan: string;
690
+ locationTiplessTwoRow: string;
691
+ locationTiplessTwoColumn: string;
692
+ locationTipNotFindCell: string;
693
+ };
694
+ sheetconfig: {
695
+ delete: string;
696
+ copy: string;
697
+ rename: string;
698
+ changeColor: string;
699
+ hide: string;
700
+ unhide: string;
701
+ moveLeft: string;
702
+ moveRight: string;
703
+ resetColor: string;
704
+ cancelText: string;
705
+ chooseText: string;
706
+ focus: string;
707
+ tipNameRepeat: string;
708
+ noMoreSheet: string;
709
+ confirmDelete: string;
710
+ redoDelete: string;
711
+ noHide: string;
712
+ chartEditNoOpt: string;
713
+ sheetNameSpecCharError: string;
714
+ sheetNamecannotIsEmptyError: string;
715
+ };
716
+ conditionformat: {
717
+ conditionformat_greaterThan: string;
718
+ conditionformat_greaterThan_title: string;
719
+ conditionformat_lessThan: string;
720
+ conditionformat_lessThan_title: string;
721
+ conditionformat_between: string;
722
+ conditionformat_between_title: string;
723
+ conditionformat_equal: string;
724
+ conditionformat_equal_title: string;
725
+ conditionformat_textContains: string;
726
+ conditionformat_textContains_title: string;
727
+ conditionformat_occurrenceDate: string;
728
+ conditionformat_occurrenceDate_title: string;
729
+ conditionformat_duplicateValue: string;
730
+ conditionformat_duplicateValue_title: string;
731
+ conditionformat_top10: string;
732
+ conditionformat_top10_percent: string;
733
+ conditionformat_top10_title: string;
734
+ conditionformat_last10: string;
735
+ conditionformat_last10_percent: string;
736
+ conditionformat_last10_title: string;
737
+ conditionformat_aboveAverage: string;
738
+ conditionformat_aboveAverage_title: string;
739
+ conditionformat_belowAverage: string;
740
+ conditionformat_belowAverage_title: string;
741
+ rule: string;
742
+ newRule: string;
743
+ editRule: string;
744
+ deleteRule: string;
745
+ deleteCellRule: string;
746
+ deleteSheetRule: string;
747
+ manageRules: string;
748
+ showRules: string;
749
+ highlightCellRules: string;
750
+ itemSelectionRules: string;
751
+ conditionformatManageRules: string;
752
+ format: string;
753
+ setFormat: string;
754
+ setAs: string;
755
+ setAsByArea: string;
756
+ applyRange: string;
757
+ selectRange: string;
758
+ selectRange_percent: string;
759
+ selectRange_average: string;
760
+ selectRange_value: string;
761
+ pleaseSelectRange: string;
762
+ selectDataRange: string;
763
+ selectCell: string;
764
+ pleaseSelectCell: string;
765
+ pleaseSelectADate: string;
766
+ pleaseEnterInteger: string;
767
+ onlySingleCell: string;
768
+ conditionValueCanOnly: string;
769
+ ruleTypeItem1: string;
770
+ ruleTypeItem2: string;
771
+ ruleTypeItem2_title: string;
772
+ ruleTypeItem3: string;
773
+ ruleTypeItem3_title: string;
774
+ ruleTypeItem4: string;
775
+ ruleTypeItem4_title: string;
776
+ ruleTypeItem5: string;
777
+ ruleTypeItem6: string;
778
+ formula: string;
779
+ textColor: string;
780
+ cellColor: string;
781
+ confirm: string;
782
+ confirmColor: string;
783
+ cancel: string;
784
+ close: string;
785
+ clearColorSelect: string;
786
+ sheet: string;
787
+ currentSheet: string;
788
+ dataBar: string;
789
+ dataBarColor: string;
790
+ gradientDataBar_1: string;
791
+ gradientDataBar_2: string;
792
+ gradientDataBar_3: string;
793
+ gradientDataBar_4: string;
794
+ gradientDataBar_5: string;
795
+ gradientDataBar_6: string;
796
+ solidColorDataBar_1: string;
797
+ solidColorDataBar_2: string;
798
+ solidColorDataBar_3: string;
799
+ solidColorDataBar_4: string;
800
+ solidColorDataBar_5: string;
801
+ solidColorDataBar_6: string;
802
+ colorGradation: string;
803
+ colorGradation_1: string;
804
+ colorGradation_2: string;
805
+ colorGradation_3: string;
806
+ colorGradation_4: string;
807
+ colorGradation_5: string;
808
+ colorGradation_6: string;
809
+ colorGradation_7: string;
810
+ colorGradation_8: string;
811
+ colorGradation_9: string;
812
+ colorGradation_10: string;
813
+ colorGradation_11: string;
814
+ colorGradation_12: string;
815
+ icons: string;
816
+ pleaseSelectIcon: string;
817
+ cellValue: string;
818
+ specificText: string;
819
+ occurrenceDate: string;
820
+ greaterThan: string;
821
+ lessThan: string;
822
+ between: string;
823
+ equal: string;
824
+ in: string;
825
+ to: string;
826
+ between2: string;
827
+ contain: string;
828
+ textContains: string;
829
+ duplicateValue: string;
830
+ uniqueValue: string;
831
+ top: string;
832
+ top10: string;
833
+ top10_percent: string;
834
+ last: string;
835
+ last10: string;
836
+ last10_percent: string;
837
+ oneself: string;
838
+ above: string;
839
+ aboveAverage: string;
840
+ below: string;
841
+ belowAverage: string;
842
+ all: string;
843
+ yesterday: string;
844
+ today: string;
845
+ tomorrow: string;
846
+ lastWeek: string;
847
+ thisWeek: string;
848
+ lastMonth: string;
849
+ thisMonth: string;
850
+ lastYear: string;
851
+ thisYear: string;
852
+ last7days: string;
853
+ last30days: string;
854
+ next7days: string;
855
+ next30days: string;
856
+ next60days: string;
857
+ chooseRuleType: string;
858
+ editRuleDescription: string;
859
+ newFormatRule: string;
860
+ editFormatRule: string;
861
+ formatStyle: string;
862
+ fillType: string;
863
+ color: string;
864
+ twocolor: string;
865
+ tricolor: string;
866
+ multicolor: string;
867
+ grayColor: string;
868
+ gradient: string;
869
+ solid: string;
870
+ maxValue: string;
871
+ medianValue: string;
872
+ minValue: string;
873
+ direction: string;
874
+ threeWayArrow: string;
875
+ fourWayArrow: string;
876
+ fiveWayArrow: string;
877
+ threeTriangles: string;
878
+ shape: string;
879
+ threeColorTrafficLight: string;
880
+ fourColorTrafficLight: string;
881
+ threeSigns: string;
882
+ greenRedBlackGradient: string;
883
+ rimless: string;
884
+ bordered: string;
885
+ mark: string;
886
+ threeSymbols: string;
887
+ tricolorFlag: string;
888
+ circled: string;
889
+ noCircle: string;
890
+ grade: string;
891
+ grade4: string;
892
+ grade5: string;
893
+ threeStars: string;
894
+ fiveQuadrantDiagram: string;
895
+ fiveBoxes: string;
896
+ };
897
+ insertLink: {
898
+ linkText: string;
899
+ linkType: string;
900
+ external: string;
901
+ internal: string;
902
+ linkAddress: string;
903
+ linkSheet: string;
904
+ linkCell: string;
905
+ linkTooltip: string;
906
+ placeholder1: string;
907
+ placeholder2: string;
908
+ placeholder3: string;
909
+ tooltipInfo1: string;
910
+ tooltipInfo2: string;
911
+ };
912
+ dataVerification: {
913
+ cellRange: string;
914
+ selectCellRange: string;
915
+ selectCellRange2: string;
916
+ verificationCondition: string;
917
+ allowMultiSelect: string;
918
+ dropdown: string;
919
+ checkbox: string;
920
+ number: string;
921
+ number_integer: string;
922
+ number_decimal: string;
923
+ text_content: string;
924
+ text_length: string;
925
+ date: string;
926
+ validity: string;
927
+ placeholder1: string;
928
+ placeholder2: string;
929
+ placeholder3: string;
930
+ placeholder4: string;
931
+ placeholder5: string;
932
+ selected: string;
933
+ notSelected: string;
934
+ between: string;
935
+ notBetween: string;
936
+ equal: string;
937
+ notEqualTo: string;
938
+ moreThanThe: string;
939
+ lessThan: string;
940
+ greaterOrEqualTo: string;
941
+ lessThanOrEqualTo: string;
942
+ include: string;
943
+ exclude: string;
944
+ earlierThan: string;
945
+ noEarlierThan: string;
946
+ laterThan: string;
947
+ noLaterThan: string;
948
+ identificationNumber: string;
949
+ phoneNumber: string;
950
+ remote: string;
951
+ prohibitInput: string;
952
+ hintShow: string;
953
+ deleteVerification: string;
954
+ tooltipInfo1: string;
955
+ tooltipInfo2: string;
956
+ tooltipInfo3: string;
957
+ tooltipInfo4: string;
958
+ tooltipInfo5: string;
959
+ tooltipInfo6: string;
960
+ tooltipInfo7: string;
961
+ textlengthInteger: string;
962
+ };
963
+ formula: {
964
+ sum: string;
965
+ average: string;
966
+ count: string;
967
+ max: string;
968
+ min: string;
969
+ ifGenerate: string;
970
+ find: string;
971
+ tipNotBelongToIf: string;
972
+ tipSelectCell: string;
973
+ ifGenCompareValueTitle: string;
974
+ ifGenSelectCellTitle: string;
975
+ ifGenRangeTitle: string;
976
+ ifGenRangeTo: string;
977
+ ifGenRangeEvaluate: string;
978
+ ifGenSelectRangeTitle: string;
979
+ ifGenCutWay: string;
980
+ ifGenCutSame: string;
981
+ ifGenCutNpiece: string;
982
+ ifGenCutCustom: string;
983
+ ifGenCutConfirm: string;
984
+ ifGenTipSelectCell: string;
985
+ ifGenTipSelectCellPlace: string;
986
+ ifGenTipSelectRange: string;
987
+ ifGenTipSelectRangePlace: string;
988
+ ifGenTipNotNullValue: string;
989
+ ifGenTipLableTitile: string;
990
+ ifGenTipRangeNotforNull: string;
991
+ ifGenTipCutValueNotforNull: string;
992
+ ifGenTipNotGenCondition: string;
993
+ };
994
+ formulaMore: {
995
+ valueTitle: string;
996
+ tipSelectDataRange: string;
997
+ tipDataRangeTile: string;
998
+ findFunctionTitle: string;
999
+ tipInputFunctionName: string;
1000
+ Array: string;
1001
+ Database: string;
1002
+ Date: string;
1003
+ Engineering: string;
1004
+ Filter: string;
1005
+ Financial: string;
1006
+ luckysheet: string;
1007
+ other: string;
1008
+ Logical: string;
1009
+ Lookup: string;
1010
+ Math: string;
1011
+ Operator: string;
1012
+ Parser: string;
1013
+ Statistical: string;
1014
+ Text: string;
1015
+ dataMining: string;
1016
+ selectFunctionTitle: string;
1017
+ calculationResult: string;
1018
+ tipSuccessText: string;
1019
+ tipParamErrorText: string;
1020
+ helpClose: string;
1021
+ helpCollapse: string;
1022
+ helpExample: string;
1023
+ helpAbstract: string;
1024
+ execfunctionError: string;
1025
+ execfunctionSelfError: string;
1026
+ execfunctionSelfErrorResult: string;
1027
+ allowRepeatText: string;
1028
+ allowOptionText: string;
1029
+ selectCategory: string;
1030
+ };
1031
+ drag: {
1032
+ noMerge: string;
1033
+ affectPivot: string;
1034
+ noMulti: string;
1035
+ noPaste: string;
1036
+ noPartMerge: string;
1037
+ inputCorrect: string;
1038
+ notLessOne: string;
1039
+ offsetColumnLessZero: string;
1040
+ pasteMustKeybordAlert: string;
1041
+ pasteMustKeybordAlertHTMLTitle: string;
1042
+ pasteMustKeybordAlertHTML: string;
1043
+ };
1044
+ pivotTable: {
1045
+ title: string;
1046
+ closePannel: string;
1047
+ editRange: string;
1048
+ tipPivotFieldSelected: string;
1049
+ tipClearSelectedField: string;
1050
+ btnClearSelectedField: string;
1051
+ btnFilter: string;
1052
+ titleRow: string;
1053
+ titleColumn: string;
1054
+ titleValue: string;
1055
+ tipShowColumn: string;
1056
+ tipShowRow: string;
1057
+ titleSelectionDataRange: string;
1058
+ titleDataRange: string;
1059
+ valueSum: string;
1060
+ valueStatisticsSUM: string;
1061
+ valueStatisticsCOUNT: string;
1062
+ valueStatisticsCOUNTA: string;
1063
+ valueStatisticsCOUNTUNIQUE: string;
1064
+ valueStatisticsAVERAGE: string;
1065
+ valueStatisticsMAX: string;
1066
+ valueStatisticsMIN: string;
1067
+ valueStatisticsMEDIAN: string;
1068
+ valueStatisticsPRODUCT: string;
1069
+ valueStatisticsSTDEV: string;
1070
+ valueStatisticsSTDEVP: string;
1071
+ valueStatisticslet: string;
1072
+ valueStatisticsVARP: string;
1073
+ errorNotAllowEdit: string;
1074
+ errorNotAllowMulti: string;
1075
+ errorSelectRange: string;
1076
+ errorIsDamage: string;
1077
+ errorNotAllowPivotData: string;
1078
+ errorSelectionRange: string;
1079
+ errorIncreaseRange: string;
1080
+ titleAddColumn: string;
1081
+ titleMoveColumn: string;
1082
+ titleClearColumnFilter: string;
1083
+ titleFilterColumn: string;
1084
+ titleSort: string;
1085
+ titleNoSort: string;
1086
+ titleSortAsc: string;
1087
+ titleSortDesc: string;
1088
+ titleSortBy: string;
1089
+ titleShowSum: string;
1090
+ titleStasticTrue: string;
1091
+ titleStasticFalse: string;
1092
+ };
1093
+ dropCell: {
1094
+ copyCell: string;
1095
+ sequence: string;
1096
+ onlyFormat: string;
1097
+ noFormat: string;
1098
+ day: string;
1099
+ workDay: string;
1100
+ month: string;
1101
+ year: string;
1102
+ chineseNumber: string;
1103
+ };
1104
+ imageCtrl: {
1105
+ borderTile: string;
1106
+ borderCur: string;
1107
+ };
1108
+ protection: {
1109
+ protectiontTitle: string;
1110
+ enterPassword: string;
1111
+ enterHint: string;
1112
+ swichProtectionTip: string;
1113
+ authorityTitle: string;
1114
+ selectLockedCells: string;
1115
+ selectunLockedCells: string;
1116
+ formatCells: string;
1117
+ formatColumns: string;
1118
+ formatRows: string;
1119
+ insertColumns: string;
1120
+ insertRows: string;
1121
+ insertHyperlinks: string;
1122
+ deleteColumns: string;
1123
+ deleteRows: string;
1124
+ sort: string;
1125
+ filter: string;
1126
+ usePivotTablereports: string;
1127
+ editObjects: string;
1128
+ editScenarios: string;
1129
+ allowRangeTitle: string;
1130
+ allowRangeAdd: string;
1131
+ allowRangeAddTitle: string;
1132
+ allowRangeAddSqrf: string;
1133
+ selectCellRange: string;
1134
+ selectCellRangeHolder: string;
1135
+ allowRangeAddTitlePassword: string;
1136
+ allowRangeAddTitleHint: string;
1137
+ allowRangeAddTitleHintTitle: string;
1138
+ allowRangeAddtitleDefault: string;
1139
+ rangeItemDblclick: string;
1140
+ rangeItemHasPassword: string;
1141
+ rangeItemErrorTitleNull: string;
1142
+ rangeItemErrorRangeNull: string;
1143
+ rangeItemErrorRange: string;
1144
+ validationTitle: string;
1145
+ validationTips: string;
1146
+ validationInputHint: string;
1147
+ checkPasswordNullalert: string;
1148
+ checkPasswordWrongalert: string;
1149
+ checkPasswordSucceedalert: string;
1150
+ defaultRangeHintText: string;
1151
+ defaultSheetHintText: string;
1152
+ };
1153
+ cellFormat: {
1154
+ cellFormatTitle: string;
1155
+ protection: string;
1156
+ locked: string;
1157
+ hidden: string;
1158
+ protectionTips: string;
1159
+ tipsPart: string;
1160
+ tipsAll: string;
1161
+ selectionIsNullAlert: string;
1162
+ sheetDataIsNullAlert: string;
1163
+ };
1164
+ print: {
1165
+ normalBtn: string;
1166
+ layoutBtn: string;
1167
+ pageBtn: string;
1168
+ menuItemPrint: string;
1169
+ menuItemAreas: string;
1170
+ menuItemRows: string;
1171
+ menuItemColumns: string;
1172
+ };
1173
+ edit: {
1174
+ typing: string;
1175
+ };
1176
+ websocket: {
1177
+ success: string;
1178
+ refresh: string;
1179
+ wait: string;
1180
+ close: string;
1181
+ contact: string;
1182
+ support: string;
1183
+ };
1184
+ };
1185
+ export default _default;