docstra 1.4.5 → 1.4.6

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.
@@ -107,7 +107,7 @@ function DocstraSearchBox() {
107
107
  {
108
108
  className: "w-full bg-transparent h-full outline-none text-gray-400 placeholder:text-gray-400",
109
109
  type: "text",
110
- placeholder: "Search components",
110
+ placeholder: "Search docs...",
111
111
  spellCheck: "false",
112
112
  autoFocus: true,
113
113
  value: searchQuery,
@@ -65,7 +65,7 @@ function DocstraSearchBox() {
65
65
  {
66
66
  className: "w-full bg-transparent h-full outline-none text-gray-400 placeholder:text-gray-400",
67
67
  type: "text",
68
- placeholder: "Search components",
68
+ placeholder: "Search docs...",
69
69
  spellCheck: "false",
70
70
  autoFocus: true,
71
71
  value: searchQuery,
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "docstra",
3
- "version": "1.4.5",
4
- "description": "A Modern Documentation Framework for Next.js",
3
+ "version": "1.4.6",
4
+ "description": "The Modern Documentation Framework for Next.js",
5
5
  "keywords": [
6
6
  "next",
7
7
  "nextjs",
@@ -15,17 +15,19 @@
15
15
  "files": [
16
16
  "dist"
17
17
  ],
18
- "types": "./dist/client/index.d.ts",
19
18
  "exports": {
20
19
  ".": {
20
+ "types": "./dist/client/index.d.ts",
21
21
  "import": "./dist/client/index.mjs",
22
22
  "require": "./dist/client/index.js"
23
23
  },
24
24
  "./server": {
25
+ "types": "./dist/server/index.d.ts",
25
26
  "import": "./dist/server/index.mjs",
26
27
  "require": "./dist/server/index.js"
27
28
  },
28
29
  "./config": {
30
+ "types": "./dist/server/index.d.ts",
29
31
  "import": "./dist/server/index.mjs",
30
32
  "require": "./dist/server/index.js"
31
33
  },