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

@silkjs/linson

v0.1.12-1

Published

A Vue 3 Component Library.

Downloads

8

Readme

Linson

Linson is a Vue 3 Component Library. translates from the Chinese character "林森", meaning Linson provides users with the most basic materials to quickly and seamlessly assemble a standardized UI interface

English | 简体中文

Action Issues License Package Coverage Status

Tag Pull Request Release Languages Top Code Size Last Commit

Features

  • Linson UI is written in TypeScript, providing powerful type support for silky-smooth coding.
  • Components support treeshaking and can be referenced on-demand without third-party plugins.
  • Dark mode is supported, and the theme is freely customizable, following CSS standards and changing CSS variables to achieve a hundred different themes.
  • Support both template mode and rendering function mode, and do optimization for rendering function mode, more suitable for declarative programming.

Design Resources

Usage

install

npm install @silkjs/linson

import

// style
import "@silkjs/linson/dist/linson.css";

// global use
import { Linson } from "@silkjs/linson";
app.use(Linson);

// or
import { Button } from "@silkjs/linson";
app.use(Button);

template mode

<template>
  <l-row :gutter="[16, 16]">
    <l-col :span="6"><l-button theme="default">Default</l-button></l-col>
    <l-col :span="6"><l-button theme="primary">Primary</l-button></l-col>
    <l-col :span="6"><l-button theme="warning">Warning</l-button></l-col>
    <l-col :span="6"><l-button theme="error">Error</l-button></l-col>
    <l-col :span="6"><l-button theme="success">Success</l-button></l-col>
  </l-row>
</template>
<script lang="ts">
  import { defineComponent } from "vue";

  export default defineComponent({
    setup() {},
  });
</script>

render-function mode

import { defineComponent } from "vue";
import { Button, Row, Col } from "@silkjs/linson";

defineComponent({
  setup() {
    return () => (
      <Row gutter={[16, 16]}>
        <Col span={6}>
          <Button theme="default">Default</Button>
        </Col>
        <Col span={6}>
          <Button theme="primary">Primary</Button>
        </Col>
        <Col span={6}>
          <Button theme="warning">Warning</Button>
        </Col>
        <Col span={6}>
          <Button theme="error">Error</Button>
        </Col>
        <Col span={6}>
          <Button theme="success">Success</Button>
        </Col>
      </Row>
    );
  },
});

Widgets

Setting

  • ConfigProvider

General

  • Button
  • Divider
  • Dropdown
  • Icon

Entry

  • Cascader
  • Checkbox
  • DatePicker
  • Form
  • Input
  • InputNumber
  • Radio
  • Select
  • Switch
  • TimePicker
  • Upload

Layout

  • Grid
  • Space

Display

  • Card
  • Carousel
  • Skeleton
  • Table
  • Tag

Feedback

  • Alert
  • Dialog
  • Message
  • Popconfirm
  • Popover
  • Tooltip

Navigation

  • Breadcrumb
  • Menu
  • Pagination
  • Steps
  • Tabs

Progress

Detailed progress view here, The project is currently under construction and is not recommended for use in a production environment.