diff --git a/COMPONENT_INDEX.md b/COMPONENT_INDEX.md
index c524a444..427f4077 100644
--- a/COMPONENT_INDEX.md
+++ b/COMPONENT_INDEX.md
@@ -1996,10 +1996,12 @@ None.
### Slots
-| Slot name | Default | Props | Fallback |
-| :-------- | :------ | :---- | :------- |
-| -- | Yes | -- | -- |
-| actions | No | -- | -- |
+| Slot name | Default | Props | Fallback |
+| :-------- | :------ | :---- | :---------------------- |
+| -- | Yes | -- | -- |
+| actions | No | -- | -- |
+| subtitle | No | -- | {subtitle}
|
+| title | No | -- | {title}
|
### Events
diff --git a/docs/src/COMPONENT_API.json b/docs/src/COMPONENT_API.json
index e3dbf224..344225fb 100644
--- a/docs/src/COMPONENT_API.json
+++ b/docs/src/COMPONENT_API.json
@@ -5218,7 +5218,19 @@
],
"slots": [
{ "name": "__default__", "default": true, "slot_props": "{}" },
- { "name": "actions", "default": false, "slot_props": "{}" }
+ { "name": "actions", "default": false, "slot_props": "{}" },
+ {
+ "name": "subtitle",
+ "default": false,
+ "fallback": "{subtitle}",
+ "slot_props": "{}"
+ },
+ {
+ "name": "title",
+ "default": false,
+ "fallback": "{title}",
+ "slot_props": "{}"
+ }
],
"events": [
{
diff --git a/docs/src/pages/components/InlineNotification.svx b/docs/src/pages/components/InlineNotification.svx
index 80ff1f4a..88b75733 100644
--- a/docs/src/pages/components/InlineNotification.svx
+++ b/docs/src/pages/components/InlineNotification.svx
@@ -11,6 +11,13 @@ source: Notification/InlineNotification.svelte
+