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

inm-labs-component-library

v0.0.36

Published

This is mostly a library of components we use internally, so if you dont really want the whole package we also have the components as a standalone so you can pick only the one you need instead of the whole library

Downloads

22

Readme

inm-labs-component-library

This is mostly a library of components we use internally, so if you dont really want the whole package we also have the components as a standalone so you can pick only the one you need instead of the whole library

The full documentation can be found here : https://inm-web-labs.github.io/inm-labs-component-library/

To Install

npm install --save inm-labs-component-library

Once you have installed the package, in your entry file of the repository (main.js) if you are using it in a Vue CLI project. Write the import command

import ComponentLibrary from 'inm-labs-component-library'

app.use(ComponentLibrary)

Components

Options allow you to customize how the input will format the amount as you type.

| Name | Description | | :----------------: | :-----------: | | vue-format-amount-input | Input with format for amounts |

Changelog

  • 0.0.13 - updated blur function when no currency is provided
  • 0.0.14 - added option to have negative amounts to vue-format-amount-input
  • 0.0.15 - fixed bug when clearing negative value
  • 0.0.16 - VueFormatAmountInput: changed maxValue logic and default value; To prevent Scientific notation on numbers value is now returned and used as a string
  • 0.0.17 - fixed bug when changing currency and input had no content
  • 0.0.18 - fixed variable used to compare maxValue and validation
  • 0.0.19 - VueFormatAmountInput: Fixed logic behind removing currency from value; Removed console.logs
  • 0.0.20 - VueFormatAmountInput: fixed logic when on clear of value, currency would be showed; fixed setSelectionRange to only be trigger if user is focus on input
  • 0.0.21 - VueFormatAmountInput: Fixed maxValue validations and handling; Fixing replacing numbers
  • 0.0.22 - VueFormatAmountInput: Fixed maxValue validations for decimals and numbers with currencies
  • 0.0.23 - VueFormatAmountInput: Fixed maxValue validation when number has same length; fixed validation when swapping amounts
  • 0.0.24 - VueFormatAmountInput: Added watch to handleMaxValue change on input lifetime
  • 0.0.25 - VueFormatAmountInput: Added logic on initial value setup, so decimals (when allowed) are showed on mounted
  • 0.0.26 - VueFormatAmountInput: Fixed validation for maxValue on initial render with value
  • 0.0.27 - VueFormatAmountInput: Added missing validation before trying to stringify value
  • 0.0.28 - VueFormatAmountInput: Added missing validations for value on watch
  • 0.0.29 - VueFormatAmountInput: Fixed blur logic when value is empty
  • 0.0.30 - VueFormatAmountInput: Added inputMode to input, and option to help define inputMode specifc for iOS apps/browsers
  • 0.0.31 - VueFormatAmountInput: Added logic for pasted values when they fall out of maxValue
  • 0.0.32 - VueFormatAmountInput: Fixed validation for decimalsChars; Fixed maxValue logic when having decimals
  • 0.0.33 - VueFormatAmountInput: Fixed formating value before emiting it when its value is negative
  • 0.0.34 - VueFormatAmountInput: Added logic to prevent zeros at left of natural number
  • 0.0.35 - VueFormatAmountInput: Fixed bug removing zeros before decimal char and also removing decimal char
  • 0.0.36 - VueFormatAmountInput: Fixed bug where inputValue being 0 would be treated as falsy validation