chore: bump up @blocksuite/icons version to v2.1.50 (#6577)

[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [@blocksuite/icons](https://togithub.com/toeverything/icons) | [`2.1.46` -> `2.1.50`](https://renovatebot.com/diffs/npm/@blocksuite%2ficons/2.1.46/2.1.50) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@blocksuite%2ficons/2.1.50?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@blocksuite%2ficons/2.1.50?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@blocksuite%2ficons/2.1.46/2.1.50?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@blocksuite%2ficons/2.1.46/2.1.50?slim=true)](https://docs.renovatebot.com/merge-confidence/) |

---

### Release Notes

<details>
<summary>toeverything/icons (@&#8203;blocksuite/icons)</summary>

### [`v2.1.50`](aa76c34aae...937b436274)

[Compare Source](aa76c34aae...937b436274)

### [`v2.1.49`](fc6422fbd4...aa76c34aae)

[Compare Source](fc6422fbd4...aa76c34aae)

### [`v2.1.48`](34162ca6da...fc6422fbd4)

[Compare Source](34162ca6da...fc6422fbd4)

### [`v2.1.47`](740923da0d...34162ca6da)

[Compare Source](740923da0d...34162ca6da)

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about these updates again.

---

 - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box

---

This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/toeverything/AFFiNE).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4yOTMuMCIsInVwZGF0ZWRJblZlciI6IjM3LjM0MC4xMCIsInRhcmdldEJyYW5jaCI6ImNhbmFyeSIsImxhYmVscyI6WyJkZXBlbmRlbmNpZXMiXX0=-->
This commit is contained in:
renovate
2024-05-07 11:09:38 +00:00
parent 6ad5ae2403
commit 269060d494
4 changed files with 12 additions and 12 deletions

View File

@@ -21,7 +21,7 @@
"@blocksuite/block-std": "0.14.0-canary-202405070525-ad1cc9f",
"@blocksuite/blocks": "0.14.0-canary-202405070525-ad1cc9f",
"@blocksuite/global": "0.14.0-canary-202405070525-ad1cc9f",
"@blocksuite/icons": "2.1.46",
"@blocksuite/icons": "2.1.50",
"@blocksuite/inline": "0.14.0-canary-202405070525-ad1cc9f",
"@blocksuite/presets": "0.14.0-canary-202405070525-ad1cc9f",
"@blocksuite/store": "0.14.0-canary-202405070525-ad1cc9f",

View File

@@ -2,8 +2,8 @@ import { MenuIcon, MenuItem } from '@affine/component';
import { useAFFiNEI18N } from '@affine/i18n/hooks';
import {
ExpandCloseIcon,
MoveToLeftIcon,
MoveToRightIcon,
MoveToLeftDuotoneIcon,
MoveToRightDuotoneIcon,
SoloViewIcon,
} from '@blocksuite/icons';
import { useSortable } from '@dnd-kit/sortable';
@@ -142,7 +142,7 @@ const SplitViewMenu = ({ view }: { view: View }) => {
viewIndex > 0 && views.length > 1 ? (
<MenuItem
onClick={handleMoveLeft}
preFix={<MenuIcon icon={<MoveToLeftIcon />} />}
preFix={<MenuIcon icon={<MoveToLeftDuotoneIcon />} />}
>
{t['com.affine.workbench.split-view-menu.move-left']()}
</MenuItem>
@@ -162,7 +162,7 @@ const SplitViewMenu = ({ view }: { view: View }) => {
viewIndex < views.length - 1 ? (
<MenuItem
onClick={handleMoveRight}
preFix={<MenuIcon icon={<MoveToRightIcon />} />}
preFix={<MenuIcon icon={<MoveToRightDuotoneIcon />} />}
>
{t['com.affine.workbench.split-view-menu.move-right']()}
</MenuItem>