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

vuetify-more-component

v1.4.1

Published

More components for vuetify. Add new components like: -DigitalTimePicker -LoadingOverlay -PdfViewer -CustomTable

Downloads

74

Readme

See on NPM

vuetify-more-component

More components for vuetify.

Add new components like:

  • DigitalTimePicker: simpler and more minimalistic version of Vuetify's v-time-picker.
  • LoadingOverlay: a customizable overlay that indicates that the process or page is loading.
  • PdfViewer: customizable component that allows viewing any PDF encoded in Base64, up to 512MB!.
  • CustomTable: customizable top for vuetify tables that allow you want download file pdf or excel.

Digital Time Picker

Default Component
Custom Component

Loading Overlay

Default Component
Custom Component

PDF Viewer

Default Component
Custom Example 1
Custom Example 2
It can display entire books and PDFs larger than 400mb!

PDF Custom Table

Default Component
It can download file pdf or excel or both
Example excel downloaded
Custom Component
Example custom pdf downloaded

Installation

npm install vuetify-more-component@latest

Usage

import { loadingOverlay,  digitalTimePicker, pdfViewer, customTable } from "vuetify-more-component";

export default {
  components: {
    digitalTimePicker,
    loadingOverlay,
    pdfViewer,
    customTable
  },
  data() {
    return {
      /* loadingOverlay*/
      loadingStatus: false,

      /* digitalTimePicker */
      time: "00:00",
      menu: null,

      /* pdfViewer */
      dialogStatus: false, // send the state to show the visualizer
      pdf: "", // send base64 encoded pdf in format data:application/pdf;base64,


      /* customTable */
      search_table: "", // search something about information table
      headers: [
        { text: "id", value: "id", align: "center" },
        { text: "description", value: "description", align: "center" },
      ], // headers vuetify table 

      items: [
        { id: 1, description: "item 1" },
        { id: 2, description: "item 2" },
        { id: 3, description: "item 3" },
      ], // items vuetify table

      headers_pdf: ["ID", "DESCRIPTION"], // headers to map in file pdf
    }
  },
}
<template>
  <div>
    <!-- LOADING OVERLAY -->

    <!-- DEFAULT -->
    <loadingOverlay :loading="loadingStatus"/> 
    <!-- CUSTOM -->
    <loadingOverlay
      :loading="loadingStatus"
      :titleName="'LOADING'"
      :titleColor="'#FF9800'"
      :subtitleName="'Please wait'"
      :subtitleColor="'#FFE0B2'"
      :type="'ripples'"
      :backgroundColor="'#151515'"
      :color1="'#E65100'"
      :color2="'#EF6C00'"
      :color3="'#F57C00'"
      :color4="'#FB8C00'"
    />
    <!-- TYPES: ellipsis, ripples, roller, squares, -->
  </div>

  <!-- DIGITAL TIME PICKER -->
  
  <!-- DEFAULT -->
  <div>
    <v-menu
      ref="menu"
      v-model="menu2"
      :close-on-content-click="false"
      :nudge-right="40"
      transition="scale-transition"
      offset-y
      max-width="290px"
      min-width="290px"
    >
      <template v-slot:activator="{ on, attrs }">
        <v-text-field
          v-model="time"
          label="Select time"
          required
          prepend-icon="mdi-clock-time-four-outline"
          readonly
          v-bind="attrs"
          v-on="on"
        ></v-text-field>
      </template>
      <digitalTimePicker
        v-model="time"
      ></digitalTimePicker>
    </v-menu>
  </div>
  <!-- CUSTOM -->
  <div>
    <v-menu
      ref="menu"
      v-model="menu"
      :close-on-content-click="false"
      :nudge-right="40"
      transition="scale-transition"
      offset-y
      max-width="290px"
      min-width="290px"
    >
      <template v-slot:activator="{ on, attrs }">
        <v-text-field
          v-model="time"
          label="Select time"
          required
          prepend-icon="mdi-clock-time-four-outline"
          readonly
          v-bind="attrs"
          v-on="on"
        ></v-text-field>
      </template>
      <digitalTimePicker
        v-model="time"
        :titleName="'Custom Title'"
        :lblHour="'HR'"
        :lblMinute="'MIN'"
        :hideBtnClear="false"
        :hideBtnNow="false"
        :btnClear="'Delete'"
        :btnNow="'Current'"
        :backgroundColor="'#E65100'"
        :minHour="8"
        :maxHour="17"
      ></digitalTimePicker>
    </v-menu>
  </div>

  <!-- PDF VIEWER -->

  <!-- DEFAULT -->
  <pdfViewer
    :dialogStatus="dialogStatus"
    @closePdfViewer="dialogStatus = false"
    :pdf="pdf"
  ></pdfViewer>
  <!-- CUSTOM -->
  <pdfViewer
    :dialogStatus="dialogStatus" 
    @closePdfViewer="dialogStatus = false"
    :pdf="pdf" 
    :documentName="'Document name'"
    :btnCloseName="'Back'"
    :btnCloseColor="'#E65100'"
    :typeBtnClose="'text'"
    :hideBtnClose="false" 
    :hideIconClose="true"
  ></pdfViewer>


  <!-- CUSTOM TABLE -->

  <!-- DEFAULT -->
  <v-data-table
    :headers="headers"
    :items="items"
    :search="search_table"
  >
    <template v-slot:top>
      <customTable
        @find="(data) => (search_table = data)"
        :columns="headers_pdf"
        :rows="items"
      ></customTable>
    </template>
  </v-data-table>

  <!-- CUSTOM -->

    <v-data-table
    :headers="headers"
    :items="items"
    :search="search_table"
  >
    <template v-slot:top>
      <customTable
        @find="(data) => (search_table = data)"
        :columns="headers_pdf"
        :rows="items"
        :btn_color_pdf="'#FF6363'"
        :btn_color_excel="'#CEEDC7'"
        :text_field_label="'Search code here'"
        :size_letter_title_pdf="30"
        :size_letter_data_pdf="10"
        :titleTable="'Custom Title'"
      ></customTable>
    </template>
  </v-data-table>


</template>

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

Please make sure to update tests as appropriate.