Skip to content
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

chore: fix ci error #525

Merged
merged 2 commits into from
Feb 10, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file modified bun.lockb
Binary file not shown.
118 changes: 59 additions & 59 deletions components/sender/__tests__/__snapshots__/index.test.tsx.snap
Original file line number Diff line number Diff line change
Expand Up @@ -3,77 +3,77 @@
exports[`Sender Component loading state 1`] = `
<DocumentFragment>
<div
class="ant-sender"
>
<div
class="ant-sender-content"
class="ant-sender"
>
<textarea
class="ant-input ant-input-borderless ant-sender-input"
style="overflow-y: hidden; resize: none;"
/>
<div
class="ant-sender-actions-list"
class="ant-sender-content"
>
<textarea
class="ant-input ant-input-borderless ant-sender-input"
style="overflow-y: hidden; resize: none;"
/>
<div
class="ant-sender-actions-list-presets ant-flex"
class="ant-sender-actions-list"
>
<button
class="ant-btn ant-btn-circle ant-btn-text ant-btn-color-primary ant-btn-variant-text ant-sender-actions-btn ant-sender-actions-btn-loading-button"
type="button"
<div
class="ant-sender-actions-list-presets ant-flex"
>
<svg
class="ant-sender-actions-btn-loading-icon"
color="currentColor"
viewBox="0 0 1000 1000"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
<button
class="ant-btn ant-btn-circle ant-btn-text ant-btn-color-primary ant-btn-variant-text ant-sender-actions-btn ant-sender-actions-btn-loading-button"
type="button"
>
<title>
Stop Loading
</title>
<rect
fill="currentColor"
height="250"
rx="24"
ry="24"
width="250"
x="375"
y="375"
/>
<circle
cx="500"
cy="500"
fill="none"
opacity="0.45"
r="450"
stroke="currentColor"
stroke-width="100"
/>
<circle
cx="500"
cy="500"
fill="none"
r="450"
stroke="currentColor"
stroke-dasharray="600 9999999"
stroke-width="100"
<svg
class="ant-sender-actions-btn-loading-icon"
color="currentColor"
viewBox="0 0 1000 1000"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
>
<animatetransform
attributeName="transform"
dur="1s"
from="0 500 500"
repeatCount="indefinite"
to="360 500 500"
type="rotate"
<title>
Stop Loading
</title>
<rect
fill="currentColor"
height="250"
rx="24"
ry="24"
width="250"
x="375"
y="375"
/>
</circle>
</svg>
</button>
<circle
cx="500"
cy="500"
fill="none"
opacity="0.45"
r="450"
stroke="currentColor"
stroke-width="100"
/>
<circle
cx="500"
cy="500"
fill="none"
r="450"
stroke="currentColor"
stroke-dasharray="600 9999999"
stroke-width="100"
>
<animatetransform
attributeName="transform"
dur="1s"
from="0 500 500"
repeatCount="indefinite"
to="360 500 500"
type="rotate"
/>
</circle>
</svg>
</button>
</div>
</div>
</div>
</div>
</div>
</DocumentFragment>
`;

Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,7 @@
"@petercatai/assistant": "^2.0.13",
"@qixian.cs/github-contributors-list": "^2.0.2",
"@rc-component/father-plugin": "2.0.3",
"@rc-component/np": "^1.0.3",
"@rc-component/trigger": "^2.2.3",
"@size-limit/file": "^11.1.5",
"@stackblitz/sdk": "^1.11.0",
Expand Down Expand Up @@ -181,7 +182,6 @@
"father": "4.5.2",
"fetch-jsonp": "^1.3.0",
"fs-extra": "^11.2.0",
"react-intl": "7.1.5",
"gh-pages": "^6.1.1",
"glob": "^11.0.0",
"happy-dom": "^17.0.0",
Expand Down Expand Up @@ -234,6 +234,7 @@
"react-highlight-words": "^0.20.0",
"react-infinite-scroll-component": "^6.1.0",
"react-intersection-observer": "^9.13.1",
"react-intl": "7.1.5",

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The react-intl package was removed and then re-added. Ensure this change is intentional and verify that it does not affect the functionality of the application.

"react-resizable": "^3.0.5",
"react-router-dom": "^7.0.1",
"react-sticky-box": "^2.0.5",
Expand Down
Loading