Skip to content

Commit

Permalink
feat(includers/openapi): sandbox plugin
Browse files Browse the repository at this point in the history
feat(includers/openapi): sandbox plugin

Co-authored-by: Evgenii Fedoseev <zorox112@yandex-team.ru>
Co-authored-by: 3y3k0 <3y3k0@yandex-team.ru>
  • Loading branch information
3 people authored Feb 7, 2023
1 parent 8dcae07 commit 455272a
Show file tree
Hide file tree
Showing 28 changed files with 1,072 additions and 88 deletions.
200 changes: 148 additions & 52 deletions package-lock.json

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

9 changes: 6 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@
"@doc-tools/components": "^2.4.0",
"@doc-tools/transform": "^2.14.2",
"@doc-tools/yfm2xliff": "0.0.5",
"@gravity-ui/uikit": "^4.0.4",
"@octokit/core": "3.5.1",
"@types/glob": "^8.0.0",
"@types/json-stringify-safe": "^5.0.0",
Expand All @@ -44,6 +45,7 @@
"fast-xml-parser": "^4.0.11",
"glob": "^8.0.3",
"highlight.js": "^11.7.0",
"html-escaper": "^3.0.3",
"http-status-codes": "^2.2.0",
"js-yaml": "4.1.0",
"json-stringify-safe": "^5.0.1",
Expand Down Expand Up @@ -71,6 +73,7 @@
"@babel/runtime": "7.16.7",
"@types/async": "^3.2.15",
"@types/chalk": "2.2.0",
"@types/html-escaper": "^3.0.0",
"@types/js-yaml": "4.0.5",
"@types/lodash": "4.14.178",
"@types/markdown-it": "10.0.3",
Expand All @@ -85,7 +88,7 @@
"@typescript-eslint/parser": "2.34.0",
"babel-eslint": "10.1.0",
"babel-loader": "8.2.3",
"bem-cn-lite": "3.0.0",
"bem-cn-lite": "^3.0.0",
"css-loader": "3.6.0",
"eslint": "6.8.0",
"eslint-plugin-react": "7.28.0",
Expand All @@ -101,11 +104,11 @@
"sass-loader": "8.0.2",
"style-loader": "1.3.0",
"ts-jest": "27.1.2",
"ts-node": "^10.9.1",
"typescript": "3.9.10",
"webpack": "4.46.0",
"webpack-bundle-analyzer": "^4.6.1",
"webpack-cli": "3.3.12",
"ts-node": "^10.9.1"
"webpack-cli": "3.3.12"
},
"husky": {
"hooks": {
Expand Down
3 changes: 3 additions & 0 deletions src/app/components/App/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ import {getDocSettings, withSavingSetting, updateRootClassName} from '../../util

import '../../interceptors/leading-page-links';

import {Runtime as OpenapiSandbox} from '../../../services/includers/batteries/openapi/plugin/public';

import '@doc-tools/components/styles/themes.scss';
import '@doc-tools/components/styles/default.scss';
import '@doc-tools/components/styles/typography.scss';
Expand Down Expand Up @@ -82,6 +84,7 @@ export function App(props: DocInnerProps): ReactElement {
? <DocLeadingPage {...data} {...pageProps}/>
: <DocPage {...data} {...pageProps}/>
}
<OpenapiSandbox />
</div>
);
}
Expand Down
Loading

0 comments on commit 455272a

Please sign in to comment.