Releases: enzonotario/vitepress-openapi
Releases · enzonotario/vitepress-openapi
v0.0.3-alpha.61
🚀 Features
- useSidebar: Custom sidebarItemTemplate/sidebarGroupTemplate - by @enzonotario in #170 (69c39)
🐞 Bug Fixes
- codeSamples: Header name for ApiKey auth - by @enzonotario in #169 (37a4b)
View changes on GitHub
v0.0.3-alpha.60
🚀 Features
- test: E2e - by @enzonotario in #162 (ebac8)
- useSidebar: Allows to specify sidebarGroupTemplate in itemsByPaths - by @enzonotario in #164 (cc1e6)
View changes on GitHub
v0.0.3-alpha.59
No significant changes
View changes on GitHub
v0.0.3-alpha.58
🚨 Breaking Changes
- Split entry points into client / node - by @enzonotario (298c9)
The entry points have been split into client and node. This means that you will need to update your imports to use the correct entry point.
useSidebar
and usePaths
are now available in the node entry point:
import { useSidebar, usePaths } from 'vitepress-openapi'
All other functions are available in the client entry point:
import { theme, useTheme, useOpenapi } from 'vitepress-openapi/client'
- Remove isDark prop and take it from VueUse - by @enzonotario (97d75)
The isDark
prop has been removed and is now taken from VueUse. This means that you will need to remove the isDark
prop from OAOperation
and OASpec
components.
-<OAOperation :isDark="isDark" :operation="operation" />
+<OAOperation :operation-id="operationId" />
-<OASpec :isDark="isDark" :spec="spec" />
+<OASpec :spec="spec" />
🐞 Bug Fixes
- Safe access to localStorage and window - by @enzonotario in #155 (5a9bf)
View changes on GitHub
v0.0.3-alpha.57
v0.0.3-alpha.56
v0.0.3-alpha.55
🚀 Features
- OAIntroduction component - by @enzonotario in #145 (116e2)
- OAPathEndpoint: Add copy button - by @enzonotario (df21d)
View changes on GitHub
v0.0.3-alpha.54
🚀 Features
- OARemoteSpec component && Sandbox - by @enzonotario in #138 (21d30)
- OARemoteOperation - by @enzonotario in #139 (9136b)
- security: Support multiple security schemes - by @enzonotario in #140 (584ab)
- servers: Default/custom/multiple - by @enzonotario in #136 (ee9e2)
View changes on GitHub
v0.0.3-alpha.53
🚀 Features
- i18n: Dynamic locale and OALocaleSelect component - by @enzonotario in #137 (2eb37)
View changes on GitHub
v0.0.3-alpha.52
🐞 Bug Fixes
- sidebar: Change collapsable by collapsible option - by @enzonotario in #135 (8e243)