-
-
Notifications
You must be signed in to change notification settings - Fork 198
chore: Update passing api #501
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
--- | ||
title: Two Buttons | ||
order: 8 | ||
--- | ||
|
||
Demonstrates two buttons with different tooltips on hover. | ||
|
||
```jsx | ||
import TwoButtonsDemo from '../examples/twoButtons'; | ||
|
||
export default () => <TwoButtonsDemo />; | ||
``` |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
import { UniqueProvider } from '@rc-component/trigger'; | ||
import React from 'react'; | ||
import '../../assets/bootstrap.less'; | ||
import Tooltip from '../../src'; | ||
|
||
const TwoButtonsDemo = () => ( | ||
<UniqueProvider> | ||
<div style={{ margin: 100 }}> | ||
<Tooltip | ||
placement="top" | ||
trigger={['hover']} | ||
overlay="This is the first tooltip" | ||
motion={{ motionName: 'rc-tooltip-zoom' }} | ||
> | ||
<button type="button">Button 1</button> | ||
</Tooltip> | ||
<Tooltip | ||
placement="top" | ||
trigger={['hover']} | ||
overlay="This is the second tooltip" | ||
motion={{ motionName: 'rc-tooltip-zoom' }} | ||
> | ||
<button type="button">Button 2</button> | ||
</Tooltip> | ||
</div> | ||
</UniqueProvider> | ||
); | ||
|
||
export default TwoButtonsDemo; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🧩 Analysis chain
base/publicPath 被注释可能导致 gh-pages 子路径部署 404
如果文档站点仍通过 gh-pages 挂载在 /tooltip/,当前配置会以根路径输出,生产访问将异常。建议按环境恢复条件配置。
请确认当前文档发布目标(例如 Vercel/Netlify 根域名 vs GitHub Pages 子路径)。若已迁移到根域名,可在 PR 描述注明,以免后续误回滚。
🏁 Script executed:
Length of output: 141
🏁 Script executed:
Length of output: 134
🏁 Script executed:
Length of output: 1159
修复 .dumirc.ts 的 base/publicPath 环境配置(避免 gh-pages 子路径 404)
验证:./.dumirc.ts 中 isProdSite/name(第 4–9 行)与 base/publicPath(第 21–22 行)均被注释,当前构建会以根路径输出;若站点通过 GitHub Pages 子路径(例如 /tooltip/)发布,将导致 404。
操作建议:
/${name}/
: '/', publicPath: isProdSite ?/${name}/
: '/'。🤖 Prompt for AI Agents