Skip to content

Commit

Permalink
The Great Merge of PRO version into MIT (silevis#65)
Browse files Browse the repository at this point in the history
Added functionality from the PRO version, implemented state provider.
  • Loading branch information
czerwiukk authored Feb 4, 2022
1 parent 71fcaff commit cc85f31
Show file tree
Hide file tree
Showing 103 changed files with 14,501 additions and 10,472 deletions.
54 changes: 24 additions & 30 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -1,33 +1,27 @@
module.exports = {
"env": {
"browser": true,
"es2021": true
},
"extends": [
"eslint:recommended",
"plugin:react/recommended",
"plugin:@typescript-eslint/recommended",
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaFeatures": {
"jsx": true
},
"ecmaVersion": 12,
"sourceType": "module",
},
"plugins": [
"react",
"@typescript-eslint",
"react-hooks",
],
"rules": {
"react/prop-types": 0,
"@typescript-eslint/no-explicit-any": [
"error", { "ignoreRestArgs": true }
],
"react-hooks/rules-of-hooks": "error",
"react-hooks/exhaustive-deps": "error",
"@typescript-eslint/no-unused-vars": 0,
env: {
browser: true,
es2021: true,
},
extends: [
"eslint:recommended",
"plugin:react/recommended",
"plugin:@typescript-eslint/recommended",
],
parser: "@typescript-eslint/parser",
parserOptions: {
ecmaFeatures: {
jsx: true,
},
ecmaVersion: 12,
sourceType: "module",
},
plugins: ["react", "@typescript-eslint", "react-hooks"],
rules: {
"react/prop-types": 0,
"@typescript-eslint/no-explicit-any": "off",
"react-hooks/rules-of-hooks": "error",
"react-hooks/exhaustive-deps": "error",
"@typescript-eslint/no-unused-vars": 0,
},
};
13 changes: 1 addition & 12 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,3 @@
{
"runOnSave.statusMessageTimeout": 3000,
"runOnSave.commands": [
{
"match": ".*",
"command": "node cmd.js",
"runIn": "terminal",
"runningStatusMessage": "Compiling ${fileBasename}",
// "notMatch": ".spec.ts", // bad idea
"finishStatusMessage": "${fileBasename} compiled"
}
],
"typescript.tsdk": "node_modules/typescript/lib"
"typescript.tsdk": "node_modules/typescript/lib"
}
12 changes: 8 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -213,11 +213,15 @@ docker run \

# Licensing

ReactGrid is available in two versions, [MIT](https://github.com/silevis/reactgrid/blob/develop/LICENSE) (this package) which serve
the full interface but is limited in functionality and PRO which is a fully functional version. You can compare versions
[here](https://reactgrid.com/feature-comparison/?utm_source=github&utm_medium=reactgridfeatures&utm_campaign=licensing).
ReactGrid is published under the MIT License (MIT).

(c) 2020 Silevis Software Sp. z o.o.
(c) 2022 Silevis Software Sp. z o.o.

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

# Authors

Expand Down
45 changes: 0 additions & 45 deletions cmd.js

This file was deleted.

Empty file removed cypress/integration/common/math.ts
Empty file.
Loading

0 comments on commit cc85f31

Please sign in to comment.