@etsoo/materialui 1.6.53 → 1.6.55

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, Toolbar, ToolbarButton, useGridApiContext, useGridSelector, type GridColDef, type GridSlots } from "@mui/x-data-grid";
138
+ export { DataGrid, Toolbar, ToolbarButton, useGridApiContext, useGridApiRef, useGridSelector, type GridColDef, type GridRowId, 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.useGridSelector = exports.useGridApiContext = exports.ToolbarButton = exports.Toolbar = exports.DataGrid = exports.AccountTreeIcon = void 0;
20
+ exports.useGridSelector = exports.useGridApiRef = 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);
@@ -163,4 +163,5 @@ Object.defineProperty(exports, "DataGrid", { enumerable: true, get: function ()
163
163
  Object.defineProperty(exports, "Toolbar", { enumerable: true, get: function () { return x_data_grid_1.Toolbar; } });
164
164
  Object.defineProperty(exports, "ToolbarButton", { enumerable: true, get: function () { return x_data_grid_1.ToolbarButton; } });
165
165
  Object.defineProperty(exports, "useGridApiContext", { enumerable: true, get: function () { return x_data_grid_1.useGridApiContext; } });
166
+ Object.defineProperty(exports, "useGridApiRef", { enumerable: true, get: function () { return x_data_grid_1.useGridApiRef; } });
166
167
  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, Toolbar, ToolbarButton, useGridApiContext, useGridSelector, type GridColDef, type GridSlots } from "@mui/x-data-grid";
138
+ export { DataGrid, Toolbar, ToolbarButton, useGridApiContext, useGridApiRef, useGridSelector, type GridColDef, type GridRowId, 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, Toolbar, ToolbarButton, useGridApiContext, useGridSelector } from "@mui/x-data-grid";
140
+ export { DataGrid, Toolbar, ToolbarButton, useGridApiContext, useGridApiRef, 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.53",
3
+ "version": "1.6.55",
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
@@ -150,7 +150,9 @@ export {
150
150
  Toolbar,
151
151
  ToolbarButton,
152
152
  useGridApiContext,
153
+ useGridApiRef,
153
154
  useGridSelector,
154
155
  type GridColDef,
156
+ type GridRowId,
155
157
  type GridSlots
156
158
  } from "@mui/x-data-grid";