Socket
Socket
Sign inDemoInstall

halley-kit

Package Overview
Dependencies
415
Maintainers
1
Versions
101
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    halley-kit

HalleyxUI The real McCoy thing


Version published
Weekly downloads
7
increased by250%
Maintainers
1
Created
Weekly downloads
 

Readme

Source

HalleyxUI

The real McCoy thing

NPM HalleyxUI Development Status License

IntroductionComponentsGetting StartedLicense

Introduction

 Halleyx UI kit a collection of UI elements and assets, curated to serve for every designer's and developer's need.

Components

 The following components are currently on the orbit.

Installation

NPM

npm install halleyx-ui

Quick start

 This section describes how to use Halley kit in your project.

Global import

 Config module with project globally

//main.js
import { createApp } from "vue";
import App from "./App.vue";
import halleyxComponents from "halleyx-ui";
//load the styles
import 'halley-kit/dist/umd/index.css';
createApp(App).use(halleyxComponents).mount("#app");

Local import

 Config module with project locally

//main.js
import { createApp } from "vue";
import App from "./App.vue";
import halleyxComponents from "halleyx-ui";
//load the styles
import 'halley-kit/dist/umd/index.css';
createApp(App).use(halleyxComponents).mount("#app");
<!-- Any vue component-->
<template>
  <hlx-button class="primary">Button</hlx-button>
</template>

<script>
import {HlxButton} from 'halley-kit';
export default {
  name: 'App',
  components: {
    HlxButton,
  },
}
</script>

License

 Halleyx UI-Component Library comes with a 3-clause BSD license.

Keywords

FAQs

Last updated on 28 Mar 2023

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc