swagger-ui 5.17.2 → 5.17.4
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/dist/swagger-ui-bundle.js +1 -2
- package/dist/swagger-ui-es-bundle-core.js +1 -1
- package/dist/swagger-ui-es-bundle.js +1 -2
- package/dist/swagger-ui-standalone-preset.js +1 -2
- package/dist/swagger-ui.css.map +1 -1
- package/dist/swagger-ui.js +1 -1
- package/dist/swagger-ui.js.map +1 -1
- package/package.json +19 -20
- package/dist/swagger-ui-bundle.js.map +0 -1
- package/dist/swagger-ui-es-bundle.js.map +0 -1
- package/dist/swagger-ui-standalone-preset.js.map +0 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "swagger-ui",
|
|
3
|
-
"version": "5.17.
|
|
3
|
+
"version": "5.17.4",
|
|
4
4
|
"main": "./dist/swagger-ui.js",
|
|
5
5
|
"module": "./dist/swagger-ui-es-bundle-core.js",
|
|
6
6
|
"exports": {
|
|
@@ -39,14 +39,13 @@
|
|
|
39
39
|
"automated-release": "release-it -VV --config ./release/.release-it.json",
|
|
40
40
|
"build": "npm run build-stylesheets && rimraf ./dist/swagger-ui.js ./dist/swagger-ui.js.map && npm run build-all-bundles",
|
|
41
41
|
"build-all-bundles": "run-p --aggregate-output build:core build:bundle build:standalone build:es:bundle build:es:bundle:core",
|
|
42
|
-
"build-stylesheets": "cross-env NODE_ENV=production BABEL_ENV=production BROWSERSLIST_ENV=browser-production webpack --color --config webpack/stylesheets.js",
|
|
42
|
+
"build-stylesheets": "cross-env NODE_ENV=production BABEL_ENV=production BROWSERSLIST_ENV=browser-production webpack --color --config webpack/stylesheets.js && shx sed -i \"s/\\*zoom/zoom/g\" ./dist/swagger-ui.css",
|
|
43
43
|
"build:bundle": "cross-env NODE_ENV=production BABEL_ENV=production BROWSERSLIST_ENV=isomorphic-production webpack --color --config webpack/bundle.js",
|
|
44
44
|
"build:core": "cross-env NODE_ENV=production BABEL_ENV=production BROWSERSLIST_ENV=browser-production webpack --color --config webpack/core.js",
|
|
45
45
|
"build:standalone": "cross-env NODE_ENV=production BABEL_ENV=production BROWSERSLIST_ENV=browser-production webpack --color --config webpack/standalone.js",
|
|
46
46
|
"build:es:bundle": "cross-env NODE_ENV=production BABEL_ENV=production BROWSERSLIST_ENV=isomorphic-production webpack --color --config webpack/es-bundle.js",
|
|
47
47
|
"build:es:bundle:core": "cross-env NODE_ENV=production BABEL_ENV=esm BROWSERSLIST_ENV=browser-production webpack --color --config webpack/es-bundle-core.js",
|
|
48
48
|
"clean": "rimraf ./dist",
|
|
49
|
-
"postinstall": "patch-package",
|
|
50
49
|
"dev": "cross-env NODE_ENV=development BABEL_ENV=development BROWSERSLIST_ENV=browser-development webpack serve --config webpack/dev.js",
|
|
51
50
|
"deps-license": "license-checker --production --csv --out $npm_package_config_deps_check_dir/licenses.csv && license-checker --development --csv --out $npm_package_config_deps_check_dir/licenses-dev.csv",
|
|
52
51
|
"deps-size": "cross-env NODE_ENV=development webpack -p --config webpack/bundle.js --json | webpack-bundle-size-analyzer >| $npm_package_config_deps_check_dir/sizes.txt",
|
|
@@ -72,19 +71,18 @@
|
|
|
72
71
|
"start": "npm-run-all --parallel serve-static open-static"
|
|
73
72
|
},
|
|
74
73
|
"dependencies": {
|
|
75
|
-
"@babel/runtime-corejs3": "^7.24.
|
|
74
|
+
"@babel/runtime-corejs3": "^7.24.5",
|
|
76
75
|
"@braintree/sanitize-url": "=7.0.1",
|
|
77
76
|
"base64-js": "^1.5.1",
|
|
78
77
|
"classnames": "^2.5.1",
|
|
79
78
|
"css.escape": "1.5.1",
|
|
80
79
|
"deep-extend": "0.6.0",
|
|
81
|
-
"dompurify": "=3.1.
|
|
80
|
+
"dompurify": "=3.1.2",
|
|
82
81
|
"ieee754": "^1.2.1",
|
|
83
82
|
"immutable": "^3.x.x",
|
|
84
83
|
"js-file-download": "^0.4.12",
|
|
85
84
|
"js-yaml": "=4.1.0",
|
|
86
85
|
"lodash": "^4.17.21",
|
|
87
|
-
"patch-package": "^8.0.0",
|
|
88
86
|
"prop-types": "^15.8.1",
|
|
89
87
|
"randexp": "^0.5.3",
|
|
90
88
|
"randombytes": "^2.1.0",
|
|
@@ -95,7 +93,7 @@
|
|
|
95
93
|
"react-immutable-proptypes": "2.2.0",
|
|
96
94
|
"react-immutable-pure-component": "^2.2.0",
|
|
97
95
|
"react-inspector": "^6.0.1",
|
|
98
|
-
"react-redux": "^9.1.
|
|
96
|
+
"react-redux": "^9.1.2",
|
|
99
97
|
"react-syntax-highlighter": "^15.5.0",
|
|
100
98
|
"redux": "^5.0.1",
|
|
101
99
|
"redux-immutable": "^4.0.0",
|
|
@@ -110,20 +108,20 @@
|
|
|
110
108
|
"zenscroll": "^4.0.2"
|
|
111
109
|
},
|
|
112
110
|
"devDependencies": {
|
|
113
|
-
"@babel/cli": "=7.24.
|
|
114
|
-
"@babel/core": "=7.24.
|
|
115
|
-
"@babel/eslint-parser": "=7.24.
|
|
111
|
+
"@babel/cli": "=7.24.5",
|
|
112
|
+
"@babel/core": "=7.24.5",
|
|
113
|
+
"@babel/eslint-parser": "=7.24.5",
|
|
116
114
|
"@babel/plugin-transform-runtime": "=7.24.3",
|
|
117
|
-
"@babel/preset-env": "=7.24.
|
|
115
|
+
"@babel/preset-env": "=7.24.5",
|
|
118
116
|
"@babel/preset-react": "=7.24.1",
|
|
119
117
|
"@babel/register": "=7.23.7",
|
|
118
|
+
"@cfaester/enzyme-adapter-react-18": "=0.8.0",
|
|
120
119
|
"@commitlint/cli": "^19.3.0",
|
|
121
120
|
"@commitlint/config-conventional": "^19.2.2",
|
|
122
121
|
"@jest/globals": "=29.7.0",
|
|
123
|
-
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.
|
|
122
|
+
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.13",
|
|
124
123
|
"@release-it/conventional-changelog": "=8.0.1",
|
|
125
124
|
"@svgr/webpack": "=8.1.0",
|
|
126
|
-
"@cfaester/enzyme-adapter-react-18": "=0.7.1",
|
|
127
125
|
"autoprefixer": "^10.4.19",
|
|
128
126
|
"babel-loader": "^9.1.3",
|
|
129
127
|
"babel-plugin-lodash": "=3.3.4",
|
|
@@ -134,14 +132,14 @@
|
|
|
134
132
|
"cors": "^2.8.5",
|
|
135
133
|
"cross-env": "=7.0.3",
|
|
136
134
|
"css-loader": "=7.1.1",
|
|
137
|
-
"cssnano": "=
|
|
138
|
-
"cypress": "=13.8.
|
|
135
|
+
"cssnano": "=7.0.1",
|
|
136
|
+
"cypress": "=13.8.1",
|
|
139
137
|
"dedent": "^1.5.3",
|
|
140
138
|
"deepmerge": "^4.3.1",
|
|
141
139
|
"enzyme": "=3.11.0",
|
|
142
140
|
"eslint": "^8.57.0",
|
|
143
141
|
"eslint-plugin-import": "^2.29.0",
|
|
144
|
-
"eslint-plugin-jest": "^28.
|
|
142
|
+
"eslint-plugin-jest": "^28.4.0",
|
|
145
143
|
"eslint-plugin-react": "^7.34.1",
|
|
146
144
|
"esm": "=3.2.25",
|
|
147
145
|
"expect": "=29.7.0",
|
|
@@ -172,12 +170,13 @@
|
|
|
172
170
|
"postcss-preset-env": "^9.5.9",
|
|
173
171
|
"prettier": "^3.2.5",
|
|
174
172
|
"process": "^0.11.10",
|
|
175
|
-
"react-refresh": "^0.14.
|
|
176
|
-
"react-test-renderer": "^18.
|
|
177
|
-
"release-it": "=17.2.
|
|
173
|
+
"react-refresh": "^0.14.2",
|
|
174
|
+
"react-test-renderer": "^18.3.1",
|
|
175
|
+
"release-it": "=17.2.1",
|
|
178
176
|
"rimraf": "^5.0.5",
|
|
179
|
-
"sass": "^1.
|
|
177
|
+
"sass": "^1.76.0",
|
|
180
178
|
"sass-loader": "^14.2.1",
|
|
179
|
+
"shx": "=0.3.4",
|
|
181
180
|
"sinon": "=17.0.1",
|
|
182
181
|
"source-map-support": "^0.5.21",
|
|
183
182
|
"start-server-and-test": "^2.0.3",
|