@stoplight/elements 9.0.10 → 9.0.12-beta-0.1

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.
Files changed (63) hide show
  1. package/.storybook/main.js +6 -0
  2. package/.storybook/manager.js +1 -0
  3. package/.storybook/preview.jsx +3 -0
  4. package/jest.config.js +7 -0
  5. package/package.json +76 -16
  6. package/src/__fixtures__/api-descriptions/Instagram.ts +1859 -0
  7. package/src/__fixtures__/api-descriptions/badgesForSchema.ts +36 -0
  8. package/src/__fixtures__/api-descriptions/simpleApiWithInternalOperations.ts +253 -0
  9. package/src/__fixtures__/api-descriptions/simpleApiWithoutDescription.ts +243 -0
  10. package/src/__fixtures__/api-descriptions/todosApiBundled.ts +430 -0
  11. package/src/__fixtures__/api-descriptions/zoomApiYaml.ts +6083 -0
  12. package/src/components/API/APIWithResponsiveSidebarLayout.tsx +125 -0
  13. package/src/components/API/APIWithSidebarLayout.tsx +158 -0
  14. package/src/components/API/APIWithStackedLayout.tsx +286 -0
  15. package/src/components/API/__tests__/utils.test.ts +1323 -0
  16. package/src/components/API/utils.ts +206 -0
  17. package/src/containers/API.spec.tsx +122 -0
  18. package/src/containers/API.stories.tsx +117 -0
  19. package/src/containers/API.tsx +277 -0
  20. package/src/containers/story-helper.tsx +53 -0
  21. package/src/hooks/useExportDocumentProps.spec.tsx +68 -0
  22. package/src/hooks/useExportDocumentProps.tsx +48 -0
  23. package/src/styles.css +1 -0
  24. package/src/utils/oas/__tests__/oas.spec.ts +411 -0
  25. package/src/utils/oas/index.ts +192 -0
  26. package/src/utils/oas/oas2.ts +31 -0
  27. package/src/utils/oas/oas3.ts +54 -0
  28. package/src/utils/oas/types.ts +34 -0
  29. package/src/web-components/__stories__/Api.stories.tsx +63 -0
  30. package/src/web-components/components.ts +26 -0
  31. package/src/web-components/index.ts +3 -0
  32. package/tsconfig.build.json +18 -0
  33. package/tsconfig.json +7 -0
  34. package/web-components.config.js +1 -0
  35. package/__fixtures__/api-descriptions/Instagram.d.ts +0 -1547
  36. package/__fixtures__/api-descriptions/badgesForSchema.d.ts +0 -1
  37. package/__fixtures__/api-descriptions/simpleApiWithInternalOperations.d.ts +0 -224
  38. package/__fixtures__/api-descriptions/simpleApiWithoutDescription.d.ts +0 -212
  39. package/__fixtures__/api-descriptions/todosApiBundled.d.ts +0 -1
  40. package/__fixtures__/api-descriptions/zoomApiYaml.d.ts +0 -1
  41. package/components/API/APIWithResponsiveSidebarLayout.d.ts +0 -25
  42. package/components/API/APIWithSidebarLayout.d.ts +0 -32
  43. package/components/API/APIWithStackedLayout.d.ts +0 -29
  44. package/components/API/utils.d.ts +0 -20
  45. package/containers/API.d.ts +0 -30
  46. package/containers/API.spec.d.ts +0 -1
  47. package/containers/API.stories.d.ts +0 -58
  48. package/containers/story-helper.d.ts +0 -2
  49. package/hooks/useExportDocumentProps.d.ts +0 -11
  50. package/hooks/useExportDocumentProps.spec.d.ts +0 -1
  51. package/index.esm.js +0 -657
  52. package/index.js +0 -681
  53. package/index.mjs +0 -657
  54. package/styles.min.css +0 -1
  55. package/utils/oas/index.d.ts +0 -3
  56. package/utils/oas/oas2.d.ts +0 -2
  57. package/utils/oas/oas3.d.ts +0 -2
  58. package/utils/oas/types.d.ts +0 -33
  59. package/web-components/components.d.ts +0 -1
  60. package/web-components/index.d.ts +0 -1
  61. package/web-components.min.js +0 -2
  62. package/web-components.min.js.LICENSE.txt +0 -176
  63. /package/{index.d.ts → src/index.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,3 @@
1
+ import { ApiElement } from './components';
2
+
3
+ window.customElements.define('elements-api', ApiElement);
@@ -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,7 @@
1
+ {
2
+ "extends": "../../tsconfig.json",
3
+
4
+ "include": ["src"],
5
+
6
+ "exclude": ["**/__fixtures__/**", "**/__stories__/**", "**/__tests__/**"]
7
+ }
@@ -0,0 +1 @@
1
+ module.exports = require('../../web-components.webpack.config');