@rspress-theme-anatole/shared 0.7.48 → 0.7.49
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/dist/index.d.ts +5 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -122,6 +122,10 @@ export declare interface DefaultThemeConfig {
|
|
|
122
122
|
* The prefix of scoped search input
|
|
123
123
|
*/
|
|
124
124
|
scopedSearchPrefixText?: string;
|
|
125
|
+
/**
|
|
126
|
+
* The searching text when searching with scoped search input. It can be used to show the current searching scope.
|
|
127
|
+
*/
|
|
128
|
+
searchingText?: string;
|
|
125
129
|
/**
|
|
126
130
|
* The text of download this article button
|
|
127
131
|
*/
|
|
@@ -331,6 +335,7 @@ export declare interface LocaleConfig {
|
|
|
331
335
|
searchNoResultsText?: string;
|
|
332
336
|
searchSuggestedQueryText?: string;
|
|
333
337
|
scopedSearchPrefixText?: string;
|
|
338
|
+
searchingText?: string;
|
|
334
339
|
downloadThisArticleText?: string;
|
|
335
340
|
downloadFullGuideText?: string;
|
|
336
341
|
overview?: FilterConfig;
|