@adaptabletools/adaptable-react-aggrid-cjs 22.0.0-canary.0 → 22.0.0-canary.1
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 +3 -5
- package/package.json +2 -2
- package/src/components/AdaptableProvider.js +1 -1
package/README.md
CHANGED
|
@@ -7,16 +7,14 @@ AdapTable provides a huge range of Data Grid (and FDC3) features, which extend A
|
|
|
7
7
|
|
|
8
8
|
## Documentation
|
|
9
9
|
|
|
10
|
-
For full details on how to install, instantiate and reference AdapTable programmatically at run-time please read the [AdapTable React Documentation](https://
|
|
10
|
+
For full details on how to install, instantiate and reference AdapTable programmatically at run-time please read the [AdapTable React Documentation](https://www.adaptabletools.com/docs/react-overview).
|
|
11
11
|
|
|
12
12
|
## Demos
|
|
13
13
|
|
|
14
|
-
The [AdapTable Documentation](https://
|
|
14
|
+
The [AdapTable Documentation](https://www.adaptabletools.com/docs) contains numerous demos that show the many different functionalities available in AdapTable.
|
|
15
15
|
|
|
16
16
|
For a standalone working example app of AdapTable React, see the [React Example Project](https://github.com/AdaptableTools/example-adaptable-react-aggrid)
|
|
17
17
|
|
|
18
|
-
Additionally you can see a number of large demos at the [Adaptable Tools website](https://www.adaptabletools.com/demos).
|
|
19
|
-
|
|
20
18
|
## Licences
|
|
21
19
|
|
|
22
20
|
A licence for AdapTable provides access to all product features as well as regular updates and enhancements through the lifetime of the licence, comprehensive support, and access to all 3rd party libraries.
|
|
@@ -27,7 +25,7 @@ We can also make a trial licence available for a short period of time to allow y
|
|
|
27
25
|
|
|
28
26
|
**Note: The AdapTable licence does not include AG Grid's licence which you must pay for that separately**.
|
|
29
27
|
|
|
30
|
-
Please contact [`sales@adaptabletools.com`](mailto:sales@adaptabletools.com) or see our [Licence Help Page](https://
|
|
28
|
+
Please contact [`sales@adaptabletools.com`](mailto:sales@adaptabletools.com) or see our [Licence Help Page](https://www.adaptabletools.com/buy/buying-adaptable-licensing) for more information.
|
|
31
29
|
|
|
32
30
|
|
|
33
31
|
## Other AdapTable Resources
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adaptabletools/adaptable-react-aggrid-cjs",
|
|
3
|
-
"version": "22.0.0-canary.
|
|
3
|
+
"version": "22.0.0-canary.1",
|
|
4
4
|
"description": "React version of AdapTable - the powerful data-agnostic HTML5 AG Grid extension which provides advanced, cutting-edge functionality to meet all DataGrid requirements",
|
|
5
5
|
"keywords": [],
|
|
6
6
|
"license": "contact sales@adaptabletools.com for details",
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
"typings": "src/index.d.ts",
|
|
9
9
|
"dependencies": {
|
|
10
10
|
"tslib": "^2.8.1",
|
|
11
|
-
"@adaptabletools/adaptable-cjs": "22.0.0-canary.
|
|
11
|
+
"@adaptabletools/adaptable-cjs": "22.0.0-canary.1"
|
|
12
12
|
},
|
|
13
13
|
"peerDependencies": {
|
|
14
14
|
"ag-grid-enterprise": ">=35.0.0",
|
|
@@ -76,7 +76,7 @@ const AdaptableProvider = (props) => {
|
|
|
76
76
|
if (!adaptableAgGridReactRenderedRef.current) {
|
|
77
77
|
console.error('You are not rendering <Adaptable.AgGridReact /> inside <Adaptable.Provider />.');
|
|
78
78
|
console.error('You are probably rendering <AgGridReact /> directly. Please use <Adaptable.AgGridReact /> instead.');
|
|
79
|
-
console.error('For more details, please see https://
|
|
79
|
+
console.error('For more details, please see https://www.adaptabletools.com/docs/react-integration');
|
|
80
80
|
}
|
|
81
81
|
}, 1000);
|
|
82
82
|
return () => {
|