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

kintone-ui-component

v1.17.1

Published

kintone UI Component

Downloads

2,820

Readme

npm version


Installation

Kintone UI Component is available as the downloaded kuc.min.js file, a npm package, or a CDN.

Use with downloading kuc.min.js file

Please use kuc.min.js downloaded from releases page.

./umd/kuc.min.js

npm

Please install and use kintone-ui-component with npm.

npm install kintone-ui-component

CDN

Please use these CDN link.

  • If you want to specify the version and load it (specify the version number after the project name):

    https://unpkg.com/[email protected]/umd/kuc.min.js
  • If you want to load the latest version of kintone UI Component:

    https://unpkg.com/kintone-ui-component/umd/kuc.min.js

unpkg is not a CDN service provided by Cybozu. It is recommended that you use this for verification. In the production environment, you can download the kuc.min.js file from GitHub and use it to avoid any failures and problems related to unpkg.

Usage

// UMD
const Kuc = Kucs["1.x.x"];

const text = new Kuc.Text({
  value: "this is text!"
});
// ES modules
import { Text } from "kintone-ui-component/lib/text";

const text = new Text({
  value: "this is text!"
});
text.addEventListener("change", event => {
  console.log(`text value is changed to ${event.detail.value}`);
});

When using a version on and after v1.4.0, please use Kucs["1.x.x"] instead of Kuc and specify your expected version (ex. new Kucs["1.4.0"].Button()). The rendered components' tags and class names will include the version number. You may still use Kuc as a global variable but note that it may be conflicting when adding two or more kuc.min.js files on Kintone customization or plug-in. In this case, the Kuc object refers to the last loaded kuc.min.js file. In case that there is only one kuc.min.js file in the Kintone system or there is no problem with using last loaded kuc.min.js file, you can use Kuc object. Please remove const Kuc = Kucs['1.x.x']; line. When using a version before v1.4.0, please use Kuc as a global variable but note that it may be conflicting when adding two or more kuc.min.js files on Kintone customization or plug-in. Please visit Quick Start and Version conflicts issue and solution for more information!

Browser Support

We confirmed the operation with the latest version of each compatible browser.

v0 Usage

:warning::warning: The maintenance of kintone UI Component v0 ended on 31 December 2023. We recommend migrating to kintone UI Component v1. :warning::warning:

Migration Guide

There are differences in specifications and interfaces between v0 and v1. Please be sure to verify enough when you updating. For more details, please refer to the articles below.

About the React version provided in v0, we haven't supported it in v1 now.

Contributing Guideline

We welcome contributions to kintone UI Component. For the details, please check Contributing Guideline.

If you have a question or feature request, please register GitHub issue. About questions, you can also utilize the following community spaces. These communities are made up of volunteers.

And we use Discussions feature of GitHub as our community page dedicated to this tool.

Roadmap

We published our development roadmap. For more details, please refer to here.

License

MIT LICENSE