swagger-editor 4.6.1 → 5.0.0-alpha.49
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/CHANGELOG.md +3 -0
- package/LICENSES/MIT.txt +9 -0
- package/NOTICE +15 -3
- package/README.md +503 -103
- package/package.json +110 -161
- package/sbom.spdx +6142 -0
- package/dist/swagger-editor-bundle.js +0 -3
- package/dist/swagger-editor-bundle.js.map +0 -1
- package/dist/swagger-editor-es-bundle-core.js +0 -2
- package/dist/swagger-editor-es-bundle-core.js.map +0 -1
- package/dist/swagger-editor-es-bundle.js +0 -2
- package/dist/swagger-editor-es-bundle.js.map +0 -1
- package/dist/swagger-editor.css +0 -3
- package/dist/swagger-editor.css.map +0 -1
- package/dist/swagger-editor.js +0 -2
- package/dist/swagger-editor.js.map +0 -1
- /package/{LICENSE → LICENSES/Apache-2.0.txt} +0 -0
package/CHANGELOG.md
ADDED
package/LICENSES/MIT.txt
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) <year> <copyright holders>
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
6
|
+
|
|
7
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
8
|
+
|
|
9
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
package/NOTICE
CHANGED
|
@@ -1,7 +1,19 @@
|
|
|
1
|
-
|
|
2
|
-
Copyright 2020
|
|
1
|
+
SwaggerEditor
|
|
2
|
+
Copyright 2020 SmartBear Software Inc.
|
|
3
|
+
SwaggerEditor is licensed under Apache 2.0 license.
|
|
4
|
+
Copy of the Apache 2.0 license can be found in `LICENSES/Apache-2.0.txt` file.
|
|
3
5
|
|
|
4
6
|
react-dd-menu
|
|
5
7
|
Copyright (c) 2015 Mikkel Laursen
|
|
6
|
-
Specific Sass Cascading Style Sheet in `_dropdown-menu.
|
|
8
|
+
Specific Sass Cascading Style Sheet in `_dropdown-menu.scss` (the file) were originally created under MIT license in https://github.com/mlaursen/react-dd-menu repository.
|
|
7
9
|
Specific Sass Cascading Style Sheet have been copied into this project and modified. All modifications are licensed under Apache 2.0 License.
|
|
10
|
+
Copy of the MIT license can be found in `LICENSES/MIT.txt` file.
|
|
11
|
+
|
|
12
|
+
---
|
|
13
|
+
|
|
14
|
+
If the SPDX-FileCopyrightText and SPDX-License-Identifier tags are not present in the file,
|
|
15
|
+
it is assumed that these tags have following implicit value:
|
|
16
|
+
|
|
17
|
+
SPDX-FileCopyrightText: Copyright 2020 SmartBear Software Inc.
|
|
18
|
+
SPDX-License-Identifier: Apache-2.0
|
|
19
|
+
|