File tree 4 files changed +852
-720
lines changed
4 files changed +852
-720
lines changed Original file line number Diff line number Diff line change 1
1
<template >
2
- <DocGen :document =" documentUrl" :apiVersion =" version.apiTag" :notice =" notice" />
2
+ <DocGen :document =" documentUrl" :apiVersion =" version.apiTag" :notice =" notice" showExperimentalByDefault />
3
3
</template >
4
4
5
5
<script >
@@ -24,4 +24,10 @@ export default {
24
24
}
25
25
}
26
26
};
27
- </script >
27
+ </script >
28
+
29
+ <style >
30
+ .docgen section .action-bar {
31
+ display : none !important ;
32
+ }
33
+ </style >
Original file line number Diff line number Diff line change @@ -2,6 +2,12 @@ const config = require('./config.js');
2
2
3
3
const defaultVersion = config . themeConfig . versions [ config . themeConfig . defaultVersion ] ;
4
4
5
+ // for openeo-processes-docgen
6
+ // see https://github.com/vuejs/vuepress/issues/1434
7
+ if ( typeof window !== "undefined" ) {
8
+ window . global = window ;
9
+ }
10
+
5
11
export default ( { router, Vue } ) => {
6
12
Vue . config . ignoredElements = [
7
13
'redoc'
You can’t perform that action at this time.
0 commit comments