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

@mobiscroll/vue-lite

v6.1.4

Published

Open-source Vue form, notification and popup components from Mobiscroll — the scheduling, event calendar and resource management UI library. Apache-2.0. Scheduler, timeline, agenda and date pickers are commercial.

Readme

@mobiscroll/vue-lite

Open-source Vue form, notification and popup components from Mobiscroll — the scheduling, event calendar and resource management UI library. Apache-2.0.

Scheduling screens are mostly forms: the dialog that creates an event, the filters above a timeline, the confirmation when something moves. These are those components, built for the rest of Mobiscroll and published on their own.

| Group | Components | | --------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- | | Forms | Button, Checkbox, Dropdown, Input, Radio button, Segmented, Stepper, Switch, Textarea | | Notifications | Alert, Confirm, Prompt, Snackbar, Toast | | Popup | Modal dialog, anchored popover, bottom sheet, inline |

The popup handles focus trapping, the ARIA dialog role and keyboard dismissal, so anything built on it behaves the way assistive technology expects. Same design system and theming as the rest of Mobiscroll — a form built with these sits next to a Mobiscroll scheduler without looking bolted on. TypeScript types and both ESM and CommonJS builds are in the package.

These are native Vue components, built on Vue's own reactivity and renderer — not wrappers around a plain JavaScript widget. Props, v-model and events all work the way they do in any other Vue component.

Install

npm install @mobiscroll/vue-lite

Public npm — no CLI, no registry configuration, no licence key.

Usage

<script setup>
import { ref } from 'vue';
import { MbscInput, MbscButton, MbscToast } from '@mobiscroll/vue-lite';
import '@mobiscroll/vue-lite/dist/css/mobiscroll.min.css';

const showToast = ref(false);
</script>

<template>
  <MbscInput label="Email" type="email" />
  <MbscButton @click="showToast = true">Save</MbscButton>
  <MbscToast :is-open="showToast" message="Saved" @close="showToast = false" />
</template>

The rest of Mobiscroll UI

This package ships only the components above. The event calendar, scheduler, timeline and date pickers are commercial and distributed separately:

| Group | Components | | --------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | Event calendar system | Event Calendar, Scheduler, Timeline, Agenda | | Date and time | Calendar, Date & Time, Range | | Supporting | Select |

They need a trial or a licence and install through the Mobiscroll CLI: https://mobiscroll.com/docs/vue/getting-started/installation

Links

  • Documentation — https://mobiscroll.com/docs/vue
  • Demos — https://demo.mobiscroll.com/vue
  • Mobiscroll scheduling UI — https://mobiscroll.com/scheduling-ui
  • Releases and changelog — https://mobiscroll.com/releases
  • Issues — https://github.com/acidb/mobiscroll/issues
  • Licensed support — https://mobiscroll.com/support
  • Licence — https://github.com/acidb/mobiscroll/blob/master/LICENSE