@dhtmlx/trial-react-spreadsheet 6.0.0
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.
- package/README.md +111 -0
- package/dist/fonts/roboto-bold-webfont.woff +0 -0
- package/dist/fonts/roboto-bold-webfont.woff2 +0 -0
- package/dist/fonts/roboto-medium-webfont.woff +0 -0
- package/dist/fonts/roboto-medium-webfont.woff2 +0 -0
- package/dist/fonts/roboto-regular-webfont.woff +0 -0
- package/dist/fonts/roboto-regular-webfont.woff2 +0 -0
- package/dist/spreadsheet.react.css +24 -0
- package/dist/spreadsheet.react.es.d.ts +633 -0
- package/dist/spreadsheet.react.es.js +61035 -0
- package/license.txt +43 -0
- package/package.json +44 -0
- package/whatsnew.md +647 -0
package/whatsnew.md
ADDED
|
@@ -0,0 +1,647 @@
|
|
|
1
|
+
# Version 6.0 (May 20, 2026)
|
|
2
|
+
|
|
3
|
+
### Breaking changes
|
|
4
|
+
|
|
5
|
+
The new release introduces significant changes in the Spreadsheet API: there is a set of deprecated methods, properties and events. Check the Migration guide to keep in step with the latest version.
|
|
6
|
+
|
|
7
|
+
### New functionality
|
|
8
|
+
|
|
9
|
+
- React Spreadsheet wrapper is introduced
|
|
10
|
+
- The `SheetManager` module is introduced. It is a centralized API for managing sheets in Spreadsheet. It is accessible via the `spreadsheet.sheets` property and replaces all the deprecated sheet-related methods on the root Spreadsheet instance.
|
|
11
|
+
- new methods: `sheets.add()`, `sheets.remove()`, `sheets.getAll()`, `sheets.getActive()`, `sheets.setActive()`, `sheets.clear()`, `sheets.get()`
|
|
12
|
+
- The ability to specify a custom (user-defined) formula via the new `addFormula()` method
|
|
13
|
+
- The ability to display numbers in the scientific (exponential) notation
|
|
14
|
+
|
|
15
|
+
### Updates
|
|
16
|
+
|
|
17
|
+
- The ability to adjust the font size of cell content:
|
|
18
|
+
- setting a default font size option via a built-in toolbar control
|
|
19
|
+
- setting a custom font size for the toolbar control
|
|
20
|
+
- New conditional aggregate functions are added into the formulas engine: `COUNTIF`, `COUNTIFS`, `SUMIF`, `SUMIFS`, `AVERAGEIF`, `AVERAGEIFS`, `MAXIFS`, `MINIFS`
|
|
21
|
+
- The `awaitRedraw()` helper is added for Spreadsheet to detect the rendering process and run the desired code after the component finishes rendering
|
|
22
|
+
- JSDoc annotations are added to the type definitions, providing inline API descriptions, parameter types, and code examples directly in the IDE
|
|
23
|
+
|
|
24
|
+
### Fixes
|
|
25
|
+
|
|
26
|
+
- Losing focus after switching the active sheet via the API
|
|
27
|
+
- Returning an array of changed cells in the transpose mode
|
|
28
|
+
- Recalculating dependent formulas after paste
|
|
29
|
+
- Overwriting locked cells with formulas during paste operations
|
|
30
|
+
- The issue with running mathematical formulas in a locked cell
|
|
31
|
+
- Sheet name escaping for names that resemble cell references, start with a number, or contain special characters
|
|
32
|
+
- The issue with dynamic arrays when the cell id is zero (the first cell of the first sheet)
|
|
33
|
+
|
|
34
|
+
# Version 5.2.9 (January 8, 2026)
|
|
35
|
+
|
|
36
|
+
### Fixes
|
|
37
|
+
|
|
38
|
+
- Editor dropdown filtering now uses startsWith instead of includes when typing in an open editor
|
|
39
|
+
- Excel cell borders are now preserved after export and import
|
|
40
|
+
- Prevent font size override when pasting from external tables
|
|
41
|
+
|
|
42
|
+
# Version 5.2.8 (December 15, 2025)
|
|
43
|
+
|
|
44
|
+
### Fixes
|
|
45
|
+
|
|
46
|
+
- The problem with losing focus when selecting another cell during formula editing
|
|
47
|
+
- The issues with keyboard navigation
|
|
48
|
+
|
|
49
|
+
# Version 5.2.7 (December 9, 2025)
|
|
50
|
+
|
|
51
|
+
### Fixes
|
|
52
|
+
|
|
53
|
+
- Export to Excel failing when a sheet contains a cell with a data-validation list
|
|
54
|
+
- The issue where a dropdown with a data-validation list stops working when the initial cell value is `%`
|
|
55
|
+
- The problem with the `INDEX/MATCH` formula breaking after setting focus in the formula bar
|
|
56
|
+
|
|
57
|
+
# Version 5.2.6 (November 19, 2025)
|
|
58
|
+
|
|
59
|
+
### Fixes
|
|
60
|
+
|
|
61
|
+
- An extra DOM element appearing during the import of an .xlsx file that contains a cell with a wrapped text
|
|
62
|
+
- Incorrect displaying of column/row labels in the column context menu while managing columns
|
|
63
|
+
- The sheet structure breaking when freezing a range that contains merged cells
|
|
64
|
+
- Improved keyboard navigation in sheets with spanned cells
|
|
65
|
+
|
|
66
|
+
# Version 5.2.5 (October 23, 2025)
|
|
67
|
+
|
|
68
|
+
### Fixes
|
|
69
|
+
|
|
70
|
+
- The issue with the row height decreasing on applying the "Wrap" option to the content that fits the column width
|
|
71
|
+
|
|
72
|
+
# Version 5.2.4 (September 24, 2025)
|
|
73
|
+
|
|
74
|
+
### Fixes
|
|
75
|
+
|
|
76
|
+
- Added export/import support for multiline cells
|
|
77
|
+
|
|
78
|
+
# Version 5.2.3 (September 10, 2025)
|
|
79
|
+
|
|
80
|
+
### Fixes
|
|
81
|
+
|
|
82
|
+
- Incorrect alignment of numbers in cells when inserting arrays
|
|
83
|
+
- Improved input in the Asian languages
|
|
84
|
+
|
|
85
|
+
# Version 5.2.2 (August 18, 2025)
|
|
86
|
+
|
|
87
|
+
### Updates
|
|
88
|
+
|
|
89
|
+
- Enhanced `setValidation()` for the type-ahead filtering in the built-in drop-down editor
|
|
90
|
+
- Added export/import support for hidden/frozen columns/rows, the data validation select box and Excel links in .xlsx files
|
|
91
|
+
|
|
92
|
+
### Fixes
|
|
93
|
+
|
|
94
|
+
- The problem with unmerging spanned cells in frozen columns/rows
|
|
95
|
+
- The issue with applying built-in themes
|
|
96
|
+
- The issue with Chinese input
|
|
97
|
+
- The issue with Japanese input on MacOS: autocomplete confirm causes the editor closing
|
|
98
|
+
- The problem with compiling the `spreadsheet.d.ts` file
|
|
99
|
+
|
|
100
|
+
# Version 5.2.1 (June 30, 2025)
|
|
101
|
+
|
|
102
|
+
### Fixes
|
|
103
|
+
|
|
104
|
+
- The copy/paste script error
|
|
105
|
+
- The error that occurred on deleting a row with the two or more last rows selected in the sheet
|
|
106
|
+
- The issue with warning displayed on the toolbar customization
|
|
107
|
+
- The issue with missing localization for the datepicker
|
|
108
|
+
- The issue with unnecessary displaying of the vertical scroll in the toolbar
|
|
109
|
+
- Math fixes for correct calculations in formulas
|
|
110
|
+
|
|
111
|
+
### Updates
|
|
112
|
+
|
|
113
|
+
- The possibility to remove several columns/rows in one operation via the context menu
|
|
114
|
+
|
|
115
|
+
# Version 5.2.0 (May 20, 2025)
|
|
116
|
+
|
|
117
|
+
### Breaking changes
|
|
118
|
+
|
|
119
|
+
The new release introduces some changes to the frozen columns/rows functionality. Check the Migration article to keep in step with the latest version.
|
|
120
|
+
|
|
121
|
+
### Deprecated
|
|
122
|
+
|
|
123
|
+
- The `leftSplit` and `topSplit` configuration properties are removed
|
|
124
|
+
|
|
125
|
+
### New functionality
|
|
126
|
+
|
|
127
|
+
- Editing cells:
|
|
128
|
+
- the ability to create a styled border for a group of cells via UI
|
|
129
|
+
- Freezing/unfreezing columns/rows:
|
|
130
|
+
- the ability to freeze/unfreeze columns and rows via UI
|
|
131
|
+
- the ability to freeze/unfreeze columns and rows via API
|
|
132
|
+
- new methods: `freezeCols()`, `unfreezeCols()`, `freezeRows()`, `unfreezeRows()`
|
|
133
|
+
- new action: `toggleFreeze`
|
|
134
|
+
- new `freeze` property for the *sheets* object of the `parse()` method
|
|
135
|
+
- Hiding/showing columns/rows:
|
|
136
|
+
- the ability to hide/show columns and rows via UI
|
|
137
|
+
- the ability to hide/show columns and rows via API
|
|
138
|
+
- new methods: `hideCols()`, `showCols()`, `hideRows()`, `showRows()`
|
|
139
|
+
- new action: `toggleVisibility`
|
|
140
|
+
- new `hidden` property for the *cols* and *rows* configs of the *sheets* object of the `parse()` method
|
|
141
|
+
- Working with formulas:
|
|
142
|
+
- popup with descriptions for formulas is added
|
|
143
|
+
- new locale: `formulas` is added
|
|
144
|
+
- File import:
|
|
145
|
+
- new `afterDataLoaded` event is added
|
|
146
|
+
|
|
147
|
+
### Fixes
|
|
148
|
+
|
|
149
|
+
- The issue with sorting
|
|
150
|
+
- The issue with the filter shifting to a new column
|
|
151
|
+
- The error that occurred on blocking a sheet adding with the "addSheet" action
|
|
152
|
+
- The issue with filtering blank cells
|
|
153
|
+
- The problem with editing a large spanned table
|
|
154
|
+
- The error that occurred on undoing an action in a cell
|
|
155
|
+
- The error that occurred on entering/editing a cell with the IF formula
|
|
156
|
+
- The script error that occurred after cutting and pasting a link
|
|
157
|
+
- The issue with changing the text alignment during export/import of an .xlsx file
|
|
158
|
+
- The issue with Spreadsheet losing focus after some actions
|
|
159
|
+
- Performance improvements
|
|
160
|
+
|
|
161
|
+
# Version 5.1.6 (July 25, 2024)
|
|
162
|
+
|
|
163
|
+
### Fixes
|
|
164
|
+
|
|
165
|
+
- Inserted rows/columns are missed in the serialized data on loading it
|
|
166
|
+
- An empty date cell displays the last picked date in the datepicker and the timepicker
|
|
167
|
+
- An issue with number localization and an empty string value in a cell
|
|
168
|
+
- Searching doesn't get focus while editing a cell
|
|
169
|
+
- Using `ngIf/ngFor` for the Spreadsheet container causes a break in the component
|
|
170
|
+
|
|
171
|
+
# Version 5.1.5 (February 13, 2024)
|
|
172
|
+
|
|
173
|
+
### Fixes
|
|
174
|
+
|
|
175
|
+
- Pasting a cell containing zeros creates an empty cell
|
|
176
|
+
- Copying and then pasting an empty cell throws an error
|
|
177
|
+
- Fix the `setValue()` functionality for the common format
|
|
178
|
+
- Saving the id of a sheet during serialization and returning it by the afterAction event
|
|
179
|
+
- Fix cross-sheet formula usage via UI
|
|
180
|
+
- Fix Ctrl+F search
|
|
181
|
+
|
|
182
|
+
# Version 5.1.4 (January 31, 2024)
|
|
183
|
+
|
|
184
|
+
### Fixes
|
|
185
|
+
|
|
186
|
+
- Incorrect pasting of spanned cells
|
|
187
|
+
|
|
188
|
+
|
|
189
|
+
# Version 5.1.3 (January 29, 2024)
|
|
190
|
+
|
|
191
|
+
### Fixes
|
|
192
|
+
|
|
193
|
+
- Incorrect parsing of numeric values in the "common" format
|
|
194
|
+
- Localization i18n issues when Spreadsheet is used together with Suite
|
|
195
|
+
- Performance issues while loading a table with a great number of spans
|
|
196
|
+
- Incorrect pasting of spanned cells
|
|
197
|
+
|
|
198
|
+
# Version 5.1.2 (January 16, 2024)
|
|
199
|
+
|
|
200
|
+
### Fixes
|
|
201
|
+
|
|
202
|
+
- Fix the issue with copying and pasting cells. Copied and pasted cells with Date to Spreadsheet from Excel are displayed as strings
|
|
203
|
+
- Fix the issue with pasting of spanned cells
|
|
204
|
+
- Fix the issue with parsing data that mutates initial dataset
|
|
205
|
+
- Fix the issue with numeric value in the "common" format that is formated as a number
|
|
206
|
+
|
|
207
|
+
# Version 5.1.1 (December 14, 2023)
|
|
208
|
+
|
|
209
|
+
### Fixes
|
|
210
|
+
|
|
211
|
+
- Fix the issue with the fixColumn() method ignoring the arrow icon of the select editor
|
|
212
|
+
- Fix the problem with cell styles taking precedence over the range styles
|
|
213
|
+
- Fix the issue with copying/pasting the content of cells with applied styles and the Undo functionality
|
|
214
|
+
- Fix the problem with a link changing while being pasted into a different cell
|
|
215
|
+
- Fix issues with copying/pasting of merged cells
|
|
216
|
+
- Fix the issue with serialization of styles
|
|
217
|
+
- Fix scrolling to the cell during the call of the setSelectedCell() or setFocusedCell() methods
|
|
218
|
+
|
|
219
|
+
# Version 5.1 (December 7, 2023)
|
|
220
|
+
|
|
221
|
+
### New functionality
|
|
222
|
+
|
|
223
|
+
- Support for new themes: Dark, Light High Contrast and Dark High Contrast
|
|
224
|
+
- Extended support for number, date, time and currency format localization
|
|
225
|
+
- Integration with the Svelte framework
|
|
226
|
+
- Ability to provide a custom name for an exported .xlsx file
|
|
227
|
+
- Ability to save the "locked" cell status and specify a link for a cell in a data set
|
|
228
|
+
|
|
229
|
+
### Updates
|
|
230
|
+
|
|
231
|
+
- Renewed integrations with React, Angular and Vue.js
|
|
232
|
+
- Automatic conversion of lowercase letters to upper case in formulas
|
|
233
|
+
- Auto closing of formulas
|
|
234
|
+
|
|
235
|
+
### Fixes
|
|
236
|
+
|
|
237
|
+
- Fix the problem with applying Undo to the value set in a cell
|
|
238
|
+
- Fix the limitation on the number of pasted rows
|
|
239
|
+
- Fix replacement of spaces with the ` ` symbols in formulas in the Edit line
|
|
240
|
+
- Fix incorrect work of Excel import with the date-like values
|
|
241
|
+
- Fix incorrect editing of a block of cells
|
|
242
|
+
- Fix the script error that appeared on calling `getExcelDate()` during filtering
|
|
243
|
+
- Fix converting a text value to a number while pasting a cell content
|
|
244
|
+
- Fix incorrect pasting of data from an Excel file with the modified column width
|
|
245
|
+
|
|
246
|
+
# Version 5.0.10 (November 27, 2023)
|
|
247
|
+
|
|
248
|
+
### Fixes
|
|
249
|
+
|
|
250
|
+
- Fix types issues
|
|
251
|
+
|
|
252
|
+
# Version 5.0.9 (October 24, 2023)
|
|
253
|
+
|
|
254
|
+
### Fixes
|
|
255
|
+
|
|
256
|
+
- Fix incorrect calling of the setStyle() method which triggered before/afterSelectionSet events
|
|
257
|
+
- Fix incorrect content wrapping
|
|
258
|
+
- Fix types issues
|
|
259
|
+
|
|
260
|
+
# Version 5.0.8 (October 03, 2023)
|
|
261
|
+
|
|
262
|
+
# Version 5.0.7 (September 21, 2023)
|
|
263
|
+
|
|
264
|
+
### Fixes
|
|
265
|
+
|
|
266
|
+
- Fix the problem with exporting formulas to Excel
|
|
267
|
+
- Fix the issue with restoring the cut content of a cell on clicking the Undo button
|
|
268
|
+
|
|
269
|
+
# Version 5.0.6 (September 18, 2023)
|
|
270
|
+
|
|
271
|
+
### Fixes
|
|
272
|
+
|
|
273
|
+
- Fix the problem with rendering zeros
|
|
274
|
+
- Fix the issue with applying color styles set as string values
|
|
275
|
+
- Fix the issue with the XSS vulnerability
|
|
276
|
+
- Fix the problem when changing a value in an inactive sheet modified the value in the active sheet instead
|
|
277
|
+
|
|
278
|
+
# Version 5.0.5 (August 10, 2023)
|
|
279
|
+
|
|
280
|
+
### Fixes
|
|
281
|
+
|
|
282
|
+
- Fix the issue with the XSS vulnerability
|
|
283
|
+
- Fix incorrect pasting of data containing cell spans
|
|
284
|
+
|
|
285
|
+
# Version 5.0.4 (June 5, 2023)
|
|
286
|
+
|
|
287
|
+
### Fixes
|
|
288
|
+
|
|
289
|
+
- Fix errors during block selection or a context menu call in the read-only mode
|
|
290
|
+
- Fix the issue with the Edit menu displaying in the read-only mode
|
|
291
|
+
- Fix incorrect rounding of numbers
|
|
292
|
+
- Fix the problem with replacing a formula with its result in the editing line after cells merging
|
|
293
|
+
|
|
294
|
+
# Version 5.0.3 (April 26, 2023)
|
|
295
|
+
|
|
296
|
+
### Fixes
|
|
297
|
+
|
|
298
|
+
- Fix incorrect calculation of the last cell to merge
|
|
299
|
+
- Fix issues with Excel import/export
|
|
300
|
+
- Fix the issue which interpreted text with the ":" symbol as a link
|
|
301
|
+
- Fix the issue with loading multiline data. Now it is possible to set the multiline: "wrap" property in the "styles" object
|
|
302
|
+
- Fix the issue with merging of cells on Spreadsheet initialization when "multiSheets" is set to false
|
|
303
|
+
- Fix the issue with resetting of scroll position after double-click on the resize cursor of a column in the table header
|
|
304
|
+
|
|
305
|
+
# Version 5.0.2 (February 14, 2023)
|
|
306
|
+
|
|
307
|
+
### Fixes
|
|
308
|
+
|
|
309
|
+
- Fix the issue which caused alignment of a cell not to be saved after copying and pasting the value of the cell
|
|
310
|
+
- Fix the issue which caused the results of filtering to be changed after sorting of data
|
|
311
|
+
- Fix the issue with display of the 12-hour format in the timepicker
|
|
312
|
+
- Fix the issue with removing of link styles after the cell was auto-filled
|
|
313
|
+
- Now it is possible to add several custom formats for dates
|
|
314
|
+
- Now it is possible to remove columns and rows even if they belong to the limited columns and rows
|
|
315
|
+
|
|
316
|
+
Version 5.0.1 (January 19, 2023)
|
|
317
|
+
----------------------------
|
|
318
|
+
|
|
319
|
+
### Fixes
|
|
320
|
+
|
|
321
|
+
- Fix the issue which caused values entered into the cell with the currency format to be saved as a string not as a number
|
|
322
|
+
- Fix the issue with clearing of selection of the previously searched cells
|
|
323
|
+
- Fix the issue with display of data after parsing it into the spreadsheet
|
|
324
|
+
- Fix the issue with redrawing of the grid after removing columns
|
|
325
|
+
- Fix the issue with sorting of empty values
|
|
326
|
+
- Fix the issue with validation of numeric values when using a drop-down list
|
|
327
|
+
- Fix work of auto-filling of cells with alphanumeric values
|
|
328
|
+
- Improved work with masks of number formats
|
|
329
|
+
- Now all number values in cells will be aligned to the right by default
|
|
330
|
+
|
|
331
|
+
Version 5.0 (November 21, 2022)
|
|
332
|
+
----------------------------
|
|
333
|
+
|
|
334
|
+
### Breaking changes
|
|
335
|
+
|
|
336
|
+
The new release introduces some changes to the "toolbarBlocks" property. Check the Migration article to keep in step with the latest version.
|
|
337
|
+
|
|
338
|
+
### New functionality
|
|
339
|
+
|
|
340
|
+
- Data search:
|
|
341
|
+
- the ability to search for data via UI
|
|
342
|
+
- the ability to search for data via API:
|
|
343
|
+
- new methods: "search()" and "hideSearch()"
|
|
344
|
+
- Filtering data
|
|
345
|
+
- the ability to filter data via UI
|
|
346
|
+
- the ability to filter data via API:
|
|
347
|
+
- new methods: "setFilter()" and "getFilter()"
|
|
348
|
+
- new action: "filter"
|
|
349
|
+
- Merging/splitting cells:
|
|
350
|
+
- the ability to merge/split cells via UI
|
|
351
|
+
- the ability to merge/split cells via API:
|
|
352
|
+
- new property of the sheet object: "merged"
|
|
353
|
+
- new method: "mergeCells()"
|
|
354
|
+
- new actions: "merge" and "unmerge"
|
|
355
|
+
- AutoFit column width:
|
|
356
|
+
- the ability to autofit column width via UI
|
|
357
|
+
- the ability to autofit column width via API:
|
|
358
|
+
- new method: "fitColumn()"
|
|
359
|
+
- new action: "fitColumn"
|
|
360
|
+
- Inserting a hyperlink:
|
|
361
|
+
- the ability to insert a hyperlink into a cell via UI
|
|
362
|
+
- the ability to insert a hyperlink into a cell via API:
|
|
363
|
+
- new method: "insertLink()"
|
|
364
|
+
- new action: "insertLink"
|
|
365
|
+
- Strikethrough format of data
|
|
366
|
+
|
|
367
|
+
### Updates
|
|
368
|
+
|
|
369
|
+
- Extended list of locale options
|
|
370
|
+
- Extended list of hotkey combinations:
|
|
371
|
+
- for data search
|
|
372
|
+
- Ctrl (Cmd) + F
|
|
373
|
+
- Ctrl (Cmd) + G
|
|
374
|
+
- Ctrl (Cmd) + Shift + G
|
|
375
|
+
- for selecting the whole column/row
|
|
376
|
+
- Ctrl (Cmd) + Space
|
|
377
|
+
- Shift + Space
|
|
378
|
+
- for aligning the content of a cell left/right/center
|
|
379
|
+
- Ctrl (Cmd) + Shift + L
|
|
380
|
+
- Ctrl (Cmd) + Shift + R
|
|
381
|
+
- Ctrl (Cmd) + Shift + E
|
|
382
|
+
- for crossing out the content of a cell
|
|
383
|
+
- Alt + Shift + 5 (Cmd + Shift + X)
|
|
384
|
+
- for adding new sheets and switching between them
|
|
385
|
+
- Shift + F11
|
|
386
|
+
- Alt + Arrow Up/ Arrow Down
|
|
387
|
+
- for inserting a hyperlink in a cell
|
|
388
|
+
- Ctrl (Cmd) + K
|
|
389
|
+
|
|
390
|
+
Version 4.3 (May 23, 2022)
|
|
391
|
+
----------------------------
|
|
392
|
+
|
|
393
|
+
### Breaking changes
|
|
394
|
+
|
|
395
|
+
Version 4.3 doesn't bring any breaking changes but introduces a new way of handling actions performed in the spreadsheet. Check the details in the Migration article.
|
|
396
|
+
|
|
397
|
+
### New functionality
|
|
398
|
+
|
|
399
|
+
- The ability to add a drop-down list of options into the cells via the setValidation() method or via UI
|
|
400
|
+
- The ability to fix rows on the top of the spreadsheet via the topSplit property
|
|
401
|
+
- The ability to sort data via the sortCells() method or via UI
|
|
402
|
+
- The ability to split long text into multiple lines (Text wrapping button is added into the toolbar)
|
|
403
|
+
- Significantly extended list of supported Date, Financial, Math, String functions (marked with added in v4.3 label)
|
|
404
|
+
- Support for Lookup functions
|
|
405
|
+
- Time format is added
|
|
406
|
+
- The ability to define the format of times in the spreadsheet cells via the timeFormat property
|
|
407
|
+
- The ability to enter time in a cell via a time picker
|
|
408
|
+
- Export to JSON
|
|
409
|
+
- Import from JSON
|
|
410
|
+
- New events are added: beforeAction and afterAction
|
|
411
|
+
- New Actions system
|
|
412
|
+
|
|
413
|
+
### Updates
|
|
414
|
+
|
|
415
|
+
- The parse() method is updated. New editor attribute is added
|
|
416
|
+
|
|
417
|
+
Version 4.2.0 (November 29, 2021)
|
|
418
|
+
----------------------------
|
|
419
|
+
|
|
420
|
+
### New functionality
|
|
421
|
+
|
|
422
|
+
- Support for date, financial, information, regex, and other functions
|
|
423
|
+
- Support for boolean operators
|
|
424
|
+
- The ability to resize rows from UI
|
|
425
|
+
- New Vertical align button is added into the toolbar
|
|
426
|
+
- The ability to set the active sheet via the setActiveSheet() method
|
|
427
|
+
- The ability to remove selection from the specified cells via the removeSelectedCell() method of the Selection object
|
|
428
|
+
- The ability to clear a spreadsheet or its sheet via the clear() or clearSheet() method correspondingly
|
|
429
|
+
- New events are added: beforeClear, afterClear, beforeSheetClear, afterSheetClear
|
|
430
|
+
- The ability to define the format of dates in the spreadsheet via the dateFormat property
|
|
431
|
+
- Date format is added to default number formats
|
|
432
|
+
|
|
433
|
+
### Updates
|
|
434
|
+
|
|
435
|
+
- Extended list of locale options
|
|
436
|
+
- Extended list of math and string functions
|
|
437
|
+
- The Align block of the Spreadsheet toolbar is updated. Check the details in the Migration article
|
|
438
|
+
- The parse() and serialize() methods are updated. New rows and cols attributes of the sheet object allows saving the state of the row height and column width for each sheet.
|
|
439
|
+
|
|
440
|
+
### Fixes
|
|
441
|
+
|
|
442
|
+
- Issue with the CTRL-X shortcut key
|
|
443
|
+
- Issue which caused the script error to appear when editing a cell in the spreadsheet with hidden editing bar
|
|
444
|
+
|
|
445
|
+
Version 4.1.3 (August 31, 2021)
|
|
446
|
+
----------------------------
|
|
447
|
+
|
|
448
|
+
### Fixes
|
|
449
|
+
|
|
450
|
+
- Fix the incorrect behavior of the undo operation when reverting the row/column after its removing
|
|
451
|
+
- Fix the incorrect work of the "mask" property specified in the number format object
|
|
452
|
+
- Fix the issue which caused empty cells/rows at the top of the selection to be trimmed after pasting the data from Excel to the spreadsheet
|
|
453
|
+
- Fix the issue which caused the cells the absolute formula refers to not being marked
|
|
454
|
+
- Fix the issue with the "afterSelectionSet" event which caused the event to occur twice after a range of cells is selected
|
|
455
|
+
- Fix the issue with TypeScript definitions
|
|
456
|
+
- Fix the issues with the "text" number format
|
|
457
|
+
|
|
458
|
+
Version 4.1.2 (June 3, 2021)
|
|
459
|
+
----------------------------
|
|
460
|
+
|
|
461
|
+
### Fixes
|
|
462
|
+
|
|
463
|
+
- Fix the incorrect auto-filling of the cells that contain math functions when applying auto-filling to several columns at once
|
|
464
|
+
- Fix the issue that caused the selected cell not to become unselected after the next click on this cell using "Ctrl + click"
|
|
465
|
+
- Fix the issue with applying the math formula to the cell after choosing the formula with the help of key navigation
|
|
466
|
+
- Fix the issue with locking/unlocking the cells if they are selected using "Ctrl + Click"
|
|
467
|
+
- Fix the issue with the "serialize()" method that caused "0" values not to be serialized
|
|
468
|
+
- Fix the issue with the auto adjustment of the width of the column after clicking on the header border between the columns
|
|
469
|
+
- Fix the issue with the display of zero values in the edit line
|
|
470
|
+
- Fix the issue with the editing of long content of the cell
|
|
471
|
+
- Fix the issue with the export of the spreadsheet into the Excel file
|
|
472
|
+
- Fix the issues with incorrect behavior of the horizontal scrollbar and display of columns when working with the spreadsheet that contains a lot of columns
|
|
473
|
+
- Fix the script error that appears after using key navigation in the empty spreadsheet
|
|
474
|
+
|
|
475
|
+
Version 4.1.1 (April 14, 2021)
|
|
476
|
+
----------------------------
|
|
477
|
+
|
|
478
|
+
### Fixes
|
|
479
|
+
|
|
480
|
+
- Fix the issue with TypeScript definitions
|
|
481
|
+
- Fix the issues with absolute references
|
|
482
|
+
- Fix the issues appeared when working with data loaded from the file with the ".xlsx" extension
|
|
483
|
+
- Fix the issue with incorrect pasting of the data copied from the Excel file
|
|
484
|
+
- Fix the issue that caused the wrong result to return when summing float numbers
|
|
485
|
+
|
|
486
|
+
Version 4.1.0 (March 24, 2021)
|
|
487
|
+
----------------------------
|
|
488
|
+
|
|
489
|
+
### New functionality
|
|
490
|
+
|
|
491
|
+
- The ability to work with multiple sheets in the spreadsheet
|
|
492
|
+
- New "multiSheets" configuration option is added
|
|
493
|
+
- The ability to use cross-references in multiple sheets
|
|
494
|
+
- The ability to load several sheets into the spreadsheet at once
|
|
495
|
+
- New methods for working with multiple sheets are added: "addSheet()", "removeSheet()", "getActiveSheet()", "getSheets()"
|
|
496
|
+
- New events are added: "BeforeSheetAdd", "AfterSheetAdd", BeforeSheetChange, AfterSheetChange, "BeforeSheetRemove", "AfterSheetRemove", "BeforeSheetRename", "AfterSheetRename"
|
|
497
|
+
- The ability to get the formula of a cell via the "getFormula()" method
|
|
498
|
+
|
|
499
|
+
### Updates
|
|
500
|
+
|
|
501
|
+
- The format of the "cell" parameter of the "getValue()", "setValue()", "getStyle()", "setStyle()", "getFormat()", "setFormat()", "isLocked()", "lock()", "unlock()" methods is updated. Now the reference to a cell, or a range of cells can contain the name of the tab.
|
|
502
|
+
|
|
503
|
+
Version 4.0.5 (February 03, 2021)
|
|
504
|
+
----------------------------
|
|
505
|
+
|
|
506
|
+
### Fixes
|
|
507
|
+
|
|
508
|
+
- Fix the performance issue
|
|
509
|
+
- Fix the script error that happened when the user reverted the latest action in the cell
|
|
510
|
+
- Fix the script error thrown after calling the destructor
|
|
511
|
+
- Fix the issue that caused values from a range of cell to be truncated after inserting into a single cell
|
|
512
|
+
- Fix the issue with recognition of the format of a cell after the cell is cut and then pasted for a second time
|
|
513
|
+
|
|
514
|
+
Version 4.0.4 (January 12, 2020)
|
|
515
|
+
----------------------------
|
|
516
|
+
|
|
517
|
+
### Fixes
|
|
518
|
+
|
|
519
|
+
- Fix the incorrect work of the "SUM" function when working with more than 2 numbers
|
|
520
|
+
- Fix the issue with initialization of the spreadsheet after calling "destructor()"
|
|
521
|
+
- Fix the issue with types
|
|
522
|
+
|
|
523
|
+
Version 4.0.3 (December 28, 2020)
|
|
524
|
+
----------------------------
|
|
525
|
+
|
|
526
|
+
### Fixes
|
|
527
|
+
|
|
528
|
+
- Fix the issue with setting the format for the value of a cell within a data set
|
|
529
|
+
- Fix the error that occurred when attaching the spreadsheet to the layout
|
|
530
|
+
- Fix the issue which caused the formula set for a cell not being editing after the result was calculated
|
|
531
|
+
- Fix the incorrect work of the setFocusedCell() method
|
|
532
|
+
- Fix the incorrect behavior of focus when working with formulas
|
|
533
|
+
- Fix the issue with selecting a range of cells using the "ctrl" key
|
|
534
|
+
- Fix the incorrect work of Math functions
|
|
535
|
+
- Fix the issue with the SUM() formula when selecting it via the popup and a mouse click
|
|
536
|
+
- Fix the issue with adding a range of cells via "ctrl+click" to a cell with a formula
|
|
537
|
+
|
|
538
|
+
Version 4.0.2 (December 21, 2020)
|
|
539
|
+
----------------------------
|
|
540
|
+
|
|
541
|
+
### Fixes
|
|
542
|
+
|
|
543
|
+
- Fix the incorrect behavior of key navigation when creating 2 or more spreadsheet objects on the page
|
|
544
|
+
- Fix issue with the error thrown from the types.d.ts file
|
|
545
|
+
- Fix issues with copying and pasting a range of cells
|
|
546
|
+
|
|
547
|
+
Version 4.0.1 (December 02, 2020)
|
|
548
|
+
----------------------------
|
|
549
|
+
|
|
550
|
+
### Fixes
|
|
551
|
+
|
|
552
|
+
- The incorrect displaying of the tooltips when hovering over the Undo/Redo buttons in the toolbar
|
|
553
|
+
- The issue which happened when removing the last column of the spreadsheet after importing the data bigger than the size of the spreadsheet
|
|
554
|
+
- The issue with the setSelectedCell() method which caused the formula of the selected cell not to be shown in the formula bar
|
|
555
|
+
- The incorrect generation of the typescript definitions
|
|
556
|
+
- The visual issue with the alignment of the cell content
|
|
557
|
+
- The issue with serializing of empty cells or cells with zero value
|
|
558
|
+
|
|
559
|
+
Version 4.0.0 (October 2020)
|
|
560
|
+
----------------------------
|
|
561
|
+
|
|
562
|
+
### New functionality
|
|
563
|
+
|
|
564
|
+
- Math functions
|
|
565
|
+
- TypeScript Support
|
|
566
|
+
- The ability to freeze columns on the left side of the spreadsheet via the leftSplit configuration property
|
|
567
|
+
- The Text format for displaying the content of a cell as text is added to default number formats
|
|
568
|
+
- The ability to select multiple scattered ranges of cells by using "Ctrl+Shift+Left Click" combination
|
|
569
|
+
|
|
570
|
+
### Fixes
|
|
571
|
+
|
|
572
|
+
- Fix the incorrect work of the colorpicker when applying the background color to the range of cells
|
|
573
|
+
- Fix the incorrect parsing of numbers when importing Excel files
|
|
574
|
+
- Fix the issue which caused all data copied from a Google or Excel table to be inserted into one cell of the spreadsheet
|
|
575
|
+
- Fix the incorrect work of the editLine:false property that caused the edit operation to finish with an error in the console
|
|
576
|
+
- Fix the issue with the AfterValueChange event which caused the event to be called twice
|
|
577
|
+
|
|
578
|
+
Version 3.1.4 (September 2019)
|
|
579
|
+
----------------------------
|
|
580
|
+
|
|
581
|
+
### Fixes
|
|
582
|
+
- Styles fixes
|
|
583
|
+
|
|
584
|
+
Version 3.1.3 (September 2019)
|
|
585
|
+
----------------------------
|
|
586
|
+
|
|
587
|
+
### Fixes
|
|
588
|
+
- Issue with focus on a cell when Spreadsheet is attached to Layout
|
|
589
|
+
|
|
590
|
+
Version 3.1.2 (March 2019)
|
|
591
|
+
----------------------------
|
|
592
|
+
|
|
593
|
+
### Fixes
|
|
594
|
+
- Issue with underlining right-aligned text
|
|
595
|
+
- Issues with text styles in Excel export
|
|
596
|
+
|
|
597
|
+
Version 3.1.1 (March 2019)
|
|
598
|
+
----------------------------
|
|
599
|
+
|
|
600
|
+
### Fixes
|
|
601
|
+
- Issues with export to Excel
|
|
602
|
+
|
|
603
|
+
Version 3.1.0 (March 2019)
|
|
604
|
+
----------------------------
|
|
605
|
+
|
|
606
|
+
### New functionality
|
|
607
|
+
|
|
608
|
+
- Import data in the Excel format
|
|
609
|
+
- Export data to an Excel file
|
|
610
|
+
- Number formatting
|
|
611
|
+
- Auto filling of cells
|
|
612
|
+
|
|
613
|
+
### Updates
|
|
614
|
+
- Hotkeys behavior in a range of cells
|
|
615
|
+
|
|
616
|
+
### Fixes
|
|
617
|
+
- Issues with hotkeys on the active cell
|
|
618
|
+
|
|
619
|
+
Version 3.0.3 (December 2018)
|
|
620
|
+
----------------------------
|
|
621
|
+
|
|
622
|
+
### Fixes
|
|
623
|
+
- Incorrect behavior in the custom read-only mode
|
|
624
|
+
- Issues with methods of removing a column/row
|
|
625
|
+
- Issues with loss of focus on the edit line
|
|
626
|
+
- Issues with hotkeys on the active cell
|
|
627
|
+
|
|
628
|
+
Version 3.0.2 (December 2018)
|
|
629
|
+
----------------------------
|
|
630
|
+
|
|
631
|
+
### Fixes
|
|
632
|
+
- Issues with hotkeys behavior
|
|
633
|
+
- Issues with placement of the selection handle
|
|
634
|
+
- Issues with loss of focus on the active cell
|
|
635
|
+
- Incorrect behavior of selection on the active cell
|
|
636
|
+
- Incorrect behavior of hotkeys on the active cell
|
|
637
|
+
- Incorrect behavior of scrolling by arrow keys
|
|
638
|
+
|
|
639
|
+
Version 3.0.1 (November 2018)
|
|
640
|
+
----------------------------
|
|
641
|
+
|
|
642
|
+
### Fixes
|
|
643
|
+
- Incorrect behavior of the undo operation
|
|
644
|
+
- Incorrect behavior of the cut-paste operation on a group of cells
|
|
645
|
+
|
|
646
|
+
Version 3.0 (October 2018)
|
|
647
|
+
----------------------------
|