Skip to content

Commit a56a970

Browse files
committed
Merge branch 'release/2.3.1'
2 parents 0adb3bb + 4a606b4 commit a56a970

File tree

198 files changed

+4388
-2389
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

198 files changed

+4388
-2389
lines changed

.config/source-license-header.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
/**
22
* @license
3-
* Copyright (c) 2022 Handsoncode. All rights reserved.
3+
* Copyright (c) 2023 Handsoncode. All rights reserved.
44
*/

.eslintrc.js

+1-4
Original file line numberDiff line numberDiff line change
@@ -73,14 +73,13 @@ module.exports = {
7373
"jsdoc/check-alignment": 'warn',
7474
"jsdoc/check-param-names": 'warn',
7575
"jsdoc/check-property-names": 'warn',
76-
"jsdoc/check-tag-names": 'warn',
76+
"jsdoc/check-tag-names": ['warn', {definedTags: ['category']}],
7777
"jsdoc/check-types": 'warn',
7878
"jsdoc/empty-tags": 'warn',
7979
"jsdoc/implements-on-classes": 'warn',
8080
"jsdoc/multiline-blocks": 'warn',
8181
"jsdoc/newline-after-description": 'warn',
8282
"jsdoc/no-multi-asterisks": 'warn',
83-
"jsdoc/no-undefined-types": 'warn',
8483
"jsdoc/require-param-description": 'warn',
8584
"jsdoc/require-param-name": 'warn',
8685
"jsdoc/require-param-type": 'warn',
@@ -90,9 +89,7 @@ module.exports = {
9089
"jsdoc/require-returns-check": 'warn',
9190
"jsdoc/require-returns-description": 'warn',
9291
"jsdoc/require-returns-type": 'warn',
93-
"jsdoc/require-yields": 'warn',
9492
"jsdoc/require-yields-check": 'warn',
95-
"jsdoc/tag-lines": 'warn',
9693
"jsdoc/valid-types": 'warn',
9794
"jsdoc/require-jsdoc": ['warn', {
9895
require: {

CHANGELOG.md

+466-158
Large diffs are not rendered by default.

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -108,4 +108,4 @@ HyperFormula is available under the open source license ([GPLv3](https://github.
108108
To buy a commercial license, please write to us at sales@handsontable.com
109109

110110
## Copyrights
111-
© 2022 [Handsoncode](https://handsontable.com)
111+
© 2023 [Handsoncode](https://handsontable.com)

docs/guide/basic-operations.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -309,7 +309,7 @@ handled in a similar manner.
309309

310310
For example, imagine you let users rename their sheets in an
311311
application but by mistake they choose a sheet ID that does not exist.
312-
It would be nice to display the error to the user so they are aware
312+
It would be nice to display the error to the user, so they are aware
313313
of this fact.
314314

315315
```javascript
@@ -336,7 +336,7 @@ try {
336336
## isItPossibleTo* methods
337337

338338
There are also methods that you may find useful to call in pair with
339-
the above mentioned operations. These methods are prefixed with
339+
the above-mentioned operations. These methods are prefixed with
340340
`isItPossibleTo*` whose sole purpose is to check if the desired
341341
operation is possible. They all return a simple `boolean` value.
342342
You will find it handy when you want to give the user a more generic
@@ -389,9 +389,9 @@ This demo presents several basic operations integrated with a
389389
sample UI.
390390

391391
<iframe
392-
src="https://codesandbox.io/embed/github/handsontable/hyperformula-demos/tree/2.3.x/basic-operations?autoresize=1&fontsize=11&hidenavigation=1&theme=light&view=preview"
393-
style="width:100%; height:500px; border:0; border-radius: 4px; overflow:hidden;"
394-
title="handsontable/hyperformula-demos: basic-operations"
395-
allow="accelerometer; ambient-light-sensor; camera; encrypted-media; geolocation; gyroscope; hid; microphone; midi; payment; usb; vr; xr-spatial-tracking"
396-
sandbox="allow-autoplay allow-forms allow-modals allow-popups allow-presentation allow-same-origin allow-scripts"
397-
></iframe>
392+
src="https://codesandbox.io/embed/github/handsontable/hyperformula-demos/tree/2.3.x/basic-operations?autoresize=1&fontsize=11&hidenavigation=1&theme=light&view=preview"
393+
style="width:100%; height:500px; border:0; border-radius: 4px; overflow:hidden;"
394+
title="handsontable/hyperformula-demos: basic-operations"
395+
allow="accelerometer; ambient-light-sensor; camera; encrypted-media; geolocation; gyroscope; hid; microphone; midi; payment; usb; vr; xr-spatial-tracking"
396+
sandbox="allow-autoplay allow-forms allow-modals allow-popups allow-presentation allow-same-origin allow-scripts">
397+
</iframe>

docs/guide/built-in-functions.md

+197-190
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)