@scalar/api-client 2.21.0 → 2.21.1

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 (46) hide show
  1. package/CHANGELOG.md +20 -0
  2. package/dist/style.css +1 -1
  3. package/dist/v2/blocks/request-block/helpers/get-default-headers.js +1 -1
  4. package/dist/v2/blocks/scalar-address-bar-block/components/AddressBar.vue.js +2 -2
  5. package/dist/v2/blocks/scalar-address-bar-block/components/AddressBar.vue2.js +4 -4
  6. package/dist/v2/features/app/App.vue.d.ts +3 -0
  7. package/dist/v2/features/app/App.vue.d.ts.map +1 -1
  8. package/dist/v2/features/app/App.vue.js +43 -42
  9. package/dist/v2/features/app/app-events.d.ts +1 -3
  10. package/dist/v2/features/app/app-events.d.ts.map +1 -1
  11. package/dist/v2/features/app/app-events.js +37 -43
  12. package/dist/v2/features/app/app-state.d.ts +0 -2
  13. package/dist/v2/features/app/app-state.d.ts.map +1 -1
  14. package/dist/v2/features/app/app-state.js +87 -90
  15. package/dist/v2/features/app/helpers/create-api-client-app.d.ts.map +1 -1
  16. package/dist/v2/features/app/helpers/create-api-client-app.js +14 -8
  17. package/dist/v2/features/app/index.d.ts +1 -0
  18. package/dist/v2/features/app/index.d.ts.map +1 -1
  19. package/dist/v2/features/app/index.js +11 -7
  20. package/dist/v2/features/command-palette/{components/TheCommandPalette.vue.d.ts → TheCommandPalette.vue.d.ts} +3 -3
  21. package/dist/v2/features/command-palette/TheCommandPalette.vue.d.ts.map +1 -0
  22. package/dist/v2/features/command-palette/TheCommandPalette.vue.js +7 -0
  23. package/dist/v2/features/command-palette/TheCommandPalette.vue2.js +152 -0
  24. package/dist/v2/features/command-palette/components/CommandPaletteImport.vue.d.ts +9 -2
  25. package/dist/v2/features/command-palette/components/CommandPaletteImport.vue.d.ts.map +1 -1
  26. package/dist/v2/features/command-palette/components/CommandPaletteImport.vue.js +61 -55
  27. package/dist/v2/features/command-palette/components/CommandPaletteImportCurl.vue.d.ts +2 -2
  28. package/dist/v2/features/command-palette/components/CommandPaletteImportCurl.vue.d.ts.map +1 -1
  29. package/dist/v2/features/command-palette/components/CommandPaletteImportCurl.vue.js +1 -1
  30. package/dist/v2/features/command-palette/components/CommandPaletteImportCurl.vue2.js +26 -26
  31. package/dist/v2/features/command-palette/helpers/get-operation-from-curl.d.ts.map +1 -1
  32. package/dist/v2/features/command-palette/helpers/get-operation-from-curl.js +30 -24
  33. package/dist/v2/features/command-palette/hooks/use-command-palette-state.d.ts +240 -151
  34. package/dist/v2/features/command-palette/hooks/use-command-palette-state.d.ts.map +1 -1
  35. package/dist/v2/features/command-palette/hooks/use-command-palette-state.js +114 -102
  36. package/dist/v2/features/operation/Operation.vue.js +1 -1
  37. package/dist/views/Request/ResponseSection/ResponseEmpty.vue2.js +1 -1
  38. package/package.json +9 -14
  39. package/dist/v2/features/command-palette/components/TheCommandPalette.vue.d.ts.map +0 -1
  40. package/dist/v2/features/command-palette/components/TheCommandPalette.vue.js +0 -7
  41. package/dist/v2/features/command-palette/components/TheCommandPalette.vue2.js +0 -172
  42. package/dist/v2/features/command-palette/components/index.d.ts +0 -2
  43. package/dist/v2/features/command-palette/components/index.d.ts.map +0 -1
  44. package/dist/v2/features/command-palette/components/index.js +0 -4
  45. package/dist/v2/features/command-palette/types.d.ts +0 -83
  46. package/dist/v2/features/command-palette/types.d.ts.map +0 -1
package/CHANGELOG.md CHANGED
@@ -1,5 +1,25 @@
1
1
  # @scalar/api-client
2
2
 
3
+ ## 2.21.1
4
+
5
+ ### Patch Changes
6
+
7
+ - [#7925](https://github.com/scalar/scalar/pull/7925): fix: allow collapsing documents
8
+ - [#7926](https://github.com/scalar/scalar/pull/7926): Make V2 command palette extensible and improve types
9
+
10
+ #### Updated Dependencies
11
+
12
+ - **@scalar/workspace-store@0.27.1**
13
+ - [#7926](https://github.com/scalar/scalar/pull/7926): Make V2 command palette extensible and improve types
14
+
15
+ - **@scalar/oas-utils@0.6.29**
16
+
17
+ - **@scalar/sidebar@0.7.22**
18
+
19
+ - **@scalar/components@0.16.32**
20
+
21
+ - **@scalar/use-codemirror@0.13.26**
22
+
3
23
  ## 2.21.0
4
24
 
5
25
  ### Minor Changes