@stoplight/elements 9.0.16-beta-0.3 → 9.0.17

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 (68) hide show
  1. package/{dist/index.esm.js → index.esm.js} +3 -3
  2. package/{dist/index.mjs → index.mjs} +3 -3
  3. package/package.json +17 -77
  4. package/web-components.min.js +2 -0
  5. package/.storybook/main.js +0 -6
  6. package/.storybook/manager.js +0 -1
  7. package/.storybook/preview.jsx +0 -3
  8. package/dist/LICENSE +0 -190
  9. package/dist/README.md +0 -19
  10. package/dist/package.json +0 -52
  11. package/dist/web-components.min.js +0 -2
  12. package/jest.config.js +0 -7
  13. package/src/__fixtures__/api-descriptions/Instagram.ts +0 -1859
  14. package/src/__fixtures__/api-descriptions/badgesForSchema.ts +0 -36
  15. package/src/__fixtures__/api-descriptions/simpleApiWithInternalOperations.ts +0 -253
  16. package/src/__fixtures__/api-descriptions/simpleApiWithoutDescription.ts +0 -243
  17. package/src/__fixtures__/api-descriptions/todosApiBundled.ts +0 -430
  18. package/src/__fixtures__/api-descriptions/zoomApiYaml.ts +0 -6083
  19. package/src/components/API/APIWithResponsiveSidebarLayout.tsx +0 -125
  20. package/src/components/API/APIWithSidebarLayout.tsx +0 -158
  21. package/src/components/API/APIWithStackedLayout.tsx +0 -286
  22. package/src/components/API/__tests__/utils.test.ts +0 -1326
  23. package/src/components/API/utils.ts +0 -207
  24. package/src/containers/API.spec.tsx +0 -122
  25. package/src/containers/API.stories.tsx +0 -117
  26. package/src/containers/API.tsx +0 -277
  27. package/src/containers/story-helper.tsx +0 -53
  28. package/src/hooks/useExportDocumentProps.spec.tsx +0 -68
  29. package/src/hooks/useExportDocumentProps.tsx +0 -48
  30. package/src/index.ts +0 -6
  31. package/src/styles.css +0 -1
  32. package/src/utils/oas/__tests__/oas.spec.ts +0 -411
  33. package/src/utils/oas/index.ts +0 -192
  34. package/src/utils/oas/oas2.ts +0 -31
  35. package/src/utils/oas/oas3.ts +0 -54
  36. package/src/utils/oas/types.ts +0 -34
  37. package/src/web-components/__stories__/Api.stories.tsx +0 -63
  38. package/src/web-components/components.ts +0 -26
  39. package/src/web-components/index.ts +0 -3
  40. package/tsconfig.build.json +0 -18
  41. package/tsconfig.json +0 -7
  42. package/web-components.config.js +0 -1
  43. /package/{dist/__fixtures__ → __fixtures__}/api-descriptions/Instagram.d.ts +0 -0
  44. /package/{dist/__fixtures__ → __fixtures__}/api-descriptions/badgesForSchema.d.ts +0 -0
  45. /package/{dist/__fixtures__ → __fixtures__}/api-descriptions/simpleApiWithInternalOperations.d.ts +0 -0
  46. /package/{dist/__fixtures__ → __fixtures__}/api-descriptions/simpleApiWithoutDescription.d.ts +0 -0
  47. /package/{dist/__fixtures__ → __fixtures__}/api-descriptions/todosApiBundled.d.ts +0 -0
  48. /package/{dist/__fixtures__ → __fixtures__}/api-descriptions/zoomApiYaml.d.ts +0 -0
  49. /package/{dist/components → components}/API/APIWithResponsiveSidebarLayout.d.ts +0 -0
  50. /package/{dist/components → components}/API/APIWithSidebarLayout.d.ts +0 -0
  51. /package/{dist/components → components}/API/APIWithStackedLayout.d.ts +0 -0
  52. /package/{dist/components → components}/API/utils.d.ts +0 -0
  53. /package/{dist/containers → containers}/API.d.ts +0 -0
  54. /package/{dist/containers → containers}/API.spec.d.ts +0 -0
  55. /package/{dist/containers → containers}/API.stories.d.ts +0 -0
  56. /package/{dist/containers → containers}/story-helper.d.ts +0 -0
  57. /package/{dist/hooks → hooks}/useExportDocumentProps.d.ts +0 -0
  58. /package/{dist/hooks → hooks}/useExportDocumentProps.spec.d.ts +0 -0
  59. /package/{dist/index.d.ts → index.d.ts} +0 -0
  60. /package/{dist/index.js → index.js} +0 -0
  61. /package/{dist/styles.min.css → styles.min.css} +0 -0
  62. /package/{dist/utils → utils}/oas/index.d.ts +0 -0
  63. /package/{dist/utils → utils}/oas/oas2.d.ts +0 -0
  64. /package/{dist/utils → utils}/oas/oas3.d.ts +0 -0
  65. /package/{dist/utils → utils}/oas/types.d.ts +0 -0
  66. /package/{dist/web-components → web-components}/components.d.ts +0 -0
  67. /package/{dist/web-components → web-components}/index.d.ts +0 -0
  68. /package/{dist/web-components.min.js.LICENSE.txt → web-components.min.js.LICENSE.txt} +0 -0
package/jest.config.js DELETED
@@ -1,7 +0,0 @@
1
- module.exports = {
2
- ...require('../../jest.config'),
3
- reporters: [
4
- 'default',
5
- ['jest-junit', { suiteName: 'elements', outputFile: '<rootDir>/../../test-results/elements/results.xml' }],
6
- ],
7
- };