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

codeglynuikit

v1.0.6

Published

Welcome to the **Codeglyn UI Kit**! This library is designed to help you save time and money by providing simple yet powerful UI components that you can easily integrate into your projects.

Downloads

32

Readme

Vue Sketchy Components Library

Welcome to the Codeglyn UI Kit! This library is designed to help you save time and money by providing simple yet powerful UI components that you can easily integrate into your projects.

GitHub Actions Workflow Status GitHub Release NPM Downloads X (formerly Twitter) Follow

Design Goals

  • To constrain visual complexity of user interface
  • To promote focus on alignmet of user interface elements
  • To reduce information load in a single screen
  • To introduce more fluent flow of infomration and interactions on interface

NOTE: These goals need further refinement so before creating a pull request please contact me.

Table of Contents

  • Introduction
  • Components
    • SketchyDiv
    • SketchyBtn
    • Tabs and Tab
    • SketchyHLine
  • Installation
  • Usage
  • Contributing
  • License

Introduction

The Vue Sketchy Components Library allows you to build and design your UI without worrying too much about the details. It's simple but powerful, making it easy to create beautiful interfaces quickly.

Components

SketchyDiv

The SketchyDiv component is the most basic component in this library. It can be used anywhere just like normal <div> elements.

SketchyBtn

The SketchyBtn component is a button that works just like normal buttons. It's easy to use and customize.

Tabs and Tab

The Tabs component is the parent element, and the Tab component should be placed inside it. This allows you to create tabbed interfaces effortlessly.

SketchyHLine

The SketchyHLine component is a simple horizontal line separator that you can use to divide sections of your UI.

Installation

To install the Vue Sketchy Components Library, use npm or yarn:

npm install codeglynuikit

Usage

<template>
  <SketchyDiv class="pd" style="margin-bottom: 10px">INsied</SketchyDiv>
  <SketchyBtn
    label="Click"
    style="padding: 10px 5px; font-size: 18px; margin-bottom: 100px"
  />
  <SketchyHLine />
  <div>NEXT</div>
  <br />
  <SketchyTabs v-model="tab">
    <SketchyTab name="focuz" label="Focuz Time" />
    <SketchyTab name="short" label="Short Break" />
    <SketchyTab name="long" label="Long Break" />
  </SketchyTabs>
</template>

<script setup>
import { SketchyDiv, SketchyBtn, SketchyHLine, SketchyTab, SketchyTabs } from "codeglynuikit";
import { ref } from "vue";

const tab = ref("focuz")

</script>

<style>
.pd {
  padding: 80px;
}
</style>

Contributing

We welcome contributions to the Vue Sketchy Components Library! If you have any ideas, suggestions, or bug reports, please open an issue or submit a pull request on our GitHub repository or you can also contact me through my email. I would love to hear from you.

Licence

This project is licensed under the MIT License. See the LICENSE file for more details.