@docusaurus/theme-classic 3.10.1 → 3.10.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.
|
@@ -104,11 +104,7 @@ function CollapseButton({collapsed, categoryLabel, onClick}) {
|
|
|
104
104
|
);
|
|
105
105
|
}
|
|
106
106
|
function CategoryLinkLabel({label}) {
|
|
107
|
-
return
|
|
108
|
-
<span title={label} className={styles.categoryLinkLabel}>
|
|
109
|
-
{label}
|
|
110
|
-
</span>
|
|
111
|
-
);
|
|
107
|
+
return <span className={styles.categoryLinkLabel}>{label}</span>;
|
|
112
108
|
}
|
|
113
109
|
export default function DocSidebarItemCategory(props) {
|
|
114
110
|
const visibleChildren = useVisibleSidebarItems(
|
|
@@ -13,11 +13,7 @@ import isInternalUrl from '@docusaurus/isInternalUrl';
|
|
|
13
13
|
import IconExternalLink from '@theme/Icon/ExternalLink';
|
|
14
14
|
import styles from './styles.module.css';
|
|
15
15
|
function LinkLabel({label}) {
|
|
16
|
-
return
|
|
17
|
-
<span title={label} className={styles.linkLabel}>
|
|
18
|
-
{label}
|
|
19
|
-
</span>
|
|
20
|
-
);
|
|
16
|
+
return <span className={styles.linkLabel}>{label}</span>;
|
|
21
17
|
}
|
|
22
18
|
export default function DocSidebarItemLink({
|
|
23
19
|
item,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@docusaurus/theme-classic",
|
|
3
|
-
"version": "3.10.
|
|
3
|
+
"version": "3.10.2",
|
|
4
4
|
"description": "Classic theme for Docusaurus",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"types": "src/theme-classic.d.ts",
|
|
@@ -20,19 +20,19 @@
|
|
|
20
20
|
"copy:watch": "node ../../admin/scripts/copyUntypedFiles.js --watch"
|
|
21
21
|
},
|
|
22
22
|
"dependencies": {
|
|
23
|
-
"@docusaurus/core": "3.10.
|
|
24
|
-
"@docusaurus/logger": "3.10.
|
|
25
|
-
"@docusaurus/mdx-loader": "3.10.
|
|
26
|
-
"@docusaurus/module-type-aliases": "3.10.
|
|
27
|
-
"@docusaurus/plugin-content-blog": "3.10.
|
|
28
|
-
"@docusaurus/plugin-content-docs": "3.10.
|
|
29
|
-
"@docusaurus/plugin-content-pages": "3.10.
|
|
30
|
-
"@docusaurus/theme-common": "3.10.
|
|
31
|
-
"@docusaurus/theme-translations": "3.10.
|
|
32
|
-
"@docusaurus/types": "3.10.
|
|
33
|
-
"@docusaurus/utils": "3.10.
|
|
34
|
-
"@docusaurus/utils-common": "3.10.
|
|
35
|
-
"@docusaurus/utils-validation": "3.10.
|
|
23
|
+
"@docusaurus/core": "3.10.2",
|
|
24
|
+
"@docusaurus/logger": "3.10.2",
|
|
25
|
+
"@docusaurus/mdx-loader": "3.10.2",
|
|
26
|
+
"@docusaurus/module-type-aliases": "3.10.2",
|
|
27
|
+
"@docusaurus/plugin-content-blog": "3.10.2",
|
|
28
|
+
"@docusaurus/plugin-content-docs": "3.10.2",
|
|
29
|
+
"@docusaurus/plugin-content-pages": "3.10.2",
|
|
30
|
+
"@docusaurus/theme-common": "3.10.2",
|
|
31
|
+
"@docusaurus/theme-translations": "3.10.2",
|
|
32
|
+
"@docusaurus/types": "3.10.2",
|
|
33
|
+
"@docusaurus/utils": "3.10.2",
|
|
34
|
+
"@docusaurus/utils-common": "3.10.2",
|
|
35
|
+
"@docusaurus/utils-validation": "3.10.2",
|
|
36
36
|
"@mdx-js/react": "^3.0.0",
|
|
37
37
|
"clsx": "^2.0.0",
|
|
38
38
|
"copy-text-to-clipboard": "^3.2.0",
|
|
@@ -61,5 +61,5 @@
|
|
|
61
61
|
"engines": {
|
|
62
62
|
"node": ">=20.0"
|
|
63
63
|
},
|
|
64
|
-
"gitHead": "
|
|
64
|
+
"gitHead": "f37f9035584917a97a260b91fc2842cba4f8b94f"
|
|
65
65
|
}
|
|
@@ -135,11 +135,7 @@ function CollapseButton({
|
|
|
135
135
|
}
|
|
136
136
|
|
|
137
137
|
function CategoryLinkLabel({label}: {label: string}) {
|
|
138
|
-
return
|
|
139
|
-
<span title={label} className={styles.categoryLinkLabel}>
|
|
140
|
-
{label}
|
|
141
|
-
</span>
|
|
142
|
-
);
|
|
138
|
+
return <span className={styles.categoryLinkLabel}>{label}</span>;
|
|
143
139
|
}
|
|
144
140
|
|
|
145
141
|
export default function DocSidebarItemCategory(props: Props): ReactNode {
|
|
@@ -17,11 +17,7 @@ import type {Props} from '@theme/DocSidebarItem/Link';
|
|
|
17
17
|
import styles from './styles.module.css';
|
|
18
18
|
|
|
19
19
|
function LinkLabel({label}: {label: string}) {
|
|
20
|
-
return
|
|
21
|
-
<span title={label} className={styles.linkLabel}>
|
|
22
|
-
{label}
|
|
23
|
-
</span>
|
|
24
|
-
);
|
|
20
|
+
return <span className={styles.linkLabel}>{label}</span>;
|
|
25
21
|
}
|
|
26
22
|
|
|
27
23
|
export default function DocSidebarItemLink({
|