1.0.11 • Published 2 years ago

common-igrid v1.0.11

Weekly downloads
-
License
MIT
Repository
-
Last release
2 years ago

common-igrid

Simple Grid library using Webcomponent

예제 링크: https://jjongtaeng.github.io/common-igrid

Grid

Row

  • Method
    • setContent(...rest: HTMLElement[])
      const $row = new Row();
      $row.setContent("Column Element");

Column

  • Method
    • setContent(content: HTMLElement | string): this;
    • setSpan(span: SpanType): this;

      const column = new Column();
      const span = { xxl: '6', xl: '6', lg: '6', md: '12', sm: '12', xs: '24'};
      
      column
        .setContent(content)
        .setSpan(span);
  • 총 24 사이즈
    • ex) xxl: 41600px에서 1/6 사이즈
  • xxl: > 1600px
  • xl: > 1200px
  • lg: > 992px
  • md: > 768px
  • sm: > 576px
  • xs: < 576px
1.0.11

2 years ago

1.0.10

2 years ago

1.0.9

2 years ago

1.0.8

2 years ago

1.0.7

2 years ago

1.0.6

2 years ago

1.0.5

2 years ago

1.0.4

2 years ago

1.0.3

2 years ago

1.0.2

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago