Skip to content

Commit 481e7d5

Browse files
committed
Merge branch 'main' into chore/provcon-4961--fix-gha-workflow
2 parents aad4635 + 54cb992 commit 481e7d5

File tree

6 files changed

+9
-10
lines changed

6 files changed

+9
-10
lines changed

packages/elements-core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@stoplight/elements-core",
3-
"version": "9.0.15",
3+
"version": "9.0.16",
44
"sideEffects": [
55
"web-components.min.js",
66
"src/web-components/**",

packages/elements-core/src/components/Docs/HttpService/HttpService.tsx

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,7 @@ const HttpServiceComponent = React.memo<HttpServiceProps>(
2222
({ data: unresolvedData, location = {}, layoutOptions, exportProps }) => {
2323
const { nodeHasChanged } = useOptionsCtx();
2424
const data = useResolvedObject(unresolvedData) as IHttpService;
25-
const { ref: layoutRef, isCompact } = useIsCompact(layoutOptions);
26-
25+
const { ref: layoutRef } = useIsCompact(layoutOptions);
2726
const { search, pathname } = location;
2827
const mocking = React.useContext(MockingContext);
2928
const query = new URLSearchParams(search);
@@ -43,7 +42,7 @@ const HttpServiceComponent = React.memo<HttpServiceProps>(
4342
<NodeAnnotation change={nameChanged} />
4443
</Box>
4544

46-
{exportProps && !layoutOptions?.hideExport && !isCompact && <ExportButton {...exportProps} />}
45+
{exportProps && !layoutOptions?.hideExport && <ExportButton {...exportProps} />}
4746
</Flex>
4847
)}
4948

packages/elements-core/src/components/Docs/Model/Model.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ const ModelComponent: React.FC<ModelProps> = ({
6262
<NodeAnnotation change={titleChanged} />
6363
</Box>
6464

65-
{exportProps && !layoutOptions?.hideExport && !isCompact && <ExportButton {...exportProps} />}
65+
{exportProps && !layoutOptions?.hideExport && <ExportButton {...exportProps} />}
6666
</Flex>
6767
);
6868

packages/elements-dev-portal/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@stoplight/elements-dev-portal",
3-
"version": "3.0.15",
3+
"version": "3.0.16",
44
"description": "UI components for composing beautiful developer documentation.",
55
"keywords": [],
66
"sideEffects": [
@@ -66,7 +66,7 @@
6666
"dependencies": {
6767
"@stoplight/markdown-viewer": "^5.7.1",
6868
"@stoplight/mosaic": "^1.53.5",
69-
"@stoplight/elements-core": "~9.0.15",
69+
"@stoplight/elements-core": "~9.0.16",
7070
"@stoplight/path": "^1.3.2",
7171
"@stoplight/types": "^14.0.0",
7272
"classnames": "^2.2.6",
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
// auto-updated during build
2-
export const appVersion = '3.0.15';
2+
export const appVersion = '3.0.16';

packages/elements/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@stoplight/elements",
3-
"version": "9.0.15",
3+
"version": "9.0.16",
44
"description": "UI components for composing beautiful developer documentation.",
55
"keywords": [],
66
"sideEffects": [
@@ -63,7 +63,7 @@
6363
]
6464
},
6565
"dependencies": {
66-
"@stoplight/elements-core": "~9.0.15",
66+
"@stoplight/elements-core": "~9.0.16",
6767
"@stoplight/http-spec": "^7.1.0",
6868
"@stoplight/json": "^3.18.1",
6969
"@stoplight/mosaic": "^1.53.5",

0 commit comments

Comments
 (0)