@fe-free/core 4.1.42 → 4.1.43

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,13 @@
1
1
  # @fe-free/core
2
2
 
3
+ ## 4.1.43
4
+
5
+ ### Patch Changes
6
+
7
+ - fix: valueType
8
+ - @fe-free/icons@4.1.43
9
+ - @fe-free/tool@4.1.43
10
+
3
11
  ## 4.1.42
4
12
 
5
13
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fe-free/core",
3
- "version": "4.1.42",
3
+ "version": "4.1.43",
4
4
  "description": "",
5
5
  "main": "./src/index.ts",
6
6
  "author": "",
@@ -52,8 +52,8 @@
52
52
  "i18next-icu": "^2.4.1",
53
53
  "react": "^19.2.0",
54
54
  "react-i18next": "^16.4.0",
55
- "@fe-free/icons": "4.1.42",
56
- "@fe-free/tool": "4.1.42"
55
+ "@fe-free/icons": "4.1.43",
56
+ "@fe-free/tool": "4.1.43"
57
57
  },
58
58
  "scripts": {
59
59
  "i18n-extract": "rm -rf ./src/locales/zh-CN && npx i18next-cli extract"
@@ -43,7 +43,7 @@ function Render(text, props: ProFormItemProps<JSONModalProps>) {
43
43
  },
44
44
  }}
45
45
  >
46
- <div className="h-[500px]">
46
+ <div>
47
47
  <EditorJSON value={jsonText} readonly />
48
48
  </div>
49
49
  </Modal>
@@ -12,8 +12,8 @@ function Render(text) {
12
12
  return (
13
13
  <>
14
14
  <div onClick={() => setShow(true)} className="flex cursor-pointer items-center">
15
- <div className="truncate">{text}</div>
16
- <span className="text-primary">查看</span>
15
+ <div className="flex-1 truncate">{text}</div>
16
+ <span className="min-w-0 text-primary">查看</span>
17
17
  </div>
18
18
  {show && (
19
19
  <Modal
@@ -26,8 +26,9 @@ function Render(text) {
26
26
  display: 'none',
27
27
  },
28
28
  }}
29
+ width={900}
29
30
  >
30
- <div className="h-[500px]">
31
+ <div>
31
32
  <Markdown content={text} />
32
33
  </div>
33
34
  </Modal>