@stoplight/elements-core 7.3.8 → 7.4.0
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/components/Docs/Article/index.d.ts +1 -2
- package/components/Docs/HttpOperation/Badges.d.ts +0 -6
- package/components/Docs/HttpOperation/HttpOperation.d.ts +1 -2
- package/components/Docs/HttpService/HttpService.d.ts +1 -2
- package/components/Docs/HttpService/SecuritySchemes.d.ts +2 -2
- package/components/Docs/Model/Model.d.ts +1 -2
- package/components/Docs/Sections.d.ts +4 -3
- package/components/MarkdownViewer/CustomComponents/CodeComponent.d.ts +2 -1
- package/components/MarkdownViewer/CustomComponents/Provider.d.ts +2 -2
- package/components/MosaicTableOfContents/types.d.ts +0 -1
- package/components/NonIdealState.d.ts +2 -2
- package/components/TryIt/Mocking/useMockingOptions.d.ts +1 -1
- package/hoc/withMosaicProvider.spec.d.ts +1 -0
- package/hoc/withQueryClientProvider.spec.d.ts +1 -0
- package/index.d.ts +3 -1
- package/index.esm.js +228 -183
- package/index.js +287 -216
- package/index.mjs +228 -183
- package/package.json +8 -12
- package/styles.min.css +1 -1
- package/types.d.ts +1 -0
- package/utils/securitySchemes.d.ts +2 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stoplight/elements-core",
|
|
3
|
-
"version": "7.
|
|
3
|
+
"version": "7.4.0",
|
|
4
4
|
"main": "./index.js",
|
|
5
5
|
"sideEffects": [
|
|
6
6
|
"web-components.min.js",
|
|
@@ -24,30 +24,26 @@
|
|
|
24
24
|
"react-dom": ">=16.8"
|
|
25
25
|
},
|
|
26
26
|
"dependencies": {
|
|
27
|
-
"@fortawesome/fontawesome-svg-core": "^1.2.31",
|
|
28
27
|
"@fortawesome/free-solid-svg-icons": "^5.14.0",
|
|
29
|
-
"@fortawesome/react-fontawesome": "^0.1.11",
|
|
30
28
|
"@stoplight/json": "^3.10.0",
|
|
31
29
|
"@stoplight/json-schema-ref-parser": "^9.0.5",
|
|
32
30
|
"@stoplight/json-schema-sampler": "0.2.2",
|
|
33
|
-
"@stoplight/json-schema-viewer": "^4.3.
|
|
31
|
+
"@stoplight/json-schema-viewer": "^4.3.4",
|
|
34
32
|
"@stoplight/markdown": "^3.1.1",
|
|
35
33
|
"@stoplight/markdown-viewer": "^5.3.2",
|
|
36
|
-
"@stoplight/mosaic": "^1.
|
|
37
|
-
"@stoplight/mosaic-code-editor": "^1.
|
|
38
|
-
"@stoplight/mosaic-code-viewer": "^1.
|
|
34
|
+
"@stoplight/mosaic": "^1.12.4",
|
|
35
|
+
"@stoplight/mosaic-code-editor": "^1.12.4",
|
|
36
|
+
"@stoplight/mosaic-code-viewer": "^1.12.4",
|
|
39
37
|
"@stoplight/path": "^1.3.2",
|
|
40
|
-
"@stoplight/react-error-boundary": "^
|
|
38
|
+
"@stoplight/react-error-boundary": "^2.0.0",
|
|
41
39
|
"@stoplight/types": "^12.0.0",
|
|
42
40
|
"@stoplight/yaml": "^4.2.2",
|
|
43
|
-
"axios": "^0.21.1",
|
|
44
41
|
"classnames": "^2.2.6",
|
|
45
42
|
"httpsnippet": "^1.24.0",
|
|
46
|
-
"jotai": "1.
|
|
47
|
-
"json-schema": "^0.
|
|
43
|
+
"jotai": "1.3.9",
|
|
44
|
+
"json-schema": "^0.4.0",
|
|
48
45
|
"lodash": "^4.17.19",
|
|
49
46
|
"nanoid": "^3.1.20",
|
|
50
|
-
"process": "0.11.10",
|
|
51
47
|
"prop-types": "^15.7.2",
|
|
52
48
|
"react-query": "^3.15.2",
|
|
53
49
|
"react-router-dom": "^5.2.0",
|