@scalar/api-reference 1.23.2 → 1.23.3

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,16 @@
1
1
  # @scalar/api-reference
2
2
 
3
+ ## 1.23.3
4
+
5
+ ### Patch Changes
6
+
7
+ - c951512: feat: omit empty and not required properties from the generated request body
8
+ - Updated dependencies [c951512]
9
+ - Updated dependencies [961690d]
10
+ - @scalar/oas-utils@0.1.17
11
+ - @scalar/components@0.10.1
12
+ - @scalar/api-client@1.3.2
13
+
3
14
  ## 1.23.2
4
15
 
5
16
  ### Patch Changes
package/README.md CHANGED
@@ -285,3 +285,15 @@ By default we’re using Inter and JetBrains Mono, served by Google Fonts. If yo
285
285
  withDefaultFonts: false
286
286
  } />
287
287
  ```
288
+
289
+ #### theme?: string
290
+
291
+ You don’t like the color scheme? We’ve prepared some themes for you:
292
+
293
+ Can be one of: **alternate**, **default**, **moon**, **purple**, **solarized**, **bluePlanet**, **saturn**, **kepler**, **mars**, **deepSpace**, **none**
294
+
295
+ ```vue
296
+ <ApiReference :configuration="{
297
+ theme: default
298
+ } />
299
+ ```