@fileverse-dev/fortune-react 1.0.2-mod-115 → 1.0.2

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