@mui/material 6.0.0-alpha.1 → 6.0.0-alpha.2

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,44 @@
1
1
  # [Versions](https://mui.com/versions/)
2
2
 
3
+ ## v6.0.0-alpha.2
4
+
5
+ <!-- generated comparing v6.0.0-alpha.1..next -->
6
+
7
+ _Apr 9, 2024_
8
+
9
+ A big thanks to the 5 contributors who made this release possible.
10
+ This release was mostly about 🐛 bug fixes and 📚 documentation improvements.
11
+
12
+ ### `@mui/material@6.0.0-alpha.2`
13
+
14
+ - &#8203;<!-- 03 -->[typescript][Select] Fix `muiName` property TypeScript error (#41726) @EyaOuenniche
15
+ - &#8203;<!-- 04 -->[l10n] Fix typo in is-IS locale (#41810) @magnimarels
16
+
17
+ ### `@pigment-css/react@0.0.6`
18
+
19
+ - &#8203;<!-- 12 -->[core] Remove `muiName` during eval phase (#41811) @brijeshb42
20
+
21
+ ### `@pigment-css/nextjs-plugin@0.0.6`
22
+
23
+ - &#8203;<!-- 02 -->[nextjs] Handle file references passed through imports (#41817) @brijeshb42
24
+ - &#8203;<!-- 01 -->[nextjs] Allow usage of url() CSS function (#41758) @brijeshb42
25
+
26
+ ### Docs
27
+
28
+ - &#8203;<!-- 11 -->[docs] Fix 301 links @oliviertassinari
29
+ - &#8203;<!-- 06 -->[pigment-css][docs] Fix README typo (#41808) @aarongarciah
30
+ - &#8203;<!-- 05 -->[pigment-css][docs] Fix output on dynamic styles example (#41805) @aarongarciah
31
+ - &#8203;<!-- 07 -->[material-ui][docs] Fix Material 3 message typo (#41821) @aarongarciah
32
+ - &#8203;<!-- 08 -->[material-ui][docs] Add stray design tweaks to free templates (#41696) @zanivan
33
+
34
+ ### Core
35
+
36
+ - &#8203;<!-- 13 -->[core] Remove unused files (#41818) @mnajdova
37
+ - &#8203;<!-- 10 -->[docs-infra] Fix analytics about inline ads (#41474) (#41819) @alexfauquette
38
+ - &#8203;<!-- 08 -->[docs-infra] Fix drawer performances (#41807) @alexfauquette
39
+
40
+ All contributors of this release in alphabetical order: @aarongarciah, @alexfauquette, @brijeshb42, @EyaOuenniche, @oliviertassinari
41
+
3
42
  ## v6.0.0-alpha.1
4
43
 
5
44
  <!-- generated comparing v6.0.0-alpha.0..next -->
@@ -8128,7 +8167,7 @@ A big thanks to the 25 contributors who made this release possible. Here are som
8128
8167
 
8129
8168
  <a href="https://mui.com/components/tables/#unstyled-table"><img width="800" alt="unstyled table" src="https://user-images.githubusercontent.com/4512430/144862194-584356ef-7d9d-462c-a631-186a7e716193.png"></a>
8130
8169
 
8131
- You can follow our progress with unstyled components at https://github.com/mui/material-ui/issues/27170.
8170
+ You can follow our progress with unstyled components at https://github.com/mui/base-ui/issues/10.
8132
8171
 
8133
8172
  - 🎉 We have added an example of how to use MUI with [Remix](https://remix.run/) (#29952) @mnajdova
8134
8173
 
@@ -9598,7 +9637,7 @@ A big thanks to the 17 contributors who made this release possible. Here are som
9598
9637
 
9599
9638
  <a href="https://mui.com/components/switches/#unstyled"><img width="832" alt="switch" src="https://user-images.githubusercontent.com/3165635/125192249-236f8a80-e247-11eb-9df9-17d476379a32.png"></a>
9600
9639
 
9601
- You can follow our progress at https://github.com/mui/material-ui/issues/27170.
9640
+ You can follow our progress at https://github.com/mui/base-ui/issues/10.
9602
9641
 
9603
9642
  - 💄 We have updated the default `info` `success` `warning` color to be more accessible (#26817) @siriwatknp.
9604
9643
  You can find the new [default values](https://mui.com/material-ui/customization/palette/#default-values) in the documentation.
@@ -151,7 +151,8 @@ export interface BaseSelectProps<Value = unknown>
151
151
  variant?: SelectVariants;
152
152
  }
153
153
 
154
- export interface FilledSelectProps extends Omit<FilledInputProps, 'value' | 'onChange'> {
154
+ export interface FilledSelectProps
155
+ extends Omit<FilledInputProps, 'value' | 'onChange' | 'id' | 'classes' | 'inputProps'> {
155
156
  /**
156
157
  * The variant to use.
157
158
  * @default 'outlined'
@@ -159,7 +160,8 @@ export interface FilledSelectProps extends Omit<FilledInputProps, 'value' | 'onC
159
160
  variant: 'filled';
160
161
  }
161
162
 
162
- export interface StandardSelectProps extends Omit<InputProps, 'value' | 'onChange'> {
163
+ export interface StandardSelectProps
164
+ extends Omit<InputProps, 'value' | 'onChange' | 'id' | 'classes' | 'inputProps'> {
163
165
  /**
164
166
  * The variant to use.
165
167
  * @default 'outlined'
@@ -167,7 +169,8 @@ export interface StandardSelectProps extends Omit<InputProps, 'value' | 'onChang
167
169
  variant: 'standard';
168
170
  }
169
171
 
170
- export interface OutlinedSelectProps extends Omit<OutlinedInputProps, 'value' | 'onChange'> {
172
+ export interface OutlinedSelectProps
173
+ extends Omit<OutlinedInputProps, 'value' | 'onChange' | 'id' | 'classes' | 'inputProps'> {
171
174
  /**
172
175
  * The variant to use.
173
176
  * @default 'outlined'
@@ -193,8 +196,8 @@ export type SelectProps<Value = unknown> =
193
196
  * - [Select API](https://mui.com/material-ui/api/select/)
194
197
  * - inherits [OutlinedInput API](https://mui.com/material-ui/api/outlined-input/)
195
198
  */
196
- export default function Select<Value = unknown>(
197
- props: SelectProps<Value>,
198
- ): JSX.Element & {
199
+ declare const Select: (<Value = unknown>(props: SelectProps<Value>) => JSX.Element) & {
199
200
  muiName: string;
200
201
  };
202
+
203
+ export default Select;
package/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @mui/material v6.0.0-alpha.1
2
+ * @mui/material v6.0.0-alpha.2
3
3
  *
4
4
  * @license MIT
5
5
  * This source code is licensed under the MIT license found in the
package/legacy/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @mui/material v6.0.0-alpha.1
2
+ * @mui/material v6.0.0-alpha.2
3
3
  *
4
4
  * @license MIT
5
5
  * This source code is licensed under the MIT license found in the
@@ -1922,7 +1922,7 @@ export var isIS = {
1922
1922
  var from = _ref19.from,
1923
1923
  to = _ref19.to,
1924
1924
  count = _ref19.count;
1925
- return "".concat(from, "\u2013").concat(to, " af ").concat(count !== -1 ? count : "fleiri enn ".concat(to));
1925
+ return "".concat(from, "\u2013").concat(to, " af ").concat(count !== -1 ? count : "fleiri en ".concat(to));
1926
1926
  }
1927
1927
  }
1928
1928
  },
package/locale/index.js CHANGED
@@ -1864,7 +1864,7 @@ export const isIS = {
1864
1864
  from,
1865
1865
  to,
1866
1866
  count
1867
- }) => `${from}–${to} af ${count !== -1 ? count : `fleiri enn ${to}`}`
1867
+ }) => `${from}–${to} af ${count !== -1 ? count : `fleiri en ${to}`}`
1868
1868
  }
1869
1869
  },
1870
1870
  MuiRating: {
package/modern/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @mui/material v6.0.0-alpha.1
2
+ * @mui/material v6.0.0-alpha.2
3
3
  *
4
4
  * @license MIT
5
5
  * This source code is licensed under the MIT license found in the
@@ -1864,7 +1864,7 @@ export const isIS = {
1864
1864
  from,
1865
1865
  to,
1866
1866
  count
1867
- }) => `${from}–${to} af ${count !== -1 ? count : `fleiri enn ${to}`}`
1867
+ }) => `${from}–${to} af ${count !== -1 ? count : `fleiri en ${to}`}`
1868
1868
  }
1869
1869
  },
1870
1870
  MuiRating: {
package/node/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @mui/material v6.0.0-alpha.1
2
+ * @mui/material v6.0.0-alpha.2
3
3
  *
4
4
  * @license MIT
5
5
  * This source code is licensed under the MIT license found in the
@@ -1870,7 +1870,7 @@ const isIS = exports.isIS = {
1870
1870
  from,
1871
1871
  to,
1872
1872
  count
1873
- }) => `${from}–${to} af ${count !== -1 ? count : `fleiri enn ${to}`}`
1873
+ }) => `${from}–${to} af ${count !== -1 ? count : `fleiri en ${to}`}`
1874
1874
  }
1875
1875
  },
1876
1876
  MuiRating: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mui/material",
3
- "version": "6.0.0-alpha.1",
3
+ "version": "6.0.0-alpha.2",
4
4
  "private": false,
5
5
  "author": "MUI Team",
6
6
  "description": "Material UI is an open-source React component library that implements Google's Material Design. It's comprehensive and can be used in production out of the box.",
@@ -34,11 +34,11 @@
34
34
  "prop-types": "^15.8.1",
35
35
  "react-is": "^18.2.0",
36
36
  "react-transition-group": "^4.4.5",
37
- "@mui/base": "5.0.0-beta.42",
38
- "@mui/core-downloads-tracker": "^6.0.0-alpha.1",
39
- "@mui/system": "^6.0.0-alpha.1",
37
+ "@mui/core-downloads-tracker": "^6.0.0-alpha.2",
38
+ "@mui/types": "^7.2.14",
40
39
  "@mui/utils": "^6.0.0-alpha.1",
41
- "@mui/types": "^7.2.14"
40
+ "@mui/system": "^6.0.0-alpha.1",
41
+ "@mui/base": "5.0.0-beta.42"
42
42
  },
43
43
  "peerDependencies": {
44
44
  "@emotion/react": "^11.5.0",
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @mui/material v6.0.0-alpha.1
2
+ * @mui/material v6.0.0-alpha.2
3
3
  *
4
4
  * @license MIT
5
5
  * This source code is licensed under the MIT license found in the
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @mui/material v6.0.0-alpha.1
2
+ * @mui/material v6.0.0-alpha.2
3
3
  *
4
4
  * @license MIT
5
5
  * This source code is licensed under the MIT license found in the