swagger-ui 2.2.9 → 2.2.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/composer.json +23 -23
- package/dist/swagger-ui.js +9 -5
- package/dist/swagger-ui.min.js +4 -4
- package/package.json +2 -2
- package/test.yaml +36 -0
package/README.md
CHANGED
|
@@ -24,7 +24,7 @@ The OpenAPI Specification has undergone 4 revisions since initial creation in 20
|
|
|
24
24
|
|
|
25
25
|
Swagger UI Version | Release Date | OpenAPI Spec compatibility | Notes | Status
|
|
26
26
|
------------------ | ------------ | -------------------------- | ----- | ------
|
|
27
|
-
2.2.
|
|
27
|
+
2.2.10 | 2017-01-04 | 1.1, 1.2, 2.0 | [tag v2.2.10](https://github.com/swagger-api/swagger-ui/tree/v2.2.6) |
|
|
28
28
|
2.1.5 | 2016-07-20 | 1.1, 1.2, 2.0 | [tag v2.1.5](https://github.com/swagger-api/swagger-ui/tree/v2.1.5) |
|
|
29
29
|
2.0.24 | 2014-09-12 | 1.1, 1.2 | [tag v2.0.24](https://github.com/swagger-api/swagger-ui/tree/v2.0.24) |
|
|
30
30
|
1.0.13 | 2013-03-08 | 1.1, 1.2 | [tag v1.0.13](https://github.com/swagger-api/swagger-ui/tree/v1.0.13) |
|
package/composer.json
CHANGED
|
@@ -1,24 +1,24 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
}
|
|
2
|
+
"name": "swagger-api/swagger-ui",
|
|
3
|
+
"description": "Swagger UI is a dependency-free collection of HTML, JavaScript, and CSS assets that dynamically generate beautiful documentation from a Swagger-compliant API",
|
|
4
|
+
"keywords": [
|
|
5
|
+
"Swagger",
|
|
6
|
+
"OpenAPI",
|
|
7
|
+
"specification",
|
|
8
|
+
"documentation",
|
|
9
|
+
"API",
|
|
10
|
+
"UI"
|
|
11
|
+
],
|
|
12
|
+
"homepage": "http://swagger.io",
|
|
13
|
+
"license": "Apache-2.0",
|
|
14
|
+
"authors": [
|
|
15
|
+
{
|
|
16
|
+
"name": "Tony Tam",
|
|
17
|
+
"email": "fehguy@gmail.com"
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"name": "Mohsen Azimi",
|
|
21
|
+
"email": "me@azimi.me"
|
|
22
|
+
}
|
|
23
|
+
]
|
|
24
|
+
}
|