@publishfx/publish-components 2.0.3 → 2.1.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 ADDED
@@ -0,0 +1,6 @@
1
+ **2.0.3** CompareChange增加fontWeight参数
2
+ - 2025-12-30T07:45:01Z [Merge branch 'feat/unifiedStyle' into 'main'](http://lf.git.oa.mt/publish_platform/web/publish/commit/af964f15a8956e95de767b767bc96597b6e397b1)
3
+ - 2025-12-30T15:41:24+08:00 [feat(components): 去掉多余的import](http://lf.git.oa.mt/publish_platform/web/publish/commit/804ed94d46dc13ddac2d2b22e4872d5bab4da63d)
4
+ - 2025-12-30T07:05:03Z [Merge branch 'main' into 'feat/unifiedStyle'](http://lf.git.oa.mt/publish_platform/web/publish/commit/ca52a8cc8ffec9f4ccfacbcec3ac7df7915b885f)
5
+ - 2025-12-30T15:04:21+08:00 [feat: 同步](http://lf.git.oa.mt/publish_platform/web/publish/commit/dea572f202d4836e1ba0717aa74e65f7dae93a41)
6
+ - 2025-12-30T15:01:56+08:00 [feat: CompareChange增加fontWeight](http://lf.git.oa.mt/publish_platform/web/publish/commit/b86b5c9bafcbefb020a6ddfbebd8a8338d8cee44)
package/dist/index.d.ts CHANGED
@@ -2,3 +2,4 @@ export { ActionButtonType } from "./ActionButton/interface";
2
2
  export type { ActionButtonProps, } from "./ActionButton/interface";
3
3
  export { default as ActionButton } from "./ActionButton";
4
4
  export { default as CompareChange } from "./CompareChange";
5
+ export { Sticky, StickyContainer } from "./ReactSticky";
package/dist/index.js CHANGED
@@ -1,4 +1,5 @@
1
1
  import { ActionButtonType } from "./ActionButton/interface.js";
2
2
  import ActionButton from "./ActionButton/index.js";
3
3
  import CompareChange from "./CompareChange/index.js";
4
- export { ActionButton, ActionButtonType, CompareChange };
4
+ import { Sticky, StickyContainer } from "./ReactSticky/index.js";
5
+ export { ActionButton, ActionButtonType, CompareChange, Sticky, StickyContainer };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@publishfx/publish-components",
3
- "version": "2.0.3",
3
+ "version": "2.1.0",
4
4
  "description": "A React UI component library for the Publish platform, including ActionButton component",
5
5
  "type": "module",
6
6
  "keywords": [
@@ -22,7 +22,9 @@
22
22
  },
23
23
  "types": "./dist/index.d.ts",
24
24
  "files": [
25
- "dist"
25
+ "dist",
26
+ "CHANGELOG.md",
27
+ "README.md"
26
28
  ],
27
29
  "devDependencies": {
28
30
  "@arco-design/web-react": "2.56.0",