-
Notifications
You must be signed in to change notification settings - Fork 424
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat!: prepare official 5.0 version release (#845)
* feat!: major folder restructuring with esbuild to support `iife`, `cjs` and `esm` and soon TypeScript (#804) * feat: migrate all Controls to TypeScript (#808) * feat: migrate all Menu/Buttons Plugins to TypeScript (#811) * feat: migrate all Decorator & Selection Plugins to TypeScript (#812) * feat: migrate CheckboxSelector & State Plugins to TypeScript (#813) * feat: migrate Draggable Grouping Plugins to TypeScript (#814) * feat: migrate Resizer Plugin to TypeScript (#815) * feat: migrate RowMoveManager Plugins to TypeScript (#817) * feat: migrate RowDetail Plugin to TypeScript (#822) * feat: migrate RemoteModel Plugins to TypeScript (#823) * feat: remove deprecated DataView methods (#833) * feat: remove deprecated DataView methods - `setAggregators` and `groupBy` were both replaced by `setGrouping` many years ago, so no need to keep these old functions anymore * feat: add new trading platform high frequency update grid (#835) * feat: add new trading platform high frequency update grid * fix: copying multiple times only kept last undo CellExternalCopyManager - fix an issue where copying and pasting to multiple area only kept the last undo and reapplied it over and over and the cause was because the clipCommand was global to the class so it only kept the last undo, the fix is to make sure the clipCommand variable is local to the execution handler instead --------- Co-authored-by: Nikhil Giddaluru <38428547+nikhil5693@users.noreply.github.com> Co-authored-by: Ben McIntyre <email.ben.mcintyre@gmail.com>
- Loading branch information
1 parent
d0a0e3f
commit ad85e12
Showing
831 changed files
with
75,499 additions
and
34,681 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
*.d.ts |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,49 @@ | ||
{ | ||
"extends": [ | ||
"eslint:recommended", | ||
"plugin:cypress/recommended" | ||
], | ||
"env": { | ||
"browser": true, | ||
"es6": true, | ||
"node": true | ||
}, | ||
"globals": { | ||
"flatpickr": true, | ||
"Slick": true, | ||
"Sortable": true | ||
}, | ||
"rules": { | ||
"cypress/no-unnecessary-waiting": "off", | ||
"cypress/unsafe-to-chain-command": "off", | ||
"no-cond-assign": "off", | ||
"no-prototype-builtins": [0] | ||
"parser": "@typescript-eslint/parser", | ||
"settings": { | ||
"node": { | ||
"tryExtensions": [".js", ".json", ".node", ".ts", ".d.ts"], | ||
"resolvePaths": ["node_modules/@types"] | ||
} | ||
}, | ||
"extends": [ | ||
"plugin:@typescript-eslint/eslint-recommended", | ||
"plugin:@typescript-eslint/recommended", | ||
"plugin:cypress/recommended" | ||
], | ||
"plugins": ["@typescript-eslint", "node"], | ||
"root": true, | ||
"env": { | ||
"browser": true, | ||
"es6": true, | ||
"node": true | ||
}, | ||
"globals": { | ||
"flatpickr": true, | ||
"Slick": true, | ||
"Sortable": true, | ||
"IIFE_ONLY": true | ||
}, | ||
"rules": { | ||
"@typescript-eslint/ban-ts-comment": "off", | ||
"@typescript-eslint/no-empty-function": "off", | ||
"@typescript-eslint/no-explicit-any": "off", | ||
"@typescript-eslint/no-non-null-assertion": "off", | ||
"@typescript-eslint/no-unused-vars": ["error", { "argsIgnorePattern": "^_", "destructuredArrayIgnorePattern": "^_" }], | ||
"@typescript-eslint/ban-types": [ | ||
"error", | ||
{ | ||
"types": { | ||
// accept Function type | ||
"Function": false | ||
}, | ||
"extendDefaults": true | ||
} | ||
], | ||
"cypress/no-assigning-return-values": "off", | ||
"cypress/no-unnecessary-waiting": "off", | ||
"cypress/unsafe-to-chain-command": "off", | ||
"no-cond-assign": "off", | ||
"no-prototype-builtins": [0] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
{ | ||
// Use IntelliSense to learn about possible attributes. | ||
// Hover to view descriptions of existing attributes. | ||
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"type": "chrome", | ||
"request": "launch", | ||
"name": "Launch Chrome against localhost", | ||
"url": "http://localhost:8080/examples/", | ||
"webRoot": "${workspaceFolder}" | ||
}, | ||
{ | ||
"type": "msedge", | ||
"request": "launch", | ||
"name": "Launch Edge against localhost", | ||
"url": "http://localhost:8080/examples/", | ||
"webRoot": "${workspaceFolder}" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"typescript.tsdk": "node_modules\\typescript\\lib" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# Contributing | ||
|
||
We'd love for you to contribute and to make this project even better than it is today! If this interests you, please make sure to follow the steps below before creating a Pull Request. | ||
|
||
When we mention `VSCode`, we mean the `Visual Studio Code` editor which can be downloaded [here](https://code.visualstudio.com) | ||
|
||
Before accepting any Pull Request, we would you like to remind you to follow these steps: | ||
1. Install dependencies | ||
```sh | ||
npm install | ||
``` | ||
2. Run a full build | ||
```sh | ||
npm run build:prod | ||
``` | ||
3. Fix any Linting or TypeScript issues (if any) returned by the build process | ||
4. After being done with step 2 and 3, then the final step would be to proceed with your Pull Request | ||
- **NOTE** even though the `dist/` folder is included in Git for portability, you could choose (we stringly recommend) that you ignore/disregard these files from being included in your Pull Request. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.