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 🙏

© 2024 – Pkg Stats / Ryan Hefner

@bardoui/vcoms

v1.2.1

Published

A set of vue 3 components

Downloads

16

Readme

vComs

Vue 3 components.

Installation

You must import and register components manually.

CDN

This package published as vComs module in umd.

<script src="https://unpkg.com/@bardoui/vcoms"></script>

NPM

npm i @bardoui/vcoms

DataView

Data view container for lists rendering.

<template>
  <vDataView :data="records" :error="error">
    <template #error="{ error }">{{ error }} occurred!</template>
    <template #empty>No records exists</template>
    <template #default="{ records }">
      <!-- Show cards layout on mobile  -->
      <div class="my-card-layout show-on-mobile">
        <div v-for="(item, index) in records" :key="index">
          <p>{{ item.name }}</p>
        </div>
      </div>
      <!-- Show table on other devices  -->
      <table class="hide-on-mobile">
        <tbody>
          <tr v-for="(item, index) in records" :key="index">
            <td>{{ item.id }}</td>
            <td>{{ item.name }}</td>
          </tr>
        </tbody>
      </table>
    </template>
  </vDataView>
</template>

Data View have three slots:

  • error: content for render when error property not a falsy value (error passed as scoped-slot value).
  • empty: content to render when no record exists.
  • default: list views to render (records passed as scoped-slot value).

Note: Data view have no wrapper element and rendered directly in dom!

Note: for safe list rendering use records scoped-slot!

Note: you can use multiple list renderer for different device with default Termeh visibility classes (like above example).

| Property | Type | Default | Description | | :------- | :----------- | :------ | :------------ | | data | Array|null | null | data records | | error | any | null | error message |

Jalaali

Format and display jalaali date.

<script lang="ts">
import { vJalaali } from "@bardoui/vcoms";
</script>

<template>
  <vJalaali value="2022-01-01T12:00:00Z" format="ago" />
</template>

| Property | Type | Default | Description | | :------- | :------- | :-------------------------------- | :------------------------------------ | | format | String | "jDD jMMMM jYYYY ساعت HH:mm:ss" | display format. you can use ago | | alter | String | "" | text to shown if date is invalid | | value | any | | date value (moment js inputs allowed) |

JalaaliInput

Jalaali date input component.

Note: minimum and maximum check applied on v-model change and input blur on valid input only.

Note: modal value is a standard gregorian date string.

Note: min and max accept jalaali date string.

<script lang="ts">
// index.ts
import { vJalaaliInput } from "@bardoui/vcoms";
import { ref } from "vue";
const v = ref("");
</script>

<template>
  <v-jalaali-input separator="/" v-model="v" />
</template>

| Property | Type | Default | Description | | :-------- | :------- | :------ | :------------------- | | separator | String | "-" | separator string | | min | String | "" | minimum jalaali date | | max | String | "" | maximum jalaali date |

MaskInput

Masked input component.

<script lang="ts">
// index.ts
import { vMaskInput } from "@bardoui/vcoms";
import { ref } from "vue";
const v = ref("");
</script>

<template>
  <v-mask-input guide="_" mask="####-###.##" v-model="v">
</template>

| Property | Type | Default | Description | | :------- | :------------------------ | :------ | :-------------------------------------------------------------------------------------------------------------------------------------------------- | | options | Options | {} | default options. see Text Mask Core Options for more details | | mask | string\|array\|function | | mask. see vMask for more details | | guide | String | "" | guide character to show as placeholder |

Number

Format and display number.

<script lang="ts">
import { vNumber } from "@bardoui/vcoms";
</script>

<template>
  <vNumber :value="123451000" separator="/" />
</template>

| Property | Type | Default | Description | | :-------- | :------- | :------ | :------------------ | | value | Number | 0 | value | | separator | String | "," | separator character |

NumberAnim

Animate number. Default slot contains two value:

  • value (number): animated value.
  • formatted (string): formatted animated value.
<script lang="ts">
// index.ts
import { vNumberAnim } from "@bardoui/vcoms";
import { ref } from "vue";
const v = ref(0);
</script>

<template>
  <v-number-anim
    :value="v_num"
    :decimals="3"
    separator="/"
    easing="linear"
    :duration="500"
  >
    <template #="{ formatted, value }">
      <h1>{{ formatted }}</h1>
      <p>{{ value }}</p>
    </template>
  </v-number-anim>
</template>

| Property | Type | Default | Description | | :-------- | :------- | :-------------------------------------- | :----------------------------------- | | value | Number | | number to animate | | decimals | Number | 0 | decimal places limit | | separator | String | "," | number format separator | | easing | String | "cubicBezier(0.25, 0.46, 0.45, 0.94)" | animation easing | | duration | Number | 750 | animation duration in (milliseconds) |

Numeric

Numeric input component.

<script lang="ts">
// index.ts
import { vNumericInput } from "@bardoui/vcoms";
import { ref } from "vue";
const v = ref("");
</script>

<template>
  <v-numeric-input prefix="$ " separator="," :min="-10" :decimal="2" v-model="v">
</template>

| Property | Type | Default | Description | | :-------- | :------- | :------------------------ | :-------------------------- | | prefix | String | "" | Number prefix | | suffix | String | "" | Number suffix | | separator | String | "," | separator string | | decimal | number | 0 | max allowed fraction number | | min | number | 0 | minimum number | | max | number | Number.MAX_SAFE_INTEGER | maximum number |

Caution: when passed min and max property, value set to min/max if goes out of range.

| Event | Type | Description | | :----- | :-------------------- | :------------------------------------ | | format | (v: string) => void | pass formatted number on value update |