Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,11 @@
"@emotion/styled": "^11.9.3",
"@mui/material": "^5.9.1",
"@primer/octicons-react": "^17.3.0",
"@swagger-api/apidom-core": "^0.36.0",
"@swagger-api/apidom-ls": "^0.36.0",
"@swagger-api/apidom-ns-api-design-systems": "^0.36.0",
"@swagger-api/apidom-parser-adapter-api-design-systems-json": "^0.36.0",
"@swagger-api/apidom-parser-adapter-api-design-systems-yaml": "^0.36.0",
"@swagger-api/apidom-parser-adapter-asyncapi-json-2": "^0.36.0",
"@swagger-api/apidom-parser-adapter-asyncapi-yaml-2": "^0.36.0",
"@swagger-api/apidom-parser-adapter-openapi-json-3-1": "^0.36.0",
Expand Down
4 changes: 4 additions & 0 deletions src/App.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ import EditorMonacoPlugin from './plugins/editor-monaco/index.js';
import EditorPreviewPlugin from './plugins/editor-preview/index.js';
import EditorPreviewSwaggerUIPlugin from './plugins/editor-preview-swagger-ui/index.js';
import EditorPreviewAsyncAPIPlugin from './plugins/editor-preview-asyncapi/index.js';
import EditorPreviewApiDesignSystemsPlugin from './plugins/editor-preview-api-design-systems/index.js';
import EditorContentReadOnlyPlugin from './plugins/editor-content-read-only/index.js';
import EditorContentOriginPlugin from './plugins/editor-content-origin/index.js';
import EditorContentTypePlugin from './plugins/editor-content-type/index.js';
Expand Down Expand Up @@ -68,6 +69,7 @@ SwaggerEditor.plugins = {
EditorPreview: EditorPreviewPlugin,
EditorPreviewSwaggerUI: EditorPreviewSwaggerUIPlugin,
EditorPreviewAsyncAPI: EditorPreviewAsyncAPIPlugin,
EditorPreviewApiDesignSystems: EditorPreviewApiDesignSystemsPlugin,
TopBar: TopBarPlugin,
SplashScreenPlugin,
Layout: LayoutPlugin,
Expand All @@ -88,6 +90,7 @@ SwaggerEditor.presets = {
EditorPreviewPlugin,
EditorPreviewSwaggerUIPlugin,
EditorPreviewAsyncAPIPlugin,
EditorPreviewApiDesignSystemsPlugin,
TopBarPlugin,
SplashScreenPlugin,
LayoutPlugin,
Expand All @@ -109,6 +112,7 @@ SwaggerEditor.presets = {
EditorPreviewPlugin,
EditorPreviewSwaggerUIPlugin,
EditorPreviewAsyncAPIPlugin,
EditorPreviewApiDesignSystemsPlugin,
TopBarPlugin,
SplashScreenPlugin,
LayoutPlugin,
Expand Down
2 changes: 2 additions & 0 deletions src/plugins/editor-content-fixtures/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import selectAsyncAPI240PetstoreJSON from './selectors/selectAsyncAPI240Petstore
import selectOpenAPI20JSON from './selectors/selectOpenAPI20JSON.js';
import selectOpenAPI303JSON from './selectors/selectOpenAPI303JSON.js';
import selectOpenAPI310JSON from './selectors/selectOpenAPI310JSON.js';
import selectAPIDesignSystemsJSON from './selectors/selectAPIDesignSystemsJSON.js';

const EditorContentFixturesPlugin = () => ({
statePlugins: {
Expand All @@ -13,6 +14,7 @@ const EditorContentFixturesPlugin = () => ({
selectOpenAPI20JSON,
selectOpenAPI303JSON,
selectOpenAPI310JSON,
selectAPIDesignSystemsJSON,
},
},
},
Expand Down
Loading