@apify/docs-theme 1.0.179 → 1.0.181
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
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@apify/docs-theme",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.181",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "./src/index.js",
|
|
6
6
|
"files": [
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
},
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@apify/docs-search-modal": "^1.2.2",
|
|
23
|
-
"@docusaurus/theme-common": "3.7.0",
|
|
23
|
+
"@docusaurus/theme-common": "^3.7.0",
|
|
24
24
|
"@stackql/docusaurus-plugin-hubspot": "^1.1.0",
|
|
25
25
|
"algoliasearch": "^5.19.0",
|
|
26
26
|
"algoliasearch-helper": "^3.22.6",
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
.getStarted {
|
|
2
|
-
all: unset;
|
|
3
2
|
height: 4rem;
|
|
4
3
|
padding: 0.8rem 1.6rem !important;
|
|
5
4
|
background-color: var(--color-primary-black-action);
|
|
@@ -8,6 +7,9 @@
|
|
|
8
7
|
font-size: 1.6rem;
|
|
9
8
|
font-weight: 500;
|
|
10
9
|
line-height: 2.4rem;
|
|
10
|
+
border: none;
|
|
11
|
+
box-shadow: none;
|
|
12
|
+
outline: none;
|
|
11
13
|
box-sizing: border-box;
|
|
12
14
|
cursor: pointer;
|
|
13
15
|
display: block;
|
|
@@ -117,6 +117,7 @@ function SearchPageContent() {
|
|
|
117
117
|
const {
|
|
118
118
|
algolia: { appId, apiKey, indexName },
|
|
119
119
|
} = useAlgoliaThemeConfig();
|
|
120
|
+
const titleFormatter = useTitleFormatter();
|
|
120
121
|
const documentsFoundPlural = useDocumentsFoundPlural();
|
|
121
122
|
const docsSearchVersionsHelpers = useDocsSearchVersionsHelpers();
|
|
122
123
|
const [searchQuery, setSearchQuery] = useSearchQueryString();
|
|
@@ -295,7 +296,7 @@ function SearchPageContent() {
|
|
|
295
296
|
return (
|
|
296
297
|
<Layout>
|
|
297
298
|
<Head>
|
|
298
|
-
<title>{
|
|
299
|
+
<title>{titleFormatter.format(getTitle())}</title>
|
|
299
300
|
{/*
|
|
300
301
|
We should not index search pages
|
|
301
302
|
See https://github.com/facebook/docusaurus/pull/3233
|