@apify/ui-library 1.113.1-featjsonschemaviewerv2-1b0d8e.56 → 1.114.0

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@apify/ui-library",
3
- "version": "1.113.1-featjsonschemaviewerv2-1b0d8e.56+b26ee97ceca",
3
+ "version": "1.114.0",
4
4
  "description": "React UI library used by apify.com",
5
5
  "license": "Apache-2.0",
6
6
  "type": "module",
@@ -64,5 +64,5 @@
64
64
  "src",
65
65
  "style"
66
66
  ],
67
- "gitHead": "b26ee97ceca0d836e05e535a0c2ce678d4f8a8a6"
67
+ "gitHead": "bece55b2533ea1390656b9e9ee1e77ef1c973af4"
68
68
  }
@@ -240,9 +240,10 @@ export const MarkdownLink: React.FC<WithOptional<LinkProps, 'to'>> = ({
240
240
  children,
241
241
  rel,
242
242
  className,
243
+ hideExternalIcon = true,
243
244
  }) => {
244
245
  return (to && typeof to === 'string') ? (
245
- <StyledMarkdownLink to={to} hideExternalIcon={true} rel={rel} className={className}>{children}</StyledMarkdownLink>
246
+ <StyledMarkdownLink to={to} hideExternalIcon={hideExternalIcon} rel={rel} className={className}>{children}</StyledMarkdownLink>
246
247
  ) : (
247
248
  (<span>{children}</span>) // Invalid links can be rendered as a regular span instead
248
249
  );