-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
change(authorizations): allows to switch via Select (#66)
* chore: add Scalar Galaxy example * chore(security input placeholder): validate if has scheme * change(operation authorizations): allows to switch via Select * change(playground auth inputs): use Selected SecurityScheme * change(default openapi): use ScalarGalaxy * chore(docs actions): change example * chore: SecurityScheme interface * chore: computed setter * chore: unused const * chore: release v0.0.3-alpha.34
- Loading branch information
1 parent
02c4fca
commit ef8502f
Showing
14 changed files
with
1,681 additions
and
955 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
--- | ||
aside: true | ||
outline: [1, 2] | ||
title: vitepress-theme-openapi | ||
--- | ||
|
||
<script setup lang="ts"> | ||
import { useRoute, useData } from 'vitepress' | ||
import spec from '../../docs/public/openapi-scalar-galaxy.json' | ||
|
||
const route = useRoute() | ||
|
||
const { isDark } = useData() | ||
</script> | ||
|
||
<OASpec :spec="spec" :isDark="isDark" /> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.