@etsoo/materialui 1.6.51 → 1.6.53
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/lib/cjs/index.d.ts +1 -1
- package/lib/cjs/index.js +5 -1
- package/lib/mjs/index.d.ts +1 -1
- package/lib/mjs/index.js +1 -1
- package/package.json +1 -1
- package/src/index.ts +9 -1
package/lib/cjs/index.d.ts
CHANGED
|
@@ -135,4 +135,4 @@ export * from "./UserAvatar";
|
|
|
135
135
|
export * from "./UserAvatarEditor";
|
|
136
136
|
export * from "./ViewContainer";
|
|
137
137
|
export { default as AccountTreeIcon } from "@mui/icons-material/AccountTree";
|
|
138
|
-
export { DataGrid, type GridColDef } from "@mui/x-data-grid";
|
|
138
|
+
export { DataGrid, Toolbar, ToolbarButton, useGridApiContext, useGridSelector, type GridColDef, type GridSlots } from "@mui/x-data-grid";
|
package/lib/cjs/index.js
CHANGED
|
@@ -17,7 +17,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
17
17
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
18
18
|
};
|
|
19
19
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
20
|
-
exports.DataGrid = exports.AccountTreeIcon = void 0;
|
|
20
|
+
exports.useGridSelector = exports.useGridApiContext = exports.ToolbarButton = exports.Toolbar = exports.DataGrid = exports.AccountTreeIcon = void 0;
|
|
21
21
|
__exportStar(require("./app/CommonApp"), exports);
|
|
22
22
|
__exportStar(require("./app/IServiceApp"), exports);
|
|
23
23
|
__exportStar(require("./app/IServiceAppSettings"), exports);
|
|
@@ -160,3 +160,7 @@ Object.defineProperty(exports, "AccountTreeIcon", { enumerable: true, get: funct
|
|
|
160
160
|
// Datagrid
|
|
161
161
|
var x_data_grid_1 = require("@mui/x-data-grid");
|
|
162
162
|
Object.defineProperty(exports, "DataGrid", { enumerable: true, get: function () { return x_data_grid_1.DataGrid; } });
|
|
163
|
+
Object.defineProperty(exports, "Toolbar", { enumerable: true, get: function () { return x_data_grid_1.Toolbar; } });
|
|
164
|
+
Object.defineProperty(exports, "ToolbarButton", { enumerable: true, get: function () { return x_data_grid_1.ToolbarButton; } });
|
|
165
|
+
Object.defineProperty(exports, "useGridApiContext", { enumerable: true, get: function () { return x_data_grid_1.useGridApiContext; } });
|
|
166
|
+
Object.defineProperty(exports, "useGridSelector", { enumerable: true, get: function () { return x_data_grid_1.useGridSelector; } });
|
package/lib/mjs/index.d.ts
CHANGED
|
@@ -135,4 +135,4 @@ export * from "./UserAvatar";
|
|
|
135
135
|
export * from "./UserAvatarEditor";
|
|
136
136
|
export * from "./ViewContainer";
|
|
137
137
|
export { default as AccountTreeIcon } from "@mui/icons-material/AccountTree";
|
|
138
|
-
export { DataGrid, type GridColDef } from "@mui/x-data-grid";
|
|
138
|
+
export { DataGrid, Toolbar, ToolbarButton, useGridApiContext, useGridSelector, type GridColDef, type GridSlots } from "@mui/x-data-grid";
|
package/lib/mjs/index.js
CHANGED
|
@@ -137,4 +137,4 @@ export * from "./ViewContainer";
|
|
|
137
137
|
// Icons
|
|
138
138
|
export { default as AccountTreeIcon } from "@mui/icons-material/AccountTree";
|
|
139
139
|
// Datagrid
|
|
140
|
-
export { DataGrid } from "@mui/x-data-grid";
|
|
140
|
+
export { DataGrid, Toolbar, ToolbarButton, useGridApiContext, useGridSelector } from "@mui/x-data-grid";
|
package/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -145,4 +145,12 @@ export * from "./ViewContainer";
|
|
|
145
145
|
export { default as AccountTreeIcon } from "@mui/icons-material/AccountTree";
|
|
146
146
|
|
|
147
147
|
// Datagrid
|
|
148
|
-
export {
|
|
148
|
+
export {
|
|
149
|
+
DataGrid,
|
|
150
|
+
Toolbar,
|
|
151
|
+
ToolbarButton,
|
|
152
|
+
useGridApiContext,
|
|
153
|
+
useGridSelector,
|
|
154
|
+
type GridColDef,
|
|
155
|
+
type GridSlots
|
|
156
|
+
} from "@mui/x-data-grid";
|