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

bxuip-angular.js-ui

v1.3.13

Published

bxuip-angular.js-ui

Downloads

57

Readme

bxuip-angular.js-ui

bxuip-angular.js-ui 는 화면 개발에 도움을 주는 JQuery 기반의 UI 라이브러리입니다.

목차

설치하기

npm 을 통해, 패키지를 설치합니다.

npm i bxuip-angular.js-ui

가져오기

bxuip-angular.js-ui 모듈 가져오기

import 된 모듈을 app 모듈에 주입합니다.

import {module} from 'angular';
import bxuipAngularJS from 'bxuip-angular.js-ui';

// app module
const App = module('app', [
    bxuipAngularJS // bx-ui
]);

export default App;

Asset 파일(css, img...) 가져오기

프로젝트 빌드 설정인 copy 를 통해, Asset 파일들을 build 디렉토리로 복사합니다.


copy: [
    {
        context: path.join(contextPath, 'node_modules'),
        from: 'bxuip-angular.js-ui/dist/assets/**/*',
        to: path.join(contextPath, 'build/assets'),
    }
]

복사된 *.css 파일들을 src/index.html 파일에 포함합니다.

<!-- 메인 css 파일 -->
<link rel="stylesheet" href="assets/bxuip-angular.js-ui/dist/assets/css/bx-ui.min.css" />
<!-- 테마 css 파일 -->
<link rel="stylesheet" href="assets/bxuip-angular.js-ui/dist/assets/theme/bx-theme-blackdiamond.css" />

사용 예제

*.html 파일에, 아래처럼 코드를 작성하면 bx-input 컴포넌트 화면에 그려집니다.

<bx-input type="text" label="로그인"></bx-input>

*.js 파일에, 아래처럼 코드를 작성하면 BxPaper 컴포넌트 화면에 그려집니다.

$().BxPaper({
    width: 500,
    height: 500,
    title:'templateUrl 예제 #1',
    titleAlign: 'center',
    template: '페이퍼'
}).render();

API 문서

http://bxuip.bwg.co.kr/#/uiComponents/