From 3c0ef96d7d42c87f5aa0f8e58c995604336a81c8 Mon Sep 17 00:00:00 2001 From: andrewvasilchuk Date: Sun, 12 Dec 2021 20:11:09 +0200 Subject: [PATCH 1/3] chore: fix typo --- package/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package/README.md b/package/README.md index f74cfbd..d839ab3 100644 --- a/package/README.md +++ b/package/README.md @@ -8,8 +8,8 @@ Its main use case are components/elements that need to be positioned absolutely relative to the document/viewport, or fixed in some way or another, like: -* modals -* drodowns +* Modals +* Dropdowns * Alerts/notifications * Toasts From 7f1174cc5ea3658f8b0577c002be170ffb50b17e Mon Sep 17 00:00:00 2001 From: andrewvasilchuk Date: Sun, 12 Dec 2021 20:11:40 +0200 Subject: [PATCH 2/3] chore: correct story text --- src/index.stories.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.stories.js b/src/index.stories.js index bcced94..f39a71a 100644 --- a/src/index.stories.js +++ b/src/index.stories.js @@ -25,7 +25,7 @@ stories template: ` -

This content was magically moved to the end of the <body>

+

This content was magically moved to #target

`, methods: { action: action('clicked') }, From 7b3d75f107ea8d02aee237f9c9b5ae4d10df12da Mon Sep 17 00:00:00 2001 From: andrewvasilchuk Date: Sun, 12 Dec 2021 21:00:29 +0200 Subject: [PATCH 3/3] chore: fix typo --- package/src/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package/src/index.js b/package/src/index.js index a3504c4..44d4423 100644 --- a/package/src/index.js +++ b/package/src/index.js @@ -13,7 +13,7 @@ function install(_Vue) { } if (typeof window !== 'undefined' && window.Vue && window.Vue === Vue) { - // plugin was inlcuded directly in a browser + // plugin was included directly in a browser Vue.use(install); }