CatsJuice
09937a8e4d
chore: bump icons with new design source ( #9529 )
2025-01-06 03:10:03 +00:00
CatsJuice
87bbcae5e2
fix(component): mobile toast dark mode ( #9142 )
2024-12-16 04:31:12 +00:00
CatsJuice
53339e3370
fix(component): toast shouldn't cover whole header ( #9032 )
2024-12-06 01:56:02 +00:00
CatsJuice
9e903fe909
fix(component): optimize stack notification with different height ( #8700 )
...

2024-11-05 07:47:57 +00:00
CatsJuice
ed511f8d29
fix(component): correct notification theme when theme toggled ( #8570 )
...
close AF-1526
2024-10-22 03:15:33 +00:00
CatsJuice
1c59eda8b7
feat(component): basic notification adaptation for mobile ( #8402 )
2024-10-11 01:20:09 +00:00
Cats Juice
a6c2f5dcd5
fix(component): correct notification action hover style ( #8303 )
2024-09-19 15:18:19 +08:00
pengx17
1efc1d0f5b
feat(electron): multi tabs support ( #7440 )
...
use https://www.electronjs.org/docs/latest/api/web-contents-view to serve different tab views
added tabs view manager in electron to handle multi-view actions and events.
fix AF-1111
fix AF-999
fix PD-1459
fix AF-964
PD-1458
2024-07-29 11:05:22 +00:00
L-Sun
09201d42a0
chore: bump up @blocksuite/icons version ( #7233 )
2024-06-18 17:07:11 +08:00
CatsJuice
301586c0f4
fix(component): avoid close button of the notification being invisible in dark mode and bright bg ( #6946 )
2024-05-16 06:43:47 +00:00
pengx17
5c861939a5
fix(core): show toast for requestRunInEdgeless ( #6715 )
2024-04-29 11:14:07 +00:00
CatsJuice
7970d9b8c9
feat(core): add local ai onboarding dialog ( #6600 )
2024-04-18 15:48:20 +00:00
JimmFly
bcee1bbd81
feat(component): adjust notify styles ( #6578 )
...
Change the styles of `notify.error`, `notify.warning`, and `notify.success` from `alert` to `normal`
Add custom `iconColor` option
2024-04-17 12:36:42 +00:00
CatsJuice
b93e79c59d
feat(core): ai onboarding for edgeless mode ( #6556 )
2024-04-15 07:25:37 +00:00
CatsJuice
9127bfae67
refactor(core): replace all notification relies on jotai ( #6417 )
...
- remove all notification that implemented with jotai and replaced with new `notify`
- Add some notify presets:
- `notify.error`
- `notify.success`
- `notify.warning`
2024-04-02 03:19:07 +00:00
CatsJuice
a4cd51e503
refactor(component): new notification center implemented with sonner ( #6416 )
...
The Notification has been reimplemented using sooner, no longer relies on jotai, and new story has been added.
- Before
```ts
import { pushNotificationAtom } from '@affine/component/notification-center';
import { useSetAtom } from 'jotai';
export const Component = () => {
const pushNotification = useSetAtom(pushNotificationAtom);
pushNotification({ ... });
}
```
- After
```ts
import { notify } from "@affine/component";
export const Component = () => {
notify({ ... });
}
```
2024-04-02 03:18:57 +00:00