@mui/lab 7.0.0-beta.8 → 7.0.0-beta.9

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 (72) hide show
  1. package/CHANGELOG.md +53 -0
  2. package/Masonry/Masonry.d.ts +2 -2
  3. package/Masonry/Masonry.js +3 -3
  4. package/README.md +3 -3
  5. package/TabContext/TabContext.d.ts +2 -2
  6. package/TabList/TabList.d.ts +3 -3
  7. package/TabPanel/TabPanel.d.ts +2 -2
  8. package/TabPanel/TabPanel.js +2 -2
  9. package/Timeline/Timeline.d.ts +2 -2
  10. package/Timeline/Timeline.js +4 -4
  11. package/TimelineConnector/TimelineConnector.d.ts +2 -2
  12. package/TimelineConnector/TimelineConnector.js +2 -2
  13. package/TimelineContent/TimelineContent.d.ts +3 -3
  14. package/TimelineContent/TimelineContent.js +2 -2
  15. package/TimelineDot/TimelineDot.d.ts +2 -2
  16. package/TimelineDot/TimelineDot.js +2 -2
  17. package/TimelineItem/TimelineItem.d.ts +2 -2
  18. package/TimelineItem/TimelineItem.js +2 -2
  19. package/TimelineOppositeContent/TimelineOppositeContent.d.ts +3 -3
  20. package/TimelineOppositeContent/TimelineOppositeContent.js +2 -2
  21. package/TimelineSeparator/TimelineSeparator.d.ts +2 -2
  22. package/TimelineSeparator/TimelineSeparator.js +2 -2
  23. package/esm/Masonry/Masonry.d.ts +2 -2
  24. package/esm/Masonry/Masonry.js +1 -1
  25. package/esm/TabContext/TabContext.d.ts +2 -2
  26. package/esm/TabList/TabList.d.ts +3 -3
  27. package/esm/TabPanel/TabPanel.d.ts +2 -2
  28. package/esm/TabPanel/TabPanel.js +1 -1
  29. package/esm/Timeline/Timeline.d.ts +2 -2
  30. package/esm/Timeline/Timeline.js +3 -3
  31. package/esm/TimelineConnector/TimelineConnector.d.ts +2 -2
  32. package/esm/TimelineConnector/TimelineConnector.js +1 -1
  33. package/esm/TimelineContent/TimelineContent.d.ts +3 -3
  34. package/esm/TimelineContent/TimelineContent.js +1 -1
  35. package/esm/TimelineDot/TimelineDot.d.ts +2 -2
  36. package/esm/TimelineDot/TimelineDot.js +1 -1
  37. package/esm/TimelineItem/TimelineItem.d.ts +2 -2
  38. package/esm/TimelineItem/TimelineItem.js +1 -1
  39. package/esm/TimelineOppositeContent/TimelineOppositeContent.d.ts +3 -3
  40. package/esm/TimelineOppositeContent/TimelineOppositeContent.js +1 -1
  41. package/esm/TimelineSeparator/TimelineSeparator.d.ts +2 -2
  42. package/esm/TimelineSeparator/TimelineSeparator.js +1 -1
  43. package/esm/index.js +1 -1
  44. package/esm/useAutocomplete/index.d.ts +1 -1
  45. package/esm/useAutocomplete/index.js +1 -1
  46. package/index.js +1 -1
  47. package/modern/Masonry/Masonry.d.ts +2 -2
  48. package/modern/Masonry/Masonry.js +1 -1
  49. package/modern/TabContext/TabContext.d.ts +2 -2
  50. package/modern/TabList/TabList.d.ts +3 -3
  51. package/modern/TabPanel/TabPanel.d.ts +2 -2
  52. package/modern/TabPanel/TabPanel.js +1 -1
  53. package/modern/Timeline/Timeline.d.ts +2 -2
  54. package/modern/Timeline/Timeline.js +3 -3
  55. package/modern/TimelineConnector/TimelineConnector.d.ts +2 -2
  56. package/modern/TimelineConnector/TimelineConnector.js +1 -1
  57. package/modern/TimelineContent/TimelineContent.d.ts +3 -3
  58. package/modern/TimelineContent/TimelineContent.js +1 -1
  59. package/modern/TimelineDot/TimelineDot.d.ts +2 -2
  60. package/modern/TimelineDot/TimelineDot.js +1 -1
  61. package/modern/TimelineItem/TimelineItem.d.ts +2 -2
  62. package/modern/TimelineItem/TimelineItem.js +1 -1
  63. package/modern/TimelineOppositeContent/TimelineOppositeContent.d.ts +3 -3
  64. package/modern/TimelineOppositeContent/TimelineOppositeContent.js +1 -1
  65. package/modern/TimelineSeparator/TimelineSeparator.d.ts +2 -2
  66. package/modern/TimelineSeparator/TimelineSeparator.js +1 -1
  67. package/modern/index.js +1 -1
  68. package/modern/useAutocomplete/index.d.ts +1 -1
  69. package/modern/useAutocomplete/index.js +1 -1
  70. package/package.json +6 -7
  71. package/useAutocomplete/index.d.ts +1 -1
  72. package/useAutocomplete/index.js +4 -3
package/CHANGELOG.md CHANGED
@@ -1,5 +1,58 @@
1
1
  # [Versions](https://mui.com/versions/)
2
2
 
3
+ ## 7.0.0
4
+
5
+ <!-- generated comparing v7.0.0-rc.0..master -->
6
+
7
+ _Mar 26, 2025_
8
+
9
+ 🎉 We're happy to announce the stable release of v7.
10
+
11
+ - Read the [blog post](https://mui.com/blog/material-ui-v7-is-here/) about the announcement.
12
+ - Check out the [v7 upgrade guide](https://mui.com/material-ui/migration/upgrade-to-v7/).
13
+
14
+ ### `@mui/material@7.0.0`
15
+
16
+ - [Autocomplete] Fix when `onHighlightChange` is called (#45438) @ZeeshanTamboli
17
+ - [Tabs] Fix modifier keys + Left/Right Arrow key from being consumed by tab navigation (#45345) @mushfiqbh
18
+ - Update minimum TypeScript support to 4.9 (#45535) @siriwatknp
19
+
20
+ ### `@mui/system@7.0.0`
21
+
22
+ - [system] Fix palette mode does not change when not using CSS vars (#45660) @siriwatknp
23
+
24
+ ### `@mui/lab@7.0.0-beta.9`
25
+
26
+ - [lab] Remove @mui/base dependency (#45602) @mnajdova
27
+
28
+ ### Docs
29
+
30
+ - [docs] Fix unnecessary redirects for v7 (#45677) @Janpot
31
+ - [docs] Fix new React project link, CRA deprecated (#45362) @oliviertassinari
32
+ - [docs] Prepare the v7 upgrade guide for stable release (#45624) @DiegoAndai
33
+ - [docs] Fix grammatical errors in support.md (#45631) @letianpailove
34
+ - [docs] Update nextjs font optimization guide (#45600) @IshfaqAhmedProg
35
+ - [docs] Deprecate Toolpad Studio (#45613) @Janpot
36
+ - [docs] Sync the mode from page to demos #45661 @siriwatknp
37
+
38
+ ### Core
39
+
40
+ - [blog] v7 stable release (#45623) @DiegoAndai
41
+ - [code-infra] Disable flaky masonry screenshot (#45678) @Janpot
42
+ - [code-infra] Migrate regression tests to vite (#44964) @Janpot
43
+ - [code-infra] Update rollup (#45666) @Janpot
44
+ - [code-infra] Support `React.ComponentType` in proptypes generation (#45664) @Janpot
45
+ - [code-infra] Ensure `translations.json` is present in all `@mui/docs` package builds (#45626) @LukasTy
46
+ - [code-infra] Improve Argos script debuggability (#45619) @Janpot
47
+ - [code-infra] Reconfigure `react-remove-properties` babel plugin (#45218) @Janpot
48
+ - [core] Prepare master for v7 stable (#45674) @DiegoAndai
49
+ - [core] Improve instructions on changing domain (#45637) @mnajdova
50
+ - [core] Deprecate `ponyfillGlobal` (#45606) @Janpot
51
+ - [docs-infra] Restructure docs theme context to CSS variables (#45386) @siriwatknp
52
+ - [styles] Remove code & docs (#45633) @mnajdova
53
+
54
+ All contributors of this release in alphabetical order: @DiegoAndai, @IshfaqAhmedProg, @Janpot, @letianpailove, @LukasTy, @mnajdova, @mushfiqbh, @oliviertassinari, @siriwatknp, @ZeeshanTamboli
55
+
3
56
  ## 7.0.0-rc.0
4
57
 
5
58
  <!-- generated comparing v7.0.0-beta.4..master -->
@@ -51,11 +51,11 @@ export interface MasonryTypeMap<AdditionalProps = {}, RootComponent extends Reac
51
51
  *
52
52
  * Demos:
53
53
  *
54
- * - [Masonry](https://next.mui.com/material-ui/react-masonry/)
54
+ * - [Masonry](https://mui.com/material-ui/react-masonry/)
55
55
  *
56
56
  * API:
57
57
  *
58
- * - [Masonry API](https://next.mui.com/material-ui/api/masonry/)
58
+ * - [Masonry API](https://mui.com/material-ui/api/masonry/)
59
59
  */
60
60
  declare const Masonry: OverridableComponent<MasonryTypeMap>;
61
61
  export type MasonryProps<RootComponent extends React.ElementType = MasonryTypeMap['defaultComponent'], AdditionalProps = {}> = OverrideProps<MasonryTypeMap<AdditionalProps, RootComponent>, RootComponent>;
@@ -1,13 +1,13 @@
1
1
  "use strict";
2
2
  'use client';
3
3
 
4
- var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault").default;
5
4
  var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard").default;
5
+ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault").default;
6
6
  Object.defineProperty(exports, "__esModule", {
7
7
  value: true
8
8
  });
9
9
  exports.parseToNumber = exports.getStyle = exports.default = void 0;
10
- var _base = require("@mui/base");
10
+ var _composeClasses = _interopRequireDefault(require("@mui/utils/composeClasses"));
11
11
  var ReactDOM = _interopRequireWildcard(require("react-dom"));
12
12
  var _styles = require("@mui/material/styles");
13
13
  var _system = require("@mui/system");
@@ -34,7 +34,7 @@ const useUtilityClasses = ownerState => {
34
34
  const slots = {
35
35
  root: ['root']
36
36
  };
37
- return (0, _base.unstable_composeClasses)(slots, _masonryClasses.getMasonryUtilityClass, classes);
37
+ return (0, _composeClasses.default)(slots, _masonryClasses.getMasonryUtilityClass, classes);
38
38
  };
39
39
  const getStyle = ({
40
40
  ownerState,
package/README.md CHANGED
@@ -9,7 +9,7 @@ Install the package in your project directory with:
9
9
  <!-- #npm-tag-reference -->
10
10
 
11
11
  ```bash
12
- npm install @mui/lab@next
12
+ npm install @mui/lab
13
13
  ```
14
14
 
15
15
  The lab has peer dependencies on the Material Design components and on the Emotion library.
@@ -18,11 +18,11 @@ If you are not already using them in your project, you can install with:
18
18
  <!-- #npm-tag-reference -->
19
19
 
20
20
  ```bash
21
- npm install @mui/material@next @emotion/react @emotion/styled
21
+ npm install @mui/material @emotion/react @emotion/styled
22
22
  ```
23
23
 
24
24
  ## Documentation
25
25
 
26
26
  <!-- #host-reference -->
27
27
 
28
- Visit [https://next.mui.com/material-ui/about-the-lab/](https://next.mui.com/material-ui/about-the-lab/) to view the full documentation.
28
+ Visit [https://mui.com/material-ui/about-the-lab/](https://mui.com/material-ui/about-the-lab/) to view the full documentation.
@@ -17,11 +17,11 @@ export interface TabContextProps {
17
17
  *
18
18
  * Demos:
19
19
  *
20
- * - [Tabs](https://next.mui.com/material-ui/react-tabs/)
20
+ * - [Tabs](https://mui.com/material-ui/react-tabs/)
21
21
  *
22
22
  * API:
23
23
  *
24
- * - [TabContext API](https://next.mui.com/material-ui/api/tab-context/)
24
+ * - [TabContext API](https://mui.com/material-ui/api/tab-context/)
25
25
  */
26
26
  export default function TabContext(props: TabContextProps): React.JSX.Element;
27
27
  export function useTabContext(): TabContextValue | null;
@@ -17,12 +17,12 @@ export interface TabListTypeMap<AdditionalProps = {}, RootComponent extends Reac
17
17
  *
18
18
  * Demos:
19
19
  *
20
- * - [Tabs](https://next.mui.com/material-ui/react-tabs/)
20
+ * - [Tabs](https://mui.com/material-ui/react-tabs/)
21
21
  *
22
22
  * API:
23
23
  *
24
- * - [TabList API](https://next.mui.com/material-ui/api/tab-list/)
25
- * - inherits [Tabs API](https://next.mui.com/material-ui/api/tabs/)
24
+ * - [TabList API](https://mui.com/material-ui/api/tab-list/)
25
+ * - inherits [Tabs API](https://mui.com/material-ui/api/tabs/)
26
26
  */
27
27
  declare const TabList: OverridableComponent<TabListTypeMap>;
28
28
  export type TabListClassKey = keyof NonNullable<TabListTypeMap['props']['classes']>;
@@ -32,10 +32,10 @@ export interface TabPanelProps extends StandardProps<React.HTMLAttributes<HTMLDi
32
32
  *
33
33
  * Demos:
34
34
  *
35
- * - [Tabs](https://next.mui.com/material-ui/react-tabs/)
35
+ * - [Tabs](https://mui.com/material-ui/react-tabs/)
36
36
  *
37
37
  * API:
38
38
  *
39
- * - [TabPanel API](https://next.mui.com/material-ui/api/tab-panel/)
39
+ * - [TabPanel API](https://mui.com/material-ui/api/tab-panel/)
40
40
  */
41
41
  export default function TabPanel(props: TabPanelProps): React.JSX.Element;
@@ -11,7 +11,7 @@ var React = _interopRequireWildcard(require("react"));
11
11
  var _propTypes = _interopRequireDefault(require("prop-types"));
12
12
  var _clsx = _interopRequireDefault(require("clsx"));
13
13
  var _styles = require("@mui/material/styles");
14
- var _base = require("@mui/base");
14
+ var _composeClasses = _interopRequireDefault(require("@mui/utils/composeClasses"));
15
15
  var _tabPanelClasses = require("./tabPanelClasses");
16
16
  var _TabContext = require("../TabContext");
17
17
  var _jsxRuntime = require("react/jsx-runtime");
@@ -23,7 +23,7 @@ const useUtilityClasses = ownerState => {
23
23
  const slots = {
24
24
  root: ['root', hidden && 'hidden']
25
25
  };
26
- return (0, _base.unstable_composeClasses)(slots, _tabPanelClasses.getTabPanelUtilityClass, classes);
26
+ return (0, _composeClasses.default)(slots, _tabPanelClasses.getTabPanelUtilityClass, classes);
27
27
  };
28
28
  const TabPanelRoot = (0, _styles.styled)('div', {
29
29
  name: 'MuiTabPanel',
@@ -4,11 +4,11 @@ import { TimelineProps } from "./Timeline.types.js";
4
4
  *
5
5
  * Demos:
6
6
  *
7
- * - [Timeline](https://next.mui.com/material-ui/react-timeline/)
7
+ * - [Timeline](https://mui.com/material-ui/react-timeline/)
8
8
  *
9
9
  * API:
10
10
  *
11
- * - [Timeline API](https://next.mui.com/material-ui/api/timeline/)
11
+ * - [Timeline API](https://mui.com/material-ui/api/timeline/)
12
12
  */
13
13
  declare const Timeline: React.ForwardRefExoticComponent<TimelineProps & React.RefAttributes<HTMLUListElement>>;
14
14
  /**
@@ -10,7 +10,7 @@ exports.default = void 0;
10
10
  var React = _interopRequireWildcard(require("react"));
11
11
  var _propTypes = _interopRequireDefault(require("prop-types"));
12
12
  var _clsx = _interopRequireDefault(require("clsx"));
13
- var _base = require("@mui/base");
13
+ var _composeClasses = _interopRequireDefault(require("@mui/utils/composeClasses"));
14
14
  var _styles = require("@mui/material/styles");
15
15
  var _TimelineContext = _interopRequireDefault(require("./TimelineContext"));
16
16
  var _timelineClasses = require("./timelineClasses");
@@ -24,7 +24,7 @@ const useUtilityClasses = ownerState => {
24
24
  const slots = {
25
25
  root: ['root', position && (0, _convertTimelinePositionToClass.default)(position)]
26
26
  };
27
- return (0, _base.unstable_composeClasses)(slots, _timelineClasses.getTimelineUtilityClass, classes);
27
+ return (0, _composeClasses.default)(slots, _timelineClasses.getTimelineUtilityClass, classes);
28
28
  };
29
29
  const TimelineRoot = (0, _styles.styled)('ul', {
30
30
  name: 'MuiTimeline',
@@ -46,11 +46,11 @@ const TimelineRoot = (0, _styles.styled)('ul', {
46
46
  *
47
47
  * Demos:
48
48
  *
49
- * - [Timeline](https://next.mui.com/material-ui/react-timeline/)
49
+ * - [Timeline](https://mui.com/material-ui/react-timeline/)
50
50
  *
51
51
  * API:
52
52
  *
53
- * - [Timeline API](https://next.mui.com/material-ui/api/timeline/)
53
+ * - [Timeline API](https://mui.com/material-ui/api/timeline/)
54
54
  */
55
55
  const Timeline = /*#__PURE__*/React.forwardRef(function Timeline(inProps, ref) {
56
56
  const props = (0, _styles.useThemeProps)({
@@ -22,10 +22,10 @@ export interface TimelineConnectorProps extends StandardProps<React.HTMLAttribut
22
22
  *
23
23
  * Demos:
24
24
  *
25
- * - [Timeline](https://next.mui.com/material-ui/react-timeline/)
25
+ * - [Timeline](https://mui.com/material-ui/react-timeline/)
26
26
  *
27
27
  * API:
28
28
  *
29
- * - [TimelineConnector API](https://next.mui.com/material-ui/api/timeline-connector/)
29
+ * - [TimelineConnector API](https://mui.com/material-ui/api/timeline-connector/)
30
30
  */
31
31
  export default function TimelineConnector(props: TimelineConnectorProps): React.JSX.Element;
@@ -10,7 +10,7 @@ exports.default = void 0;
10
10
  var React = _interopRequireWildcard(require("react"));
11
11
  var _propTypes = _interopRequireDefault(require("prop-types"));
12
12
  var _clsx = _interopRequireDefault(require("clsx"));
13
- var _base = require("@mui/base");
13
+ var _composeClasses = _interopRequireDefault(require("@mui/utils/composeClasses"));
14
14
  var _styles = require("@mui/material/styles");
15
15
  var _timelineConnectorClasses = require("./timelineConnectorClasses");
16
16
  var _jsxRuntime = require("react/jsx-runtime");
@@ -21,7 +21,7 @@ const useUtilityClasses = ownerState => {
21
21
  const slots = {
22
22
  root: ['root']
23
23
  };
24
- return (0, _base.unstable_composeClasses)(slots, _timelineConnectorClasses.getTimelineConnectorUtilityClass, classes);
24
+ return (0, _composeClasses.default)(slots, _timelineConnectorClasses.getTimelineConnectorUtilityClass, classes);
25
25
  };
26
26
  const TimelineConnectorRoot = (0, _styles.styled)('span', {
27
27
  name: 'MuiTimelineConnector',
@@ -22,11 +22,11 @@ export interface TimelineContentProps extends StandardProps<TypographyProps> {
22
22
  *
23
23
  * Demos:
24
24
  *
25
- * - [Timeline](https://next.mui.com/material-ui/react-timeline/)
25
+ * - [Timeline](https://mui.com/material-ui/react-timeline/)
26
26
  *
27
27
  * API:
28
28
  *
29
- * - [TimelineContent API](https://next.mui.com/material-ui/api/timeline-content/)
30
- * - inherits [Typography API](https://next.mui.com/material-ui/api/typography/)
29
+ * - [TimelineContent API](https://mui.com/material-ui/api/timeline-content/)
30
+ * - inherits [Typography API](https://mui.com/material-ui/api/typography/)
31
31
  */
32
32
  export default function TimelineContent(props: TimelineContentProps): React.JSX.Element;
@@ -11,7 +11,7 @@ var React = _interopRequireWildcard(require("react"));
11
11
  var _propTypes = _interopRequireDefault(require("prop-types"));
12
12
  var _clsx = _interopRequireDefault(require("clsx"));
13
13
  var _styles = require("@mui/material/styles");
14
- var _base = require("@mui/base");
14
+ var _composeClasses = _interopRequireDefault(require("@mui/utils/composeClasses"));
15
15
  var _Typography = _interopRequireDefault(require("@mui/material/Typography"));
16
16
  var _TimelineContext = _interopRequireDefault(require("../Timeline/TimelineContext"));
17
17
  var _timelineContentClasses = require("./timelineContentClasses");
@@ -25,7 +25,7 @@ const useUtilityClasses = ownerState => {
25
25
  const slots = {
26
26
  root: ['root', (0, _convertTimelinePositionToClass.default)(position)]
27
27
  };
28
- return (0, _base.unstable_composeClasses)(slots, _timelineContentClasses.getTimelineContentUtilityClass, classes);
28
+ return (0, _composeClasses.default)(slots, _timelineContentClasses.getTimelineContentUtilityClass, classes);
29
29
  };
30
30
  const TimelineContentRoot = (0, _styles.styled)(_Typography.default, {
31
31
  name: 'MuiTimelineContent',
@@ -35,10 +35,10 @@ export interface TimelineDotProps extends StandardProps<React.HTMLAttributes<HTM
35
35
  *
36
36
  * Demos:
37
37
  *
38
- * - [Timeline](https://next.mui.com/material-ui/react-timeline/)
38
+ * - [Timeline](https://mui.com/material-ui/react-timeline/)
39
39
  *
40
40
  * API:
41
41
  *
42
- * - [TimelineDot API](https://next.mui.com/material-ui/api/timeline-dot/)
42
+ * - [TimelineDot API](https://mui.com/material-ui/api/timeline-dot/)
43
43
  */
44
44
  export default function TimelineDot(props: TimelineDotProps): React.JSX.Element;
@@ -12,7 +12,7 @@ var _propTypes = _interopRequireDefault(require("prop-types"));
12
12
  var _clsx = _interopRequireDefault(require("clsx"));
13
13
  var _styles = require("@mui/material/styles");
14
14
  var _utils = require("@mui/material/utils");
15
- var _base = require("@mui/base");
15
+ var _composeClasses = _interopRequireDefault(require("@mui/utils/composeClasses"));
16
16
  var _timelineDotClasses = require("./timelineDotClasses");
17
17
  var _jsxRuntime = require("react/jsx-runtime");
18
18
  const useUtilityClasses = ownerState => {
@@ -24,7 +24,7 @@ const useUtilityClasses = ownerState => {
24
24
  const slots = {
25
25
  root: ['root', variant, color !== 'inherit' && `${variant}${(0, _utils.capitalize)(color)}`]
26
26
  };
27
- return (0, _base.unstable_composeClasses)(slots, _timelineDotClasses.getTimelineDotUtilityClass, classes);
27
+ return (0, _composeClasses.default)(slots, _timelineDotClasses.getTimelineDotUtilityClass, classes);
28
28
  };
29
29
  const TimelineDotRoot = (0, _styles.styled)('span', {
30
30
  name: 'MuiTimelineDot',
@@ -26,10 +26,10 @@ export interface TimelineItemProps extends StandardProps<React.HTMLAttributes<HT
26
26
  *
27
27
  * Demos:
28
28
  *
29
- * - [Timeline](https://next.mui.com/material-ui/react-timeline/)
29
+ * - [Timeline](https://mui.com/material-ui/react-timeline/)
30
30
  *
31
31
  * API:
32
32
  *
33
- * - [TimelineItem API](https://next.mui.com/material-ui/api/timeline-item/)
33
+ * - [TimelineItem API](https://mui.com/material-ui/api/timeline-item/)
34
34
  */
35
35
  export default function TimelineItem(props: TimelineItemProps): React.JSX.Element;
@@ -12,7 +12,7 @@ var _propTypes = _interopRequireDefault(require("prop-types"));
12
12
  var _clsx = _interopRequireDefault(require("clsx"));
13
13
  var _utils = require("@mui/material/utils");
14
14
  var _styles = require("@mui/material/styles");
15
- var _base = require("@mui/base");
15
+ var _composeClasses = _interopRequireDefault(require("@mui/utils/composeClasses"));
16
16
  var _TimelineContent = require("../TimelineContent");
17
17
  var _TimelineOppositeContent = require("../TimelineOppositeContent");
18
18
  var _TimelineContext = _interopRequireDefault(require("../Timeline/TimelineContext"));
@@ -28,7 +28,7 @@ const useUtilityClasses = ownerState => {
28
28
  const slots = {
29
29
  root: ['root', (0, _convertTimelinePositionToClass.default)(position), !hasOppositeContent && 'missingOppositeContent']
30
30
  };
31
- return (0, _base.unstable_composeClasses)(slots, _timelineItemClasses.getTimelineItemUtilityClass, classes);
31
+ return (0, _composeClasses.default)(slots, _timelineItemClasses.getTimelineItemUtilityClass, classes);
32
32
  };
33
33
  const TimelineItemRoot = (0, _styles.styled)('li', {
34
34
  name: 'MuiTimelineItem',
@@ -22,12 +22,12 @@ export interface TimelineOppositeContentProps extends StandardProps<TypographyPr
22
22
  *
23
23
  * Demos:
24
24
  *
25
- * - [Timeline](https://next.mui.com/material-ui/react-timeline/)
25
+ * - [Timeline](https://mui.com/material-ui/react-timeline/)
26
26
  *
27
27
  * API:
28
28
  *
29
- * - [TimelineOppositeContent API](https://next.mui.com/material-ui/api/timeline-opposite-content/)
30
- * - inherits [Typography API](https://next.mui.com/material-ui/api/typography/)
29
+ * - [TimelineOppositeContent API](https://mui.com/material-ui/api/timeline-opposite-content/)
30
+ * - inherits [Typography API](https://mui.com/material-ui/api/typography/)
31
31
  */
32
32
  declare const TimelineOppositeContent: ((props: TimelineOppositeContentProps) => React.JSX.Element) & {
33
33
  muiName: string;
@@ -11,7 +11,7 @@ var React = _interopRequireWildcard(require("react"));
11
11
  var _propTypes = _interopRequireDefault(require("prop-types"));
12
12
  var _clsx = _interopRequireDefault(require("clsx"));
13
13
  var _styles = require("@mui/material/styles");
14
- var _base = require("@mui/base");
14
+ var _composeClasses = _interopRequireDefault(require("@mui/utils/composeClasses"));
15
15
  var _Typography = _interopRequireDefault(require("@mui/material/Typography"));
16
16
  var _TimelineContext = _interopRequireDefault(require("../Timeline/TimelineContext"));
17
17
  var _timelineOppositeContentClasses = require("./timelineOppositeContentClasses");
@@ -25,7 +25,7 @@ const useUtilityClasses = ownerState => {
25
25
  const slots = {
26
26
  root: ['root', (0, _convertTimelinePositionToClass.default)(position)]
27
27
  };
28
- return (0, _base.unstable_composeClasses)(slots, _timelineOppositeContentClasses.getTimelineOppositeContentUtilityClass, classes);
28
+ return (0, _composeClasses.default)(slots, _timelineOppositeContentClasses.getTimelineOppositeContentUtilityClass, classes);
29
29
  };
30
30
  const TimelineOppositeContentRoot = (0, _styles.styled)(_Typography.default, {
31
31
  name: 'MuiTimelineOppositeContent',
@@ -22,10 +22,10 @@ export interface TimelineSeparatorProps extends StandardProps<React.HTMLAttribut
22
22
  *
23
23
  * Demos:
24
24
  *
25
- * - [Timeline](https://next.mui.com/material-ui/react-timeline/)
25
+ * - [Timeline](https://mui.com/material-ui/react-timeline/)
26
26
  *
27
27
  * API:
28
28
  *
29
- * - [TimelineSeparator API](https://next.mui.com/material-ui/api/timeline-separator/)
29
+ * - [TimelineSeparator API](https://mui.com/material-ui/api/timeline-separator/)
30
30
  */
31
31
  export default function TimelineSeparator(props: TimelineSeparatorProps): React.JSX.Element;
@@ -10,7 +10,7 @@ exports.default = void 0;
10
10
  var React = _interopRequireWildcard(require("react"));
11
11
  var _propTypes = _interopRequireDefault(require("prop-types"));
12
12
  var _clsx = _interopRequireDefault(require("clsx"));
13
- var _base = require("@mui/base");
13
+ var _composeClasses = _interopRequireDefault(require("@mui/utils/composeClasses"));
14
14
  var _styles = require("@mui/material/styles");
15
15
  var _timelineSeparatorClasses = require("./timelineSeparatorClasses");
16
16
  var _jsxRuntime = require("react/jsx-runtime");
@@ -21,7 +21,7 @@ const useUtilityClasses = ownerState => {
21
21
  const slots = {
22
22
  root: ['root']
23
23
  };
24
- return (0, _base.unstable_composeClasses)(slots, _timelineSeparatorClasses.getTimelineSeparatorUtilityClass, classes);
24
+ return (0, _composeClasses.default)(slots, _timelineSeparatorClasses.getTimelineSeparatorUtilityClass, classes);
25
25
  };
26
26
  const TimelineSeparatorRoot = (0, _styles.styled)('div', {
27
27
  name: 'MuiTimelineSeparator',
@@ -51,11 +51,11 @@ export interface MasonryTypeMap<AdditionalProps = {}, RootComponent extends Reac
51
51
  *
52
52
  * Demos:
53
53
  *
54
- * - [Masonry](https://next.mui.com/material-ui/react-masonry/)
54
+ * - [Masonry](https://mui.com/material-ui/react-masonry/)
55
55
  *
56
56
  * API:
57
57
  *
58
- * - [Masonry API](https://next.mui.com/material-ui/api/masonry/)
58
+ * - [Masonry API](https://mui.com/material-ui/api/masonry/)
59
59
  */
60
60
  declare const Masonry: OverridableComponent<MasonryTypeMap>;
61
61
  export type MasonryProps<RootComponent extends React.ElementType = MasonryTypeMap['defaultComponent'], AdditionalProps = {}> = OverrideProps<MasonryTypeMap<AdditionalProps, RootComponent>, RootComponent>;
@@ -1,6 +1,6 @@
1
1
  'use client';
2
2
 
3
- import { unstable_composeClasses as composeClasses } from '@mui/base';
3
+ import composeClasses from '@mui/utils/composeClasses';
4
4
  import * as ReactDOM from 'react-dom';
5
5
  import { styled, useThemeProps } from '@mui/material/styles';
6
6
  import { createUnarySpacing, getValue, handleBreakpoints, unstable_resolveBreakpointValues as resolveBreakpointValues } from '@mui/system';
@@ -17,11 +17,11 @@ export interface TabContextProps {
17
17
  *
18
18
  * Demos:
19
19
  *
20
- * - [Tabs](https://next.mui.com/material-ui/react-tabs/)
20
+ * - [Tabs](https://mui.com/material-ui/react-tabs/)
21
21
  *
22
22
  * API:
23
23
  *
24
- * - [TabContext API](https://next.mui.com/material-ui/api/tab-context/)
24
+ * - [TabContext API](https://mui.com/material-ui/api/tab-context/)
25
25
  */
26
26
  export default function TabContext(props: TabContextProps): React.JSX.Element;
27
27
  export function useTabContext(): TabContextValue | null;
@@ -17,12 +17,12 @@ export interface TabListTypeMap<AdditionalProps = {}, RootComponent extends Reac
17
17
  *
18
18
  * Demos:
19
19
  *
20
- * - [Tabs](https://next.mui.com/material-ui/react-tabs/)
20
+ * - [Tabs](https://mui.com/material-ui/react-tabs/)
21
21
  *
22
22
  * API:
23
23
  *
24
- * - [TabList API](https://next.mui.com/material-ui/api/tab-list/)
25
- * - inherits [Tabs API](https://next.mui.com/material-ui/api/tabs/)
24
+ * - [TabList API](https://mui.com/material-ui/api/tab-list/)
25
+ * - inherits [Tabs API](https://mui.com/material-ui/api/tabs/)
26
26
  */
27
27
  declare const TabList: OverridableComponent<TabListTypeMap>;
28
28
  export type TabListClassKey = keyof NonNullable<TabListTypeMap['props']['classes']>;
@@ -32,10 +32,10 @@ export interface TabPanelProps extends StandardProps<React.HTMLAttributes<HTMLDi
32
32
  *
33
33
  * Demos:
34
34
  *
35
- * - [Tabs](https://next.mui.com/material-ui/react-tabs/)
35
+ * - [Tabs](https://mui.com/material-ui/react-tabs/)
36
36
  *
37
37
  * API:
38
38
  *
39
- * - [TabPanel API](https://next.mui.com/material-ui/api/tab-panel/)
39
+ * - [TabPanel API](https://mui.com/material-ui/api/tab-panel/)
40
40
  */
41
41
  export default function TabPanel(props: TabPanelProps): React.JSX.Element;
@@ -4,7 +4,7 @@ import * as React from 'react';
4
4
  import PropTypes from 'prop-types';
5
5
  import clsx from 'clsx';
6
6
  import { styled, useThemeProps } from '@mui/material/styles';
7
- import { unstable_composeClasses as composeClasses } from '@mui/base';
7
+ import composeClasses from '@mui/utils/composeClasses';
8
8
  import { getTabPanelUtilityClass } from "./tabPanelClasses.js";
9
9
  import { getPanelId, getTabId, useTabContext } from "../TabContext/index.js";
10
10
  import { jsx as _jsx } from "react/jsx-runtime";
@@ -4,11 +4,11 @@ import { TimelineProps } from "./Timeline.types.js";
4
4
  *
5
5
  * Demos:
6
6
  *
7
- * - [Timeline](https://next.mui.com/material-ui/react-timeline/)
7
+ * - [Timeline](https://mui.com/material-ui/react-timeline/)
8
8
  *
9
9
  * API:
10
10
  *
11
- * - [Timeline API](https://next.mui.com/material-ui/api/timeline/)
11
+ * - [Timeline API](https://mui.com/material-ui/api/timeline/)
12
12
  */
13
13
  declare const Timeline: React.ForwardRefExoticComponent<TimelineProps & React.RefAttributes<HTMLUListElement>>;
14
14
  /**
@@ -3,7 +3,7 @@
3
3
  import * as React from 'react';
4
4
  import PropTypes from 'prop-types';
5
5
  import clsx from 'clsx';
6
- import { unstable_composeClasses as composeClasses } from '@mui/base';
6
+ import composeClasses from '@mui/utils/composeClasses';
7
7
  import { styled, useThemeProps } from '@mui/material/styles';
8
8
  import TimelineContext from "./TimelineContext.js";
9
9
  import { getTimelineUtilityClass } from "./timelineClasses.js";
@@ -39,11 +39,11 @@ const TimelineRoot = styled('ul', {
39
39
  *
40
40
  * Demos:
41
41
  *
42
- * - [Timeline](https://next.mui.com/material-ui/react-timeline/)
42
+ * - [Timeline](https://mui.com/material-ui/react-timeline/)
43
43
  *
44
44
  * API:
45
45
  *
46
- * - [Timeline API](https://next.mui.com/material-ui/api/timeline/)
46
+ * - [Timeline API](https://mui.com/material-ui/api/timeline/)
47
47
  */
48
48
  const Timeline = /*#__PURE__*/React.forwardRef(function Timeline(inProps, ref) {
49
49
  const props = useThemeProps({
@@ -22,10 +22,10 @@ export interface TimelineConnectorProps extends StandardProps<React.HTMLAttribut
22
22
  *
23
23
  * Demos:
24
24
  *
25
- * - [Timeline](https://next.mui.com/material-ui/react-timeline/)
25
+ * - [Timeline](https://mui.com/material-ui/react-timeline/)
26
26
  *
27
27
  * API:
28
28
  *
29
- * - [TimelineConnector API](https://next.mui.com/material-ui/api/timeline-connector/)
29
+ * - [TimelineConnector API](https://mui.com/material-ui/api/timeline-connector/)
30
30
  */
31
31
  export default function TimelineConnector(props: TimelineConnectorProps): React.JSX.Element;
@@ -3,7 +3,7 @@
3
3
  import * as React from 'react';
4
4
  import PropTypes from 'prop-types';
5
5
  import clsx from 'clsx';
6
- import { unstable_composeClasses as composeClasses } from '@mui/base';
6
+ import composeClasses from '@mui/utils/composeClasses';
7
7
  import { styled, useThemeProps } from '@mui/material/styles';
8
8
  import { getTimelineConnectorUtilityClass } from "./timelineConnectorClasses.js";
9
9
  import { jsx as _jsx } from "react/jsx-runtime";
@@ -22,11 +22,11 @@ export interface TimelineContentProps extends StandardProps<TypographyProps> {
22
22
  *
23
23
  * Demos:
24
24
  *
25
- * - [Timeline](https://next.mui.com/material-ui/react-timeline/)
25
+ * - [Timeline](https://mui.com/material-ui/react-timeline/)
26
26
  *
27
27
  * API:
28
28
  *
29
- * - [TimelineContent API](https://next.mui.com/material-ui/api/timeline-content/)
30
- * - inherits [Typography API](https://next.mui.com/material-ui/api/typography/)
29
+ * - [TimelineContent API](https://mui.com/material-ui/api/timeline-content/)
30
+ * - inherits [Typography API](https://mui.com/material-ui/api/typography/)
31
31
  */
32
32
  export default function TimelineContent(props: TimelineContentProps): React.JSX.Element;
@@ -4,7 +4,7 @@ import * as React from 'react';
4
4
  import PropTypes from 'prop-types';
5
5
  import clsx from 'clsx';
6
6
  import { styled, useThemeProps } from '@mui/material/styles';
7
- import { unstable_composeClasses as composeClasses } from '@mui/base';
7
+ import composeClasses from '@mui/utils/composeClasses';
8
8
  import Typography from '@mui/material/Typography';
9
9
  import TimelineContext from "../Timeline/TimelineContext.js";
10
10
  import { getTimelineContentUtilityClass } from "./timelineContentClasses.js";
@@ -35,10 +35,10 @@ export interface TimelineDotProps extends StandardProps<React.HTMLAttributes<HTM
35
35
  *
36
36
  * Demos:
37
37
  *
38
- * - [Timeline](https://next.mui.com/material-ui/react-timeline/)
38
+ * - [Timeline](https://mui.com/material-ui/react-timeline/)
39
39
  *
40
40
  * API:
41
41
  *
42
- * - [TimelineDot API](https://next.mui.com/material-ui/api/timeline-dot/)
42
+ * - [TimelineDot API](https://mui.com/material-ui/api/timeline-dot/)
43
43
  */
44
44
  export default function TimelineDot(props: TimelineDotProps): React.JSX.Element;
@@ -5,7 +5,7 @@ import PropTypes from 'prop-types';
5
5
  import clsx from 'clsx';
6
6
  import { styled, useThemeProps } from '@mui/material/styles';
7
7
  import { capitalize } from '@mui/material/utils';
8
- import { unstable_composeClasses as composeClasses } from '@mui/base';
8
+ import composeClasses from '@mui/utils/composeClasses';
9
9
  import { getTimelineDotUtilityClass } from "./timelineDotClasses.js";
10
10
  import { jsx as _jsx } from "react/jsx-runtime";
11
11
  const useUtilityClasses = ownerState => {
@@ -26,10 +26,10 @@ export interface TimelineItemProps extends StandardProps<React.HTMLAttributes<HT
26
26
  *
27
27
  * Demos:
28
28
  *
29
- * - [Timeline](https://next.mui.com/material-ui/react-timeline/)
29
+ * - [Timeline](https://mui.com/material-ui/react-timeline/)
30
30
  *
31
31
  * API:
32
32
  *
33
- * - [TimelineItem API](https://next.mui.com/material-ui/api/timeline-item/)
33
+ * - [TimelineItem API](https://mui.com/material-ui/api/timeline-item/)
34
34
  */
35
35
  export default function TimelineItem(props: TimelineItemProps): React.JSX.Element;
@@ -5,7 +5,7 @@ import PropTypes from 'prop-types';
5
5
  import clsx from 'clsx';
6
6
  import { isMuiElement } from '@mui/material/utils';
7
7
  import { styled, useThemeProps } from '@mui/material/styles';
8
- import { unstable_composeClasses as composeClasses } from '@mui/base';
8
+ import composeClasses from '@mui/utils/composeClasses';
9
9
  import { timelineContentClasses } from "../TimelineContent/index.js";
10
10
  import { timelineOppositeContentClasses } from "../TimelineOppositeContent/index.js";
11
11
  import TimelineContext from "../Timeline/TimelineContext.js";
@@ -22,12 +22,12 @@ export interface TimelineOppositeContentProps extends StandardProps<TypographyPr
22
22
  *
23
23
  * Demos:
24
24
  *
25
- * - [Timeline](https://next.mui.com/material-ui/react-timeline/)
25
+ * - [Timeline](https://mui.com/material-ui/react-timeline/)
26
26
  *
27
27
  * API:
28
28
  *
29
- * - [TimelineOppositeContent API](https://next.mui.com/material-ui/api/timeline-opposite-content/)
30
- * - inherits [Typography API](https://next.mui.com/material-ui/api/typography/)
29
+ * - [TimelineOppositeContent API](https://mui.com/material-ui/api/timeline-opposite-content/)
30
+ * - inherits [Typography API](https://mui.com/material-ui/api/typography/)
31
31
  */
32
32
  declare const TimelineOppositeContent: ((props: TimelineOppositeContentProps) => React.JSX.Element) & {
33
33
  muiName: string;
@@ -4,7 +4,7 @@ import * as React from 'react';
4
4
  import PropTypes from 'prop-types';
5
5
  import clsx from 'clsx';
6
6
  import { styled, useThemeProps } from '@mui/material/styles';
7
- import { unstable_composeClasses as composeClasses } from '@mui/base';
7
+ import composeClasses from '@mui/utils/composeClasses';
8
8
  import Typography from '@mui/material/Typography';
9
9
  import TimelineContext from "../Timeline/TimelineContext.js";
10
10
  import { getTimelineOppositeContentUtilityClass } from "./timelineOppositeContentClasses.js";
@@ -22,10 +22,10 @@ export interface TimelineSeparatorProps extends StandardProps<React.HTMLAttribut
22
22
  *
23
23
  * Demos:
24
24
  *
25
- * - [Timeline](https://next.mui.com/material-ui/react-timeline/)
25
+ * - [Timeline](https://mui.com/material-ui/react-timeline/)
26
26
  *
27
27
  * API:
28
28
  *
29
- * - [TimelineSeparator API](https://next.mui.com/material-ui/api/timeline-separator/)
29
+ * - [TimelineSeparator API](https://mui.com/material-ui/api/timeline-separator/)
30
30
  */
31
31
  export default function TimelineSeparator(props: TimelineSeparatorProps): React.JSX.Element;
@@ -3,7 +3,7 @@
3
3
  import * as React from 'react';
4
4
  import PropTypes from 'prop-types';
5
5
  import clsx from 'clsx';
6
- import { unstable_composeClasses as composeClasses } from '@mui/base';
6
+ import composeClasses from '@mui/utils/composeClasses';
7
7
  import { styled, useThemeProps } from '@mui/material/styles';
8
8
  import { getTimelineSeparatorUtilityClass } from "./timelineSeparatorClasses.js";
9
9
  import { jsx as _jsx } from "react/jsx-runtime";
package/esm/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @mui/lab v7.0.0-beta.8
2
+ * @mui/lab v7.0.0-beta.9
3
3
  *
4
4
  * @license MIT
5
5
  * This source code is licensed under the MIT license found in the
@@ -1 +1 @@
1
- export { useAutocomplete as default } from '@mui/base';
1
+ export { default } from '@mui/material/useAutocomplete';
@@ -1 +1 @@
1
- export { useAutocomplete as default, createFilterOptions } from '@mui/base';
1
+ export { default, createFilterOptions } from '@mui/material/useAutocomplete';
package/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @mui/lab v7.0.0-beta.8
2
+ * @mui/lab v7.0.0-beta.9
3
3
  *
4
4
  * @license MIT
5
5
  * This source code is licensed under the MIT license found in the
@@ -51,11 +51,11 @@ export interface MasonryTypeMap<AdditionalProps = {}, RootComponent extends Reac
51
51
  *
52
52
  * Demos:
53
53
  *
54
- * - [Masonry](https://next.mui.com/material-ui/react-masonry/)
54
+ * - [Masonry](https://mui.com/material-ui/react-masonry/)
55
55
  *
56
56
  * API:
57
57
  *
58
- * - [Masonry API](https://next.mui.com/material-ui/api/masonry/)
58
+ * - [Masonry API](https://mui.com/material-ui/api/masonry/)
59
59
  */
60
60
  declare const Masonry: OverridableComponent<MasonryTypeMap>;
61
61
  export type MasonryProps<RootComponent extends React.ElementType = MasonryTypeMap['defaultComponent'], AdditionalProps = {}> = OverrideProps<MasonryTypeMap<AdditionalProps, RootComponent>, RootComponent>;
@@ -1,6 +1,6 @@
1
1
  'use client';
2
2
 
3
- import { unstable_composeClasses as composeClasses } from '@mui/base';
3
+ import composeClasses from '@mui/utils/composeClasses';
4
4
  import * as ReactDOM from 'react-dom';
5
5
  import { styled, useThemeProps } from '@mui/material/styles';
6
6
  import { createUnarySpacing, getValue, handleBreakpoints, unstable_resolveBreakpointValues as resolveBreakpointValues } from '@mui/system';
@@ -17,11 +17,11 @@ export interface TabContextProps {
17
17
  *
18
18
  * Demos:
19
19
  *
20
- * - [Tabs](https://next.mui.com/material-ui/react-tabs/)
20
+ * - [Tabs](https://mui.com/material-ui/react-tabs/)
21
21
  *
22
22
  * API:
23
23
  *
24
- * - [TabContext API](https://next.mui.com/material-ui/api/tab-context/)
24
+ * - [TabContext API](https://mui.com/material-ui/api/tab-context/)
25
25
  */
26
26
  export default function TabContext(props: TabContextProps): React.JSX.Element;
27
27
  export function useTabContext(): TabContextValue | null;
@@ -17,12 +17,12 @@ export interface TabListTypeMap<AdditionalProps = {}, RootComponent extends Reac
17
17
  *
18
18
  * Demos:
19
19
  *
20
- * - [Tabs](https://next.mui.com/material-ui/react-tabs/)
20
+ * - [Tabs](https://mui.com/material-ui/react-tabs/)
21
21
  *
22
22
  * API:
23
23
  *
24
- * - [TabList API](https://next.mui.com/material-ui/api/tab-list/)
25
- * - inherits [Tabs API](https://next.mui.com/material-ui/api/tabs/)
24
+ * - [TabList API](https://mui.com/material-ui/api/tab-list/)
25
+ * - inherits [Tabs API](https://mui.com/material-ui/api/tabs/)
26
26
  */
27
27
  declare const TabList: OverridableComponent<TabListTypeMap>;
28
28
  export type TabListClassKey = keyof NonNullable<TabListTypeMap['props']['classes']>;
@@ -32,10 +32,10 @@ export interface TabPanelProps extends StandardProps<React.HTMLAttributes<HTMLDi
32
32
  *
33
33
  * Demos:
34
34
  *
35
- * - [Tabs](https://next.mui.com/material-ui/react-tabs/)
35
+ * - [Tabs](https://mui.com/material-ui/react-tabs/)
36
36
  *
37
37
  * API:
38
38
  *
39
- * - [TabPanel API](https://next.mui.com/material-ui/api/tab-panel/)
39
+ * - [TabPanel API](https://mui.com/material-ui/api/tab-panel/)
40
40
  */
41
41
  export default function TabPanel(props: TabPanelProps): React.JSX.Element;
@@ -4,7 +4,7 @@ import * as React from 'react';
4
4
  import PropTypes from 'prop-types';
5
5
  import clsx from 'clsx';
6
6
  import { styled, useThemeProps } from '@mui/material/styles';
7
- import { unstable_composeClasses as composeClasses } from '@mui/base';
7
+ import composeClasses from '@mui/utils/composeClasses';
8
8
  import { getTabPanelUtilityClass } from "./tabPanelClasses.js";
9
9
  import { getPanelId, getTabId, useTabContext } from "../TabContext/index.js";
10
10
  import { jsx as _jsx } from "react/jsx-runtime";
@@ -4,11 +4,11 @@ import { TimelineProps } from "./Timeline.types.js";
4
4
  *
5
5
  * Demos:
6
6
  *
7
- * - [Timeline](https://next.mui.com/material-ui/react-timeline/)
7
+ * - [Timeline](https://mui.com/material-ui/react-timeline/)
8
8
  *
9
9
  * API:
10
10
  *
11
- * - [Timeline API](https://next.mui.com/material-ui/api/timeline/)
11
+ * - [Timeline API](https://mui.com/material-ui/api/timeline/)
12
12
  */
13
13
  declare const Timeline: React.ForwardRefExoticComponent<TimelineProps & React.RefAttributes<HTMLUListElement>>;
14
14
  /**
@@ -3,7 +3,7 @@
3
3
  import * as React from 'react';
4
4
  import PropTypes from 'prop-types';
5
5
  import clsx from 'clsx';
6
- import { unstable_composeClasses as composeClasses } from '@mui/base';
6
+ import composeClasses from '@mui/utils/composeClasses';
7
7
  import { styled, useThemeProps } from '@mui/material/styles';
8
8
  import TimelineContext from "./TimelineContext.js";
9
9
  import { getTimelineUtilityClass } from "./timelineClasses.js";
@@ -39,11 +39,11 @@ const TimelineRoot = styled('ul', {
39
39
  *
40
40
  * Demos:
41
41
  *
42
- * - [Timeline](https://next.mui.com/material-ui/react-timeline/)
42
+ * - [Timeline](https://mui.com/material-ui/react-timeline/)
43
43
  *
44
44
  * API:
45
45
  *
46
- * - [Timeline API](https://next.mui.com/material-ui/api/timeline/)
46
+ * - [Timeline API](https://mui.com/material-ui/api/timeline/)
47
47
  */
48
48
  const Timeline = /*#__PURE__*/React.forwardRef(function Timeline(inProps, ref) {
49
49
  const props = useThemeProps({
@@ -22,10 +22,10 @@ export interface TimelineConnectorProps extends StandardProps<React.HTMLAttribut
22
22
  *
23
23
  * Demos:
24
24
  *
25
- * - [Timeline](https://next.mui.com/material-ui/react-timeline/)
25
+ * - [Timeline](https://mui.com/material-ui/react-timeline/)
26
26
  *
27
27
  * API:
28
28
  *
29
- * - [TimelineConnector API](https://next.mui.com/material-ui/api/timeline-connector/)
29
+ * - [TimelineConnector API](https://mui.com/material-ui/api/timeline-connector/)
30
30
  */
31
31
  export default function TimelineConnector(props: TimelineConnectorProps): React.JSX.Element;
@@ -3,7 +3,7 @@
3
3
  import * as React from 'react';
4
4
  import PropTypes from 'prop-types';
5
5
  import clsx from 'clsx';
6
- import { unstable_composeClasses as composeClasses } from '@mui/base';
6
+ import composeClasses from '@mui/utils/composeClasses';
7
7
  import { styled, useThemeProps } from '@mui/material/styles';
8
8
  import { getTimelineConnectorUtilityClass } from "./timelineConnectorClasses.js";
9
9
  import { jsx as _jsx } from "react/jsx-runtime";
@@ -22,11 +22,11 @@ export interface TimelineContentProps extends StandardProps<TypographyProps> {
22
22
  *
23
23
  * Demos:
24
24
  *
25
- * - [Timeline](https://next.mui.com/material-ui/react-timeline/)
25
+ * - [Timeline](https://mui.com/material-ui/react-timeline/)
26
26
  *
27
27
  * API:
28
28
  *
29
- * - [TimelineContent API](https://next.mui.com/material-ui/api/timeline-content/)
30
- * - inherits [Typography API](https://next.mui.com/material-ui/api/typography/)
29
+ * - [TimelineContent API](https://mui.com/material-ui/api/timeline-content/)
30
+ * - inherits [Typography API](https://mui.com/material-ui/api/typography/)
31
31
  */
32
32
  export default function TimelineContent(props: TimelineContentProps): React.JSX.Element;
@@ -4,7 +4,7 @@ import * as React from 'react';
4
4
  import PropTypes from 'prop-types';
5
5
  import clsx from 'clsx';
6
6
  import { styled, useThemeProps } from '@mui/material/styles';
7
- import { unstable_composeClasses as composeClasses } from '@mui/base';
7
+ import composeClasses from '@mui/utils/composeClasses';
8
8
  import Typography from '@mui/material/Typography';
9
9
  import TimelineContext from "../Timeline/TimelineContext.js";
10
10
  import { getTimelineContentUtilityClass } from "./timelineContentClasses.js";
@@ -35,10 +35,10 @@ export interface TimelineDotProps extends StandardProps<React.HTMLAttributes<HTM
35
35
  *
36
36
  * Demos:
37
37
  *
38
- * - [Timeline](https://next.mui.com/material-ui/react-timeline/)
38
+ * - [Timeline](https://mui.com/material-ui/react-timeline/)
39
39
  *
40
40
  * API:
41
41
  *
42
- * - [TimelineDot API](https://next.mui.com/material-ui/api/timeline-dot/)
42
+ * - [TimelineDot API](https://mui.com/material-ui/api/timeline-dot/)
43
43
  */
44
44
  export default function TimelineDot(props: TimelineDotProps): React.JSX.Element;
@@ -5,7 +5,7 @@ import PropTypes from 'prop-types';
5
5
  import clsx from 'clsx';
6
6
  import { styled, useThemeProps } from '@mui/material/styles';
7
7
  import { capitalize } from '@mui/material/utils';
8
- import { unstable_composeClasses as composeClasses } from '@mui/base';
8
+ import composeClasses from '@mui/utils/composeClasses';
9
9
  import { getTimelineDotUtilityClass } from "./timelineDotClasses.js";
10
10
  import { jsx as _jsx } from "react/jsx-runtime";
11
11
  const useUtilityClasses = ownerState => {
@@ -26,10 +26,10 @@ export interface TimelineItemProps extends StandardProps<React.HTMLAttributes<HT
26
26
  *
27
27
  * Demos:
28
28
  *
29
- * - [Timeline](https://next.mui.com/material-ui/react-timeline/)
29
+ * - [Timeline](https://mui.com/material-ui/react-timeline/)
30
30
  *
31
31
  * API:
32
32
  *
33
- * - [TimelineItem API](https://next.mui.com/material-ui/api/timeline-item/)
33
+ * - [TimelineItem API](https://mui.com/material-ui/api/timeline-item/)
34
34
  */
35
35
  export default function TimelineItem(props: TimelineItemProps): React.JSX.Element;
@@ -5,7 +5,7 @@ import PropTypes from 'prop-types';
5
5
  import clsx from 'clsx';
6
6
  import { isMuiElement } from '@mui/material/utils';
7
7
  import { styled, useThemeProps } from '@mui/material/styles';
8
- import { unstable_composeClasses as composeClasses } from '@mui/base';
8
+ import composeClasses from '@mui/utils/composeClasses';
9
9
  import { timelineContentClasses } from "../TimelineContent/index.js";
10
10
  import { timelineOppositeContentClasses } from "../TimelineOppositeContent/index.js";
11
11
  import TimelineContext from "../Timeline/TimelineContext.js";
@@ -22,12 +22,12 @@ export interface TimelineOppositeContentProps extends StandardProps<TypographyPr
22
22
  *
23
23
  * Demos:
24
24
  *
25
- * - [Timeline](https://next.mui.com/material-ui/react-timeline/)
25
+ * - [Timeline](https://mui.com/material-ui/react-timeline/)
26
26
  *
27
27
  * API:
28
28
  *
29
- * - [TimelineOppositeContent API](https://next.mui.com/material-ui/api/timeline-opposite-content/)
30
- * - inherits [Typography API](https://next.mui.com/material-ui/api/typography/)
29
+ * - [TimelineOppositeContent API](https://mui.com/material-ui/api/timeline-opposite-content/)
30
+ * - inherits [Typography API](https://mui.com/material-ui/api/typography/)
31
31
  */
32
32
  declare const TimelineOppositeContent: ((props: TimelineOppositeContentProps) => React.JSX.Element) & {
33
33
  muiName: string;
@@ -4,7 +4,7 @@ import * as React from 'react';
4
4
  import PropTypes from 'prop-types';
5
5
  import clsx from 'clsx';
6
6
  import { styled, useThemeProps } from '@mui/material/styles';
7
- import { unstable_composeClasses as composeClasses } from '@mui/base';
7
+ import composeClasses from '@mui/utils/composeClasses';
8
8
  import Typography from '@mui/material/Typography';
9
9
  import TimelineContext from "../Timeline/TimelineContext.js";
10
10
  import { getTimelineOppositeContentUtilityClass } from "./timelineOppositeContentClasses.js";
@@ -22,10 +22,10 @@ export interface TimelineSeparatorProps extends StandardProps<React.HTMLAttribut
22
22
  *
23
23
  * Demos:
24
24
  *
25
- * - [Timeline](https://next.mui.com/material-ui/react-timeline/)
25
+ * - [Timeline](https://mui.com/material-ui/react-timeline/)
26
26
  *
27
27
  * API:
28
28
  *
29
- * - [TimelineSeparator API](https://next.mui.com/material-ui/api/timeline-separator/)
29
+ * - [TimelineSeparator API](https://mui.com/material-ui/api/timeline-separator/)
30
30
  */
31
31
  export default function TimelineSeparator(props: TimelineSeparatorProps): React.JSX.Element;
@@ -3,7 +3,7 @@
3
3
  import * as React from 'react';
4
4
  import PropTypes from 'prop-types';
5
5
  import clsx from 'clsx';
6
- import { unstable_composeClasses as composeClasses } from '@mui/base';
6
+ import composeClasses from '@mui/utils/composeClasses';
7
7
  import { styled, useThemeProps } from '@mui/material/styles';
8
8
  import { getTimelineSeparatorUtilityClass } from "./timelineSeparatorClasses.js";
9
9
  import { jsx as _jsx } from "react/jsx-runtime";
package/modern/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @mui/lab v7.0.0-beta.8
2
+ * @mui/lab v7.0.0-beta.9
3
3
  *
4
4
  * @license MIT
5
5
  * This source code is licensed under the MIT license found in the
@@ -1 +1 @@
1
- export { useAutocomplete as default } from '@mui/base';
1
+ export { default } from '@mui/material/useAutocomplete';
@@ -1 +1 @@
1
- export { useAutocomplete as default, createFilterOptions } from '@mui/base';
1
+ export { default, createFilterOptions } from '@mui/material/useAutocomplete';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mui/lab",
3
- "version": "7.0.0-beta.8",
3
+ "version": "7.0.0-beta.9",
4
4
  "private": false,
5
5
  "author": "MUI Team",
6
6
  "description": "Laboratory for new MUI modules.",
@@ -31,10 +31,9 @@
31
31
  "@babel/runtime": "^7.26.10",
32
32
  "clsx": "^2.1.1",
33
33
  "prop-types": "^15.8.1",
34
- "@mui/utils": "7.0.0-rc.0",
35
- "@mui/base": "7.0.0-beta.4",
36
- "@mui/types": "^7.3.1",
37
- "@mui/system": "7.0.0-rc.0"
34
+ "@mui/system": "^7.0.0",
35
+ "@mui/types": "^7.4.0",
36
+ "@mui/utils": "^7.0.0"
38
37
  },
39
38
  "peerDependencies": {
40
39
  "@emotion/react": "^11.5.0",
@@ -42,8 +41,8 @@
42
41
  "@types/react": "^17.0.0 || ^18.0.0 || ^19.0.0",
43
42
  "react": "^17.0.0 || ^18.0.0 || ^19.0.0",
44
43
  "react-dom": "^17.0.0 || ^18.0.0 || ^19.0.0",
45
- "@mui/material-pigment-css": "^7.0.0-rc.0",
46
- "@mui/material": "7.0.0-rc.0"
44
+ "@mui/material": "^7.0.0",
45
+ "@mui/material-pigment-css": "^7.0.0"
47
46
  },
48
47
  "peerDependenciesMeta": {
49
48
  "@types/react": {
@@ -1 +1 @@
1
- export { useAutocomplete as default } from '@mui/base';
1
+ export { default } from '@mui/material/useAutocomplete';
@@ -1,18 +1,19 @@
1
1
  "use strict";
2
2
 
3
+ var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard").default;
3
4
  Object.defineProperty(exports, "__esModule", {
4
5
  value: true
5
6
  });
6
7
  Object.defineProperty(exports, "createFilterOptions", {
7
8
  enumerable: true,
8
9
  get: function () {
9
- return _base.createFilterOptions;
10
+ return _useAutocomplete.createFilterOptions;
10
11
  }
11
12
  });
12
13
  Object.defineProperty(exports, "default", {
13
14
  enumerable: true,
14
15
  get: function () {
15
- return _base.useAutocomplete;
16
+ return _useAutocomplete.default;
16
17
  }
17
18
  });
18
- var _base = require("@mui/base");
19
+ var _useAutocomplete = _interopRequireWildcard(require("@mui/material/useAutocomplete"));