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

@synkos/ui

v0.8.1

Published

Synkos component library (Vue 3 + Quasar)

Readme

@synkos/ui

iOS-styled Vue 3 component library for Synkos apps.

Install

pnpm add @synkos/ui

Peer dependencies: vue@^3, quasar@^2

Import the CSS

// src/boot/synkos-ui.ts (Quasar boot file)
import '@synkos/ui/styles';

Allow Vite to process the package

Add to quasar.config.ts:

build: {
  viteVuePluginOptions: {
    // @synkos/ui ships compiled JS — no extra config needed
  },
}

Components

AppEmptyState

Empty state with icon, title, optional subtitle, and optional CTA button.

<AppEmptyState
  icon="inbox"
  title="Nothing here yet"
  subtitle="Create your first item to get started."
  :action="{ label: 'Create', icon: 'add', onClick: handleCreate }"
/>

AppListSection + AppListRow + AppListDivider

iOS-style grouped list.

<AppListSection title="Account">
  <AppListRow
    icon="person"
    icon-bg="#0A84FF"
    icon-color="#fff"
    label="Edit Profile"
    @click="router.push({ name: 'edit-profile' })"
  />
  <AppListDivider :indent="60" />
  <AppListRow
    icon="lock"
    icon-bg="#30D158"
    icon-color="#fff"
    label="Change Password"
    @click="router.push({ name: 'change-password' })"
  />
</AppListSection>

AppListRow props:

| Prop | Type | Description | | ----------------- | --------- | ---------------------------------------------- | | label | string | Row label (required) | | icon | string | Material icon name | | iconBg | string | Icon background color | | iconColor | string | Icon color | | hint | string | Secondary text below label | | value | string | Static value (renders as div, no chevron) | | danger | boolean | Red label | | disabled | boolean | Disabled state | | comingSoon | boolean | Shows "Coming soon" badge | | comingSoonLabel | string | Override badge text (default: 'Coming soon') |

AppPageLargeTitle

iOS large-title page header with optional right slot.

<AppPageLargeTitle title="Settings" subtitle="Manage your account">
  <template #right>
    <AppButton icon="edit" @click="handleEdit" />
  </template>
</AppPageLargeTitle>

SegmentControl

iOS-style segmented control, v-model compatible.

<SegmentControl
  v-model="activeTab"
  :options="[
    { value: 'all', label: 'All' },
    { value: 'active', label: 'Active' },
    { value: 'done', label: 'Done' },
  ]"
/>

Composables

useSheetDrag

Rubber-band drag behaviour for bottom sheets (iOS-like, no external dependencies).

<script setup lang="ts">
import { useSheetDrag } from '@synkos/ui';

const { sheetDragStyle, onDragStart, onDragMove, onDragEnd } = useSheetDrag();
</script>

<template>
  <div
    :style="sheetDragStyle"
    @touchstart="onDragStart"
    @touchmove="onDragMove"
    @touchend="onDragEnd"
  >
    <slot />
  </div>
</template>

Design tokens

The package ships the full SCSS variable system used by the components. Import in your quasar.variables.scss to use the same tokens:

// src/css/quasar.variables.scss
@use '@synkos/ui/variables.scss' as *;

// Override any token:
$primary: #ff6b00;