From 01ecfb4b116bc9dd7a718fa56933304e162c92f0 Mon Sep 17 00:00:00 2001 From: Eric Liu Date: Mon, 15 Aug 2022 06:24:01 -0700 Subject: [PATCH] docs(notification): remove note on minimum Svelte version This banner is redundant since the minimum Svelte version is displayed in the README and on the home page of the docs. --- docs/src/pages/components/InlineNotification.svx | 6 ------ docs/src/pages/components/ToastNotification.svx | 8 +------- 2 files changed, 1 insertion(+), 13 deletions(-) diff --git a/docs/src/pages/components/InlineNotification.svx b/docs/src/pages/components/InlineNotification.svx index dd1c1542..3f435777 100644 --- a/docs/src/pages/components/InlineNotification.svx +++ b/docs/src/pages/components/InlineNotification.svx @@ -16,12 +16,6 @@ source: Notification/InlineNotification.svelte `InlineNotification` is a controlled component. Prevent the default close behavior using the `e.preventDefault()` method in the dispatched `on:close` event. - -
- Svelte version 3.48.0 or greater is required. -
-
- { e.preventDefault(); // custom close logic (e.g., transitions) diff --git a/docs/src/pages/components/ToastNotification.svx b/docs/src/pages/components/ToastNotification.svx index 1eb20fa4..40b9a424 100644 --- a/docs/src/pages/components/ToastNotification.svx +++ b/docs/src/pages/components/ToastNotification.svx @@ -3,7 +3,7 @@ source: Notification/ToastNotification.svelte --- @@ -15,12 +15,6 @@ source: Notification/ToastNotification.svelte `ToastNotification` is a controlled component. Prevent the default close behavior using the `e.preventDefault()` method in the dispatched `on:close` event. - -
- Svelte version 3.48.0 or greater is required. -
-
- { e.preventDefault(); // custom close logic (e.g., transitions)