File tree Expand file tree Collapse file tree 7 files changed +204
-100
lines changed Expand file tree Collapse file tree 7 files changed +204
-100
lines changed Original file line number Diff line number Diff line change 51
51
</ div >
52
52
</ div >
53
53
54
-
55
54
< div style ="display:flex; flex-direction: column; margin:20px 32px ">
56
55
< table class ="m-table ">
57
56
< tr > < th style ="text-align:left "> List of Examples</ th > </ tr >
Original file line number Diff line number Diff line change 42
42
},
43
43
"devDependencies" : {
44
44
"@babel/core" : " ^7.6.4" ,
45
- "@babel/preset-env" : " ^7.6.4 " ,
45
+ "@babel/preset-env" : " ^7.6.3 " ,
46
46
"babel-loader" : " ^8.0.6" ,
47
47
"babel-plugin-template-html-minifier" : " ^3.1.0" ,
48
48
"clean-webpack-plugin" : " ^3.0.0" ,
60
60
"node-sass" : " ^4.12.0" ,
61
61
"sass-loader" : " ^8.0.0" ,
62
62
"style-loader" : " ^1.0.0" ,
63
- "webpack" : " ^4.41.0 " ,
64
- "webpack-bundle-analyzer" : " ^3.5.2 " ,
63
+ "webpack" : " ^4.41.2 " ,
64
+ "webpack-bundle-analyzer" : " ^3.6.0 " ,
65
65
"webpack-cli" : " ^3.3.9" ,
66
66
"webpack-dev-server" : " ^3.8.2"
67
67
}
Original file line number Diff line number Diff line change @@ -95,7 +95,8 @@ export default class ApiRequest extends LitElement {
95
95
this . responseText = '' ;
96
96
this . responseUrl = '' ;
97
97
this . curlSyntax = '' ;
98
- this . activeSchemaTab = this . defaultSchemaTab ;
98
+ // this.activeSchemaTab = this.defaultSchemaTab;
99
+ this . activeSchemaTab = 'model' ;
99
100
this . activeResponseTab = 'response' ;
100
101
}
101
102
Original file line number Diff line number Diff line change @@ -16,7 +16,8 @@ export default class ApiResponse extends LitElement {
16
16
this . selectedStatus = '' ;
17
17
this . headersForEachRespStatus = { } ;
18
18
this . mimeResponsesForEachStatus = { } ;
19
- this . activeSchemaTab = this . defaultSchemaTab === 'model' ? 'model' : 'example' ;
19
+ // this.activeSchemaTab = this.defaultSchemaTab === 'model' ? 'model' : 'example';
20
+ this . activeSchemaTab = 'model' ;
20
21
}
21
22
22
23
render ( ) {
Original file line number Diff line number Diff line change @@ -13,10 +13,17 @@ export default class EndPointsExpanded extends LitElement {
13
13
< style >
14
14
.endpoint-body {
15
15
border-top : 1px solid var (--light-border-color );
16
- padding : 36 px 48 px ;
16
+ padding : 24 px 8 px ;
17
17
}
18
18
.endpoint-body : nth-child (even){
19
- background-color : var (--bg3 );
19
+ background-color : var (--bg2 );
20
+ }
21
+
22
+ @media only screen and (min-width : 768px ) {
23
+ .endpoint-body {
24
+ border-top : 1px solid var (--light-border-color );
25
+ padding : 36px 48px ;
26
+ }
20
27
}
21
28
</ style >
22
29
${ this . paths . map ( ( path ) => this . endpointBodyTemplate ( path ) ) }
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ export default class SecuritySchemes extends LitElement {
23
23
word-break : break-all;
24
24
}
25
25
</ style >
26
- < table class ="m-table " style =" margin: 0 24px 24px 24px " >
26
+ < table class ="m-table ">
27
27
< tr >
28
28
< th > Type </ th >
29
29
< th > Authentication Procedure </ th >
You can’t perform that action at this time.
0 commit comments