@scalar/api-reference 1.52.2 → 1.52.4

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.
Files changed (52) hide show
  1. package/CHANGELOG.md +17 -0
  2. package/dist/browser/standalone.js +210 -202
  3. package/dist/browser/webpack-stats.json +1 -1
  4. package/dist/components/ApiReference.vue.d.ts.map +1 -1
  5. package/dist/components/ApiReference.vue.js +1 -1
  6. package/dist/components/ApiReference.vue.js.map +1 -1
  7. package/dist/components/ApiReference.vue.script.js +6 -2
  8. package/dist/components/ApiReference.vue.script.js.map +1 -1
  9. package/dist/components/Content/Schema/SchemaProperty.vue.d.ts.map +1 -1
  10. package/dist/components/Content/Schema/SchemaProperty.vue.js +1 -1
  11. package/dist/components/Content/Schema/SchemaProperty.vue.js.map +1 -1
  12. package/dist/components/Content/Schema/SchemaProperty.vue.script.js +1 -1
  13. package/dist/components/Content/Schema/SchemaProperty.vue.script.js.map +1 -1
  14. package/dist/components/SectionFlare/SectionFlare.vue.d.ts.map +1 -1
  15. package/dist/components/SectionFlare/SectionFlare.vue.js +2 -2
  16. package/dist/components/SectionFlare/SectionFlare.vue.js.map +1 -1
  17. package/dist/features/Operation/components/OperationParameters.vue.d.ts +10 -1
  18. package/dist/features/Operation/components/OperationParameters.vue.d.ts.map +1 -1
  19. package/dist/features/Operation/components/OperationParameters.vue.js.map +1 -1
  20. package/dist/features/Operation/components/OperationParameters.vue.script.js +17 -8
  21. package/dist/features/Operation/components/OperationParameters.vue.script.js.map +1 -1
  22. package/dist/features/Operation/components/RequestBody.vue.d.ts +9 -1
  23. package/dist/features/Operation/components/RequestBody.vue.d.ts.map +1 -1
  24. package/dist/features/Operation/components/RequestBody.vue.js +1 -1
  25. package/dist/features/Operation/components/RequestBody.vue.js.map +1 -1
  26. package/dist/features/Operation/components/RequestBody.vue.script.js +8 -4
  27. package/dist/features/Operation/components/RequestBody.vue.script.js.map +1 -1
  28. package/dist/features/Operation/helpers/filter-selected-security.js +3 -3
  29. package/dist/features/Operation/helpers/filter-selected-security.js.map +1 -1
  30. package/dist/features/Operation/layouts/ClassicLayout.vue.d.ts.map +1 -1
  31. package/dist/features/Operation/layouts/ClassicLayout.vue.js +1 -1
  32. package/dist/features/Operation/layouts/ClassicLayout.vue.js.map +1 -1
  33. package/dist/features/Operation/layouts/ClassicLayout.vue.script.js +10 -3
  34. package/dist/features/Operation/layouts/ClassicLayout.vue.script.js.map +1 -1
  35. package/dist/features/Operation/layouts/ModernLayout.vue.d.ts.map +1 -1
  36. package/dist/features/Operation/layouts/ModernLayout.vue.js +1 -1
  37. package/dist/features/Operation/layouts/ModernLayout.vue.js.map +1 -1
  38. package/dist/features/Operation/layouts/ModernLayout.vue.script.js +9 -2
  39. package/dist/features/Operation/layouts/ModernLayout.vue.script.js.map +1 -1
  40. package/dist/helpers/map-config-plugins.d.ts.map +1 -1
  41. package/dist/helpers/map-config-plugins.js +2 -1
  42. package/dist/helpers/map-config-plugins.js.map +1 -1
  43. package/dist/plugins/plugin-manager.d.ts +17 -0
  44. package/dist/plugins/plugin-manager.d.ts.map +1 -1
  45. package/dist/plugins/plugin-manager.js +14 -0
  46. package/dist/plugins/plugin-manager.js.map +1 -1
  47. package/dist/plugins/posthog/index.d.ts +16 -0
  48. package/dist/plugins/posthog/index.d.ts.map +1 -0
  49. package/dist/plugins/posthog/index.js +54 -0
  50. package/dist/plugins/posthog/index.js.map +1 -0
  51. package/dist/style.css +245 -167
  52. package/package.json +22 -17
package/CHANGELOG.md CHANGED
@@ -1,5 +1,22 @@
1
1
  # @scalar/api-reference
2
2
 
3
+ ## 1.52.4
4
+
5
+ ### Patch Changes
6
+
7
+ - [#8884](https://github.com/scalar/scalar/pull/8884): fix: restore `position: fixed` on `.section-flare` so the decorative hero flare stops reserving 100vh of empty space at the top of the documentation (affects the `kepler`, `bluePlanet`, and `mars` themes, which declare `height: 100vh` on the flare but rely on the framework to position it)
8
+ - [#8907](https://github.com/scalar/scalar/pull/8907): Fix code sample missing body content type update
9
+ - [#8925](https://github.com/scalar/scalar/pull/8925): chore: source vite-plugin-css-injected-by-js from the shared pnpm catalog
10
+ - [#8944](https://github.com/scalar/scalar/pull/8944): feat(api-reference): add anchors and copy link buttons to allOf body parameters
11
+
12
+ ## 1.52.3
13
+
14
+ ### Patch Changes
15
+
16
+ - [#8810](https://github.com/scalar/scalar/pull/8810): refactor: move telemetry to an optional plugin
17
+ - [#8911](https://github.com/scalar/scalar/pull/8911): feat: switch from Request to RequestPayload to support body with GET
18
+ - [#8859](https://github.com/scalar/scalar/pull/8859): refactor api-reference exports and enforce strict Vite entrypoint resolution from package exports
19
+
3
20
  ## 1.52.2
4
21
 
5
22
  ### Patch Changes