Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@atoms-studio/components

Package Overview
Dependencies
Maintainers
7
Versions
61
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@atoms-studio/components

Unstyled components that cover most common UI patterns. Uses Vite in lib mode to build for production. Uses Vitest to run unit tests.

  • 0.0.0-7aa5737
  • npm
  • Socket score

Version published
Weekly downloads
61
decreased by-28.24%
Maintainers
7
Weekly downloads
 
Created
Source

Atoms UI Kit / 🎨 Components

Unstyled components that cover most common UI patterns.
Uses Vite in lib mode to build for production.
Uses Vitest to run unit tests.

Installation

yarn add @atoms-studio/components

Then in your Vue app main entry point:

import { createApp } from 'vue'
import Components from '@atoms-studio/components'

const app = createApp(App)
app.use(Components, {
    baseUrl: 'http://localhost:3000'
})
app.mount('#app')

Development

  • Components must be written in Typescript
  • You can use templates or render functions as you please.
  • You can use composables from the 📦 Composables package.
  • You can use Options API, Composition API, <script setup> as you see fit.
  • Every component must have a unit test suite in the tests folder named after it, ie: test/<componentName>.test.ts.
  • Every component must have an example app in the ℹ️ Examples package.
  • Every component must have an E2E test that consumes the example app.

To execute unit tests, run yarn test in the packages/components folder.

FAQs

Package last updated on 25 Nov 2022

Did you know?

Socket

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc