@adaptabletools/adaptable-react-aggrid 17.0.0-canary.10 → 17.0.0-canary.12
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adaptabletools/adaptable-react-aggrid",
|
|
3
|
-
"version": "17.0.0-canary.
|
|
3
|
+
"version": "17.0.0-canary.12",
|
|
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",
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
},
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"tslib": "^2.3.0",
|
|
22
|
-
"@adaptabletools/adaptable": "17.0.0-canary.
|
|
22
|
+
"@adaptabletools/adaptable": "17.0.0-canary.12"
|
|
23
23
|
},
|
|
24
24
|
"peerDependencies": {
|
|
25
25
|
"@ag-grid-community/core": ">=30.2.0",
|
|
@@ -5,19 +5,6 @@ export interface AdaptableReactProps<TData = any> extends React.HTMLProps<HTMLDi
|
|
|
5
5
|
adaptableOptions: AdaptableOptions<TData>;
|
|
6
6
|
gridOptions?: GridOptions<TData>;
|
|
7
7
|
onAdaptableReady?: (adaptableReadyInfo: AdaptableReadyInfo) => void;
|
|
8
|
-
/**
|
|
9
|
-
* Accepts any jsx content and an HTML node (container) and renders the jsx into the node.
|
|
10
|
-
*
|
|
11
|
-
* The return value should be a function that, when called, unmounts the jsx element/component from the node.
|
|
12
|
-
*
|
|
13
|
-
* This is useful when your app runs on React 18. Adaptable works with older versions of React as well, so we need to suport everyone.
|
|
14
|
-
* See details about React 18 changes at https://reactjs.org/blog/2022/03/08/react-18-upgrade-guide.html#updates-to-client-rendering-apis
|
|
15
|
-
*
|
|
16
|
-
* Providing this function and using React 18 APIs to render elements will help you avoid a runtime warning.
|
|
17
|
-
*
|
|
18
|
-
* @deprecated No longer needed. Adaptable supports React 18.
|
|
19
|
-
*/
|
|
20
|
-
renderReactRoot?: (el: JSX.Element, container: HTMLElement) => VoidFunction;
|
|
21
8
|
}
|
|
22
9
|
declare const AdaptableReact: React.FunctionComponent<AdaptableReactProps>;
|
|
23
10
|
export default AdaptableReact;
|