sccoreui 5.7.12 → 5.7.13
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.
|
@@ -5,7 +5,6 @@ const jsx_runtime_1 = require("react/jsx-runtime");
|
|
|
5
5
|
const react_1 = require("react");
|
|
6
6
|
const AgGrid_1 = tslib_1.__importDefault(require("./AgGrid"));
|
|
7
7
|
const advanced_feature_1 = tslib_1.__importDefault(require("./advancedFeature/advanced-feature"));
|
|
8
|
-
const error_ui_1 = tslib_1.__importDefault(require("./error-ui"));
|
|
9
8
|
function ParentForGrid(props) {
|
|
10
9
|
const [gridData] = (0, react_1.useState)({
|
|
11
10
|
rowData: props === null || props === void 0 ? void 0 : props.rowData,
|
|
@@ -97,6 +96,6 @@ function ParentForGrid(props) {
|
|
|
97
96
|
}, [featureDetails.searchedText]);
|
|
98
97
|
console.log(gridData, 'grid data');
|
|
99
98
|
console.log(featureDetails, 'feature details');
|
|
100
|
-
return ((0, jsx_runtime_1.
|
|
99
|
+
return ((0, jsx_runtime_1.jsxs)("div", Object.assign({ style: { height: style.height, width: style.width } }, { children: [(0, jsx_runtime_1.jsx)(advanced_feature_1.default, { featureDetails: featureDetails, setFeatureDetails: setFeatureDetails, columnData: gridData.columnData, props: props, callGrid: callGrid }), (0, jsx_runtime_1.jsx)(AgGrid_1.default, { style: style, gridOptions: gridOptions, onGridReady: onGridReady })] })));
|
|
101
100
|
}
|
|
102
101
|
exports.default = ParentForGrid;
|