@stoplight/elements 9.0.16 → 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.
- package/index.esm.js +3 -3
- package/index.mjs +3 -3
- package/package.json +2 -2
- package/web-components.min.js +1 -1
package/index.esm.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { isHttpOperation, isHttpWebhookOperation, isHttpService,
|
|
1
|
+
import { resolveUrl, isHttpOperation, isHttpWebhookOperation, isHttpService, HttpMethodColors, DeprecatedBadge, ParsedDocs, TryItWithRequestSamples, Docs, resolveRelativeLink, ResponsiveSidebarLayout, ElementsOptionsProvider, SidebarLayout, Logo, TableOfContents, PoweredByLink, slugify, withRouter, withStyles, withPersistenceBoundary, withMosaicProvider, withQueryClientProvider, useResponsiveLayout, useParsedValue, useBundleRefsIntoDocument, NonIdealState, InlineRefResolverProvider } from '@stoplight/elements-core';
|
|
2
2
|
import { Box, Flex, Icon, Tabs, TabList, Tab, TabPanels, TabPanel, Heading } from '@stoplight/mosaic';
|
|
3
3
|
import { NodeType } from '@stoplight/types';
|
|
4
4
|
import cn from 'classnames';
|
|
@@ -10,8 +10,8 @@ import { useLocation, Navigate, Link } from 'react-router-dom';
|
|
|
10
10
|
import { safeStringify } from '@stoplight/yaml';
|
|
11
11
|
import saver from 'file-saver';
|
|
12
12
|
import { OPERATION_CONFIG, WEBHOOK_CONFIG } from '@stoplight/http-spec/oas';
|
|
13
|
-
import {
|
|
14
|
-
import {
|
|
13
|
+
import { transformOas2Operation, transformOas2Service } from '@stoplight/http-spec/oas2';
|
|
14
|
+
import { transformOas3Operation, transformOas3Service } from '@stoplight/http-spec/oas3';
|
|
15
15
|
import { encodePointerFragment, pointerToPath } from '@stoplight/json';
|
|
16
16
|
import get from 'lodash/get.js';
|
|
17
17
|
import isObject from 'lodash/isObject.js';
|
package/index.mjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { isHttpOperation, isHttpWebhookOperation, isHttpService,
|
|
1
|
+
import { resolveUrl, isHttpOperation, isHttpWebhookOperation, isHttpService, HttpMethodColors, DeprecatedBadge, ParsedDocs, TryItWithRequestSamples, Docs, resolveRelativeLink, ResponsiveSidebarLayout, ElementsOptionsProvider, SidebarLayout, Logo, TableOfContents, PoweredByLink, slugify, withRouter, withStyles, withPersistenceBoundary, withMosaicProvider, withQueryClientProvider, useResponsiveLayout, useParsedValue, useBundleRefsIntoDocument, NonIdealState, InlineRefResolverProvider } from '@stoplight/elements-core';
|
|
2
2
|
import { Box, Flex, Icon, Tabs, TabList, Tab, TabPanels, TabPanel, Heading } from '@stoplight/mosaic';
|
|
3
3
|
import { NodeType } from '@stoplight/types';
|
|
4
4
|
import cn from 'classnames';
|
|
@@ -10,8 +10,8 @@ import { useLocation, Navigate, Link } from 'react-router-dom';
|
|
|
10
10
|
import { safeStringify } from '@stoplight/yaml';
|
|
11
11
|
import saver from 'file-saver';
|
|
12
12
|
import { OPERATION_CONFIG, WEBHOOK_CONFIG } from '@stoplight/http-spec/oas';
|
|
13
|
-
import {
|
|
14
|
-
import {
|
|
13
|
+
import { transformOas2Operation, transformOas2Service } from '@stoplight/http-spec/oas2';
|
|
14
|
+
import { transformOas3Operation, transformOas3Service } from '@stoplight/http-spec/oas3';
|
|
15
15
|
import { encodePointerFragment, pointerToPath } from '@stoplight/json';
|
|
16
16
|
import get from 'lodash/get.js';
|
|
17
17
|
import isObject from 'lodash/isObject.js';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stoplight/elements",
|
|
3
|
-
"version": "9.0.
|
|
3
|
+
"version": "9.0.17",
|
|
4
4
|
"description": "UI components for composing beautiful developer documentation.",
|
|
5
5
|
"keywords": [],
|
|
6
6
|
"main": "./index.js",
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
"react-dom": ">=16.8"
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"@stoplight/elements-core": "~9.0.
|
|
29
|
+
"@stoplight/elements-core": "~9.0.17",
|
|
30
30
|
"@stoplight/http-spec": "^7.1.0",
|
|
31
31
|
"@stoplight/json": "^3.18.1",
|
|
32
32
|
"@stoplight/mosaic": "^1.53.5",
|