Skip to content

Commit

Permalink
Merge branch 'release/2.3.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
sequba committed Mar 3, 2023
2 parents 0adb3bb + 4a606b4 commit a56a970
Show file tree
Hide file tree
Showing 198 changed files with 4,388 additions and 2,389 deletions.
2 changes: 1 addition & 1 deletion .config/source-license-header.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/**
* @license
* Copyright (c) 2022 Handsoncode. All rights reserved.
* Copyright (c) 2023 Handsoncode. All rights reserved.
*/
5 changes: 1 addition & 4 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -73,14 +73,13 @@ module.exports = {
"jsdoc/check-alignment": 'warn',
"jsdoc/check-param-names": 'warn',
"jsdoc/check-property-names": 'warn',
"jsdoc/check-tag-names": 'warn',
"jsdoc/check-tag-names": ['warn', {definedTags: ['category']}],
"jsdoc/check-types": 'warn',
"jsdoc/empty-tags": 'warn',
"jsdoc/implements-on-classes": 'warn',
"jsdoc/multiline-blocks": 'warn',
"jsdoc/newline-after-description": 'warn',
"jsdoc/no-multi-asterisks": 'warn',
"jsdoc/no-undefined-types": 'warn',
"jsdoc/require-param-description": 'warn',
"jsdoc/require-param-name": 'warn',
"jsdoc/require-param-type": 'warn',
Expand All @@ -90,9 +89,7 @@ module.exports = {
"jsdoc/require-returns-check": 'warn',
"jsdoc/require-returns-description": 'warn',
"jsdoc/require-returns-type": 'warn',
"jsdoc/require-yields": 'warn',
"jsdoc/require-yields-check": 'warn',
"jsdoc/tag-lines": 'warn',
"jsdoc/valid-types": 'warn',
"jsdoc/require-jsdoc": ['warn', {
require: {
Expand Down
624 changes: 466 additions & 158 deletions CHANGELOG.md

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -108,4 +108,4 @@ HyperFormula is available under the open source license ([GPLv3](https://github.
To buy a commercial license, please write to us at [email protected]

## Copyrights
© 2022 [Handsoncode](https://handsontable.com)
© 2023 [Handsoncode](https://handsontable.com)
16 changes: 8 additions & 8 deletions docs/guide/basic-operations.md
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,7 @@ handled in a similar manner.

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

```javascript
Expand All @@ -336,7 +336,7 @@ try {
## isItPossibleTo* methods

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

<iframe
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"
style="width:100%; height:500px; border:0; border-radius: 4px; overflow:hidden;"
title="handsontable/hyperformula-demos: basic-operations"
allow="accelerometer; ambient-light-sensor; camera; encrypted-media; geolocation; gyroscope; hid; microphone; midi; payment; usb; vr; xr-spatial-tracking"
sandbox="allow-autoplay allow-forms allow-modals allow-popups allow-presentation allow-same-origin allow-scripts"
></iframe>
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"
style="width:100%; height:500px; border:0; border-radius: 4px; overflow:hidden;"
title="handsontable/hyperformula-demos: basic-operations"
allow="accelerometer; ambient-light-sensor; camera; encrypted-media; geolocation; gyroscope; hid; microphone; midi; payment; usb; vr; xr-spatial-tracking"
sandbox="allow-autoplay allow-forms allow-modals allow-popups allow-presentation allow-same-origin allow-scripts">
</iframe>
387 changes: 197 additions & 190 deletions docs/guide/built-in-functions.md

Large diffs are not rendered by default.

Loading

0 comments on commit a56a970

Please sign in to comment.