@etsoo/materialui 1.6.51 → 1.6.52

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.
@@ -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, 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.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,6 @@ 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, "useGridSelector", { enumerable: true, get: function () { return x_data_grid_1.useGridSelector; } });
@@ -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, 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, useGridSelector } from "@mui/x-data-grid";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@etsoo/materialui",
3
- "version": "1.6.51",
3
+ "version": "1.6.52",
4
4
  "description": "TypeScript Material-UI Implementation",
5
5
  "main": "lib/cjs/index.js",
6
6
  "module": "lib/mjs/index.js",
package/src/index.ts CHANGED
@@ -145,4 +145,11 @@ export * from "./ViewContainer";
145
145
  export { default as AccountTreeIcon } from "@mui/icons-material/AccountTree";
146
146
 
147
147
  // Datagrid
148
- export { DataGrid, type GridColDef } from "@mui/x-data-grid";
148
+ export {
149
+ DataGrid,
150
+ Toolbar,
151
+ ToolbarButton,
152
+ useGridSelector,
153
+ type GridColDef,
154
+ type GridSlots
155
+ } from "@mui/x-data-grid";