@adaptabletools/adaptable-plugin-nocode-aggrid 22.0.0-canary.1 → 22.0.0-canary.3
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 +1 -1
- package/package.json +1 -1
- package/src/index.js +1 -1
package/README.md
CHANGED
|
@@ -11,7 +11,7 @@ It has 2 steps:
|
|
|
11
11
|
|
|
12
12
|
1. The Wizard will read the input file / JSON and list the available columns it contains, together with options for each column to change the DataType, and set editing, filtering, sorting, grouping and other properties.
|
|
13
13
|
|
|
14
|
-
2. Additional (optional) steps allow Users to set up many of the [Adaptable Options](https://www.adaptabletools.com/docs/reference-options
|
|
14
|
+
2. Additional (optional) steps allow Users to set up many of the [Adaptable Options](https://www.adaptabletools.com/docs/technical-reference-adaptable-options) that would normally be configured at design-time, in order to ensure that the AdapTable instance suits their precise requirements, as well as any required AG Grid GridOptions.
|
|
15
15
|
|
|
16
16
|
> The source data must have one column that contains **unique values** which will be set as the Primary Key column (by convention this is the first column).
|
|
17
17
|
|
package/package.json
CHANGED
package/src/index.js
CHANGED
|
@@ -60,9 +60,9 @@ export const readExcelFile = (file) => {
|
|
|
60
60
|
};
|
|
61
61
|
const defaultOptions = {};
|
|
62
62
|
class NoCodePlugin extends AdaptablePlugin {
|
|
63
|
+
pluginId = 'nocode-aggrid';
|
|
63
64
|
constructor(options) {
|
|
64
65
|
super(options);
|
|
65
|
-
this.pluginId = 'nocode-aggrid';
|
|
66
66
|
this.options = { ...defaultOptions, ...options };
|
|
67
67
|
}
|
|
68
68
|
beforeInit(adaptableOptions, agGridOptions) {
|