blob: e7b6282d072a9eda7afdc20155c2e59be586635b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
---
"astro": minor
---
Adds support for emitting warning and info notifications from dev toolbar apps.
When using the `toggle-notification` event, the severity can be specified through `detail.level`:
```ts
eventTarget.dispatchEvent(
new CustomEvent("toggle-notification", {
detail: {
level: "warning",
},
})
);
```
|