@apify/ui-library 0.65.3-featuresyntaxhighlighter-48cb44.38 → 0.66.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/CHANGELOG.md +19 -0
- package/dist/src/components/action_link.d.ts +3 -1
- package/dist/src/components/action_link.d.ts.map +1 -1
- package/dist/src/components/action_link.js +2 -2
- package/dist/src/components/action_link.js.map +1 -1
- package/dist/src/components/code/code_block/code_block.d.ts.map +1 -1
- package/dist/src/components/code/code_block/code_block.js +20 -14
- package/dist/src/components/code/code_block/code_block.js.map +1 -1
- package/dist/src/components/code/code_block/code_block.styled.d.ts +2 -8
- package/dist/src/components/code/code_block/code_block.styled.d.ts.map +1 -1
- package/dist/src/components/code/code_block/code_block.styled.js +68 -14
- package/dist/src/components/code/code_block/code_block.styled.js.map +1 -1
- package/dist/src/components/code/code_block/utils.d.ts +1 -5
- package/dist/src/components/code/code_block/utils.d.ts.map +1 -1
- package/dist/src/components/code/code_block/utils.js +12 -23
- package/dist/src/components/code/code_block/utils.js.map +1 -1
- package/dist/src/components/code/index.d.ts +0 -1
- package/dist/src/components/code/index.d.ts.map +1 -1
- package/dist/src/components/code/index.js +0 -1
- package/dist/src/components/code/index.js.map +1 -1
- package/dist/src/components/code/one_line_code/one_line_code.d.ts.map +1 -1
- package/dist/src/components/code/one_line_code/one_line_code.js +23 -5
- package/dist/src/components/code/one_line_code/one_line_code.js.map +1 -1
- package/dist/src/components/code/syntax_highlighter.d.ts +15 -0
- package/dist/src/components/code/syntax_highlighter.d.ts.map +1 -0
- package/dist/src/components/code/syntax_highlighter.js +103 -0
- package/dist/src/components/code/syntax_highlighter.js.map +1 -0
- package/dist/src/components/image.d.ts +4 -5
- package/dist/src/components/image.d.ts.map +1 -1
- package/dist/src/components/image.js.map +1 -1
- package/dist/src/ui_dependency_provider.d.ts +8 -7
- package/dist/src/ui_dependency_provider.d.ts.map +1 -1
- package/dist/src/ui_dependency_provider.js.map +1 -1
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +5 -5
- package/src/components/action_link.tsx +5 -4
- package/src/components/code/code_block/code_block.styled.tsx +69 -21
- package/src/components/code/code_block/code_block.tsx +36 -25
- package/src/components/code/code_block/utils.ts +19 -0
- package/src/components/code/index.ts +0 -1
- package/src/components/code/one_line_code/one_line_code.tsx +28 -9
- package/src/components/code/syntax_highlighter.tsx +134 -0
- package/src/components/image.tsx +2 -1
- package/src/ui_dependency_provider.tsx +9 -1
- package/dist/src/components/code/prism_highlighter.d.ts +0 -15
- package/dist/src/components/code/prism_highlighter.d.ts.map +0 -1
- package/dist/src/components/code/prism_highlighter.js +0 -116
- package/dist/src/components/code/prism_highlighter.js.map +0 -1
- package/src/components/code/code_block/utils.tsx +0 -50
- package/src/components/code/prism_highlighter.tsx +0 -178
|
@@ -0,0 +1,103 @@
|
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
+
/* eslint-disable @typescript-eslint/ban-ts-comment */
|
|
3
|
+
import { forwardRef } from 'react';
|
|
4
|
+
// @ts-ignore The library is badly typed and does not export the type
|
|
5
|
+
import bash from 'react-syntax-highlighter/dist/esm/languages/prism/bash.js';
|
|
6
|
+
// @ts-ignore The library is badly typed and does not export the type
|
|
7
|
+
import dockerFile from 'react-syntax-highlighter/dist/esm/languages/prism/docker.js';
|
|
8
|
+
// @ts-ignore The library is badly typed and does not export the type
|
|
9
|
+
import http from 'react-syntax-highlighter/dist/esm/languages/prism/http.js';
|
|
10
|
+
// @ts-ignore The library is badly typed and does not export the type
|
|
11
|
+
import js from 'react-syntax-highlighter/dist/esm/languages/prism/javascript.js';
|
|
12
|
+
// @ts-ignore The library is badly typed and does not export the type
|
|
13
|
+
import json from 'react-syntax-highlighter/dist/esm/languages/prism/json.js';
|
|
14
|
+
// @ts-ignore The library is badly typed and does not export the type
|
|
15
|
+
import html from 'react-syntax-highlighter/dist/esm/languages/prism/markup.js';
|
|
16
|
+
// @ts-ignore The library is badly typed and does not export the type
|
|
17
|
+
import python from 'react-syntax-highlighter/dist/esm/languages/prism/python.js';
|
|
18
|
+
// @ts-ignore The library is badly typed and does not export the type
|
|
19
|
+
import ts from 'react-syntax-highlighter/dist/esm/languages/prism/typescript.js';
|
|
20
|
+
// @ts-ignore The library is badly typed and does not export the type
|
|
21
|
+
import xml from 'react-syntax-highlighter/dist/esm/languages/prism/xml-doc.js';
|
|
22
|
+
// @ts-ignore The library is badly typed and does not export the type
|
|
23
|
+
import yaml from 'react-syntax-highlighter/dist/esm/languages/prism/yaml.js';
|
|
24
|
+
// @ts-ignore The library is badly typed and does not export the type
|
|
25
|
+
import ReactSyntaxHighlighter from 'react-syntax-highlighter/dist/esm/prism-light.js';
|
|
26
|
+
// @ts-ignore The library is badly typed and does not export the type
|
|
27
|
+
import dark from 'react-syntax-highlighter/dist/esm/styles/prism/night-owl.js';
|
|
28
|
+
// @ts-ignore The library is badly typed and does not export the type
|
|
29
|
+
import light from 'react-syntax-highlighter/dist/esm/styles/prism/prism.js';
|
|
30
|
+
/* tslint:enable */
|
|
31
|
+
import styled, { css } from 'styled-components';
|
|
32
|
+
import { theme } from '../../design_system/theme.js';
|
|
33
|
+
import { useSharedUiDependencies } from '../../ui_dependency_provider.js';
|
|
34
|
+
import { Box } from '../box.js';
|
|
35
|
+
import { Text } from '../text/index.js';
|
|
36
|
+
ReactSyntaxHighlighter.registerLanguage('typescript', ts);
|
|
37
|
+
ReactSyntaxHighlighter.registerLanguage('javascript', js);
|
|
38
|
+
ReactSyntaxHighlighter.registerLanguage('json', json);
|
|
39
|
+
ReactSyntaxHighlighter.registerLanguage('bash', bash);
|
|
40
|
+
ReactSyntaxHighlighter.registerLanguage('docker', dockerFile);
|
|
41
|
+
ReactSyntaxHighlighter.registerLanguage('html', html);
|
|
42
|
+
ReactSyntaxHighlighter.registerLanguage('xml', xml);
|
|
43
|
+
ReactSyntaxHighlighter.registerLanguage('yaml', yaml);
|
|
44
|
+
ReactSyntaxHighlighter.registerLanguage('python', python);
|
|
45
|
+
ReactSyntaxHighlighter.registerLanguage('http', http);
|
|
46
|
+
ReactSyntaxHighlighter.registerLanguage('jsonp', json);
|
|
47
|
+
ReactSyntaxHighlighter.registerLanguage('jsonl', json);
|
|
48
|
+
ReactSyntaxHighlighter.registerLanguage('rss', xml);
|
|
49
|
+
const StyledPre = styled(Text) `
|
|
50
|
+
width: 100%;
|
|
51
|
+
position: relative;
|
|
52
|
+
|
|
53
|
+
*,
|
|
54
|
+
*::before,
|
|
55
|
+
*::after {
|
|
56
|
+
text-shadow: none !important;
|
|
57
|
+
font-style: normal !important;
|
|
58
|
+
font-family: inherit !important;
|
|
59
|
+
font-size: inherit !important;
|
|
60
|
+
font-weight: inherit !important;
|
|
61
|
+
line-height: inherit !important;
|
|
62
|
+
background-color: transparent !important;
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
code {
|
|
66
|
+
min-width: 100%;
|
|
67
|
+
display: inline-block;
|
|
68
|
+
vertical-align: middle;
|
|
69
|
+
overflow: hidden;
|
|
70
|
+
}
|
|
71
|
+
`;
|
|
72
|
+
// Syntax highlighter uses inline style a lot which makes it hard to override them. To do so, we make the library not
|
|
73
|
+
// use styles that we wish to set on our own (font-based styles, spacing, background, ...),
|
|
74
|
+
const inlineCssReset = {
|
|
75
|
+
fontFamily: undefined,
|
|
76
|
+
fontSize: undefined,
|
|
77
|
+
fontWeight: undefined,
|
|
78
|
+
lineHeight: undefined,
|
|
79
|
+
background: undefined,
|
|
80
|
+
margin: undefined,
|
|
81
|
+
padding: undefined,
|
|
82
|
+
};
|
|
83
|
+
export const SyntaxHighlighter = forwardRef(({ size, children, ...rest }, ref) => {
|
|
84
|
+
const { uiTheme } = useSharedUiDependencies();
|
|
85
|
+
const PreTag = (preProps) => {
|
|
86
|
+
return _jsx(StyledPre, { ...preProps, size: size, forwardedAs: 'pre', type: 'code', ref: ref });
|
|
87
|
+
};
|
|
88
|
+
return (_jsx(ReactSyntaxHighlighter, { PreTag: PreTag, customStyle: inlineCssReset, className: "CodePre", style: uiTheme === 'DARK' ? dark : light, ...rest, children: children }));
|
|
89
|
+
});
|
|
90
|
+
export const SyntaxHighlighterBaseStylesWrapper = styled(Box) `
|
|
91
|
+
background-color: ${theme.color.neutral.backgroundMuted} !important;
|
|
92
|
+
border: 1px solid ${theme.color.neutral.border};
|
|
93
|
+
border-radius: ${theme.radius.radius12};
|
|
94
|
+
overflow: hidden;
|
|
95
|
+
|
|
96
|
+
width: 100%;
|
|
97
|
+
${({ $fullWidth }) => !$fullWidth && css `max-width: 860px;`}
|
|
98
|
+
${({ $fullHeight }) => !$fullHeight && css `max-height: 600px;`}
|
|
99
|
+
|
|
100
|
+
background-color: transparent;
|
|
101
|
+
position: relative;
|
|
102
|
+
`;
|
|
103
|
+
//# sourceMappingURL=syntax_highlighter.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"syntax_highlighter.js","sourceRoot":"","sources":["../../../../src/components/code/syntax_highlighter.tsx"],"names":[],"mappings":"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"}
|
|
@@ -1,11 +1,10 @@
|
|
|
1
|
+
import type { ImageProxyOptions } from '../ui_dependency_provider.js';
|
|
1
2
|
import { type BoxProps } from './box.js';
|
|
2
|
-
|
|
3
|
+
export declare const Image: import("react").ForwardRefExoticComponent<{
|
|
3
4
|
src: string;
|
|
4
5
|
alt?: string;
|
|
5
6
|
width?: number;
|
|
6
7
|
height?: number;
|
|
7
|
-
loading?:
|
|
8
|
-
}
|
|
9
|
-
export declare const Image: import("react").ForwardRefExoticComponent<ImageProps & Omit<BoxProps, "as"> & import("react").RefAttributes<HTMLImageElement>>;
|
|
10
|
-
export {};
|
|
8
|
+
loading?: "eager" | "lazy" | undefined;
|
|
9
|
+
} & ImageProxyOptions & Omit<BoxProps, "as"> & import("react").RefAttributes<HTMLImageElement>>;
|
|
11
10
|
//# sourceMappingURL=image.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"image.d.ts","sourceRoot":"","sources":["../../../src/components/image.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"image.d.ts","sourceRoot":"","sources":["../../../src/components/image.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,8BAA8B,CAAC;AAEtE,OAAO,EAAO,KAAK,QAAQ,EAAE,MAAM,UAAU,CAAC;AAU9C,eAAO,MAAM,KAAK;SAPT,MAAM;UACL,MAAM;YACJ,MAAM;aACL,MAAM;cACL,OAAO,GAAG,MAAM,GAAG,SAAS;+FAYxC,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"image.js","sourceRoot":"","sources":["../../../src/components/image.tsx"],"names":[],"mappings":";AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,OAAO,CAAC;
|
|
1
|
+
{"version":3,"file":"image.js","sourceRoot":"","sources":["../../../src/components/image.tsx"],"names":[],"mappings":";AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,OAAO,CAAC;AAGnC,OAAO,EAAE,uBAAuB,EAAE,MAAM,8BAA8B,CAAC;AACvE,OAAO,EAAE,GAAG,EAAiB,MAAM,UAAU,CAAC;AAU9C,MAAM,CAAC,MAAM,KAAK,GAAG,UAAU,CAAsD,CAAC,KAAK,EAAE,GAAG,EAAE,EAAE;IAChG,MAAM,EAAE,aAAa,EAAE,GAAG,uBAAuB,EAAE,CAAC;IACpD,OAAO,CACH,KAAC,GAAG,IACA,GAAG,EAAE,GAAG,KACJ,KAAK,EACT,EAAE,EAAE,aAAa,GACnB,CACL,CAAC;AACN,CAAC,CAAC,CAAC"}
|
|
@@ -4,6 +4,13 @@ export interface AgnosticInternalLinkProps extends Omit<React.AnchorHTMLAttribut
|
|
|
4
4
|
replace?: boolean;
|
|
5
5
|
href: string;
|
|
6
6
|
}
|
|
7
|
+
export type ImageProxyOptions = {
|
|
8
|
+
extension?: string;
|
|
9
|
+
resize?: {
|
|
10
|
+
width?: number;
|
|
11
|
+
height?: number;
|
|
12
|
+
};
|
|
13
|
+
};
|
|
7
14
|
export interface UiDependencies {
|
|
8
15
|
InternalLink: React.ForwardRefExoticComponent<AgnosticInternalLinkProps & React.RefAttributes<HTMLAnchorElement>>;
|
|
9
16
|
InternalImage: React.ForwardRefExoticComponent<React.RefAttributes<HTMLImageElement>>;
|
|
@@ -11,13 +18,7 @@ export interface UiDependencies {
|
|
|
11
18
|
windowLocationHost: string;
|
|
12
19
|
isHrefTrusted: (href: string) => boolean;
|
|
13
20
|
uiTheme?: UiThemeOption;
|
|
14
|
-
generateProxyImageUrl?: (url: string, options:
|
|
15
|
-
extension?: string;
|
|
16
|
-
resize?: {
|
|
17
|
-
width?: number;
|
|
18
|
-
height?: number;
|
|
19
|
-
};
|
|
20
|
-
}) => string;
|
|
21
|
+
generateProxyImageUrl?: (url: string, options: ImageProxyOptions) => string;
|
|
21
22
|
}
|
|
22
23
|
interface UiDependencyProviderProps {
|
|
23
24
|
children: React.ReactNode;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ui_dependency_provider.d.ts","sourceRoot":"","sources":["../../src/ui_dependency_provider.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAoC,MAAM,OAAO,CAAC;AAEzD,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,0BAA0B,CAAC;AAE9D,MAAM,WAAW,yBAA0B,SAAQ,IAAI,CAAC,KAAK,CAAC,oBAAoB,CAAC,iBAAiB,CAAC,EAAE,MAAM,CAAC;IAI1G,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,IAAI,EAAE,MAAM,CAAC;CAChB;AAED,MAAM,WAAW,cAAc;IAC3B,YAAY,EAAE,KAAK,CAAC,yBAAyB,CAAC,yBAAyB,GAAG,KAAK,CAAC,aAAa,CAAC,iBAAiB,CAAC,CAAC,CAAC;IAClH,aAAa,EAAE,KAAK,CAAC,yBAAyB,CAAC,KAAK,CAAC,aAAa,CAAC,gBAAgB,CAAC,CAAC,CAAC;IAGtF,UAAU,CAAC,EAAE,CAAC,EAAE,EAAE,MAAM,EAAE,IAAI,CAAC,EAAE,MAAM,KAAK,IAAI,CAAC;IAEjD,kBAAkB,EAAE,MAAM,CAAC;IAE3B,aAAa,EAAE,CAAC,IAAI,EAAE,MAAM,KAAK,OAAO,CAAC;IACzC,OAAO,CAAC,EAAE,aAAa,CAAC;IAExB,qBAAqB,CAAC,EAAE,CAAC,GAAG,EAAE,MAAM,EAAE,OAAO,EAAE
|
|
1
|
+
{"version":3,"file":"ui_dependency_provider.d.ts","sourceRoot":"","sources":["../../src/ui_dependency_provider.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAoC,MAAM,OAAO,CAAC;AAEzD,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,0BAA0B,CAAC;AAE9D,MAAM,WAAW,yBAA0B,SAAQ,IAAI,CAAC,KAAK,CAAC,oBAAoB,CAAC,iBAAiB,CAAC,EAAE,MAAM,CAAC;IAI1G,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,IAAI,EAAE,MAAM,CAAC;CAChB;AAED,MAAM,MAAM,iBAAiB,GAAG;IAC5B,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,MAAM,CAAC,EAAE;QACL,KAAK,CAAC,EAAE,MAAM,CAAC;QACf,MAAM,CAAC,EAAE,MAAM,CAAC;KACnB,CAAA;CACJ,CAAA;AAED,MAAM,WAAW,cAAc;IAC3B,YAAY,EAAE,KAAK,CAAC,yBAAyB,CAAC,yBAAyB,GAAG,KAAK,CAAC,aAAa,CAAC,iBAAiB,CAAC,CAAC,CAAC;IAClH,aAAa,EAAE,KAAK,CAAC,yBAAyB,CAAC,KAAK,CAAC,aAAa,CAAC,gBAAgB,CAAC,CAAC,CAAC;IAGtF,UAAU,CAAC,EAAE,CAAC,EAAE,EAAE,MAAM,EAAE,IAAI,CAAC,EAAE,MAAM,KAAK,IAAI,CAAC;IAEjD,kBAAkB,EAAE,MAAM,CAAC;IAE3B,aAAa,EAAE,CAAC,IAAI,EAAE,MAAM,KAAK,OAAO,CAAC;IACzC,OAAO,CAAC,EAAE,aAAa,CAAC;IAExB,qBAAqB,CAAC,EAAE,CAAC,GAAG,EAAE,MAAM,EAAE,OAAO,EAAE,iBAAiB,KAAK,MAAM,CAAA;CAC9E;AAED,UAAU,yBAAyB;IAC/B,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;IAC1B,YAAY,EAAE,cAAc,CAAA;CAC/B;AAID,eAAO,MAAM,uBAAuB,sBAInC,CAAC;AAEF,eAAO,MAAM,oBAAoB,EAAE,KAAK,CAAC,EAAE,CAAC,yBAAyB,CASpE,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ui_dependency_provider.js","sourceRoot":"","sources":["../../src/ui_dependency_provider.tsx"],"names":[],"mappings":";AAAA,OAAc,EAAE,aAAa,EAAE,UAAU,EAAE,MAAM,OAAO,CAAC;
|
|
1
|
+
{"version":3,"file":"ui_dependency_provider.js","sourceRoot":"","sources":["../../src/ui_dependency_provider.tsx"],"names":[],"mappings":";AAAA,OAAc,EAAE,aAAa,EAAE,UAAU,EAAE,MAAM,OAAO,CAAC;AAwCzD,MAAM,yBAAyB,GAAG,aAAa,CAAwB,IAAI,CAAC,CAAC;AAE7E,MAAM,CAAC,MAAM,uBAAuB,GAAG,GAAG,EAAE;IACxC,MAAM,cAAc,GAAG,UAAU,CAAC,yBAAyB,CAAC,CAAC;IAC7D,IAAI,CAAC,cAAc;QAAE,MAAM,IAAI,KAAK,CAAC,qDAAqD,CAAC,CAAC;IAC5F,OAAO,cAAc,CAAC;AAC1B,CAAC,CAAC;AAEF,MAAM,CAAC,MAAM,oBAAoB,GAAwC,CAAC,EACtE,QAAQ,EACR,YAAY,GACf,EAAE,EAAE;IACD,OAAO,CACH,KAAC,yBAAyB,CAAC,QAAQ,IAAC,KAAK,EAAE,YAAY,YAClD,QAAQ,GACwB,CACxC,CAAC;AACN,CAAC,CAAC"}
|