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

vue-tag-maker

v1.1.0

Published

A customizable tag input component for Vue 3

Downloads

31

Readme

GloomyTags

GloomyTags is a Vue.js component for adding and removing tags. It allows users to add or remove tags in an input field, with support for customizable styling and input control.

Installation

To add the GloomyTags component to your Vue project, install it using either npm or yarn:

npm install vue-tag-maker

or

yarn add vue-tag-maker

Usage

Usage Example

  1. Component Registration

    Register the component in the Vue file where you want to use it:

    <script setup lang="ts">
    import GloomyTags from 'vue-tag-maker'
    </script>
    
    <template>
      <GloomyTags
        :state="tags"
        :setState="updateTags"
        name="tags"
        placeHolder="Type and press enter"
      />
    </template>
  2. Component Properties

    The GloomyTags component supports the following properties:

    • name: The name of the input field.
    • placeHolder: The placeholder text for the input field.
    • state: The current array of tags.
    • setState: A function to update the array of tags.
    • onChange: A callback function that is called when tags are changed.
    • onBlur: A callback function that is called when the input field loses focus.
    • separators: An array of keys that separate tags. Defaults to [].
    • disableBackspaceRemove: If true, prevents tags from being removed with the backspace key. Defaults to false.
    • onExisting: A callback function that is called when an existing tag is entered.
    • onRemoved: A callback function that is called when a tag is removed.
    • disabled: Disables the input field if true. Defaults to false.
    • isEditOnRemove: If true, switches to edit mode when a tag is removed. Defaults to false.
    • beforeAddValidate: A validation function that is called before adding a tag.
    • onKeyUp: A callback function that is called when a key is released in the input field.
    • classNames: An object with customized CSS class names.
    • throttleTime: The throttle time (ms) for tag addition requests. Defaults to 300.
  3. Component Methods

    The GloomyTags component includes the following methods:

    • cursorToInput: Focuses the input field when the gloomy-tag--container is clicked.
    • handleKeyDown: Handles key input events to add or remove tags.
    • handleTagRemove: Removes a specific tag.
  4. Styling

    The GloomyTags component uses scoped CSS for styling. The CSS includes the following elements:

    • .gloomy-tag--container: The default style for the tag input container.
    • .gloomy-tag--input: The default style for the input field.
    • .gloomy-tag--tag: The default style for each tag.
    • .gloomy-tag--focus: The style for a focused tag.
    • .gloomy-tag--tag.disappearing: The style for a tag that is being removed.

Example

<template>
  <div id="app">
    <GloomyTags
      :state="tags"
      :setState="updateTags"
      name="tags"
      placeHolder="Type and press enter"
      :separators="['Enter', ',']"
      :classNames="{ tag: 'custom-tag-class', input: 'custom-input-class' }"
    />
  </div>
</template>

<script setup lang="ts">
import { ref } from 'vue'
import GloomyTags from 'vue-tag-maker'

const tags = ref<string[]>([])

function updateTags(newTags: string[]) {
  tags.value = newTags
}
</script>

Contributing

For those who wish to contribute, please refer to the CONTRIBUTING.md file.

License

This project is licensed under the MIT License. For more details, please refer to the LICENSE file.