@stoplight/elements 9.0.12-beta-0.1 → 9.0.12-beta-0.3
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/LICENSE +190 -0
- package/dist/README.md +19 -0
- package/dist/__fixtures__/api-descriptions/Instagram.d.ts +1547 -0
- package/dist/__fixtures__/api-descriptions/badgesForSchema.d.ts +1 -0
- package/dist/__fixtures__/api-descriptions/simpleApiWithInternalOperations.d.ts +224 -0
- package/dist/__fixtures__/api-descriptions/simpleApiWithoutDescription.d.ts +212 -0
- package/dist/__fixtures__/api-descriptions/todosApiBundled.d.ts +1 -0
- package/dist/__fixtures__/api-descriptions/zoomApiYaml.d.ts +1 -0
- package/dist/components/API/APIWithResponsiveSidebarLayout.d.ts +25 -0
- package/dist/components/API/APIWithSidebarLayout.d.ts +32 -0
- package/dist/components/API/APIWithStackedLayout.d.ts +29 -0
- package/dist/components/API/utils.d.ts +20 -0
- package/dist/containers/API.d.ts +30 -0
- package/dist/containers/API.spec.d.ts +1 -0
- package/dist/containers/API.stories.d.ts +58 -0
- package/dist/containers/story-helper.d.ts +2 -0
- package/dist/hooks/useExportDocumentProps.d.ts +11 -0
- package/dist/hooks/useExportDocumentProps.spec.d.ts +1 -0
- package/dist/index.d.ts +6 -0
- package/dist/index.esm.js +657 -0
- package/dist/index.js +681 -0
- package/dist/index.mjs +657 -0
- package/dist/package.json +52 -0
- package/dist/styles.min.css +1 -0
- package/dist/utils/oas/index.d.ts +3 -0
- package/dist/utils/oas/oas2.d.ts +2 -0
- package/dist/utils/oas/oas3.d.ts +2 -0
- package/dist/utils/oas/types.d.ts +33 -0
- package/dist/web-components/components.d.ts +1 -0
- package/dist/web-components/index.d.ts +1 -0
- package/dist/web-components.min.js +2 -0
- package/dist/web-components.min.js.LICENSE.txt +176 -0
- package/package.json +2 -2
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@stoplight/elements",
|
|
3
|
+
"version": "9.0.12-beta-0.2",
|
|
4
|
+
"description": "UI components for composing beautiful developer documentation.",
|
|
5
|
+
"keywords": [],
|
|
6
|
+
"main": "./index.js",
|
|
7
|
+
"sideEffects": [
|
|
8
|
+
"web-components.min.js",
|
|
9
|
+
"src/web-components/**",
|
|
10
|
+
"**/*.css"
|
|
11
|
+
],
|
|
12
|
+
"files": [
|
|
13
|
+
"**/*"
|
|
14
|
+
],
|
|
15
|
+
"author": "Stoplight <support@stoplight.io>",
|
|
16
|
+
"repository": {
|
|
17
|
+
"type": "git",
|
|
18
|
+
"url": "https://github.com/stoplightio/elements"
|
|
19
|
+
},
|
|
20
|
+
"license": "Apache-2.0",
|
|
21
|
+
"engines": {
|
|
22
|
+
"node": ">=16"
|
|
23
|
+
},
|
|
24
|
+
"peerDependencies": {
|
|
25
|
+
"react": ">=16.8",
|
|
26
|
+
"react-dom": ">=16.8"
|
|
27
|
+
},
|
|
28
|
+
"dependencies": {
|
|
29
|
+
"@stoplight/elements-core": "9.0.12-beta-0.2",
|
|
30
|
+
"@stoplight/http-spec": "^7.1.0",
|
|
31
|
+
"@stoplight/json": "^3.18.1",
|
|
32
|
+
"@stoplight/mosaic": "^1.53.5",
|
|
33
|
+
"@stoplight/types": "^14.1.1",
|
|
34
|
+
"@stoplight/yaml": "^4.3.0",
|
|
35
|
+
"classnames": "^2.2.6",
|
|
36
|
+
"file-saver": "^2.0.5",
|
|
37
|
+
"lodash": "^4.17.21",
|
|
38
|
+
"react-query": "^3.34.19",
|
|
39
|
+
"react-router-dom": "^6.28.0"
|
|
40
|
+
},
|
|
41
|
+
"type": "commonjs",
|
|
42
|
+
"exports": {
|
|
43
|
+
"./styles.min.css": "./styles.min.css",
|
|
44
|
+
"./web-components.min.js": "./web-components.min.js",
|
|
45
|
+
".": {
|
|
46
|
+
"require": "./index.js",
|
|
47
|
+
"import": "./index.mjs"
|
|
48
|
+
}
|
|
49
|
+
},
|
|
50
|
+
"typings": "index.d.ts",
|
|
51
|
+
"module": "./index.esm.js"
|
|
52
|
+
}
|