@apify/docs-theme 1.0.195 → 1.0.196
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/package.json +1 -1
- package/src/config.js +1 -0
- package/src/theme/SearchBar/index.js +2 -8
package/package.json
CHANGED
package/src/config.js
CHANGED
|
@@ -323,6 +323,7 @@ const scripts = [
|
|
|
323
323
|
'data-project-color': '#666666',
|
|
324
324
|
'data-button-hide': 'true',
|
|
325
325
|
'data-search-mode-enabled': 'true',
|
|
326
|
+
'data-search-include-source-names': '["Docs"]',
|
|
326
327
|
'data-project-logo': 'https://apify.com/img/apify-logo/logomark-32x32.svg',
|
|
327
328
|
'data-modal-example-questions': 'How to run an Actor?,Create a version of an Actor?',
|
|
328
329
|
'data-modal-override-open-id': 'ask-ai-input',
|
|
@@ -155,15 +155,9 @@ export default function SearchBar({ onClick }) {
|
|
|
155
155
|
},
|
|
156
156
|
searchSettings: {
|
|
157
157
|
tabs: [
|
|
158
|
-
'
|
|
159
|
-
'Docs',
|
|
160
|
-
'Publications',
|
|
161
|
-
'PDFs',
|
|
158
|
+
['Docs', { isAlwaysVisible: true }],
|
|
162
159
|
'GitHub',
|
|
163
|
-
'
|
|
164
|
-
'Discord',
|
|
165
|
-
'Slack',
|
|
166
|
-
'StackOverflow',
|
|
160
|
+
'All',
|
|
167
161
|
],
|
|
168
162
|
},
|
|
169
163
|
aiChatSettings: {
|