diff --git a/COMPONENT_INDEX.md b/COMPONENT_INDEX.md
index a931eb43..6d4e8b89 100644
--- a/COMPONENT_INDEX.md
+++ b/COMPONENT_INDEX.md
@@ -1735,17 +1735,16 @@ None.
### Props
-| Prop name | Kind | Reactive | Type | Default value | Description |
-| :--------------- | :--------------- | :------- | :------------------------------------------------------------------------------------------------------------- | ---------------------------------- | ----------------------------------------------------------------------- |
-| notificationType | let
| No | "toast" | "inline"
| "inline"
| Set the type of notification |
-| kind | let
| No | "error" | "info" | "info-square" | "success" | "warning" | "warning-alt"
| "error"
| Specify the kind of notification |
-| lowContrast | let
| No | boolean
| false
| Set to `true` to use the low contrast variant |
-| timeout | let
| No | number
| 0
| Set the timeout duration (ms) to hide the notification after opening it |
-| role | let
| No | string
| "alert"
| Set the `role` attribute |
-| title | let
| No | string
| "Title"
| Specify the title text |
-| subtitle | let
| No | string
| ""
| Specify the subtitle text |
-| hideCloseButton | let
| No | boolean
| false
| Set to `true` to hide the close button |
-| iconDescription | let
| No | string
| "Closes notification"
| Specify the ARIA label for the icon |
+| Prop name | Kind | Reactive | Type | Default value | Description |
+| :-------------- | :--------------- | :------- | :------------------------------------------------------------------------------------------------------------- | ---------------------------------- | ----------------------------------------------------------------------- |
+| kind | let
| No | "error" | "info" | "info-square" | "success" | "warning" | "warning-alt"
| "error"
| Specify the kind of notification |
+| lowContrast | let
| No | boolean
| false
| Set to `true` to use the low contrast variant |
+| timeout | let
| No | number
| 0
| Set the timeout duration (ms) to hide the notification after opening it |
+| role | let
| No | string
| "alert"
| Set the `role` attribute |
+| title | let
| No | string
| "Title"
| Specify the title text |
+| subtitle | let
| No | string
| ""
| Specify the subtitle text |
+| hideCloseButton | let
| No | boolean
| false
| Set to `true` to hide the close button |
+| iconDescription | let
| No | string
| "Closes notification"
| Specify the ARIA label for the icon |
### Slots
@@ -3873,18 +3872,17 @@ None.
### Props
-| Prop name | Kind | Reactive | Type | Default value | Description |
-| :--------------- | :--------------- | :------- | :------------------------------------------------------------------------------------------------------------- | ---------------------------------- | ----------------------------------------------------------------------- |
-| notificationType | let
| No | "toast" | "inline"
| "toast"
| Set the type of notification |
-| kind | let
| No | "error" | "info" | "info-square" | "success" | "warning" | "warning-alt"
| "error"
| Specify the kind of notification |
-| lowContrast | let
| No | boolean
| false
| Set to `true` to use the low contrast variant |
-| timeout | let
| No | number
| 0
| Set the timeout duration (ms) to hide the notification after opening it |
-| role | let
| No | string
| "alert"
| Set the `role` attribute |
-| title | let
| No | string
| "Title"
| Specify the title text |
-| subtitle | let
| No | string
| ""
| Specify the subtitle text |
-| caption | let
| No | string
| "Caption"
| Specify the caption text |
-| iconDescription | let
| No | string
| "Closes notification"
| Specify the ARIA label for the icon |
-| hideCloseButton | let
| No | boolean
| false
| Set to `true` to hide the close button |
+| Prop name | Kind | Reactive | Type | Default value | Description |
+| :-------------- | :--------------- | :------- | :------------------------------------------------------------------------------------------------------------- | ---------------------------------- | ----------------------------------------------------------------------- |
+| kind | let
| No | "error" | "info" | "info-square" | "success" | "warning" | "warning-alt"
| "error"
| Specify the kind of notification |
+| lowContrast | let
| No | boolean
| false
| Set to `true` to use the low contrast variant |
+| timeout | let
| No | number
| 0
| Set the timeout duration (ms) to hide the notification after opening it |
+| role | let
| No | string
| "alert"
| Set the `role` attribute |
+| title | let
| No | string
| "Title"
| Specify the title text |
+| subtitle | let
| No | string
| ""
| Specify the subtitle text |
+| caption | let
| No | string
| "Caption"
| Specify the caption text |
+| iconDescription | let
| No | string
| "Closes notification"
| Specify the ARIA label for the icon |
+| hideCloseButton | let
| No | boolean
| false
| Set to `true` to hide the close button |
### Slots
diff --git a/docs/src/COMPONENT_API.json b/docs/src/COMPONENT_API.json
index 2e1822ad..fc1025a9 100644
--- a/docs/src/COMPONENT_API.json
+++ b/docs/src/COMPONENT_API.json
@@ -5679,16 +5679,6 @@
"moduleName": "ToastNotification",
"filePath": "/src/Notification/ToastNotification.svelte",
"props": [
- {
- "name": "notificationType",
- "kind": "let",
- "description": "Set the type of notification",
- "type": "\"toast\" | \"inline\"",
- "value": "\"toast\"",
- "isFunction": false,
- "constant": false,
- "reactive": false
- },
{
"name": "kind",
"kind": "let",
@@ -5795,16 +5785,6 @@
"moduleName": "InlineNotification",
"filePath": "/src/Notification/InlineNotification.svelte",
"props": [
- {
- "name": "notificationType",
- "kind": "let",
- "description": "Set the type of notification",
- "type": "\"toast\" | \"inline\"",
- "value": "\"inline\"",
- "isFunction": false,
- "constant": false,
- "reactive": false
- },
{
"name": "kind",
"kind": "let",
diff --git a/src/Notification/InlineNotification.svelte b/src/Notification/InlineNotification.svelte
index e3e19ba8..6de004fb 100644
--- a/src/Notification/InlineNotification.svelte
+++ b/src/Notification/InlineNotification.svelte
@@ -1,10 +1,4 @@