@fe-free/core 3.0.39 → 3.0.41

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 CHANGED
@@ -1,5 +1,21 @@
1
1
  # @fe-free/core
2
2
 
3
+ ## 3.0.41
4
+
5
+ ### Patch Changes
6
+
7
+ - feat: markdown
8
+ - @fe-free/icons@3.0.41
9
+ - @fe-free/tool@3.0.41
10
+
11
+ ## 3.0.40
12
+
13
+ ### Patch Changes
14
+
15
+ - feat: some
16
+ - @fe-free/icons@3.0.40
17
+ - @fe-free/tool@3.0.40
18
+
3
19
  ## 3.0.39
4
20
 
5
21
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fe-free/core",
3
- "version": "3.0.39",
3
+ "version": "3.0.41",
4
4
  "description": "",
5
5
  "main": "./src/index.ts",
6
6
  "author": "",
@@ -46,8 +46,8 @@
46
46
  "antd": "^5.27.1",
47
47
  "dayjs": "~1.11.10",
48
48
  "react": "^19.2.0",
49
- "@fe-free/icons": "3.0.39",
50
- "@fe-free/tool": "3.0.39"
49
+ "@fe-free/icons": "3.0.41",
50
+ "@fe-free/tool": "3.0.41"
51
51
  },
52
52
  "scripts": {
53
53
  "test": "echo \"Error: no test specified\" && exit 1"
@@ -1,4 +1,4 @@
1
- import 'github-markdown-css/github-markdown.css';
1
+ import 'github-markdown-css/github-markdown-light.css';
2
2
  import { useMemo } from 'react';
3
3
  import ReactMarkdown from 'react-markdown';
4
4
  import rehypeRaw from 'rehype-raw';
package/src/style.scss CHANGED
@@ -14,6 +14,19 @@
14
14
  /* stylelint-disable-next-line at-rule-no-unknown */
15
15
  @tailwind utilities;
16
16
 
17
+ ::-webkit-scrollbar {
18
+ width: 8px;
19
+ }
20
+
21
+ ::-webkit-scrollbar-thumb {
22
+ background: #ccc;
23
+ border-radius: 2px;
24
+ }
25
+
26
+ ::-webkit-scrollbar-track {
27
+ background: transparent;
28
+ }
29
+
17
30
  .fec-app-hidden-form-item-label-colon {
18
31
  // 隐藏 label 的冒号
19
32
  .ant-form-item .ant-form-item-label > label::after {