@adaptabletools/adaptable-plugin-nocode-aggrid-cjs 18.0.7 → 18.0.9

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.
Files changed (2) hide show
  1. package/README.md +11 -35
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -11,53 +11,29 @@ 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. A second (optional) step allows Users to set up many of the [Adaptable Options](https://docs.adaptabletools.com/guide/reference-options-overview) that would normally be configured at design-time, in order to ensure that the AdapTable instance suits their precise requirements.
14
+ 2. Additional (optional) steps allow Users to set up many of the [Adaptable Options](https://docs.adaptabletools.com/guide/reference-options-overview) 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
 
18
- ## Code Required
19
- There is minimum code required to set up the No Code plugin.
20
-
21
- A full example would be as follows:
22
-
23
- ```jsx
24
- import "@adaptabletools/adaptable/index.css";
25
- import "@ag-grid-community/all-modules/dist/styles/ag-grid.css";
26
- import "@ag-grid-community/all-modules/dist/styles/ag-theme-balham.css";
27
- import nocode from "@adaptabletools/adaptable-plugin-nocode-aggrid";
28
- import { AdaptableOptions} from "@adaptabletools/adaptable/types";
29
- import { AllEnterpriseModules } from "@ag-grid-enterprise/all-modules";
30
- import Adaptable from "@adaptabletools/adaptable/agGrid";
31
-
32
- const adaptableOptions: AdaptableOptions = {
33
- primaryKey: "",
34
- userName: "Demo User",
35
- adaptableId: "Nocode Plugin Demo",
36
- plugins: [
37
- nocode({
38
- onInit: adaptableOptions => {
39
- adaptableOptions.modules = AllEnterpriseModules;
40
- }
41
- })
42
- ]
43
- };
44
-
45
- Adaptable.init(adaptableOptions).then((api) => {
46
- console.log(api, "!!!");
47
- });
48
- ```
18
+ ## Documentation & Demos
19
+
20
+ Full details of how to install and use the No Code plugin, together with many demos, can be found at [AdapTable No Code Documentation](https://docs.adaptabletools.com/guide/handbook-no-code)
49
21
 
50
22
  ## Example Project
51
- Visit the [No Code Example Project](https://github.com/AdaptableTools/example-adaptable-nocode-aggrid) to see a basic example of how to set up the No Code plugin.
52
23
 
53
- ## Demo
54
- Visit the [No Code Demo](https://demo.adaptabletools.com/admin/aggridnocodedemo) to see AdapTable running the No Code plugin.
24
+ Visit the [No Code Example Project](https://github.com/AdaptableTools/example-adaptable-nocode-aggrid) to see a basic example of how to set up the No Code plugin.
55
25
 
56
26
  ## Help
27
+
57
28
  Developers can learn how to access AdapTable programmatically at [AdapTable Documentation](https://docs.adaptabletools.com).
58
29
 
59
30
  ## Other AdapTable Resources
31
+
60
32
  General information about Adaptable Tools is available at our [Website](http://www.adaptabletools.com)
61
33
 
62
34
  ## Support
63
35
  For all support enquiries please email [`support@adaptabletools.com`](mailto:support@adaptabletools.com) or [raise a Support Ticket](https://adaptabletools.zendesk.com/hc/en-us/requests/new).
36
+
37
+ ## Licences
38
+
39
+ Information on AdapTable Licences can be found at [Licensing AdapTable for AG Grid](https://docs.adaptabletools.com/guide/licensing).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adaptabletools/adaptable-plugin-nocode-aggrid-cjs",
3
- "version": "18.0.7",
3
+ "version": "18.0.9",
4
4
  "description": "",
5
5
  "homepage": "http://www.adaptabletools.com/",
6
6
  "author": {
@@ -12,7 +12,7 @@
12
12
  "dependencies": {
13
13
  "tslib": "^2.3.0",
14
14
  "xlsx": "^0.15.5",
15
- "@adaptabletools/adaptable-cjs": "18.0.7"
15
+ "@adaptabletools/adaptable-cjs": "18.0.9"
16
16
  },
17
17
  "peerDependencies": {}
18
18
  }