diff --git a/.dumi/theme/common/styles/Demo.tsx b/.dumi/theme/common/styles/Demo.tsx index c39e2fc50177..e091eb3cc482 100644 --- a/.dumi/theme/common/styles/Demo.tsx +++ b/.dumi/theme/common/styles/Demo.tsx @@ -24,7 +24,6 @@ export default () => { display: inline-block; width: 100%; margin: 0 0 16px; - overflow: hidden; border: 1px solid ${token.colorSplit}; border-radius: ${token.borderRadius}px; transition: all 0.2s; @@ -40,6 +39,7 @@ export default () => { &, .code-box-demo { background-color: ${token.colorBgContainer}; + border-radius: ${token.borderRadius}px; &[data-compact] { padding: 0; diff --git a/.jest.js b/.jest.js index 5938510af2b6..a4006085a5fc 100644 --- a/.jest.js +++ b/.jest.js @@ -4,6 +4,7 @@ const compileModules = [ 'react-dnd-html5-backend', '@react-dnd', 'dnd-core', + 'react-sticky-box', 'tween-one', '@babel', '@ant-design', diff --git a/components/tabs/__tests__/__snapshots__/demo-extend.test.ts.snap b/components/tabs/__tests__/__snapshots__/demo-extend.test.ts.snap index acddcca47aba..ad4dfe4c63c5 100644 --- a/components/tabs/__tests__/__snapshots__/demo-extend.test.ts.snap +++ b/components/tabs/__tests__/__snapshots__/demo-extend.test.ts.snap @@ -934,140 +934,139 @@ exports[`renders ./components/tabs/demo/custom-add-trigger.tsx extend context co `; exports[`renders ./components/tabs/demo/custom-tab-bar.tsx extend context correctly 1`] = ` -
+
-
-
+
+
+
+
+
-
+
-
+
+ -
- +
+
-
- Content of Tab Pane 1 -
+ Content of Tab Pane 1
diff --git a/components/tabs/__tests__/__snapshots__/demo.test.ts.snap b/components/tabs/__tests__/__snapshots__/demo.test.ts.snap index c0192418aa78..47547635bcce 100644 --- a/components/tabs/__tests__/__snapshots__/demo.test.ts.snap +++ b/components/tabs/__tests__/__snapshots__/demo.test.ts.snap @@ -820,121 +820,120 @@ exports[`renders ./components/tabs/demo/custom-add-trigger.tsx correctly 1`] = ` `; exports[`renders ./components/tabs/demo/custom-tab-bar.tsx correctly 1`] = ` -
+
-
-
+
+
+
+
+
-
+
-
+
+ -
+ + + +
+
+
-
- Content of Tab Pane 1 -
+ Content of Tab Pane 1
diff --git a/components/tabs/demo/custom-tab-bar.md b/components/tabs/demo/custom-tab-bar.md index 75e1e04a5154..a967b73eac1c 100644 --- a/components/tabs/demo/custom-tab-bar.md +++ b/components/tabs/demo/custom-tab-bar.md @@ -1,7 +1,7 @@ ## zh-CN -使用 react-sticky 组件实现吸顶效果。 +使用 [react-sticky-box](https://www.npmjs.com/package/react-stickynode) 和 `renderTabBar` 实现吸顶效果。 ## en-US -Use react-sticky. +Use [react-sticky-box](https://www.npmjs.com/package/react-stickynode) and `renderTabBar`. diff --git a/components/tabs/demo/custom-tab-bar.tsx b/components/tabs/demo/custom-tab-bar.tsx index 7574e57bf645..dcff7697aaa5 100644 --- a/components/tabs/demo/custom-tab-bar.tsx +++ b/components/tabs/demo/custom-tab-bar.tsx @@ -1,13 +1,7 @@ import React from 'react'; import type { TabsProps } from 'antd'; -import { Tabs } from 'antd'; -import { Sticky, StickyContainer } from 'react-sticky'; - -const renderTabBar: TabsProps['renderTabBar'] = (props, DefaultTabBar) => ( - - {({ style }) => } - -); +import { Tabs, theme } from 'antd'; +import StickyBox from 'react-sticky-box'; const items = new Array(3).fill(null).map((_, i) => { const id = String(i + 1); @@ -19,10 +13,16 @@ const items = new Array(3).fill(null).map((_, i) => { }; }); -const App: React.FC = () => ( - - - -); +const App: React.FC = () => { + const { + token: { colorBgContainer }, + } = theme.useToken(); + const renderTabBar: TabsProps['renderTabBar'] = (props, DefaultTabBar) => ( + + + + ); + return ; +}; export default App; diff --git a/package.json b/package.json index 7406507d9286..36f686ae3611 100644 --- a/package.json +++ b/package.json @@ -184,7 +184,6 @@ "@types/react-dom": "^18.0.0", "@types/react-highlight-words": "^0.16.4", "@types/react-resizable": "^3.0.0", - "@types/react-sticky": "^6.0.4", "@types/react-window": "^1.8.2", "@types/throttle-debounce": "^5.0.0", "@types/warning": "^3.0.0", @@ -262,7 +261,7 @@ "react-infinite-scroll-component": "^6.1.0", "react-resizable": "^3.0.1", "react-router-dom": "^6.0.2", - "react-sticky": "^6.0.3", + "react-sticky-box": "^1.0.2", "react-window": "^1.8.5", "remark": "^14.0.1", "remark-cli": "^11.0.0",