@stoplight/elements 9.0.12-beta-0.1 → 9.0.13

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