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

balm-ui

Package Overview
Dependencies
Maintainers
1
Versions
555
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

balm-ui

Material Design + Vue + Idea

  • 0.1.9-beta
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

BalmUI

Material Design + Vue + Idea

Installation & Setup

1. Requirement

  • BalmJS or webpack
  • Vue.js@2.x

2. Install

npm install --save balm-ui

3. Setup

1. CSS Config

/path/to/_vendor.scss

@import 'node_modules/balm-ui/src/styles/main.scss';
1.2 Use JavaScript
npm install --save-dev sass-loader

gulpfile.js

balm.config = {
  ...
  scripts: {
    loaders: [{
      test: /\.scss$/,
      loader: 'sass'
    }],
    alias: {
      'balm-css': 'balm-ui/balm-ui/src/styles/main.scss'
    }
  },
  ...
};

/path/to/yours_main.js

import 'balm-css';
2. JS Config

gulpfile.js

balm.config = {
  ...
  scripts: {
    loaders: [{
      test: /\.vue$/,
      loader: 'vue'
    }, {
      test: /balm-ui.src.*?js$/,
      loader: 'babel'
    }],
    alias: {
      vue: 'vue/dist/vue.js',
      'balm-ui': 'balm-ui/src/index.js'
    }
  },
  ...
};

/path/to/yours_main.js

import Vue from 'vue';
import BalmUI from 'balm-ui';

Vue.use(BalmUI);
3. Assets Config

BalmUI images & fonts

Components

Layout

  • layout
  • grid
  • tabs
  • footer

Common

  • loading
  • button
  • menu
  • badge
  • card
  • chip
  • tooltip
  • splitter

Form

  • textfield
  • checkbox
  • radio
  • icon toggle
  • switch
  • slider
  • select
  • date picker
  • upload

Data Show

  • list
  • table
  • pagination

Popup

  • dialog
  • alert
  • confirm
  • snackbar

thx BalmJS & Vue.js

FAQs

Package last updated on 04 Jan 2017

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