@scalar/api-reference 1.23.1 → 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 +17 -0
- package/README.md +12 -0
- package/dist/browser/standalone.js +3 -3
- package/dist/browser/webpack-stats.json +1 -1
- package/dist/components/Content/Models/ModelsAccordion.vue.d.ts.map +1 -1
- package/dist/components/Content/Schema/Schema.vue.d.ts.map +1 -1
- package/dist/hooks/useNavState.d.ts.map +1 -1
- package/dist/{index-RUiAJZIR.cjs → index-BZh2Kmra.cjs} +99 -99
- package/dist/{index-DZpcgWgX.js → index-D0L6kfqZ.js} +2 -2
- package/dist/{index-2RHVMUuR.cjs → index-DCZDMEGh.cjs} +3 -3
- package/dist/{index-bduGFrkP.js → index-EnkF0lMj.js} +2435 -2415
- package/dist/index.cjs +2 -2
- package/dist/index.js +2 -2
- package/dist/style.css +1 -1
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
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
|
+
|
|
14
|
+
## 1.23.2
|
|
15
|
+
|
|
16
|
+
### Patch Changes
|
|
17
|
+
|
|
18
|
+
- 3619881: fix: remove console log in use nav state
|
|
19
|
+
|
|
3
20
|
## 1.23.1
|
|
4
21
|
|
|
5
22
|
### 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
|
+
```
|