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

@chsua/layout-component

v0.2.3

Published

일반적인 레이아웃 컴포넌트 라이브러리

Downloads

9

Readme

라이브러리 다운 방법

npm install @chsua/layout-component

Container 컴포넌트

  • minWidth: string
    • 최소 유지되어야 하는 가로길이
    • px, % 등 다양한 단위로 설정할 수 있도록 string type으로 작성
  • maxWidth: string
    • 최대 유지되어야 하는 가로길이
    • px, % 등 다양한 단위로 설정할 수 있도록 string type으로 작성
  • padding: number
    • 내부 컨텐츠 상하좌우 여백길이
    • px로 단위 고정

Grid 컴포넌트

  • rows: number
    • 가로행 갯수
  • columns: number
    • 세로열 갯수
  • gap: number
    • content 사이 간격
    • px로 단위 고정

Flex 컴포넌트

  • direction: "row" | "column";
    • 필수항목
    • 가로/세로방향 주축 설정
  • gap: number;
    • 필수항목
    • content 사이 간격
    • px로 단위 고정
  • justify?: | "center" | "flex-start" | "flex-end" | "space-between" | "space-around" | "space-evenly";
    • 선택항목
    • 주축 방향에 따라 아이템 정렬
  • align?: "center" | "flex-start" | "flex-end" | "stretch";
    • 선택항목
    • justify와 수직방향에 따라 아이템 정렬
  • flexWrap?: "nowrap" | "wrap";
    • 선택항목
    • 공간에 여유가 없는 경우 줄바꿈처리 여부
    • nowrap = 줄바꿈하지 않음
    • wrap = 줄바꿈

TabLayout 컴포넌트

  • menuPlace: "row" | "column";

    • 필수항목
    • 메뉴바의 위치를 설정하는 속성
    • "row"를 선택하면 상단에 가로로 위치
    • "column"를 선택하면 왼쪽에 세로로 위치
  • itemList: TabItem[];

    //TabItem 속성
    interface TabItem {
      name: string;
      key: string;
      content: ReactNode;
    }
    
    //TabItem 예시
    const item: TabItem = {
      name: "item1",
      key: "item1",
      content: <div>item1</div>,
    };
    • 필수항목
    • tab의 이름과 내용을 설정하는 속성
    • 위 형식(TabItem)의 객체를 가진 배열을 넣기
    • key는 각 TabItem을 구분하는 속성이기 때문에 중복이 있으면 안됨