@scalar/api-reference 1.22.11 → 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 CHANGED
@@ -1,5 +1,26 @@
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
+
14
+ ## 1.22.12
15
+
16
+ ### Patch Changes
17
+
18
+ - 55398db: fix: summary markdown, add default browser styling
19
+ - Updated dependencies [79485ff]
20
+ - Updated dependencies [92b5b2a]
21
+ - @scalar/components@0.5.4
22
+ - @scalar/api-client@1.2.7
23
+
3
24
  ## 1.22.11
4
25
 
5
26
  ### 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 CNTRL/CMD to open the search modal (defaults to 'k' e.g. CMD+k)
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
  ````