@fe-free/core 4.1.38 → 4.1.39

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.39
4
+
5
+ ### Patch Changes
6
+
7
+ - fix: ai
8
+ - @fe-free/icons@4.1.39
9
+ - @fe-free/tool@4.1.39
10
+
3
11
  ## 4.1.38
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.38",
3
+ "version": "4.1.39",
4
4
  "description": "",
5
5
  "main": "./src/index.ts",
6
6
  "author": "",
@@ -50,8 +50,8 @@
50
50
  "i18next-icu": "^2.4.1",
51
51
  "react": "^19.2.0",
52
52
  "react-i18next": "^16.4.0",
53
- "@fe-free/icons": "4.1.38",
54
- "@fe-free/tool": "4.1.38"
53
+ "@fe-free/tool": "4.1.39",
54
+ "@fe-free/icons": "4.1.39"
55
55
  },
56
56
  "scripts": {
57
57
  "i18n-extract": "rm -rf ./src/locales/zh-CN && npx i18next-cli extract"
@@ -49,7 +49,11 @@ function ScrollFixed({
49
49
  const { marginRight } = useScrollFixed({ ref });
50
50
 
51
51
  return (
52
- <div ref={ref} {...rest} className={classNames('h-full w-full overflow-y-auto', className)}>
52
+ <div
53
+ ref={ref}
54
+ {...rest}
55
+ className={classNames('h-full w-full overflow-y-auto overflow-x-hidden', className)}
56
+ >
53
57
  <div style={{ marginRight: `-${marginRight || 0}px` }}>{children}</div>
54
58
  </div>
55
59
  );