@apify/ui-library 1.113.0 → 1.113.1-featjsonschemaviewerv2-1b0d8e.64
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/dist/src/components/card_container.js +1 -1
- package/dist/src/components/simple_markdown/simple_markdown_components.d.ts.map +1 -1
- package/dist/src/components/simple_markdown/simple_markdown_components.js +2 -2
- package/dist/src/components/simple_markdown/simple_markdown_components.js.map +1 -1
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +2 -2
- package/src/components/card_container.tsx +1 -1
- package/src/components/simple_markdown/simple_markdown_components.tsx +2 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@apify/ui-library",
|
|
3
|
-
"version": "1.113.
|
|
3
|
+
"version": "1.113.1-featjsonschemaviewerv2-1b0d8e.64+717d76b559e",
|
|
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": "
|
|
67
|
+
"gitHead": "717d76b559e6e4134f5d865b51907e5e2279ba3e"
|
|
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={
|
|
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
|
);
|