summaryrefslogtreecommitdiff
path: root/.changeset/hungry-needles-cough.md
diff options
context:
space:
mode:
Diffstat (limited to '.changeset/hungry-needles-cough.md')
-rw-r--r--.changeset/hungry-needles-cough.md17
1 files changed, 0 insertions, 17 deletions
diff --git a/.changeset/hungry-needles-cough.md b/.changeset/hungry-needles-cough.md
deleted file mode 100644
index e7b6282d0..000000000
--- a/.changeset/hungry-needles-cough.md
+++ /dev/null
@@ -1,17 +0,0 @@
----
-"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",
- },
- })
-);
-```