@rspress-theme-anatole/shared 0.7.44 → 0.7.46
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 +15 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -118,6 +118,18 @@ export declare interface DefaultThemeConfig {
|
|
|
118
118
|
* The text of suggested query text when no search result
|
|
119
119
|
*/
|
|
120
120
|
searchSuggestedQueryText?: string;
|
|
121
|
+
/**
|
|
122
|
+
* The prefix of scoped search input
|
|
123
|
+
*/
|
|
124
|
+
scopedSearchPrefixText?: string;
|
|
125
|
+
/**
|
|
126
|
+
* The text of download this article button
|
|
127
|
+
*/
|
|
128
|
+
downloadThisArticleText?: string;
|
|
129
|
+
/**
|
|
130
|
+
* The text of download full guide button
|
|
131
|
+
*/
|
|
132
|
+
downloadFullGuideText?: string;
|
|
121
133
|
/**
|
|
122
134
|
* The text of overview filter
|
|
123
135
|
*/
|
|
@@ -318,6 +330,9 @@ export declare interface LocaleConfig {
|
|
|
318
330
|
searchPlaceholderText?: string;
|
|
319
331
|
searchNoResultsText?: string;
|
|
320
332
|
searchSuggestedQueryText?: string;
|
|
333
|
+
scopedSearchPrefixText?: string;
|
|
334
|
+
downloadThisArticleText?: string;
|
|
335
|
+
downloadFullGuideText?: string;
|
|
321
336
|
overview?: FilterConfig;
|
|
322
337
|
}
|
|
323
338
|
|