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

old-yaka-components

v1.6.0

Published

Downloads

11

Readme

yaka引擎专用组件

安装

npm

npm install yaka-components

yarn

yarn add yaka-components

使用

import yakaComponents from 'yaka-components'
const { components, layoutComponents } = yakaComponents

组件列表

布局组件

  1. Form
  2. ROW
  3. Logic

功能型组件

  1. Card
  2. EditTable
  3. Switch
  4. Editor
  5. TimePicker
  6. Radio
  7. DatePicker

旧版引用的igroot组件

  1. Button
  2. InputNumber
  3. Card
  4. CheckboxGroup
  5. Input
  6. TextArea

兼容旧版

import {  Button, InputNumber, Card, Checkbox, Input } from 'igroot'
const CheckboxGroup = Checkbox.Group
import yakaComponents from 'yaka-components'
const { components, layoutComponents } = yakaComponents

const oldComponents = {
    ...components,
    Checkbox: CheckboxGroup,
    Button,
    Input,
    InputNumber,
    Card,
    TextArea: Input.TextArea,
}

目录结构

├── README.md
├── dist  构建后的文件
│   ├── components
│   │   ├── index.js
│   │   ├── yaka-MonthPicker
│   │   │   └── index.js
│   │   ├── yaka-datepicker
│   │   │   └── index.js
│   │   ├── yaka-edit-table
│   │   │   ├── index.css
│   │   │   └── index.js
│   │   ├── yaka-editor
│   │   │   ├── index.css
│   │   │   └── index.js
│   │   ├── yaka-links
│   │   │   └── index.js
│   │   ├── yaka-radio
│   │   │   └── index.js
│   │   ├── yaka-select
│   │   │   └── index.js
│   │   ├── yaka-switch
│   │   │   └── index.js
│   │   ├── yaka-table
│   │   │   └── index.js
│   │   ├── yaka-timepicker
│   │   │   └── index.js
│   │   └── yaka-upload
│   │       └── index.js
│   ├── index.js
│   └── layoutComponents
│       ├── Logic.js
│       ├── Row.js
│       ├── formBlock.js
│       └── index.js
├── lib 源码入口
│   ├── components  组件
│   │   ├── index.js
│   │   ├── yaka-MonthPicker  月选择器
│   │   │   └── index.jsx
│   │   ├── yaka-datepicker   日期选择器
│   │   │   └── index.jsx
│   │   ├── yaka-edit-table   可编辑表格
│   │   │   ├── index.css
│   │   │   └── index.jsx
│   │   ├── yaka-editor    富文本编辑器
│   │   │   ├── index.css
│   │   │   └── index.jsx
│   │   ├── yaka-links     超链接
│   │   │   └── index.jsx
│   │   ├── yaka-radio     单选框
│   │   │   └── index.jsx
│   │   ├── yaka-select    下拉框
│   │   │   └── index.jsx
│   │   ├── yaka-switch   开关
│   │   │   └── index.jsx
│   │   ├── yaka-table    表格
│   │   │   └── index.jsx
│   │   ├── yaka-timepicker   时间选择器
│   │   │   └── index.jsx
│   │   └── yaka-upload   上传
│   │       └── index.jsx
│   ├── index.js
│   └── layoutComponents   布局组件
│       ├── Logic.jsx   逻辑组件
│       ├── Row.jsx   row组件
│       ├── formBlock.jsx   表单组件
│       └── index.js
├── package.json
└── yarn.lock

技术栈

js + react + igroot

发布方式

yarn publish