From 10378473cc68172b424ac63caa74bd3bc99065b5 Mon Sep 17 00:00:00 2001 From: jcollier Date: Tue, 24 Oct 2023 12:17:32 -0400 Subject: [PATCH 1/2] fix(carousel): page attribute not updating shown items --- components/lib/carousel/Carousel.vue | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/components/lib/carousel/Carousel.vue b/components/lib/carousel/Carousel.vue index cd189b170..0a8f782c5 100755 --- a/components/lib/carousel/Carousel.vue +++ b/components/lib/carousel/Carousel.vue @@ -126,6 +126,12 @@ export default { }, watch: { page(newValue) { + if (newValue > this.d_page) { + this.navForward({}, newValue); + } else if (newValue < this.d_page) { + this.navBackward({}, newValue); + } + this.d_page = newValue; }, circular(newValue) { From 3f7e25ecc93b2b5d6b04d0b830f00bdac37ece46 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tu=C4=9F=C3=A7e=20K=C3=BC=C3=A7=C3=BCko=C4=9Flu?= Date: Wed, 25 Oct 2023 11:48:46 +0300 Subject: [PATCH 2/2] Avatar tailwind demo fixes --- doc/avatar/theming/TailwindDoc.vue | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/doc/avatar/theming/TailwindDoc.vue b/doc/avatar/theming/TailwindDoc.vue index a882558f6..b63b338b9 100644 --- a/doc/avatar/theming/TailwindDoc.vue +++ b/doc/avatar/theming/TailwindDoc.vue @@ -50,7 +50,7 @@ export default {
-
Image
+
Image
@@ -59,11 +59,11 @@ export default {
-
Badge
- +
Badge
+
-
+
Gravatar