@mui/docs 7.3.5 → 7.3.7
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/Ad/Ad.js +1 -1
- package/Ad/ad.styles.d.ts +464 -281
- package/CHANGELOG.md +144 -1
- package/ComponentLinkHeader/ComponentLinkHeader.js +1 -2
- package/esm/Ad/Ad.js +1 -1
- package/esm/Ad/ad.styles.d.ts +464 -281
- package/esm/ComponentLinkHeader/ComponentLinkHeader.js +1 -2
- package/esm/nextFonts/fonts/GeneralSans-Bold.ttf +0 -0
- package/esm/nextFonts/fonts/GeneralSans-Bold.woff2 +0 -0
- package/esm/nextFonts/fonts/GeneralSans-Medium.ttf +0 -0
- package/esm/nextFonts/fonts/GeneralSans-Medium.woff2 +0 -0
- package/esm/nextFonts/fonts/GeneralSans-Regular.ttf +0 -0
- package/esm/nextFonts/fonts/GeneralSans-Regular.woff2 +0 -0
- package/esm/nextFonts/fonts/GeneralSans-Semibold-subset.woff2 +0 -0
- package/esm/nextFonts/fonts/GeneralSans-Semibold.ttf +0 -0
- package/esm/nextFonts/fonts/GeneralSans-Semibold.woff2 +0 -0
- package/esm/nextFonts/fonts/IBMPlexSans-Bold.ttf +0 -0
- package/esm/nextFonts/fonts/IBMPlexSans-Bold.woff +0 -0
- package/esm/nextFonts/fonts/IBMPlexSans-Bold.woff2 +0 -0
- package/esm/nextFonts/fonts/IBMPlexSans-Medium.ttf +0 -0
- package/esm/nextFonts/fonts/IBMPlexSans-Medium.woff +0 -0
- package/esm/nextFonts/fonts/IBMPlexSans-Medium.woff2 +0 -0
- package/esm/nextFonts/fonts/IBMPlexSans-Regular-subset.woff2 +0 -0
- package/esm/nextFonts/fonts/IBMPlexSans-Regular.ttf +0 -0
- package/esm/nextFonts/fonts/IBMPlexSans-Regular.woff +0 -0
- package/esm/nextFonts/fonts/IBMPlexSans-Regular.woff2 +0 -0
- package/esm/nextFonts/fonts/IBMPlexSans-SemiBold.ttf +0 -0
- package/esm/nextFonts/fonts/IBMPlexSans-SemiBold.woff +0 -0
- package/esm/nextFonts/fonts/IBMPlexSans-SemiBold.woff2 +0 -0
- package/esm/nextFonts/index.d.ts +6 -0
- package/esm/nextFonts/index.js +59 -0
- package/nextFonts/fonts/GeneralSans-Bold.ttf +0 -0
- package/nextFonts/fonts/GeneralSans-Bold.woff2 +0 -0
- package/nextFonts/fonts/GeneralSans-Medium.ttf +0 -0
- package/nextFonts/fonts/GeneralSans-Medium.woff2 +0 -0
- package/nextFonts/fonts/GeneralSans-Regular.ttf +0 -0
- package/nextFonts/fonts/GeneralSans-Regular.woff2 +0 -0
- package/nextFonts/fonts/GeneralSans-Semibold-subset.woff2 +0 -0
- package/nextFonts/fonts/GeneralSans-Semibold.ttf +0 -0
- package/nextFonts/fonts/GeneralSans-Semibold.woff2 +0 -0
- package/nextFonts/fonts/IBMPlexSans-Bold.ttf +0 -0
- package/nextFonts/fonts/IBMPlexSans-Bold.woff +0 -0
- package/nextFonts/fonts/IBMPlexSans-Bold.woff2 +0 -0
- package/nextFonts/fonts/IBMPlexSans-Medium.ttf +0 -0
- package/nextFonts/fonts/IBMPlexSans-Medium.woff +0 -0
- package/nextFonts/fonts/IBMPlexSans-Medium.woff2 +0 -0
- package/nextFonts/fonts/IBMPlexSans-Regular-subset.woff2 +0 -0
- package/nextFonts/fonts/IBMPlexSans-Regular.ttf +0 -0
- package/nextFonts/fonts/IBMPlexSans-Regular.woff +0 -0
- package/nextFonts/fonts/IBMPlexSans-Regular.woff2 +0 -0
- package/nextFonts/fonts/IBMPlexSans-SemiBold.ttf +0 -0
- package/nextFonts/fonts/IBMPlexSans-SemiBold.woff +0 -0
- package/nextFonts/fonts/IBMPlexSans-SemiBold.woff2 +0 -0
- package/nextFonts/index.d.ts +6 -0
- package/nextFonts/index.js +66 -0
- package/package.json +2 -2
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
export declare const inter: import("next/dist/compiled/@next/font").NextFont;
|
|
2
|
+
export declare const roboto: import("next/dist/compiled/@next/font").NextFont;
|
|
3
|
+
export declare const generalSans: import("next/dist/compiled/@next/font").NextFont;
|
|
4
|
+
export declare const ibmPlexSans: import("next/dist/compiled/@next/font").NextFont;
|
|
5
|
+
export declare const fonts: import("next/dist/compiled/@next/font").NextFont[];
|
|
6
|
+
export declare const fontClasses: string;
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
import { Inter, Roboto } from 'next/font/google';
|
|
2
|
+
import localFont from 'next/font/local';
|
|
3
|
+
export const inter = Inter({
|
|
4
|
+
weight: ['300', '400', '500', '600', '700'],
|
|
5
|
+
subsets: ['latin']
|
|
6
|
+
});
|
|
7
|
+
export const roboto = Roboto({
|
|
8
|
+
weight: ['300', '400', '500', '700'],
|
|
9
|
+
style: ['normal', 'italic'],
|
|
10
|
+
subsets: ['latin']
|
|
11
|
+
});
|
|
12
|
+
export const generalSans = localFont({
|
|
13
|
+
declarations: [{
|
|
14
|
+
prop: 'font-family',
|
|
15
|
+
value: 'General Sans'
|
|
16
|
+
}],
|
|
17
|
+
src: [{
|
|
18
|
+
path: './fonts/GeneralSans-Regular.woff2',
|
|
19
|
+
weight: '400',
|
|
20
|
+
style: 'normal'
|
|
21
|
+
}, {
|
|
22
|
+
path: './fonts/GeneralSans-Medium.woff2',
|
|
23
|
+
weight: '500',
|
|
24
|
+
style: 'normal'
|
|
25
|
+
}, {
|
|
26
|
+
path: './fonts/GeneralSans-Semibold.woff2',
|
|
27
|
+
weight: '600',
|
|
28
|
+
style: 'normal'
|
|
29
|
+
}, {
|
|
30
|
+
path: './fonts/GeneralSans-Bold.woff2',
|
|
31
|
+
weight: '700',
|
|
32
|
+
style: 'normal'
|
|
33
|
+
}]
|
|
34
|
+
});
|
|
35
|
+
export const ibmPlexSans = localFont({
|
|
36
|
+
declarations: [{
|
|
37
|
+
prop: 'font-family',
|
|
38
|
+
value: 'IBM Plex Sans'
|
|
39
|
+
}],
|
|
40
|
+
src: [{
|
|
41
|
+
path: './fonts/IBMPlexSans-Regular.woff2',
|
|
42
|
+
weight: '400',
|
|
43
|
+
style: 'normal'
|
|
44
|
+
}, {
|
|
45
|
+
path: './fonts/IBMPlexSans-Medium.woff2',
|
|
46
|
+
weight: '500',
|
|
47
|
+
style: 'normal'
|
|
48
|
+
}, {
|
|
49
|
+
path: './fonts/IBMPlexSans-SemiBold.woff2',
|
|
50
|
+
weight: '600',
|
|
51
|
+
style: 'normal'
|
|
52
|
+
}, {
|
|
53
|
+
path: './fonts/IBMPlexSans-Bold.woff2',
|
|
54
|
+
weight: '700',
|
|
55
|
+
style: 'normal'
|
|
56
|
+
}]
|
|
57
|
+
});
|
|
58
|
+
export const fonts = [inter, roboto, generalSans, ibmPlexSans];
|
|
59
|
+
export const fontClasses = fonts.map(font => font.className).join(' ');
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
export declare const inter: import("next/dist/compiled/@next/font").NextFont;
|
|
2
|
+
export declare const roboto: import("next/dist/compiled/@next/font").NextFont;
|
|
3
|
+
export declare const generalSans: import("next/dist/compiled/@next/font").NextFont;
|
|
4
|
+
export declare const ibmPlexSans: import("next/dist/compiled/@next/font").NextFont;
|
|
5
|
+
export declare const fonts: import("next/dist/compiled/@next/font").NextFont[];
|
|
6
|
+
export declare const fontClasses: string;
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault").default;
|
|
4
|
+
Object.defineProperty(exports, "__esModule", {
|
|
5
|
+
value: true
|
|
6
|
+
});
|
|
7
|
+
exports.roboto = exports.inter = exports.ibmPlexSans = exports.generalSans = exports.fonts = exports.fontClasses = void 0;
|
|
8
|
+
var _google = require("next/font/google");
|
|
9
|
+
var _local = _interopRequireDefault(require("next/font/local"));
|
|
10
|
+
const inter = exports.inter = (0, _google.Inter)({
|
|
11
|
+
weight: ['300', '400', '500', '600', '700'],
|
|
12
|
+
subsets: ['latin']
|
|
13
|
+
});
|
|
14
|
+
const roboto = exports.roboto = (0, _google.Roboto)({
|
|
15
|
+
weight: ['300', '400', '500', '700'],
|
|
16
|
+
style: ['normal', 'italic'],
|
|
17
|
+
subsets: ['latin']
|
|
18
|
+
});
|
|
19
|
+
const generalSans = exports.generalSans = (0, _local.default)({
|
|
20
|
+
declarations: [{
|
|
21
|
+
prop: 'font-family',
|
|
22
|
+
value: 'General Sans'
|
|
23
|
+
}],
|
|
24
|
+
src: [{
|
|
25
|
+
path: './fonts/GeneralSans-Regular.woff2',
|
|
26
|
+
weight: '400',
|
|
27
|
+
style: 'normal'
|
|
28
|
+
}, {
|
|
29
|
+
path: './fonts/GeneralSans-Medium.woff2',
|
|
30
|
+
weight: '500',
|
|
31
|
+
style: 'normal'
|
|
32
|
+
}, {
|
|
33
|
+
path: './fonts/GeneralSans-Semibold.woff2',
|
|
34
|
+
weight: '600',
|
|
35
|
+
style: 'normal'
|
|
36
|
+
}, {
|
|
37
|
+
path: './fonts/GeneralSans-Bold.woff2',
|
|
38
|
+
weight: '700',
|
|
39
|
+
style: 'normal'
|
|
40
|
+
}]
|
|
41
|
+
});
|
|
42
|
+
const ibmPlexSans = exports.ibmPlexSans = (0, _local.default)({
|
|
43
|
+
declarations: [{
|
|
44
|
+
prop: 'font-family',
|
|
45
|
+
value: 'IBM Plex Sans'
|
|
46
|
+
}],
|
|
47
|
+
src: [{
|
|
48
|
+
path: './fonts/IBMPlexSans-Regular.woff2',
|
|
49
|
+
weight: '400',
|
|
50
|
+
style: 'normal'
|
|
51
|
+
}, {
|
|
52
|
+
path: './fonts/IBMPlexSans-Medium.woff2',
|
|
53
|
+
weight: '500',
|
|
54
|
+
style: 'normal'
|
|
55
|
+
}, {
|
|
56
|
+
path: './fonts/IBMPlexSans-SemiBold.woff2',
|
|
57
|
+
weight: '600',
|
|
58
|
+
style: 'normal'
|
|
59
|
+
}, {
|
|
60
|
+
path: './fonts/IBMPlexSans-Bold.woff2',
|
|
61
|
+
weight: '700',
|
|
62
|
+
style: 'normal'
|
|
63
|
+
}]
|
|
64
|
+
});
|
|
65
|
+
const fonts = exports.fonts = [inter, roboto, generalSans, ibmPlexSans];
|
|
66
|
+
const fontClasses = exports.fontClasses = fonts.map(font => font.className).join(' ');
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mui/docs",
|
|
3
|
-
"version": "7.3.
|
|
3
|
+
"version": "7.3.7",
|
|
4
4
|
"author": "MUI Team",
|
|
5
5
|
"description": "MUI Docs - Documentation building blocks.",
|
|
6
6
|
"keywords": [
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
"clsx": "^2.1.1",
|
|
27
27
|
"nprogress": "^0.2.0",
|
|
28
28
|
"prop-types": "^15.8.1",
|
|
29
|
-
"@mui/internal-markdown": "^2.0.
|
|
29
|
+
"@mui/internal-markdown": "^2.0.14"
|
|
30
30
|
},
|
|
31
31
|
"peerDependencies": {
|
|
32
32
|
"@mui/base": "^5.0.0 || ^5.0.0-beta || ^7.0.0 || ^7.0.0-beta",
|