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

tingle-group

v0.1.5

Published

列表容器组件

Downloads

26

Readme

tingle-group npm version

Group是列表容器组件。封装了以下功能:

  • 灵活配置间隔线和子元素的缩进值,而且间隔线和子元素的缩进值是相互独立的,使IOSMaterial风格的多样式列表更加容易实现。
  • 在支持hairline显示的设备上自动优化显示成极细的线。

效果预览:

Usage

首先引入Group,其中Group下面包含HeadList两个子组件。

项目环境下,Tingle是全局变量:

// ES5
var Group = Tingle.Group;
// ES2015
let {Group} = Tingle;

全局使用概览:

...
render() {
    return (<Group>
        <Group.Head>title</Group.Head>
        <Group.List>
            <div>content</div>
            <div>content</div>
        </Group.List>
    </Group>);
}

Group.List

className

描述:自定义样式的class名称。
类型:String
默认:''
必选:否

示例:

<Group>
    <Group.List className="customClass">...</Group.List>
</Group>

lineIndent

描述:配置间隔线的缩进值。
类型:Number|String|Array

  • Number:设置左缩进,默认追加px作为单位,如:lineIndent={10}
  • String:设置左缩进,自定义长度单位,如:lineIndent={'1rem'}
  • Array:设置左右缩进,数组成员的类型为NumberString,默认处理如上。如:lineIndent={[10, 10]}

默认:无
必选:否

示例:

<Group>
    <Group.List lineIndent={10}>...</Group.List>
</Group>

itemIndent

描述:配置列表子元素的缩进值。
类型:Number|String|Array

  • Number:设置左缩进,默认追加px作为单位,如:itemIndent={10}
  • String:设置左缩进,自定义长度单位,如:itemIndent={'1rem'}
  • Array:设置左右缩进,数组成员的类型为NumberString,默认处理如上。如:itemIndent={[10, 10]}

默认:无
必选:否

示例:

<Group>
    <Group.List itemIndent={[10, 10]}>...</Group.List>
</Group>

Todos

  • 当子元素是null时

Links