@insticc/react-datagrid-2 1.0.8 → 1.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.
- package/build/index.js +5 -7
- package/package.json +17 -16
package/build/index.js
CHANGED
|
@@ -1,6 +1,10 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
3
|
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
|
|
4
|
+
Object.defineProperty(exports, "__esModule", {
|
|
5
|
+
value: true
|
|
6
|
+
});
|
|
7
|
+
exports["default"] = void 0;
|
|
4
8
|
var _react = _interopRequireWildcard(require("react"));
|
|
5
9
|
var _propTypes = _interopRequireWildcard(require("prop-types"));
|
|
6
10
|
var _materialReactTable = require("material-react-table");
|
|
@@ -548,13 +552,7 @@ DataGrid.propTypes = {
|
|
|
548
552
|
enableGlobalFilter: _propTypes["default"].bool,
|
|
549
553
|
enableVirtualization: _propTypes["default"].bool
|
|
550
554
|
};
|
|
551
|
-
|
|
552
|
-
// export default DataGrid;
|
|
553
|
-
module.exports = {
|
|
554
|
-
DataGrid: DataGrid
|
|
555
|
-
};
|
|
556
|
-
|
|
557
|
-
// DataGrid.defaultProps = {
|
|
555
|
+
var _default = exports["default"] = DataGrid; // DataGrid.defaultProps = {
|
|
558
556
|
// hasExcelExport: false,
|
|
559
557
|
// hasPdfExport: false,
|
|
560
558
|
// excelOption: 'allRows',
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@insticc/react-datagrid-2",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.9",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "build/index.js",
|
|
6
6
|
"scripts": {
|
|
7
|
-
|
|
8
|
-
|
|
7
|
+
"build": "babel src -d build --copy-files"
|
|
8
|
+
},
|
|
9
9
|
"repository": {
|
|
10
10
|
"type": "git",
|
|
11
11
|
"url": "https://set1.insticc.org/Bonobo.Git.Server/React-Datagrid-2.git"
|
|
@@ -17,20 +17,21 @@
|
|
|
17
17
|
"@babel/core": "^7.26.0",
|
|
18
18
|
"@babel/preset-env": "^7.26.0",
|
|
19
19
|
"@babel/preset-react": "^7.26.3",
|
|
20
|
-
"react": "
|
|
21
|
-
"
|
|
22
|
-
"
|
|
23
|
-
"react-bootstrap": "2.10.2",
|
|
24
|
-
"semantic-ui-react": "^3.0.0-beta.0",
|
|
25
|
-
"xlsx": "0.18.5",
|
|
26
|
-
"jspdf": "2.5.1",
|
|
27
|
-
"jspdf-autotable": "3.8.2",
|
|
28
|
-
"material-react-table": "2.12.1",
|
|
20
|
+
"@emotion/react": "11.11.4",
|
|
21
|
+
"@emotion/styled": "11.11.5",
|
|
22
|
+
"@mui/icons-material": "5.15.15",
|
|
29
23
|
"@mui/material": "5.15.15",
|
|
30
24
|
"@mui/styled-engine-sc": "^6.0.0-alpha.18",
|
|
25
|
+
"@mui/x-data-grid": "^7.1.0",
|
|
31
26
|
"@mui/x-date-pickers": "7.1.0",
|
|
32
|
-
"
|
|
33
|
-
"
|
|
34
|
-
"
|
|
27
|
+
"jspdf": "2.5.1",
|
|
28
|
+
"jspdf-autotable": "3.8.2",
|
|
29
|
+
"material-react-table": "2.12.1",
|
|
30
|
+
"prop-types": "15.6.1",
|
|
31
|
+
"react": "18.2.0",
|
|
32
|
+
"react-bootstrap": "2.10.2",
|
|
33
|
+
"react-dom": "18.2.0",
|
|
34
|
+
"semantic-ui-react": "^3.0.0-beta.0",
|
|
35
|
+
"xlsx": "0.18.5"
|
|
35
36
|
}
|
|
36
|
-
}
|
|
37
|
+
}
|