@easyops-cn/docusaurus-search-local 0.50.0 → 0.51.1
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
|
@@ -2,6 +2,21 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
## [0.51.1](https://github.com/easyops-cn/docusaurus-search-local/compare/v0.51.0...v0.51.1) (2025-06-19)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* fix active menu item matching for categories with collapsible disabled ([725bbb1](https://github.com/easyops-cn/docusaurus-search-local/commit/725bbb1396a89d5bdd45ef0db0bc635c81b69312))
|
|
11
|
+
* fix active menu item matching for categories with collapsible disabled ([3b69844](https://github.com/easyops-cn/docusaurus-search-local/commit/3b698444163ecd79bfbc395fcc6373d5d7028459)), closes [#524](https://github.com/easyops-cn/docusaurus-search-local/issues/524)
|
|
12
|
+
|
|
13
|
+
## [0.51.0](https://github.com/easyops-cn/docusaurus-search-local/compare/v0.50.0...v0.51.0) (2025-06-11)
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
### Features
|
|
17
|
+
|
|
18
|
+
* Added Arabic 🇸🇦 translations ([#521](https://github.com/easyops-cn/docusaurus-search-local/issues/521)) ([c167a89](https://github.com/easyops-cn/docusaurus-search-local/commit/c167a89e881d2ab3d6042111dd25ff885e1ba153))
|
|
19
|
+
|
|
5
20
|
## [0.50.0](https://github.com/easyops-cn/docusaurus-search-local/compare/v0.49.2...v0.50.0) (2025-06-03)
|
|
6
21
|
|
|
7
22
|
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
{
|
|
2
|
+
"theme.SearchBar.label": "بحث...",
|
|
3
|
+
"theme.SearchBar.seeAll": "عرض كل النتائج",
|
|
4
|
+
"theme.SearchBar.noResultsText": "لا توجد نتائج",
|
|
5
|
+
"theme.SearchBar.searchInContext": "عرض النتائج ضمن \"{context}\"",
|
|
6
|
+
"theme.SearchBar.seeAllOutsideContext": "عرض النتائج خارج \"{context}\"",
|
|
7
|
+
"theme.SearchPage.existingResultsTitle": "النتائج لـ \"{query}\"",
|
|
8
|
+
"theme.SearchPage.emptyResultsTitle": "ابحث في المستندات",
|
|
9
|
+
"theme.SearchPage.documentsFound.plurals": "{count} نتيجة",
|
|
10
|
+
"theme.SearchPage.noResultsText": "لا توجد نتائج",
|
|
11
|
+
"theme.SearchPage.searchContext.everywhere": "كل الأماكن"
|
|
12
|
+
}
|
|
@@ -21,7 +21,7 @@ function parseDocument($) {
|
|
|
21
21
|
if (menu.length > 0) {
|
|
22
22
|
const activeMenuItem = menu
|
|
23
23
|
.eq(0)
|
|
24
|
-
.find(".
|
|
24
|
+
.find(".menu__list-item-collapsible .menu__link--active");
|
|
25
25
|
// console.log("activeMenuItem.length", activeMenuItem.length);
|
|
26
26
|
activeMenuItem.each((_, element) => {
|
|
27
27
|
breadcrumb.push($(element).text().trim());
|