Browse Source

update swagger-ui (#6661)

tags/v1.21.12.1
Antoine GIRARD techknowlogick 6 years ago
parent
commit
4f19b08258
12 changed files with 52 additions and 51 deletions
  1. BIN
      public/vendor/assets/swagger-ui/favicon-16x16.png
  2. BIN
      public/vendor/assets/swagger-ui/favicon-32x32.png
  3. +2
    -3
      public/vendor/assets/swagger-ui/index.html
  4. +35
    -35
      public/vendor/assets/swagger-ui/swagger-ui-bundle.js
  5. +1
    -1
      public/vendor/assets/swagger-ui/swagger-ui-bundle.js.map
  6. +5
    -4
      public/vendor/assets/swagger-ui/swagger-ui-standalone-preset.js
  7. +1
    -1
      public/vendor/assets/swagger-ui/swagger-ui-standalone-preset.js.map
  8. +1
    -1
      public/vendor/assets/swagger-ui/swagger-ui.css
  9. +3
    -2
      public/vendor/assets/swagger-ui/swagger-ui.js
  10. +1
    -1
      public/vendor/assets/swagger-ui/swagger-ui.js.map
  11. +1
    -1
      public/vendor/librejs.html
  12. +2
    -2
      templates/swagger/ui.tmpl

BIN
public/vendor/assets/swagger-ui/favicon-16x16.png View File

Before After
Width: 16  |  Height: 16  |  Size: 445 B Width: 16  |  Height: 16  |  Size: 665 B

BIN
public/vendor/assets/swagger-ui/favicon-32x32.png View File

Before After
Width: 32  |  Height: 32  |  Size: 1.1 kB Width: 32  |  Height: 32  |  Size: 628 B

+ 2
- 3
public/vendor/assets/swagger-ui/index.html View File

@@ -4,7 +4,6 @@
<head>
<meta charset="UTF-8">
<title>Swagger UI</title>
<link href="https://fonts.googleapis.com/css?family=Open+Sans:400,700|Source+Code+Pro:300,600|Titillium+Web:400,600,700" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="./swagger-ui.css" >
<link rel="icon" type="image/png" href="./favicon-32x32.png" sizes="32x32" />
<link rel="icon" type="image/png" href="./favicon-16x16.png" sizes="16x16" />
@@ -38,8 +37,7 @@
<script src="./swagger-ui-standalone-preset.js"> </script>
<script>
window.onload = function() {

// Build a system
// Begin Swagger UI call region
const ui = SwaggerUIBundle({
url: "../../../swagger.v1.json",
dom_id: '#swagger-ui',
@@ -53,6 +51,7 @@
],
layout: "StandaloneLayout"
})
// End Swagger UI call region

window.ui = ui
}


+ 35
- 35
public/vendor/assets/swagger-ui/swagger-ui-bundle.js
File diff suppressed because it is too large
View File


+ 1
- 1
public/vendor/assets/swagger-ui/swagger-ui-bundle.js.map
File diff suppressed because it is too large
View File


+ 5
- 4
public/vendor/assets/swagger-ui/swagger-ui-standalone-preset.js
File diff suppressed because it is too large
View File


+ 1
- 1
public/vendor/assets/swagger-ui/swagger-ui-standalone-preset.js.map
File diff suppressed because it is too large
View File


+ 1
- 1
public/vendor/assets/swagger-ui/swagger-ui.css
File diff suppressed because it is too large
View File


+ 3
- 2
public/vendor/assets/swagger-ui/swagger-ui.js
File diff suppressed because it is too large
View File


+ 1
- 1
public/vendor/assets/swagger-ui/swagger-ui.js.map
File diff suppressed because it is too large
View File


+ 1
- 1
public/vendor/librejs.html View File

@@ -133,7 +133,7 @@
<tr>
<td><a href="./assets/swagger-ui/">swagger-ui</a></td>
<td><a href="https://github.com/swagger-api/swagger-ui/blob/master/LICENSE">Apache-2.0</a></td>
<td><a href="https://github.com/swagger-api/swagger-ui/archive/v3.0.4.tar.gz">swagger-ui-v3.0.4.tar.gz</a></td>
<td><a href="https://github.com/swagger-api/swagger-ui/archive/v3.22.1.tar.gz">swagger-ui-v3.22.1.tar.gz</a></td>
</tr>
<tr>
<td><a href="./plugins/vue-calendar-heatmap/">vue-calendar-heatmap</a></td>


+ 2
- 2
templates/swagger/ui.tmpl View File

@@ -4,7 +4,6 @@
<head>
<meta charset="UTF-8">
<title>Swagger UI</title>
<link href="https://fonts.googleapis.com/css?family=Open+Sans:400,700|Source+Code+Pro:300,600|Titillium+Web:400,600,700" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="{{AppSubUrl}}/vendor/assets/swagger-ui/swagger-ui.css" >
<link rel="icon" type="image/png" href="{{AppSubUrl}}/vendor/assets/swagger-ui/favicon-32x32.png" sizes="32x32" />
<link rel="icon" type="image/png" href="{{AppSubUrl}}/vendor/assets/swagger-ui/favicon-16x16.png" sizes="16x16" />
@@ -80,7 +79,7 @@ window.onload = function() {
// Make the page's protocol be at the top of the schemes list
var protocol = window.location.protocol.slice(0, -1)
spec.schemes.sort(function(x,y){ return x == protocol ? -1 : y == protocol ? 1 : 0 })
// Build the Swagger UI
// Begin Swagger UI call region
const ui = SwaggerUIBundle({
spec: spec,
dom_id: '#swagger-ui',
@@ -94,6 +93,7 @@ window.onload = function() {
],
layout: "StandaloneLayout"
})
// End Swagger UI call region

window.ui = ui
})


Loading…
Cancel
Save