npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@sapryniukt/vue-liquid-glass

v0.1.2

Published

Liquid Glass effect core library for Vue 3 — physics-based refraction, specular highlights, and ready-to-use glass components

Downloads

17

Readme

@sapryniukt/vue-liquid-glass

Physics-based liquid glass effect library for Vue 3 — real-time refraction, specular highlights, chromatic aberration, and ready-to-use glass components.

Installation

npm install @sapryniukt/vue-liquid-glass

Peer dependency: Vue 3.4+

Quick Start

Plugin (register all components globally)

import { createApp } from 'vue'
import LiquidGlassCorePlugin from '@sapryniukt/vue-liquid-glass'
import App from './App.vue'

createApp(App).use(LiquidGlassCorePlugin).mount('#app')

Named imports (tree-shakeable)

import {
  LiquidGlassPanel,
  LiquidGlassSwitch,
  LiquidGlassSlider,
  LiquidGlassBottomNavBar,
  LiquidGlassSearchBar,
  LiquidGlassButton,
} from '@sapryniukt/vue-liquid-glass'

Components

LiquidGlassPanel

A glass container with refraction, specular highlights, and gradient blur edges.

<LiquidGlassPanel
  :border-radius="24"
  :blur="1.2"
  :specular-opacity="0.4"
  content-padding="24px"
>
  <p>Content behind glass</p>
</LiquidGlassPanel>

| Prop | Type | Default | |------|------|---------| | borderRadius | number | 50 | | bezelWidth | number | 40 | | glassThickness | number | 120 | | refractiveIndex | number | 1.5 | | bezelType | BezelType | "convex_squircle" | | shape | ShapeType | "pill" | | blur | number | 1 | | scaleRatio | number | 0.4 | | specularOpacity | number | 0.4 | | specularSaturation | number | 8 | | magnify | boolean | false | | gradientBlurSize | number | 60 | | backgroundColor | string | "var(--lg-panel-bg, rgba(255,255,255,0.05))" | | contentPadding | string | "20px" | | disabled | boolean | false | | hoverLight | boolean | true |

LiquidGlassSwitch

A toggle switch with a draggable glass thumb and animated track.

<LiquidGlassSwitch v-model="isEnabled" size="medium" />

| Prop | Type | Default | |------|------|---------| | modelValue | boolean | false | | size | "xs" \| "small" \| "medium" \| "large" | "medium" | | disabled | boolean | false | | restScale | number | 0.65 | | activeScale | number | 0.9 | | hoverLight | boolean | true |

LiquidGlassSlider

A range slider with a glass thumb that scales on drag.

<LiquidGlassSlider v-model="volume" :min="0" :max="100" size="medium" />

| Prop | Type | Default | |------|------|---------| | modelValue | number | 0 | | min | number | 0 | | max | number | 100 | | size | "small" \| "medium" \| "large" | "medium" | | disabled | boolean | false | | restScale | number | 0.6 | | dragScale | number | 1 | | hoverLight | boolean | true |

LiquidGlassBottomNavBar

A navigation bar with a morphing glass thumb indicator.

<LiquidGlassBottomNavBar
  v-model="activeTab"
  :items="[
    { id: 'home', label: 'Home', icon: '<svg>...</svg>' },
    { id: 'search', label: 'Search', icon: '<svg>...</svg>' },
    { id: 'profile', label: 'Profile', icon: '<svg>...</svg>' },
  ]"
/>

| Prop | Type | Default | |------|------|---------| | modelValue | string | "" | | items | NavItem[] | (required) | | size | "small" \| "medium" \| "large" | "medium" | | disabled | boolean | false | | activeColor | string | "var(--lg-nav-active, #7ec8ff)" | | hoverLight | boolean | true |

NavItem: { id: string; label: string; icon?: string }

LiquidGlassSearchBar

An expandable search input with a glass orb indicator.

<LiquidGlassSearchBar v-model="query" placeholder="Search..." size="medium" />

| Prop | Type | Default | |------|------|---------| | modelValue | string | "" | | placeholder | string | "Search..." | | size | "xs" \| "small" \| "medium" \| "large" | "medium" | | disabled | boolean | false | | hoverLight | boolean | true |

LiquidGlassButton

A glass-effect button with press/hover refraction response.

<LiquidGlassButton label="Click Me" size="medium" @click="handleClick" />

| Prop | Type | Default | |------|------|---------| | label | string | "Liquid Glass Button" | | size | "small" \| "medium" \| "large" | "medium" | | disabled | boolean | false | | width | number | 180 | | blur | number | 1 | | specularOpacity | number | 0.4 | | pressScale | number | 0.97 | | hoverLight | boolean | true |

LiquidGlassFilter

Low-level SVG filter primitive used internally by all glass components. Use this to build custom glass elements.

<LiquidGlassFilter
  id="my-filter"
  :width="200"
  :height="100"
  :radius="50"
  shape="pill"
/>

<div style="backdrop-filter: url(#my-filter)">Custom glass</div>

GradientBlur

A directional gradient blur overlay for softening glass edges.

<GradientBlur direction="bottom" :size="60" />

Composables

useLiquidGlass(elementRef?, options?)

Generates and manages a liquid glass SVG filter for any element.

import { ref } from 'vue'
import { useLiquidGlass } from '@sapryniukt/vue-liquid-glass'

const el = ref<HTMLElement | null>(null)
const { filterId, backdropStyle, regenerate } = useLiquidGlass(el, {
  refractiveIndex: 1.5,
  blur: 0.8,
  scaleRatio: 0.4,
})

Returns: filterId, assets, scale, backdropStyle, regenerate, observedWidth, observedHeight

useGlassHover(elementRef, options?)

Tracks pointer position to create a light-follow hover effect.

import { ref } from 'vue'
import { useGlassHover } from '@sapryniukt/vue-liquid-glass'

const el = ref<HTMLElement | null>(null)
const { hoverStyle, hoverProgress } = useGlassHover(el, {
  radius: 150,
  intensity: 0.18,
})

Options: radius, intensity, baseBrightness, smoothing, fadeSmoothing

Returns: mouseX, mouseY, isHovering, hoverProgress, hoverStyle

useSpring(initial, config?)

A spring-physics animation primitive.

useLerp(initial, smoothing?)

Linear interpolation helper for smooth value transitions.

Low-Level Lib

For advanced use, the pure math functions are also exported:

import {
  calculateDisplacementMap,
  calculateSpecularMap,
  calculateMagnifyingMap,
  imageDataToDataUrl,
  CONVEX,
  CONCAVE,
  LIP,
  createCustomSurface,
} from '@sapryniukt/vue-liquid-glass'

CSS Custom Properties

All components support theming via CSS custom properties:

:root {
  --lg-panel-bg: rgba(255, 255, 255, 0.05);
  --lg-panel-border: rgba(255, 255, 255, 0.15);
  --lg-panel-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  --lg-button-text: rgba(255, 255, 255, 0.95);
  --lg-button-bg: rgba(255, 255, 255, 0.05);
  --lg-slider-fill: #0377F7;
  --lg-slider-track-base: rgba(137, 137, 143, 0.72);
  --lg-nav-active: #7ec8ff;
  --lg-nav-text: rgba(255, 255, 255, 0.82);
  --lg-switch-track-inset: inset 0 0 10px rgba(255, 255, 255, 0.08);
}

Types

import type {
  ShapeType,
  BezelType,
  SurfaceFnDef,
  GlassConfig,
  GlassFilterAssets,
  SpringConfig,
  UseLiquidGlassOptions,
  GlassHoverOptions,
} from '@sapryniukt/vue-liquid-glass'

Inspiration

This library is inspired by the concept described in Liquid Glass with CSS & SVG by Kube.

License

GNU General Public License v3.0 (GPL-3.0)

SPDX License Identifier: GPL-3.0-only