From 43d8e20decd17bbe662769679b101ce64c82da2c Mon Sep 17 00:00:00 2001 From: Alfarish Fizikri Date: Sat, 2 Aug 2025 06:31:15 +0700 Subject: [PATCH] fix(CountUpDemo): remove separator preview slider --- src/demo/Animations/CountUpDemo.vue | 18 +++--------------- 1 file changed, 3 insertions(+), 15 deletions(-) diff --git a/src/demo/Animations/CountUpDemo.vue b/src/demo/Animations/CountUpDemo.vue index bbd1e3a..f5b5ef2 100644 --- a/src/demo/Animations/CountUpDemo.vue +++ b/src/demo/Animations/CountUpDemo.vue @@ -11,7 +11,6 @@ :direction="direction" :delay="delay" :duration="duration" - :separator="separator" class-name="count-up-text" /> @@ -41,17 +40,15 @@ - + - + - - @@ -94,25 +91,16 @@ const setStartCounting = (value: boolean) => { }; const from = ref(50); -const to = ref(1000); +const to = ref(100); const direction = ref<'up' | 'down'>('up'); const duration = ref(2); const delay = ref(0); -const separator = ref(','); const directionOptions = [ { label: 'Up', value: 'up' }, { label: 'Down', value: 'down' } ]; -const separatorOptions = [ - { label: 'None', value: '' }, - { label: 'Comma (,)', value: ',' }, - { label: 'Period (.)', value: '.' }, - { label: 'Space ( )', value: ' ' }, - { label: 'Underscore (_)', value: '_' } -]; - const propData = [ { name: 'to',