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

@eraprimax/terra-ui-kit

v1.0.1

Published

[![NPM Version](https://img.shields.io/npm/v/@eraprimax/terra-ui-kit?color=4182FF&style=flat-square)](https://www.npmjs.com/package/@eraprimax/terra-ui-kit) [![License](https://img.shields.io/npm/l/@eraprimax/terra-ui-kit?color=34D399&style=flat-square)]

Readme

🌌 Terra UI Kit

NPM Version License Live Demo

Visit Live Interactive Documentation & Component Suite →

An ultra-modern, glassmorphic UI component suite built for Vue 3 and Tailwind CSS. Designed for developers looking to craft stunning, cyberpunk-inspired, and futuristic web applications with tactile depth, vibrant color orbs, and rich glassmorphism physics.


✨ Features

  • 💎 Premium Glassmorphism Aesthetics: Fully customized backdrop-filters, subtle glowing borders, and interactive hover mechanics.
  • Production-Ready & Lightweight: Fully optimized bundling (~103kB ESM) with tree-shaking support.
  • 🛠️ Fully Interactive Builders: Includes sandboxes like DataTable and Button customizer configurations.
  • 📦 Flexible Bundles: Exposes both ES Module (ESM) and Universal Module Definition (UMD) outputs.
  • 🎨 Tailwind Powered: Fully compatible with the latest Tailwind CSS version.

🚀 Installation

Install Terra UI Kit using your preferred package manager:

# Using npm
npm install @eraprimax/terra-ui-kit

# Using yarn
yarn add @eraprimax/terra-ui-kit

# Using pnpm
pnpm add @eraprimax/terra-ui-kit

🛠️ Setup & Configuration

1. Import Global Styles

Import the compiled glassmorphism stylesheets directly inside your main entry point file (usually src/main.ts or src/main.js):

import { createApp } from 'vue'
import App from './App.vue'

// Import Terra UI Styles
import '@eraprimax/terra-ui-kit/dist/terra-ui-kit.css'

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

2. Verify Tailwind Configuration

Make sure your tailwind.config.js or Vite CSS configuration includes standard Tailwind directives, as Terra UI Kit leverages Tailwind utility definitions under the hood.


📖 How to Use

You can import components individually (recommended for optimal bundle size) inside any Vue component:

1. Simple Button Example

<script setup lang="ts">
import { GlassButton } from '@eraprimax/terra-ui-kit'
import { Mail } from 'lucide-vue-next'
</script>

<template>
  <div class="p-8 bg-[#050508] min-h-screen flex items-center justify-center">
    <GlassButton variant="primary" size="md">
      <template #icon>
        <Mail class="w-4 h-4" />
      </template>
      Send Message
    </GlassButton>
  </div>
</template>

2. Interactive Adaptive DataTable

<script setup lang="ts">
import { ref } from 'vue'
import { GlassTable } from '@eraprimax/terra-ui-kit'

const columns = [
  { key: 'name', label: 'Company' },
  { key: 'status', label: 'Status' },
  { key: 'amount', label: 'Amount' }
]

const tableData = ref([
  { id: 1, name: 'Nova Corp', status: 'Active', amount: '$4,500' },
  { id: 2, name: 'Aether Lab', status: 'Pending', amount: '$1,200' }
])
</script>

<template>
  <div class="p-8 bg-[#050508] min-h-screen">
    <GlassTable 
      :columns="columns" 
      :data="tableData" 
      theme="sapphire" 
    />
  </div>
</template>

🗂️ Component Directory

Here is the list of available premium glass components you can import from @eraprimax/terra-ui-kit:

| Category | Component Name | Description | | :--- | :--- | :--- | | Buttons | GlassButton | Tactile neon buttons with multi-variants, loading spinner, and icon slots. | | Forms & Inputs | GlassInput | Translucent text input with neon focus state. | | | GlassCheckbox | Glassmorphic checked box with active check indicator. | | | GlassSlider | Floating range selector with fluid value bar. | | | GlassDatePicker | Full-screen floating calendar selector. | | | GlassDateRangePicker| Dual-date range selector with active period highlights. | | | GlassTimePicker | Time wheel selector with frosted glass overlays. | | | GlassOTPInput | Separated OTP code numbers with auto-focus shifting. | | | GlassCombobox | Rich search-autocomplete glass dropdown list. | | | GlassRadioGroup | Beautiful round options selection grid. | | | GlassToggle | Smooth sliding switch for toggling states. | | | GlassTextarea | Multiline glass text input with auto-resize. | | Data & Feedback | GlassTable | Dynamic grid supporting loading spinners, empty fallbacks, and customizable headers. | | | GlassAvatar | Circular user profile with online/offline pulsing indicator. | | | GlassEmptyState | Gorgeous empty placeholder container with vector actions. | | | GlassCarousel | Sliding slide content carousel with navigation bullets. | | | GlassParallax | Background-locked 3D parallax scrolling container. | | | GlassCard | Frosted cards with glowing borders and slotted header contents. | | Navigation | GlassStepper | Linear step tracker with completed neon connectors. | | | GlassBreadcrumb | Translucent path navigation link trail. | | | GlassTabs | Segmented sliding navigation tab controls. | | | GlassHeader | Sticky glass top bar with brand slot. | | | GlassFooter | Translucent copyright bottom layout bar. | | | GlassSidebar | Collapsible left drawer navigation with sliding indicators. | | Modals & Overlays| GlassCommandPalette| Floating Ctrl + K global command finder grouped by categories. | | | GlassModal | Blurred overlay modal with focus trapping. | | | GlassPopup | Absolute-positioned anchor trigger action list. | | Charts & Analytics| GlassBarChart | Gorgeous vertical 3D analytics grid chart. | | | GlassLineChart | Flowing linear visual path data chart. | | | GlassDonutChart | Rounded device partition chart with neon borders. | | Toast Notifications| ToastProvider | System toast feedback hub supporting Promise-based notifications. |


🛠️ Development & Contribution

Setup Project Locally

To run the local component suite customizer sandbox:

# Clone the repository
git clone https://github.com/eraprima12/terra-ui-kit.git

# Enter project directory
cd terra-ui-kit

# Install dependencies
npm install

# Run dev server
npm run dev

Build Library

To compile the library bundles:

npm run build

📄 License

MIT © eraprima12