├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ ├── ci.yml │ └── release.yml ├── .gitignore ├── .vscode └── settings.json ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── config └── utils │ └── resolvePath.ts ├── docs ├── .env.d.ts ├── .vitepress │ ├── components │ │ ├── demo-block │ │ │ ├── index.ts │ │ │ └── src │ │ │ │ ├── index.ts │ │ │ │ └── index.vue │ │ └── dotPattern │ │ │ └── DotPattern.vue │ ├── config.mts │ ├── plugins │ │ └── code │ │ │ ├── constants.ts │ │ │ ├── fencePlugin.ts │ │ │ ├── index.ts │ │ │ ├── plugin-demo-block.ts │ │ │ ├── types.ts │ │ │ └── utils.ts │ └── theme │ │ ├── HomeLayout.vue │ │ ├── index.ts │ │ ├── overrides.css │ │ ├── rainbow.css │ │ ├── style.css │ │ └── tailwind.css ├── content │ ├── components │ │ ├── animated-beam.md │ │ ├── animated-gradient-text.md │ │ ├── animated-list.md │ │ ├── animated-shiny-text.md │ │ ├── animated-tooltip.md │ │ ├── aurora.md │ │ ├── avatar-circles.md │ │ ├── bento-grid.md │ │ ├── blur-fade.md │ │ ├── blur-in.md │ │ ├── dot-pattern.md │ │ ├── globe.md │ │ ├── gradual-spacing.md │ │ ├── hero-video-dialog.md │ │ ├── letter-up.md │ │ ├── marquee.md │ │ ├── meteors.md │ │ ├── orbiting-circles.md │ │ ├── particles.md │ │ ├── resizable-navbar.md │ │ ├── retro-grid.md │ │ ├── ripple.md │ │ ├── scroll-progress.md │ │ ├── skewed-infinite-scroll.md │ │ ├── terminal.md │ │ └── typing-animation.md │ └── guide │ │ └── getting-started │ │ ├── index.md │ │ └── installation.md ├── index.md ├── package.json ├── public │ └── icon.png ├── renovate.json ├── src │ ├── components │ │ ├── Demos.vue │ │ ├── icons │ │ │ ├── Angular.vue │ │ │ ├── ArrowRight.vue │ │ │ ├── Astro.vue │ │ │ ├── Nitro.vue │ │ │ ├── Nuxt.vue │ │ │ ├── Qwik.vue │ │ │ ├── React.vue │ │ │ ├── Svelte.vue │ │ │ ├── ViteIcon.vue │ │ │ ├── Vitest.vue │ │ │ └── Vue.vue │ │ └── spark-ui │ │ │ ├── DotPattern │ │ │ └── DotPattern.vue │ │ │ ├── animatedBeam │ │ │ ├── AnimatedBeam.vue │ │ │ └── Circle.vue │ │ │ ├── animatedGradientText │ │ │ └── animatedGradientText.vue │ │ │ ├── animatedList │ │ │ ├── AnimatedList.vue │ │ │ └── Notification.vue │ │ │ ├── animatedShinyText │ │ │ └── AnimatedShinyText.vue │ │ │ ├── avatarCircle │ │ │ └── AvatarCircles.vue │ │ │ ├── bento │ │ │ ├── BentoCard.vue │ │ │ └── BentoGrid.vue │ │ │ ├── blurFade │ │ │ └── BlurFade.vue │ │ │ ├── blurIn │ │ │ └── BlurIn.vue │ │ │ ├── globe │ │ │ └── Globe.vue │ │ │ ├── gradualSpacing │ │ │ └── GradualSpacing.vue │ │ │ ├── letterUp │ │ │ └── letter-up.vue │ │ │ ├── marquee │ │ │ └── Marquee.vue │ │ │ ├── meteors │ │ │ └── Meteors.vue │ │ │ ├── orbitingCircles │ │ │ └── OrbitingCircles.vue │ │ │ ├── particles │ │ │ ├── Particles.vue │ │ │ └── ParticlesBackground.vue │ │ │ ├── retroGrid │ │ │ └── retro-grid.vue │ │ │ ├── ripple │ │ │ └── Ripple.vue │ │ │ ├── skewed-infinite-scroll │ │ │ └── SkewedInfiniteScroll.vue │ │ │ └── typingAnimation │ │ │ └── typing-animation.vue │ ├── example │ │ ├── animatedBeam │ │ │ ├── AnimatedBeam.vue │ │ │ ├── AnimatedBeamBiDirectional.vue │ │ │ ├── AnimatedBeamMultipleInputs.vue │ │ │ ├── AnimatedBeamUniDirectional.vue │ │ │ ├── Circle.vue │ │ │ └── Demo.vue │ │ ├── animatedGradientText │ │ │ ├── Demo.vue │ │ │ └── animatedGradientText.vue │ │ ├── animatedList │ │ │ ├── AnimatedList.vue │ │ │ ├── Demo.vue │ │ │ └── Notification.vue │ │ ├── animatedShinyText │ │ │ ├── AnimatedShinyText.vue │ │ │ └── Demo.vue │ │ ├── animatedToolTip │ │ │ ├── AnimatedToolTip.vue │ │ │ └── Demo.vue │ │ ├── aurora │ │ │ ├── AuroraText.vue │ │ │ └── Demo.vue │ │ ├── avatarCircle │ │ │ ├── AvatarCircles.vue │ │ │ └── Demo.vue │ │ ├── bento │ │ │ ├── BentoCard.vue │ │ │ ├── BentoGrid.vue │ │ │ └── Demo.vue │ │ ├── blurFade │ │ │ ├── BlurFade.vue │ │ │ └── Demo.vue │ │ ├── blurIn │ │ │ ├── BlurIn.vue │ │ │ └── Demo.vue │ │ ├── dotPattern │ │ │ ├── Demo.vue │ │ │ ├── DotPattern.vue │ │ │ └── DotPatternLinearGradient.vue │ │ ├── globe │ │ │ ├── Demo.vue │ │ │ └── Globe.vue │ │ ├── gradualSpacing │ │ │ ├── Demo.vue │ │ │ └── GradualSpacing.vue │ │ ├── hero-video-dialog │ │ │ ├── Demo.vue │ │ │ └── HeroVideoDialog.vue │ │ ├── letterUp │ │ │ ├── Demo.vue │ │ │ └── letter-up.vue │ │ ├── marquee │ │ │ ├── 3DDemo.vue │ │ │ ├── Demo.vue │ │ │ ├── Marquee.vue │ │ │ ├── ReviewCard.vue │ │ │ └── VerticalDemo.vue │ │ ├── meteors │ │ │ ├── Demo.vue │ │ │ └── Meteors.vue │ │ ├── orbitingCircles │ │ │ ├── Demo.vue │ │ │ └── OrbitingCircles.vue │ │ ├── particles │ │ │ ├── Demo.vue │ │ │ ├── Particles.vue │ │ │ └── ParticlesBackground.vue │ │ ├── resizable-navbar │ │ │ ├── Demo.vue │ │ │ ├── MobileNav.vue │ │ │ ├── MobileNavHeader.vue │ │ │ ├── MobileNavMenu.vue │ │ │ ├── MobileNavToggle.vue │ │ │ ├── NavBody.vue │ │ │ ├── NavItems.vue │ │ │ ├── Navbar.vue │ │ │ ├── NavbarButton.vue │ │ │ └── NavbarLogo.vue │ │ ├── retroGrid │ │ │ ├── Demo.vue │ │ │ └── retroGrid.vue │ │ ├── ripple │ │ │ ├── Demo.vue │ │ │ └── Ripple.vue │ │ ├── scroll-progress │ │ │ ├── Demo.vue │ │ │ └── ScrollProgress.vue │ │ ├── skewedInfiniteScroll │ │ │ ├── Demo.vue │ │ │ └── SkewedInfiniteScroll.vue │ │ ├── terminal │ │ │ ├── AnimatedSpan.vue │ │ │ ├── Demo.vue │ │ │ ├── Terminal.vue │ │ │ └── TypingAnimation.vue │ │ └── typingAnimation │ │ │ ├── Demo.vue │ │ │ └── typing-animation.vue │ ├── lib │ │ └── utils.ts │ └── spark-ui-demos │ │ ├── animatedBeam │ │ ├── AnimatedBeam.vue │ │ ├── AnimatedBeamBiDirectional.vue │ │ ├── AnimatedBeamMultipleInputs.vue │ │ └── AnimatedBeamUniDirectional.vue │ │ ├── animatedGradientText │ │ └── AnimatedGradientText.vue │ │ ├── animatedList │ │ └── AnimatedList.vue │ │ ├── animatedShinyText │ │ └── AnimatedShinyText.vue │ │ ├── animatedToolTip │ │ ├── AnimatedToolTip.vue │ │ └── Demo.vue │ │ ├── aurora │ │ ├── AuroraText.vue │ │ └── Demo.vue │ │ ├── avatarCircle │ │ └── AvatarCircles.vue │ │ ├── bento │ │ └── BentoGrid.vue │ │ ├── blurFade │ │ └── BlurFade.vue │ │ ├── blurIn │ │ └── BlurIn.vue │ │ ├── dotPattern │ │ ├── DotPattern.vue │ │ └── DotPatternLinearGradient.vue │ │ ├── globe │ │ └── Globe.vue │ │ ├── gradualSpacing │ │ └── GradualSpacing.vue │ │ ├── hero-video-dialog │ │ ├── Demo.vue │ │ └── HeroVideoDialog.vue │ │ ├── letterUp │ │ └── LetterUp.vue │ │ ├── marquee │ │ ├── 3DMarquee.vue │ │ ├── Marquee.vue │ │ ├── ReviewCard.vue │ │ └── VerticalMarquee.vue │ │ ├── meteors │ │ └── Meteors.vue │ │ ├── orbitingCircles │ │ └── OrbitingCircles.vue │ │ ├── particles │ │ └── Particles.vue │ │ ├── resizable-navbar │ │ ├── Demo.vue │ │ ├── MobileNav.vue │ │ ├── MobileNavHeader.vue │ │ ├── MobileNavMenu.vue │ │ ├── MobileNavToggle.vue │ │ ├── NavBody.vue │ │ ├── NavItems.vue │ │ ├── Navbar.vue │ │ ├── NavbarButton.vue │ │ └── NavbarLogo.vue │ │ ├── retroGrid │ │ └── retroGrid.vue │ │ ├── ripple │ │ └── Ripple.vue │ │ ├── scroll-progress │ │ ├── Demo.vue │ │ └── ScrollProgress.vue │ │ ├── skewedInfiniteScroll │ │ └── SkewedInfiniteScroll.vue │ │ ├── terminal │ │ ├── AnimatedSpan.vue │ │ ├── Demo.vue │ │ ├── Terminal.vue │ │ └── TypingAnimation.vue │ │ └── typingAnimation │ │ └── TypingAnimation.vue ├── tailwind.config.js ├── tsconfig.app.json ├── tsconfig.json ├── tsconfig.node.json ├── uno.config.ts └── vite.config.ts ├── eslint.config.mjs ├── package.json ├── pnpm-lock.yaml ├── pnpm-workspace.yaml ├── tests └── sum.spec.ts ├── tsconfig.json └── vitest.config.ts /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/README.md -------------------------------------------------------------------------------- /config/utils/resolvePath.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/config/utils/resolvePath.ts -------------------------------------------------------------------------------- /docs/.env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /docs/.vitepress/components/demo-block/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/.vitepress/components/demo-block/index.ts -------------------------------------------------------------------------------- /docs/.vitepress/components/demo-block/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/.vitepress/components/demo-block/src/index.ts -------------------------------------------------------------------------------- /docs/.vitepress/components/demo-block/src/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/.vitepress/components/demo-block/src/index.vue -------------------------------------------------------------------------------- /docs/.vitepress/components/dotPattern/DotPattern.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/.vitepress/components/dotPattern/DotPattern.vue -------------------------------------------------------------------------------- /docs/.vitepress/config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/.vitepress/config.mts -------------------------------------------------------------------------------- /docs/.vitepress/plugins/code/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/.vitepress/plugins/code/constants.ts -------------------------------------------------------------------------------- /docs/.vitepress/plugins/code/fencePlugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/.vitepress/plugins/code/fencePlugin.ts -------------------------------------------------------------------------------- /docs/.vitepress/plugins/code/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/.vitepress/plugins/code/index.ts -------------------------------------------------------------------------------- /docs/.vitepress/plugins/code/plugin-demo-block.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/.vitepress/plugins/code/plugin-demo-block.ts -------------------------------------------------------------------------------- /docs/.vitepress/plugins/code/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/.vitepress/plugins/code/types.ts -------------------------------------------------------------------------------- /docs/.vitepress/plugins/code/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/.vitepress/plugins/code/utils.ts -------------------------------------------------------------------------------- /docs/.vitepress/theme/HomeLayout.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/.vitepress/theme/HomeLayout.vue -------------------------------------------------------------------------------- /docs/.vitepress/theme/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/.vitepress/theme/index.ts -------------------------------------------------------------------------------- /docs/.vitepress/theme/overrides.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/.vitepress/theme/overrides.css -------------------------------------------------------------------------------- /docs/.vitepress/theme/rainbow.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/.vitepress/theme/rainbow.css -------------------------------------------------------------------------------- /docs/.vitepress/theme/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/.vitepress/theme/style.css -------------------------------------------------------------------------------- /docs/.vitepress/theme/tailwind.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/.vitepress/theme/tailwind.css -------------------------------------------------------------------------------- /docs/content/components/animated-beam.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/content/components/animated-beam.md -------------------------------------------------------------------------------- /docs/content/components/animated-gradient-text.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/content/components/animated-gradient-text.md -------------------------------------------------------------------------------- /docs/content/components/animated-list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/content/components/animated-list.md -------------------------------------------------------------------------------- /docs/content/components/animated-shiny-text.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/content/components/animated-shiny-text.md -------------------------------------------------------------------------------- /docs/content/components/animated-tooltip.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/content/components/animated-tooltip.md -------------------------------------------------------------------------------- /docs/content/components/aurora.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/content/components/aurora.md -------------------------------------------------------------------------------- /docs/content/components/avatar-circles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/content/components/avatar-circles.md -------------------------------------------------------------------------------- /docs/content/components/bento-grid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/content/components/bento-grid.md -------------------------------------------------------------------------------- /docs/content/components/blur-fade.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/content/components/blur-fade.md -------------------------------------------------------------------------------- /docs/content/components/blur-in.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/content/components/blur-in.md -------------------------------------------------------------------------------- /docs/content/components/dot-pattern.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/content/components/dot-pattern.md -------------------------------------------------------------------------------- /docs/content/components/globe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/content/components/globe.md -------------------------------------------------------------------------------- /docs/content/components/gradual-spacing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/content/components/gradual-spacing.md -------------------------------------------------------------------------------- /docs/content/components/hero-video-dialog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/content/components/hero-video-dialog.md -------------------------------------------------------------------------------- /docs/content/components/letter-up.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/content/components/letter-up.md -------------------------------------------------------------------------------- /docs/content/components/marquee.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/content/components/marquee.md -------------------------------------------------------------------------------- /docs/content/components/meteors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/content/components/meteors.md -------------------------------------------------------------------------------- /docs/content/components/orbiting-circles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/content/components/orbiting-circles.md -------------------------------------------------------------------------------- /docs/content/components/particles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/content/components/particles.md -------------------------------------------------------------------------------- /docs/content/components/resizable-navbar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/content/components/resizable-navbar.md -------------------------------------------------------------------------------- /docs/content/components/retro-grid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/content/components/retro-grid.md -------------------------------------------------------------------------------- /docs/content/components/ripple.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/content/components/ripple.md -------------------------------------------------------------------------------- /docs/content/components/scroll-progress.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/content/components/scroll-progress.md -------------------------------------------------------------------------------- /docs/content/components/skewed-infinite-scroll.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/content/components/skewed-infinite-scroll.md -------------------------------------------------------------------------------- /docs/content/components/terminal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/content/components/terminal.md -------------------------------------------------------------------------------- /docs/content/components/typing-animation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/content/components/typing-animation.md -------------------------------------------------------------------------------- /docs/content/guide/getting-started/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/content/guide/getting-started/index.md -------------------------------------------------------------------------------- /docs/content/guide/getting-started/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/content/guide/getting-started/installation.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/package.json -------------------------------------------------------------------------------- /docs/public/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/public/icon.png -------------------------------------------------------------------------------- /docs/renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/renovate.json -------------------------------------------------------------------------------- /docs/src/components/Demos.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/src/components/Demos.vue -------------------------------------------------------------------------------- /docs/src/components/icons/Angular.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/src/components/icons/Angular.vue -------------------------------------------------------------------------------- /docs/src/components/icons/ArrowRight.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/src/components/icons/ArrowRight.vue -------------------------------------------------------------------------------- /docs/src/components/icons/Astro.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/src/components/icons/Astro.vue -------------------------------------------------------------------------------- /docs/src/components/icons/Nitro.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/src/components/icons/Nitro.vue -------------------------------------------------------------------------------- /docs/src/components/icons/Nuxt.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/src/components/icons/Nuxt.vue -------------------------------------------------------------------------------- /docs/src/components/icons/Qwik.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/src/components/icons/Qwik.vue -------------------------------------------------------------------------------- /docs/src/components/icons/React.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/src/components/icons/React.vue -------------------------------------------------------------------------------- /docs/src/components/icons/Svelte.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/src/components/icons/Svelte.vue -------------------------------------------------------------------------------- /docs/src/components/icons/ViteIcon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/src/components/icons/ViteIcon.vue -------------------------------------------------------------------------------- /docs/src/components/icons/Vitest.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/src/components/icons/Vitest.vue -------------------------------------------------------------------------------- /docs/src/components/icons/Vue.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/src/components/icons/Vue.vue -------------------------------------------------------------------------------- /docs/src/components/spark-ui/DotPattern/DotPattern.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/src/components/spark-ui/DotPattern/DotPattern.vue -------------------------------------------------------------------------------- /docs/src/components/spark-ui/animatedBeam/AnimatedBeam.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/src/components/spark-ui/animatedBeam/AnimatedBeam.vue -------------------------------------------------------------------------------- /docs/src/components/spark-ui/animatedBeam/Circle.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/src/components/spark-ui/animatedBeam/Circle.vue -------------------------------------------------------------------------------- /docs/src/components/spark-ui/animatedGradientText/animatedGradientText.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/src/components/spark-ui/animatedGradientText/animatedGradientText.vue -------------------------------------------------------------------------------- /docs/src/components/spark-ui/animatedList/AnimatedList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/src/components/spark-ui/animatedList/AnimatedList.vue -------------------------------------------------------------------------------- /docs/src/components/spark-ui/animatedList/Notification.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/src/components/spark-ui/animatedList/Notification.vue -------------------------------------------------------------------------------- /docs/src/components/spark-ui/animatedShinyText/AnimatedShinyText.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/src/components/spark-ui/animatedShinyText/AnimatedShinyText.vue -------------------------------------------------------------------------------- /docs/src/components/spark-ui/avatarCircle/AvatarCircles.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/src/components/spark-ui/avatarCircle/AvatarCircles.vue -------------------------------------------------------------------------------- /docs/src/components/spark-ui/bento/BentoCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/src/components/spark-ui/bento/BentoCard.vue -------------------------------------------------------------------------------- /docs/src/components/spark-ui/bento/BentoGrid.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/src/components/spark-ui/bento/BentoGrid.vue -------------------------------------------------------------------------------- /docs/src/components/spark-ui/blurFade/BlurFade.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/src/components/spark-ui/blurFade/BlurFade.vue -------------------------------------------------------------------------------- /docs/src/components/spark-ui/blurIn/BlurIn.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/src/components/spark-ui/blurIn/BlurIn.vue -------------------------------------------------------------------------------- /docs/src/components/spark-ui/globe/Globe.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/src/components/spark-ui/globe/Globe.vue -------------------------------------------------------------------------------- /docs/src/components/spark-ui/gradualSpacing/GradualSpacing.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/src/components/spark-ui/gradualSpacing/GradualSpacing.vue -------------------------------------------------------------------------------- /docs/src/components/spark-ui/letterUp/letter-up.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/src/components/spark-ui/letterUp/letter-up.vue -------------------------------------------------------------------------------- /docs/src/components/spark-ui/marquee/Marquee.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/src/components/spark-ui/marquee/Marquee.vue -------------------------------------------------------------------------------- /docs/src/components/spark-ui/meteors/Meteors.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/src/components/spark-ui/meteors/Meteors.vue -------------------------------------------------------------------------------- /docs/src/components/spark-ui/orbitingCircles/OrbitingCircles.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/src/components/spark-ui/orbitingCircles/OrbitingCircles.vue -------------------------------------------------------------------------------- /docs/src/components/spark-ui/particles/Particles.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/src/components/spark-ui/particles/Particles.vue -------------------------------------------------------------------------------- /docs/src/components/spark-ui/particles/ParticlesBackground.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/src/components/spark-ui/particles/ParticlesBackground.vue -------------------------------------------------------------------------------- /docs/src/components/spark-ui/retroGrid/retro-grid.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/src/components/spark-ui/retroGrid/retro-grid.vue -------------------------------------------------------------------------------- /docs/src/components/spark-ui/ripple/Ripple.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/src/components/spark-ui/ripple/Ripple.vue -------------------------------------------------------------------------------- /docs/src/components/spark-ui/skewed-infinite-scroll/SkewedInfiniteScroll.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/src/components/spark-ui/skewed-infinite-scroll/SkewedInfiniteScroll.vue -------------------------------------------------------------------------------- /docs/src/components/spark-ui/typingAnimation/typing-animation.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/src/components/spark-ui/typingAnimation/typing-animation.vue -------------------------------------------------------------------------------- /docs/src/example/animatedBeam/AnimatedBeam.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/src/example/animatedBeam/AnimatedBeam.vue -------------------------------------------------------------------------------- /docs/src/example/animatedBeam/AnimatedBeamBiDirectional.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/src/example/animatedBeam/AnimatedBeamBiDirectional.vue -------------------------------------------------------------------------------- /docs/src/example/animatedBeam/AnimatedBeamMultipleInputs.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/src/example/animatedBeam/AnimatedBeamMultipleInputs.vue -------------------------------------------------------------------------------- /docs/src/example/animatedBeam/AnimatedBeamUniDirectional.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/src/example/animatedBeam/AnimatedBeamUniDirectional.vue -------------------------------------------------------------------------------- /docs/src/example/animatedBeam/Circle.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/src/example/animatedBeam/Circle.vue -------------------------------------------------------------------------------- /docs/src/example/animatedBeam/Demo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/src/example/animatedBeam/Demo.vue -------------------------------------------------------------------------------- /docs/src/example/animatedGradientText/Demo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/src/example/animatedGradientText/Demo.vue -------------------------------------------------------------------------------- /docs/src/example/animatedGradientText/animatedGradientText.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/src/example/animatedGradientText/animatedGradientText.vue -------------------------------------------------------------------------------- /docs/src/example/animatedList/AnimatedList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/src/example/animatedList/AnimatedList.vue -------------------------------------------------------------------------------- /docs/src/example/animatedList/Demo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/src/example/animatedList/Demo.vue -------------------------------------------------------------------------------- /docs/src/example/animatedList/Notification.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/src/example/animatedList/Notification.vue -------------------------------------------------------------------------------- /docs/src/example/animatedShinyText/AnimatedShinyText.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/src/example/animatedShinyText/AnimatedShinyText.vue -------------------------------------------------------------------------------- /docs/src/example/animatedShinyText/Demo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/src/example/animatedShinyText/Demo.vue -------------------------------------------------------------------------------- /docs/src/example/animatedToolTip/AnimatedToolTip.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/src/example/animatedToolTip/AnimatedToolTip.vue -------------------------------------------------------------------------------- /docs/src/example/animatedToolTip/Demo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/src/example/animatedToolTip/Demo.vue -------------------------------------------------------------------------------- /docs/src/example/aurora/AuroraText.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/src/example/aurora/AuroraText.vue -------------------------------------------------------------------------------- /docs/src/example/aurora/Demo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/src/example/aurora/Demo.vue -------------------------------------------------------------------------------- /docs/src/example/avatarCircle/AvatarCircles.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/src/example/avatarCircle/AvatarCircles.vue -------------------------------------------------------------------------------- /docs/src/example/avatarCircle/Demo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/src/example/avatarCircle/Demo.vue -------------------------------------------------------------------------------- /docs/src/example/bento/BentoCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/src/example/bento/BentoCard.vue -------------------------------------------------------------------------------- /docs/src/example/bento/BentoGrid.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/src/example/bento/BentoGrid.vue -------------------------------------------------------------------------------- /docs/src/example/bento/Demo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/src/example/bento/Demo.vue -------------------------------------------------------------------------------- /docs/src/example/blurFade/BlurFade.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/src/example/blurFade/BlurFade.vue -------------------------------------------------------------------------------- /docs/src/example/blurFade/Demo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/src/example/blurFade/Demo.vue -------------------------------------------------------------------------------- /docs/src/example/blurIn/BlurIn.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/src/example/blurIn/BlurIn.vue -------------------------------------------------------------------------------- /docs/src/example/blurIn/Demo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/src/example/blurIn/Demo.vue -------------------------------------------------------------------------------- /docs/src/example/dotPattern/Demo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/src/example/dotPattern/Demo.vue -------------------------------------------------------------------------------- /docs/src/example/dotPattern/DotPattern.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/src/example/dotPattern/DotPattern.vue -------------------------------------------------------------------------------- /docs/src/example/dotPattern/DotPatternLinearGradient.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/src/example/dotPattern/DotPatternLinearGradient.vue -------------------------------------------------------------------------------- /docs/src/example/globe/Demo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/src/example/globe/Demo.vue -------------------------------------------------------------------------------- /docs/src/example/globe/Globe.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/src/example/globe/Globe.vue -------------------------------------------------------------------------------- /docs/src/example/gradualSpacing/Demo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/src/example/gradualSpacing/Demo.vue -------------------------------------------------------------------------------- /docs/src/example/gradualSpacing/GradualSpacing.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/src/example/gradualSpacing/GradualSpacing.vue -------------------------------------------------------------------------------- /docs/src/example/hero-video-dialog/Demo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/src/example/hero-video-dialog/Demo.vue -------------------------------------------------------------------------------- /docs/src/example/hero-video-dialog/HeroVideoDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/src/example/hero-video-dialog/HeroVideoDialog.vue -------------------------------------------------------------------------------- /docs/src/example/letterUp/Demo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/src/example/letterUp/Demo.vue -------------------------------------------------------------------------------- /docs/src/example/letterUp/letter-up.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/src/example/letterUp/letter-up.vue -------------------------------------------------------------------------------- /docs/src/example/marquee/3DDemo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/src/example/marquee/3DDemo.vue -------------------------------------------------------------------------------- /docs/src/example/marquee/Demo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/src/example/marquee/Demo.vue -------------------------------------------------------------------------------- /docs/src/example/marquee/Marquee.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/src/example/marquee/Marquee.vue -------------------------------------------------------------------------------- /docs/src/example/marquee/ReviewCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/src/example/marquee/ReviewCard.vue -------------------------------------------------------------------------------- /docs/src/example/marquee/VerticalDemo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/src/example/marquee/VerticalDemo.vue -------------------------------------------------------------------------------- /docs/src/example/meteors/Demo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/src/example/meteors/Demo.vue -------------------------------------------------------------------------------- /docs/src/example/meteors/Meteors.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/src/example/meteors/Meteors.vue -------------------------------------------------------------------------------- /docs/src/example/orbitingCircles/Demo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/src/example/orbitingCircles/Demo.vue -------------------------------------------------------------------------------- /docs/src/example/orbitingCircles/OrbitingCircles.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/src/example/orbitingCircles/OrbitingCircles.vue -------------------------------------------------------------------------------- /docs/src/example/particles/Demo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/src/example/particles/Demo.vue -------------------------------------------------------------------------------- /docs/src/example/particles/Particles.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/src/example/particles/Particles.vue -------------------------------------------------------------------------------- /docs/src/example/particles/ParticlesBackground.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/src/example/particles/ParticlesBackground.vue -------------------------------------------------------------------------------- /docs/src/example/resizable-navbar/Demo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/src/example/resizable-navbar/Demo.vue -------------------------------------------------------------------------------- /docs/src/example/resizable-navbar/MobileNav.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/src/example/resizable-navbar/MobileNav.vue -------------------------------------------------------------------------------- /docs/src/example/resizable-navbar/MobileNavHeader.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/src/example/resizable-navbar/MobileNavHeader.vue -------------------------------------------------------------------------------- /docs/src/example/resizable-navbar/MobileNavMenu.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/src/example/resizable-navbar/MobileNavMenu.vue -------------------------------------------------------------------------------- /docs/src/example/resizable-navbar/MobileNavToggle.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/src/example/resizable-navbar/MobileNavToggle.vue -------------------------------------------------------------------------------- /docs/src/example/resizable-navbar/NavBody.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/src/example/resizable-navbar/NavBody.vue -------------------------------------------------------------------------------- /docs/src/example/resizable-navbar/NavItems.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/src/example/resizable-navbar/NavItems.vue -------------------------------------------------------------------------------- /docs/src/example/resizable-navbar/Navbar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/src/example/resizable-navbar/Navbar.vue -------------------------------------------------------------------------------- /docs/src/example/resizable-navbar/NavbarButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/src/example/resizable-navbar/NavbarButton.vue -------------------------------------------------------------------------------- /docs/src/example/resizable-navbar/NavbarLogo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/src/example/resizable-navbar/NavbarLogo.vue -------------------------------------------------------------------------------- /docs/src/example/retroGrid/Demo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/src/example/retroGrid/Demo.vue -------------------------------------------------------------------------------- /docs/src/example/retroGrid/retroGrid.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/src/example/retroGrid/retroGrid.vue -------------------------------------------------------------------------------- /docs/src/example/ripple/Demo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/src/example/ripple/Demo.vue -------------------------------------------------------------------------------- /docs/src/example/ripple/Ripple.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/src/example/ripple/Ripple.vue -------------------------------------------------------------------------------- /docs/src/example/scroll-progress/Demo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/src/example/scroll-progress/Demo.vue -------------------------------------------------------------------------------- /docs/src/example/scroll-progress/ScrollProgress.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/src/example/scroll-progress/ScrollProgress.vue -------------------------------------------------------------------------------- /docs/src/example/skewedInfiniteScroll/Demo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/src/example/skewedInfiniteScroll/Demo.vue -------------------------------------------------------------------------------- /docs/src/example/skewedInfiniteScroll/SkewedInfiniteScroll.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/src/example/skewedInfiniteScroll/SkewedInfiniteScroll.vue -------------------------------------------------------------------------------- /docs/src/example/terminal/AnimatedSpan.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/src/example/terminal/AnimatedSpan.vue -------------------------------------------------------------------------------- /docs/src/example/terminal/Demo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/src/example/terminal/Demo.vue -------------------------------------------------------------------------------- /docs/src/example/terminal/Terminal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/src/example/terminal/Terminal.vue -------------------------------------------------------------------------------- /docs/src/example/terminal/TypingAnimation.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/src/example/terminal/TypingAnimation.vue -------------------------------------------------------------------------------- /docs/src/example/typingAnimation/Demo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/src/example/typingAnimation/Demo.vue -------------------------------------------------------------------------------- /docs/src/example/typingAnimation/typing-animation.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/src/example/typingAnimation/typing-animation.vue -------------------------------------------------------------------------------- /docs/src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/src/lib/utils.ts -------------------------------------------------------------------------------- /docs/src/spark-ui-demos/animatedBeam/AnimatedBeam.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/src/spark-ui-demos/animatedBeam/AnimatedBeam.vue -------------------------------------------------------------------------------- /docs/src/spark-ui-demos/animatedBeam/AnimatedBeamBiDirectional.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/src/spark-ui-demos/animatedBeam/AnimatedBeamBiDirectional.vue -------------------------------------------------------------------------------- /docs/src/spark-ui-demos/animatedBeam/AnimatedBeamMultipleInputs.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/src/spark-ui-demos/animatedBeam/AnimatedBeamMultipleInputs.vue -------------------------------------------------------------------------------- /docs/src/spark-ui-demos/animatedBeam/AnimatedBeamUniDirectional.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/src/spark-ui-demos/animatedBeam/AnimatedBeamUniDirectional.vue -------------------------------------------------------------------------------- /docs/src/spark-ui-demos/animatedGradientText/AnimatedGradientText.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/src/spark-ui-demos/animatedGradientText/AnimatedGradientText.vue -------------------------------------------------------------------------------- /docs/src/spark-ui-demos/animatedList/AnimatedList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/src/spark-ui-demos/animatedList/AnimatedList.vue -------------------------------------------------------------------------------- /docs/src/spark-ui-demos/animatedShinyText/AnimatedShinyText.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/src/spark-ui-demos/animatedShinyText/AnimatedShinyText.vue -------------------------------------------------------------------------------- /docs/src/spark-ui-demos/animatedToolTip/AnimatedToolTip.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/src/spark-ui-demos/animatedToolTip/AnimatedToolTip.vue -------------------------------------------------------------------------------- /docs/src/spark-ui-demos/animatedToolTip/Demo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/src/spark-ui-demos/animatedToolTip/Demo.vue -------------------------------------------------------------------------------- /docs/src/spark-ui-demos/aurora/AuroraText.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/src/spark-ui-demos/aurora/AuroraText.vue -------------------------------------------------------------------------------- /docs/src/spark-ui-demos/aurora/Demo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/src/spark-ui-demos/aurora/Demo.vue -------------------------------------------------------------------------------- /docs/src/spark-ui-demos/avatarCircle/AvatarCircles.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/src/spark-ui-demos/avatarCircle/AvatarCircles.vue -------------------------------------------------------------------------------- /docs/src/spark-ui-demos/bento/BentoGrid.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/src/spark-ui-demos/bento/BentoGrid.vue -------------------------------------------------------------------------------- /docs/src/spark-ui-demos/blurFade/BlurFade.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/src/spark-ui-demos/blurFade/BlurFade.vue -------------------------------------------------------------------------------- /docs/src/spark-ui-demos/blurIn/BlurIn.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/src/spark-ui-demos/blurIn/BlurIn.vue -------------------------------------------------------------------------------- /docs/src/spark-ui-demos/dotPattern/DotPattern.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/src/spark-ui-demos/dotPattern/DotPattern.vue -------------------------------------------------------------------------------- /docs/src/spark-ui-demos/dotPattern/DotPatternLinearGradient.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/src/spark-ui-demos/dotPattern/DotPatternLinearGradient.vue -------------------------------------------------------------------------------- /docs/src/spark-ui-demos/globe/Globe.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/src/spark-ui-demos/globe/Globe.vue -------------------------------------------------------------------------------- /docs/src/spark-ui-demos/gradualSpacing/GradualSpacing.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/src/spark-ui-demos/gradualSpacing/GradualSpacing.vue -------------------------------------------------------------------------------- /docs/src/spark-ui-demos/hero-video-dialog/Demo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/src/spark-ui-demos/hero-video-dialog/Demo.vue -------------------------------------------------------------------------------- /docs/src/spark-ui-demos/hero-video-dialog/HeroVideoDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/src/spark-ui-demos/hero-video-dialog/HeroVideoDialog.vue -------------------------------------------------------------------------------- /docs/src/spark-ui-demos/letterUp/LetterUp.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/src/spark-ui-demos/letterUp/LetterUp.vue -------------------------------------------------------------------------------- /docs/src/spark-ui-demos/marquee/3DMarquee.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/src/spark-ui-demos/marquee/3DMarquee.vue -------------------------------------------------------------------------------- /docs/src/spark-ui-demos/marquee/Marquee.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/src/spark-ui-demos/marquee/Marquee.vue -------------------------------------------------------------------------------- /docs/src/spark-ui-demos/marquee/ReviewCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/src/spark-ui-demos/marquee/ReviewCard.vue -------------------------------------------------------------------------------- /docs/src/spark-ui-demos/marquee/VerticalMarquee.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/src/spark-ui-demos/marquee/VerticalMarquee.vue -------------------------------------------------------------------------------- /docs/src/spark-ui-demos/meteors/Meteors.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/src/spark-ui-demos/meteors/Meteors.vue -------------------------------------------------------------------------------- /docs/src/spark-ui-demos/orbitingCircles/OrbitingCircles.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/src/spark-ui-demos/orbitingCircles/OrbitingCircles.vue -------------------------------------------------------------------------------- /docs/src/spark-ui-demos/particles/Particles.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/src/spark-ui-demos/particles/Particles.vue -------------------------------------------------------------------------------- /docs/src/spark-ui-demos/resizable-navbar/Demo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/src/spark-ui-demos/resizable-navbar/Demo.vue -------------------------------------------------------------------------------- /docs/src/spark-ui-demos/resizable-navbar/MobileNav.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/src/spark-ui-demos/resizable-navbar/MobileNav.vue -------------------------------------------------------------------------------- /docs/src/spark-ui-demos/resizable-navbar/MobileNavHeader.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/src/spark-ui-demos/resizable-navbar/MobileNavHeader.vue -------------------------------------------------------------------------------- /docs/src/spark-ui-demos/resizable-navbar/MobileNavMenu.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/src/spark-ui-demos/resizable-navbar/MobileNavMenu.vue -------------------------------------------------------------------------------- /docs/src/spark-ui-demos/resizable-navbar/MobileNavToggle.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/src/spark-ui-demos/resizable-navbar/MobileNavToggle.vue -------------------------------------------------------------------------------- /docs/src/spark-ui-demos/resizable-navbar/NavBody.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/src/spark-ui-demos/resizable-navbar/NavBody.vue -------------------------------------------------------------------------------- /docs/src/spark-ui-demos/resizable-navbar/NavItems.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/src/spark-ui-demos/resizable-navbar/NavItems.vue -------------------------------------------------------------------------------- /docs/src/spark-ui-demos/resizable-navbar/Navbar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/src/spark-ui-demos/resizable-navbar/Navbar.vue -------------------------------------------------------------------------------- /docs/src/spark-ui-demos/resizable-navbar/NavbarButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/src/spark-ui-demos/resizable-navbar/NavbarButton.vue -------------------------------------------------------------------------------- /docs/src/spark-ui-demos/resizable-navbar/NavbarLogo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/src/spark-ui-demos/resizable-navbar/NavbarLogo.vue -------------------------------------------------------------------------------- /docs/src/spark-ui-demos/retroGrid/retroGrid.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/src/spark-ui-demos/retroGrid/retroGrid.vue -------------------------------------------------------------------------------- /docs/src/spark-ui-demos/ripple/Ripple.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/src/spark-ui-demos/ripple/Ripple.vue -------------------------------------------------------------------------------- /docs/src/spark-ui-demos/scroll-progress/Demo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/src/spark-ui-demos/scroll-progress/Demo.vue -------------------------------------------------------------------------------- /docs/src/spark-ui-demos/scroll-progress/ScrollProgress.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/src/spark-ui-demos/scroll-progress/ScrollProgress.vue -------------------------------------------------------------------------------- /docs/src/spark-ui-demos/skewedInfiniteScroll/SkewedInfiniteScroll.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/src/spark-ui-demos/skewedInfiniteScroll/SkewedInfiniteScroll.vue -------------------------------------------------------------------------------- /docs/src/spark-ui-demos/terminal/AnimatedSpan.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/src/spark-ui-demos/terminal/AnimatedSpan.vue -------------------------------------------------------------------------------- /docs/src/spark-ui-demos/terminal/Demo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/src/spark-ui-demos/terminal/Demo.vue -------------------------------------------------------------------------------- /docs/src/spark-ui-demos/terminal/Terminal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/src/spark-ui-demos/terminal/Terminal.vue -------------------------------------------------------------------------------- /docs/src/spark-ui-demos/terminal/TypingAnimation.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/src/spark-ui-demos/terminal/TypingAnimation.vue -------------------------------------------------------------------------------- /docs/src/spark-ui-demos/typingAnimation/TypingAnimation.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/src/spark-ui-demos/typingAnimation/TypingAnimation.vue -------------------------------------------------------------------------------- /docs/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/tailwind.config.js -------------------------------------------------------------------------------- /docs/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/tsconfig.app.json -------------------------------------------------------------------------------- /docs/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/tsconfig.json -------------------------------------------------------------------------------- /docs/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/tsconfig.node.json -------------------------------------------------------------------------------- /docs/uno.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/uno.config.ts -------------------------------------------------------------------------------- /docs/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/docs/vite.config.ts -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/pnpm-workspace.yaml -------------------------------------------------------------------------------- /tests/sum.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/tests/sum.spec.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vitest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/selemondev/spark-ui/HEAD/vitest.config.ts --------------------------------------------------------------------------------