@lobehub/ui 1.119.2 → 1.119.4

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.
@@ -34,7 +34,9 @@ var EmojiPicker = /*#__PURE__*/memo(function (_ref) {
34
34
  return _context.stop();
35
35
  }
36
36
  }, _callee);
37
- }))),
37
+ })), {
38
+ revalidateOnFocus: false
39
+ }),
38
40
  i18n = _useSWR.data;
39
41
  var _useMergeState = useMergeState('🤖', {
40
42
  defaultValue: defaultAvatar,
@@ -6,6 +6,7 @@ function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t =
6
6
  import { Collapse, Divider, Image, Typography } from 'antd';
7
7
  import { memo } from 'react';
8
8
  import { ErrorBoundary } from 'react-error-boundary';
9
+ import { Flexbox } from 'react-layout-kit';
9
10
  import ReactMarkdown from 'react-markdown';
10
11
  import rehypeKatex from 'rehype-katex';
11
12
  import remarkGfm from 'remark-gfm';
@@ -41,7 +42,19 @@ var Markdown = /*#__PURE__*/memo(function (_ref) {
41
42
  });
42
43
  },
43
44
  img: function img(props) {
44
- return /*#__PURE__*/_jsx(Image, _objectSpread({}, props));
45
+ return /*#__PURE__*/_jsx(Flexbox, {
46
+ className: styles.imageWrapper,
47
+ children: /*#__PURE__*/_jsx(Image, _objectSpread({
48
+ preview: {
49
+ styles: {
50
+ mask: {
51
+ backdropFilter: 'blur(2px)'
52
+ }
53
+ }
54
+ },
55
+ wrapperClassName: styles.image
56
+ }, props))
57
+ });
45
58
  },
46
59
  pre: fullFeaturedCodeBlock ? CodeFullFeatured : CodeLite
47
60
  };
@@ -49,22 +62,31 @@ var Markdown = /*#__PURE__*/memo(function (_ref) {
49
62
  className: className,
50
63
  onDoubleClick: onDoubleClick,
51
64
  style: style,
52
- children: /*#__PURE__*/_jsx(ErrorBoundary, {
53
- fallback: /*#__PURE__*/_jsx(ReactMarkdown, _objectSpread(_objectSpread({
54
- className: styles.markdown,
55
- components: components,
56
- remarkPlugins: [remarkGfm]
57
- }, rest), {}, {
58
- children: children
59
- })),
60
- children: /*#__PURE__*/_jsx(ReactMarkdown, _objectSpread(_objectSpread({
61
- className: styles.markdown,
62
- components: components,
63
- rehypePlugins: [rehypeKatex],
64
- remarkPlugins: [remarkGfm, remarkMath]
65
- }, rest), {}, {
66
- children: children
67
- }))
65
+ children: /*#__PURE__*/_jsx(Image.PreviewGroup, {
66
+ preview: {
67
+ styles: {
68
+ mask: {
69
+ backdropFilter: 'blur(2px)'
70
+ }
71
+ }
72
+ },
73
+ children: /*#__PURE__*/_jsx(ErrorBoundary, {
74
+ fallback: /*#__PURE__*/_jsx(ReactMarkdown, _objectSpread(_objectSpread({
75
+ className: styles.markdown,
76
+ components: components,
77
+ remarkPlugins: [remarkGfm]
78
+ }, rest), {}, {
79
+ children: children
80
+ })),
81
+ children: /*#__PURE__*/_jsx(ReactMarkdown, _objectSpread(_objectSpread({
82
+ className: styles.markdown,
83
+ components: components,
84
+ rehypePlugins: [rehypeKatex],
85
+ remarkPlugins: [remarkGfm, remarkMath]
86
+ }, rest), {}, {
87
+ children: children
88
+ }))
89
+ })
68
90
  })
69
91
  });
70
92
  });
@@ -1,3 +1,5 @@
1
1
  export declare const useStyles: (props?: unknown) => import("antd-style").ReturnStyles<{
2
+ image: import("antd-style").SerializedStyles;
3
+ imageWrapper: import("antd-style").SerializedStyles;
2
4
  markdown: any;
3
5
  }>;
@@ -1,7 +1,14 @@
1
+ import _taggedTemplateLiteral from "@babel/runtime/helpers/esm/taggedTemplateLiteral";
2
+ var _templateObject, _templateObject2;
1
3
  import { createStyles } from 'antd-style';
4
+ import { rgba } from 'polished';
2
5
  export var useStyles = createStyles(function (_ref) {
3
- var stylish = _ref.stylish;
6
+ var stylish = _ref.stylish,
7
+ token = _ref.token,
8
+ css = _ref.css;
4
9
  return {
10
+ image: css(_templateObject || (_templateObject = _taggedTemplateLiteral(["\n overflow: hidden;\n width: 100%;\n height: 100%;\n\n img {\n width: 100% !important;\n height: 100% !important;\n object-fit: contain;\n }\n "]))),
11
+ imageWrapper: css(_templateObject2 || (_templateObject2 = _taggedTemplateLiteral(["\n position: relative;\n\n overflow: hidden;\n\n margin-block: 0 1em;\n\n background: ", ";\n border-radius: ", "px;\n box-shadow: 0 0 0 1px ", ";\n "])), rgba(token.colorBgLayout, 0.25), token.borderRadius, token.colorFillTertiary),
5
12
  markdown: stylish.markdown
6
13
  };
7
14
  });
@@ -1,3 +1,5 @@
1
1
  export declare const FALLBACK_LANG = "txt";
2
- export declare const useHighlight: (text: string, lang: string, isDarkMode: boolean) => import("swr/_internal").SWRResponse<string, any, any>;
2
+ export declare const useHighlight: (text: string, lang: string, isDarkMode: boolean) => import("swr/_internal").SWRResponse<string, any, {
3
+ revalidateOnFocus: false;
4
+ }>;
3
5
  export { default as languageMap } from './languageMap';
@@ -69,6 +69,8 @@ export var useHighlight = function useHighlight(text, lang, isDarkMode) {
69
69
  return _context2.stop();
70
70
  }
71
71
  }, _callee2, null, [[0, 9]]);
72
- })));
72
+ })), {
73
+ revalidateOnFocus: false
74
+ });
73
75
  };
74
76
  export { default as languageMap } from "./languageMap";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lobehub/ui",
3
- "version": "1.119.2",
3
+ "version": "1.119.4",
4
4
  "description": "Lobe UI is an open-source UI component library for building AIGC web apps",
5
5
  "keywords": [
6
6
  "lobehub",