@stoplight/elements 9.0.11 → 9.0.12-beta-0.2
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/.DS_Store +0 -0
- package/.storybook/main.js +6 -0
- package/.storybook/manager.js +1 -0
- package/.storybook/preview.jsx +3 -0
- package/dist/LICENSE +190 -0
- package/dist/README.md +19 -0
- package/dist/package.json +52 -0
- package/jest.config.js +7 -0
- package/package.json +76 -16
- package/src/__fixtures__/api-descriptions/Instagram.ts +1859 -0
- package/src/__fixtures__/api-descriptions/badgesForSchema.ts +36 -0
- package/src/__fixtures__/api-descriptions/simpleApiWithInternalOperations.ts +253 -0
- package/src/__fixtures__/api-descriptions/simpleApiWithoutDescription.ts +243 -0
- package/src/__fixtures__/api-descriptions/todosApiBundled.ts +430 -0
- package/src/__fixtures__/api-descriptions/zoomApiYaml.ts +6083 -0
- package/src/components/API/APIWithResponsiveSidebarLayout.tsx +125 -0
- package/src/components/API/APIWithSidebarLayout.tsx +158 -0
- package/src/components/API/APIWithStackedLayout.tsx +286 -0
- package/src/components/API/__tests__/utils.test.ts +1323 -0
- package/src/components/API/utils.ts +206 -0
- package/src/containers/API.spec.tsx +122 -0
- package/src/containers/API.stories.tsx +117 -0
- package/src/containers/API.tsx +277 -0
- package/src/containers/story-helper.tsx +53 -0
- package/src/hooks/useExportDocumentProps.spec.tsx +68 -0
- package/src/hooks/useExportDocumentProps.tsx +48 -0
- package/src/index.ts +6 -0
- package/src/styles.css +1 -0
- package/src/utils/oas/__tests__/oas.spec.ts +411 -0
- package/src/utils/oas/index.ts +192 -0
- package/src/utils/oas/oas2.ts +31 -0
- package/src/utils/oas/oas3.ts +54 -0
- package/src/utils/oas/types.ts +34 -0
- package/src/web-components/__stories__/Api.stories.tsx +63 -0
- package/src/web-components/components.ts +26 -0
- package/src/web-components/index.ts +3 -0
- package/tsconfig.build.json +18 -0
- package/tsconfig.json +7 -0
- package/web-components.config.js +1 -0
- package/styles.min.css +0 -1
- package/web-components.min.js +0 -2
- package/web-components.min.js.LICENSE.txt +0 -176
- /package/{__fixtures__ → dist/__fixtures__}/api-descriptions/Instagram.d.ts +0 -0
- /package/{__fixtures__ → dist/__fixtures__}/api-descriptions/badgesForSchema.d.ts +0 -0
- /package/{__fixtures__ → dist/__fixtures__}/api-descriptions/simpleApiWithInternalOperations.d.ts +0 -0
- /package/{__fixtures__ → dist/__fixtures__}/api-descriptions/simpleApiWithoutDescription.d.ts +0 -0
- /package/{__fixtures__ → dist/__fixtures__}/api-descriptions/todosApiBundled.d.ts +0 -0
- /package/{__fixtures__ → dist/__fixtures__}/api-descriptions/zoomApiYaml.d.ts +0 -0
- /package/{components → dist/components}/API/APIWithResponsiveSidebarLayout.d.ts +0 -0
- /package/{components → dist/components}/API/APIWithSidebarLayout.d.ts +0 -0
- /package/{components → dist/components}/API/APIWithStackedLayout.d.ts +0 -0
- /package/{components → dist/components}/API/utils.d.ts +0 -0
- /package/{containers → dist/containers}/API.d.ts +0 -0
- /package/{containers → dist/containers}/API.spec.d.ts +0 -0
- /package/{containers → dist/containers}/API.stories.d.ts +0 -0
- /package/{containers → dist/containers}/story-helper.d.ts +0 -0
- /package/{hooks → dist/hooks}/useExportDocumentProps.d.ts +0 -0
- /package/{hooks → dist/hooks}/useExportDocumentProps.spec.d.ts +0 -0
- /package/{index.d.ts → dist/index.d.ts} +0 -0
- /package/{index.esm.js → dist/index.esm.js} +0 -0
- /package/{index.js → dist/index.js} +0 -0
- /package/{index.mjs → dist/index.mjs} +0 -0
- /package/{utils → dist/utils}/oas/index.d.ts +0 -0
- /package/{utils → dist/utils}/oas/oas2.d.ts +0 -0
- /package/{utils → dist/utils}/oas/oas3.d.ts +0 -0
- /package/{utils → dist/utils}/oas/types.d.ts +0 -0
- /package/{web-components → dist/web-components}/components.d.ts +0 -0
- /package/{web-components → dist/web-components}/index.d.ts +0 -0
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { IHttpOperation, IHttpService, IHttpWebhookOperation, NodeType } from '@stoplight/types';
|
|
2
|
+
import { JSONSchema7 } from 'json-schema';
|
|
3
|
+
|
|
4
|
+
export enum NodeTypes {
|
|
5
|
+
Paths = 'paths',
|
|
6
|
+
Path = 'path',
|
|
7
|
+
Operation = 'operation',
|
|
8
|
+
Webhooks = 'webhooks',
|
|
9
|
+
Webhook = 'webhook',
|
|
10
|
+
Components = 'components',
|
|
11
|
+
Models = 'models',
|
|
12
|
+
Model = 'model',
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
export interface ISourceNodeMap {
|
|
16
|
+
type: string;
|
|
17
|
+
match?: string;
|
|
18
|
+
notMatch?: string;
|
|
19
|
+
children?: ISourceNodeMap[];
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
type Node<T, D> = {
|
|
23
|
+
type: T;
|
|
24
|
+
uri: string;
|
|
25
|
+
name: string;
|
|
26
|
+
data: D;
|
|
27
|
+
tags: string[];
|
|
28
|
+
};
|
|
29
|
+
|
|
30
|
+
export type ServiceNode = Node<NodeType.HttpService, IHttpService> & { children: ServiceChildNode[] };
|
|
31
|
+
export type ServiceChildNode = OperationNode | WebhookNode | SchemaNode;
|
|
32
|
+
export type OperationNode = Node<NodeType.HttpOperation, IHttpOperation>;
|
|
33
|
+
export type WebhookNode = Node<NodeType.HttpWebhook, IHttpWebhookOperation>;
|
|
34
|
+
export type SchemaNode = Node<NodeType.Model, JSONSchema7>;
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
import '../index';
|
|
2
|
+
|
|
3
|
+
import { parse } from '@stoplight/yaml';
|
|
4
|
+
import React from 'react';
|
|
5
|
+
|
|
6
|
+
import { zoomApiYaml } from '../../__fixtures__/api-descriptions/zoomApiYaml';
|
|
7
|
+
|
|
8
|
+
declare global {
|
|
9
|
+
namespace JSX {
|
|
10
|
+
interface IntrinsicElements {
|
|
11
|
+
'elements-api': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement>;
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
const Template = (props: any) => <elements-api {...props} />;
|
|
17
|
+
|
|
18
|
+
export default {
|
|
19
|
+
title: 'web-components/API',
|
|
20
|
+
argTypes: {
|
|
21
|
+
apiDescriptionUrl: {
|
|
22
|
+
control: 'text',
|
|
23
|
+
},
|
|
24
|
+
apiDescriptionDocument: { control: 'text' },
|
|
25
|
+
layout: {
|
|
26
|
+
control: { type: 'inline-radio', options: ['sidebar', 'stacked'] },
|
|
27
|
+
defaultValue: 'sidebar',
|
|
28
|
+
},
|
|
29
|
+
},
|
|
30
|
+
};
|
|
31
|
+
|
|
32
|
+
export const TodosAPI = Template.bind({});
|
|
33
|
+
TodosAPI.args = {
|
|
34
|
+
apiDescriptionUrl: 'https://raw.githubusercontent.com/stoplightio/elements/main/demo/src/reference/todo.v1.yaml',
|
|
35
|
+
};
|
|
36
|
+
|
|
37
|
+
export const TodosAPIWithFixHeight = (props: any) => (
|
|
38
|
+
<div style={{ height: 400 }}>
|
|
39
|
+
<elements-api {...props} />
|
|
40
|
+
</div>
|
|
41
|
+
);
|
|
42
|
+
TodosAPIWithFixHeight.args = {
|
|
43
|
+
apiDescriptionUrl: 'https://raw.githubusercontent.com/stoplightio/elements/main/demo/src/reference/todo.v1.yaml',
|
|
44
|
+
};
|
|
45
|
+
TodosAPIWithFixHeight.storyName = 'TodosAPI with fixed height';
|
|
46
|
+
|
|
47
|
+
export const ZoomApi = Template.bind({});
|
|
48
|
+
ZoomApi.args = {
|
|
49
|
+
apiDescriptionUrl: 'https://raw.githubusercontent.com/stoplightio/Public-APIs/master/reference/zoom/openapi.yaml',
|
|
50
|
+
};
|
|
51
|
+
ZoomApi.storyName = 'Complex API with inline `$ref`s';
|
|
52
|
+
|
|
53
|
+
export const APIWithYamlProvidedDirectly = Template.bind({});
|
|
54
|
+
APIWithYamlProvidedDirectly.args = {
|
|
55
|
+
apiDescriptionDocument: zoomApiYaml,
|
|
56
|
+
};
|
|
57
|
+
APIWithYamlProvidedDirectly.storyName = 'API With Yaml Provided Directly';
|
|
58
|
+
|
|
59
|
+
export const APIWithJSONProvidedDirectly = Template.bind({});
|
|
60
|
+
APIWithJSONProvidedDirectly.args = {
|
|
61
|
+
apiDescriptionDocument: JSON.stringify(parse(zoomApiYaml), null, ' '),
|
|
62
|
+
};
|
|
63
|
+
APIWithJSONProvidedDirectly.storyName = 'API With JSON Provided Directly';
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { createElementClass } from '@stoplight/elements-core';
|
|
2
|
+
|
|
3
|
+
import { API } from '../index';
|
|
4
|
+
|
|
5
|
+
export const ApiElement = createElementClass(API, {
|
|
6
|
+
apiDescriptionUrl: { type: 'string', defaultValue: '' },
|
|
7
|
+
apiDescriptionDocument: { type: 'string', defaultValue: '' },
|
|
8
|
+
basePath: { type: 'string' },
|
|
9
|
+
staticRouterPath: { type: 'string' },
|
|
10
|
+
router: { type: 'string' },
|
|
11
|
+
layout: { type: 'string' },
|
|
12
|
+
hideTryItPanel: { type: 'boolean' },
|
|
13
|
+
hideTryIt: { type: 'boolean' },
|
|
14
|
+
hideSamples: { type: 'boolean' },
|
|
15
|
+
hideServerInfo: { type: 'boolean' },
|
|
16
|
+
hideSecurityInfo: { type: 'boolean' },
|
|
17
|
+
hideSchemas: { type: 'boolean' },
|
|
18
|
+
hideInternal: { type: 'boolean' },
|
|
19
|
+
hideExport: { type: 'boolean' },
|
|
20
|
+
logo: { type: 'string' },
|
|
21
|
+
tryItCredentialsPolicy: { type: 'string' },
|
|
22
|
+
tryItCorsProxy: { type: 'string' },
|
|
23
|
+
maxRefDepth: { type: 'number' },
|
|
24
|
+
renderExtensionAddon: { type: 'function' },
|
|
25
|
+
outerRouter: { type: 'boolean' },
|
|
26
|
+
});
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
{
|
|
2
|
+
"extends": "./tsconfig.json",
|
|
3
|
+
"include": [
|
|
4
|
+
"src"
|
|
5
|
+
],
|
|
6
|
+
"exclude": [
|
|
7
|
+
"**/__*__/**"
|
|
8
|
+
],
|
|
9
|
+
"compilerOptions": {
|
|
10
|
+
"baseUrl": "./",
|
|
11
|
+
"outDir": "dist",
|
|
12
|
+
"moduleResolution": "node",
|
|
13
|
+
"paths": {
|
|
14
|
+
"@stoplight/elements-core": ["../elements-core/dist"],
|
|
15
|
+
"@stoplight/elements-core/*": ["../elements-core/dist/*"],
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
}
|
package/tsconfig.json
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports = require('../../web-components.webpack.config');
|