@etsoo/materialui 1.6.52 → 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 +2 -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 +1 -0
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, Toolbar, ToolbarButton, useGridSelector, type GridColDef, type GridSlots } 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.useGridSelector = exports.ToolbarButton = exports.Toolbar = 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);
|
|
@@ -162,4 +162,5 @@ 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
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
|
+
Object.defineProperty(exports, "useGridApiContext", { enumerable: true, get: function () { return x_data_grid_1.useGridApiContext; } });
|
|
165
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, Toolbar, ToolbarButton, useGridSelector, type GridColDef, type GridSlots } 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, Toolbar, ToolbarButton, useGridSelector } from "@mui/x-data-grid";
|
|
140
|
+
export { DataGrid, Toolbar, ToolbarButton, useGridApiContext, useGridSelector } from "@mui/x-data-grid";
|
package/package.json
CHANGED