@mui/lab 5.0.0-alpha.111 → 5.0.0-alpha.113

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/CHANGELOG.md CHANGED
@@ -1,5 +1,135 @@
1
1
  # [Versions](https://mui.com/versions/)
2
2
 
3
+ ## 5.11.1
4
+
5
+ <!-- generated comparing v5.11.0..master -->
6
+
7
+ _Dec 20, 2022_
8
+
9
+ A big thanks to the 15 contributors who made this release possible. Here are some highlights ✨:
10
+
11
+ - 💅 @mnajdova added motion and shape design tokens to Material You package (#35384 and #35393).
12
+ - Many other 🐛 bug fixes, 📚 documentation, and ⚙️ infrastructure improvements.
13
+
14
+ ### `@mui/material@5.11.1`
15
+
16
+ - [Chip] Fix hover and focus style with CSS Variables (#35502) @DimaAbr
17
+ - [InputLabel] Enable `size` prop overrides via TypeScript module augmentation (#35460) @MickaelAustoni
18
+ - [l10n] Change Kazakh locale name to match ISO-639-1 codes (#34664) @talgautb
19
+ - [TextField] Fix error focus style (#35167) @42tte
20
+ - [core] Bring `experimental_sx` back with error code (#35528) @siriwatknp
21
+
22
+ ### `@mui/utils@5.11.1`
23
+
24
+ - [Theme] Merge components and slots props (#35477) @siriwatknp
25
+
26
+ ### `@mui/material-next@6.0.0-alpha.67`
27
+
28
+ - [Material You] Add motion design tokens (#35384) @mnajdova
29
+ - [Material You] Add shape design tokens (#35393) @mnajdova
30
+
31
+ ### `@mui/joy@5.0.0-alpha.59`
32
+
33
+ - [Tooltip] Fix arrow does not appear (#35473) @siriwatknp
34
+ - [Input] Fix autofill styles (#35056) @siriwatknp
35
+ - [ChipDelete] Add onDelete prop to ChipDelete (#35412) @sai6855
36
+
37
+ ### `@mui/base@5.0.0-alpha.111`
38
+
39
+ - [Button][base] Set active class when a subcomponent is clicked (#35410) @michaldudak
40
+ - [Popper][base] Fix Tooltip Anchor Element Setter (#35469) @sydneyjodon-wk
41
+
42
+ ### Docs
43
+
44
+ - [docs] Fixed the `Select` component `onChange` event type in the migration guide (#35509) @tzynwang
45
+ - [docs] Add missing comma to `Providing the colors directly` section (#35507) @cassidoo
46
+ - [docs] Add `CardMedia` example without `component="img"` prop (#35470) @lucasmfredmark
47
+ - [docs] Fix `unstable_sxConfig` typo (#35478) @siriwatknp
48
+ - [docs] List component introduction example default code is missing ListItemContent component (#35492) @Miigaarino
49
+ - [website] Close our first people role @oliviertassinari
50
+ - [website] Update product icons (#35413) @danilo-leal
51
+
52
+ ### Core
53
+
54
+ - [test] Terminate BrowserStack after 5 minutes (#35454) @oliviertassinari
55
+ - [test] Fix broken master branch (#35446) @oliviertassinari
56
+
57
+ All contributors of this release in alphabetical order: @42tte, @cassidoo, @danilo-leal, @DimaAbr, @lucasmfredmark, @michaldudak, @MickaelAustoni, @Miigaarino, @mnajdova, @oliviertassinari, @sai6855, @siriwatknp, @sydneyjodon-wk, @talgautb, @tzynwang
58
+
59
+ ## 5.11.0
60
+
61
+ <!-- generated comparing v5.10.17..master -->
62
+
63
+ _Dec 13, 2022_
64
+
65
+ A big thanks to the 19 contributors who made this release possible. Here are some highlights ✨:
66
+
67
+ - 🔥 @mnajdova enabled configuration of the `sx` prop in the `theme` (#35150)
68
+ - Many other 🐛 bug fixes, 📚 documentation, and ⚙️ infrastructure improvements.
69
+
70
+ ### `@mui/material@5.11.0`
71
+
72
+ - [Alert] Update icon color in all variants (#35414) @danilo-leal
73
+ - [Select] Fix `MenuProps.PopoverClasses` being overriden (#35394) @vitorfrs-dev
74
+ - [SwipeableDrawer] Fixed typescript warning "prop open undefined" (#34710) @kraftware
75
+
76
+ ### `@mui/icons-material@5.11.0`
77
+
78
+ - [icons] Restore the PhoneInTalk icons (#35409) @michaldudak
79
+
80
+ ### `@mui/system@5.11.0`
81
+
82
+ #### BREAKING CHANGES
83
+
84
+ - [system] Enable configuring the `sx` prop in the `theme` (#35150) @mnajdova
85
+
86
+ The breaking change is regarding an experimental API:
87
+
88
+ ```diff
89
+ -import { styled, experimental_sx } from '@mui/material/styles';
90
+ +import { styled } from '@mui/material/styles';
91
+
92
+ -const Component = styled('div)(experimental_sx({ p: 1 }});
93
+ +const Component = styled('div)(({ theme }) => theme.unstable_sx({ p: 1 }});
94
+ ```
95
+
96
+ ### `@mui/joy@5.0.0-alpha.58`
97
+
98
+ - [Joy] Miscellaneous fixes (#35447) @siriwatknp
99
+
100
+ ### `@mui/base@5.0.0-alpha.110`
101
+
102
+ - [PopperUnstyled] Update PopperTooltip to have correct width when closing with transition (#34714) @EduardoSCosta
103
+
104
+ ### `@mui/material-next@6.0.0-alpha.66`
105
+
106
+ - [Material You] Add ripple on the button (#35299) @mnajdova
107
+
108
+ ### Docs
109
+
110
+ - [docs] Simplify state management in Text Field demo page (#35051) @PratikDev
111
+ - [docs] Improve `Responsive App bar with Drawer` demo (#35418) @ZeeshanTamboli
112
+ - [docs] Improve line-height readability (#35387) @oliviertassinari
113
+ - [docs] Improve a bit the Composition docs (#35329) @oliviertassinari
114
+ - [docs] Refactor `ToggleButtonSizes` demo (#35375) @Armanio
115
+ - [docs] Standardize the usage of callouts in the MUI Core docs (#35361) @samuelsycamore
116
+ - [docs] Format feedback to add a link to the commented section (#35381) @alexfauquette
117
+ - [docs] Direct users from Material UI to MUI Base for duplicated components (#35293) @samuelsycamore
118
+ - [docs] Fix typo in FormControl API docs (#35449) @Spanishiwa
119
+ - [docs] Update callouts design (#35390) @danilo-leal
120
+ - [website] New wave of open roles (#35240) @mnajdova
121
+ - [website] Developer survey 2022 (#35407) @joserodolfofreitas
122
+
123
+ ### Core
124
+
125
+ - [core] Fix @mui/material package building (#35324) @timbset
126
+ - [core] Fix leaking theme color override (#35444) @oliviertassinari
127
+ - [typescript] Add null to return type of OverridableComponent (#35311) @tsollbach
128
+ - [website] Migrate X page to use CSS theme variables (#34922) @jesrodri
129
+ - [website] Migrate `/core` page to use CSS variables (#35366) @siriwatknp
130
+
131
+ All contributors of this release in alphabetical order: @alexfauquette, @Armanio, @danilo-leal, @EduardoSCosta, @flaviendelangle, @jesrodri, @joserodolfofreitas, @kraftware, @michaldudak, @mnajdova, @oliviertassinari, @PratikDev, @samuelsycamore, @siriwatknp, @Spanishiwa, @timbset, @tsollbach, @vitorfrs-dev, @ZeeshanTamboli
132
+
3
133
  ## 5.10.17
4
134
 
5
135
  <!-- generated comparing v5.10.16..master -->
@@ -45,7 +45,7 @@ export interface TimelineProps extends StandardProps<React.HTMLAttributes<HTMLUL
45
45
  *
46
46
  * - [Timeline API](https://mui.com/material-ui/api/timeline/)
47
47
  */
48
- declare const Timeline: React.ForwardRefExoticComponent<Pick<TimelineProps, "slot" | "style" | "title" | "hidden" | "className" | "classes" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "id" | "lang" | "nonce" | "placeholder" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "color" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "children" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onResize" | "onResizeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "position" | "sx"> & React.RefAttributes<HTMLUListElement>>;
48
+ declare const Timeline: React.ForwardRefExoticComponent<Pick<TimelineProps, "slot" | "style" | "title" | "hidden" | "classes" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "id" | "lang" | "nonce" | "placeholder" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "color" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "children" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onResize" | "onResizeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "position" | "sx"> & React.RefAttributes<HTMLUListElement>>;
49
49
  /**
50
50
  *
51
51
  * Demos:
package/index.js CHANGED
@@ -1,4 +1,4 @@
1
- /** @license MUI v5.0.0-alpha.111
1
+ /** @license MUI v5.0.0-alpha.113
2
2
  *
3
3
  * This source code is licensed under the MIT license found in the
4
4
  * LICENSE file in the root directory of this source tree.
package/legacy/index.js CHANGED
@@ -1,4 +1,4 @@
1
- /** @license MUI v5.0.0-alpha.111
1
+ /** @license MUI v5.0.0-alpha.113
2
2
  *
3
3
  * This source code is licensed under the MIT license found in the
4
4
  * LICENSE file in the root directory of this source tree.
package/modern/index.js CHANGED
@@ -1,4 +1,4 @@
1
- /** @license MUI v5.0.0-alpha.111
1
+ /** @license MUI v5.0.0-alpha.113
2
2
  *
3
3
  * This source code is licensed under the MIT license found in the
4
4
  * LICENSE file in the root directory of this source tree.
package/node/index.js CHANGED
@@ -1,4 +1,4 @@
1
- /** @license MUI v5.0.0-alpha.111
1
+ /** @license MUI v5.0.0-alpha.113
2
2
  *
3
3
  * This source code is licensed under the MIT license found in the
4
4
  * LICENSE file in the root directory of this source tree.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mui/lab",
3
- "version": "5.0.0-alpha.111",
3
+ "version": "5.0.0-alpha.113",
4
4
  "private": false,
5
5
  "author": "MUI Team",
6
6
  "description": "Laboratory for new MUI modules.",
@@ -47,11 +47,11 @@
47
47
  }
48
48
  },
49
49
  "dependencies": {
50
- "@babel/runtime": "^7.20.1",
51
- "@mui/base": "5.0.0-alpha.109",
52
- "@mui/system": "^5.10.17",
53
- "@mui/types": "^7.2.2",
54
- "@mui/utils": "^5.10.16",
50
+ "@babel/runtime": "^7.20.6",
51
+ "@mui/base": "5.0.0-alpha.111",
52
+ "@mui/system": "^5.11.1",
53
+ "@mui/types": "^7.2.3",
54
+ "@mui/utils": "^5.11.1",
55
55
  "clsx": "^1.2.1",
56
56
  "prop-types": "^15.8.1",
57
57
  "react-is": "^18.2.0"