@mui/x-data-grid-premium 8.0.0-alpha.0 → 8.0.0-alpha.1

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.
Files changed (50) hide show
  1. package/CHANGELOG.md +429 -5
  2. package/README.md +2 -2
  3. package/components/index.d.ts +1 -0
  4. package/components/index.js +12 -0
  5. package/components/promptControl/GridToolbarPromptControl.d.ts +26 -0
  6. package/components/promptControl/GridToolbarPromptControl.js +209 -0
  7. package/components/promptControl/RecordButton.d.ts +16 -0
  8. package/components/promptControl/RecordButton.js +119 -0
  9. package/components/promptControl/index.d.ts +1 -0
  10. package/components/promptControl/index.js +12 -0
  11. package/esm/components/index.js +1 -0
  12. package/esm/components/promptControl/GridToolbarPromptControl.js +202 -0
  13. package/esm/components/promptControl/RecordButton.js +111 -0
  14. package/esm/components/promptControl/index.js +1 -0
  15. package/esm/hooks/features/index.js +2 -1
  16. package/esm/hooks/features/promptControl/api.js +22 -0
  17. package/esm/hooks/features/promptControl/index.js +1 -0
  18. package/esm/hooks/features/promptControl/types.js +1 -0
  19. package/esm/material/icons.js +7 -1
  20. package/esm/material/index.js +4 -2
  21. package/esm/utils/releaseInfo.js +1 -1
  22. package/hooks/features/aggregation/wrapColumnWithAggregation.d.ts +1 -0
  23. package/hooks/features/index.d.ts +1 -0
  24. package/hooks/features/index.js +11 -0
  25. package/hooks/features/promptControl/api.d.ts +2 -0
  26. package/hooks/features/promptControl/api.js +28 -0
  27. package/hooks/features/promptControl/index.d.ts +2 -0
  28. package/hooks/features/promptControl/index.js +12 -0
  29. package/hooks/features/promptControl/types.d.ts +25 -0
  30. package/hooks/features/promptControl/types.js +5 -0
  31. package/index.js +1 -1
  32. package/material/icons.d.ts +6 -0
  33. package/material/icons.js +8 -2
  34. package/material/index.d.ts +2 -0
  35. package/material/index.js +3 -1
  36. package/models/gridPremiumIconSlotsComponent.d.ts +10 -0
  37. package/modern/components/index.js +1 -0
  38. package/modern/components/promptControl/GridToolbarPromptControl.js +202 -0
  39. package/modern/components/promptControl/RecordButton.js +111 -0
  40. package/modern/components/promptControl/index.js +1 -0
  41. package/modern/hooks/features/index.js +2 -1
  42. package/modern/hooks/features/promptControl/api.js +22 -0
  43. package/modern/hooks/features/promptControl/index.js +1 -0
  44. package/modern/hooks/features/promptControl/types.js +1 -0
  45. package/modern/index.js +1 -1
  46. package/modern/material/icons.js +7 -1
  47. package/modern/material/index.js +4 -2
  48. package/modern/utils/releaseInfo.js +1 -1
  49. package/package.json +7 -7
  50. package/utils/releaseInfo.js +1 -1
@@ -1,9 +1,11 @@
1
1
  import _extends from "@babel/runtime/helpers/esm/extends";
2
- import { GridWorkspacesIcon, GridGroupWorkIcon, GridFunctionsIcon } from "./icons.js";
2
+ import { GridWorkspacesIcon, GridGroupWorkIcon, GridFunctionsIcon, GridSendPromptIcon, GridRecordPromptIcon } from "./icons.js";
3
3
  const iconsSlots = {
4
4
  columnMenuUngroupIcon: GridWorkspacesIcon,
5
5
  columnMenuGroupIcon: GridGroupWorkIcon,
6
- columnMenuAggregationIcon: GridFunctionsIcon
6
+ columnMenuAggregationIcon: GridFunctionsIcon,
7
+ toolbarPromptSendIcon: GridSendPromptIcon,
8
+ toolbarPromptRecordIcon: GridRecordPromptIcon
7
9
  };
8
10
  const materialSlots = _extends({}, iconsSlots);
9
11
  export default materialSlots;
@@ -1,6 +1,6 @@
1
1
  import { ponyfillGlobal } from '@mui/utils';
2
2
  export const getReleaseInfo = () => {
3
- const releaseInfo = "MTczMTUzODgwMDAwMA==";
3
+ const releaseInfo = "MTczMjIzMDAwMDAwMA==";
4
4
  if (process.env.NODE_ENV !== 'production') {
5
5
  // A simple hack to set the value in the test environment (has no build step).
6
6
  // eslint-disable-next-line no-useless-concat
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mui/x-data-grid-premium",
3
- "version": "8.0.0-alpha.0",
3
+ "version": "8.0.0-alpha.1",
4
4
  "description": "The Premium plan edition of the Data Grid Components (MUI X).",
5
5
  "author": "MUI Team",
6
6
  "main": "./index.js",
@@ -40,18 +40,18 @@
40
40
  "exceljs": "^4.4.0",
41
41
  "prop-types": "^15.8.1",
42
42
  "reselect": "^5.1.1",
43
- "@mui/x-data-grid": "8.0.0-alpha.0",
44
- "@mui/x-data-grid-pro": "8.0.0-alpha.0",
45
- "@mui/x-internals": "8.0.0-alpha.0",
46
- "@mui/x-license": "8.0.0-alpha.0"
43
+ "@mui/x-internals": "8.0.0-alpha.1",
44
+ "@mui/x-data-grid": "8.0.0-alpha.1",
45
+ "@mui/x-license": "8.0.0-alpha.1",
46
+ "@mui/x-data-grid-pro": "8.0.0-alpha.1"
47
47
  },
48
48
  "peerDependencies": {
49
49
  "@emotion/react": "^11.9.0",
50
50
  "@emotion/styled": "^11.8.1",
51
51
  "@mui/material": "^5.15.14 || ^6.0.0",
52
52
  "@mui/system": "^5.15.14 || ^6.0.0",
53
- "react": "^17.0.0 || ^18.0.0",
54
- "react-dom": "^17.0.0 || ^18.0.0"
53
+ "react": "^17.0.0 || ^18.0.0 || ^19.0.0",
54
+ "react-dom": "^17.0.0 || ^18.0.0 || ^19.0.0"
55
55
  },
56
56
  "peerDependenciesMeta": {
57
57
  "@emotion/react": {
@@ -6,7 +6,7 @@ Object.defineProperty(exports, "__esModule", {
6
6
  exports.getReleaseInfo = void 0;
7
7
  var _utils = require("@mui/utils");
8
8
  const getReleaseInfo = () => {
9
- const releaseInfo = "MTczMTUzODgwMDAwMA==";
9
+ const releaseInfo = "MTczMjIzMDAwMDAwMA==";
10
10
  if (process.env.NODE_ENV !== 'production') {
11
11
  // A simple hack to set the value in the test environment (has no build step).
12
12
  // eslint-disable-next-line no-useless-concat