@scalar/api-reference 1.22.12 → 1.22.13
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/CHANGELOG.md +11 -0
- package/README.md +12 -1
- package/dist/browser/standalone.js +7 -7
- package/dist/browser/webpack-stats.json +1 -1
- package/dist/index.cjs +65 -65
- package/dist/index.css +1 -1
- package/dist/index.js +3632 -3608
- package/dist/types.d.ts +7 -1
- package/dist/types.d.ts.map +1 -1
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# @scalar/api-reference
|
|
2
2
|
|
|
3
|
+
## 1.22.13
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- c05c90e: feat: add image support to tag, operation and webhook descriptions
|
|
8
|
+
- 2700c5c: feat: separate google fonts from theme, add withDefaultFonts setting
|
|
9
|
+
- Updated dependencies [2700c5c]
|
|
10
|
+
- @scalar/components@0.5.5
|
|
11
|
+
- @scalar/themes@0.7.5
|
|
12
|
+
- @scalar/api-client@1.2.8
|
|
13
|
+
|
|
3
14
|
## 1.22.12
|
|
4
15
|
|
|
5
16
|
### Patch Changes
|
package/README.md
CHANGED
|
@@ -119,7 +119,7 @@ const customCss = `* { font-family: "Comic Sans MS", cursive, sans-serif; }`
|
|
|
119
119
|
|
|
120
120
|
#### searchHotKey?: string
|
|
121
121
|
|
|
122
|
-
Key used with
|
|
122
|
+
Key used with CTRL/CMD to open the search modal (defaults to 'k' e.g. CMD+k)
|
|
123
123
|
|
|
124
124
|
```vue
|
|
125
125
|
<ApiReference :configuration="{ searchHotKey: 'l'} />
|
|
@@ -201,4 +201,15 @@ For OpenAuth2 it’s more looking like this:
|
|
|
201
201
|
},
|
|
202
202
|
},
|
|
203
203
|
} />
|
|
204
|
+
```
|
|
205
|
+
|
|
206
|
+
#### withDefaultFonts?: boolean
|
|
207
|
+
|
|
208
|
+
By default we’re using Inter and JetBrains Mono, served by Google Fonts. If you use a different font or just don’t want to use Google Fonts, pass `withDefaultFonts: false` to the configuration.
|
|
209
|
+
|
|
210
|
+
```vue
|
|
211
|
+
<ApiReference :configuration="{
|
|
212
|
+
withDefaultFonts: false
|
|
213
|
+
} />
|
|
214
|
+
```
|
|
204
215
|
````
|