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 🙏

© 2026 – Pkg Stats / Ryan Hefner

@hilscher/hilscher-ui

v1.3.0

Published

Hilscher UI is a React component library for building user interfaces in the netFIELD ecosystem. It provides a collection of reusable components and tools to create consistent and efficient user interfaces for applications that interact with Hilscher's ne

Readme

An enterprise-class UI design language and React UI library for the netFIELD ecosystem.

npm version

Changelog · Report Bug · Request Feature · English

❤️ Part of the netFIELD Ecosystem ❤️

Hilscher UI is the official design system used across netFIELD products and services.

✨ Features

  • 🌈 Enterprise-class UI designed for the netFIELD ecosystem.
  • 📦 A set of high-quality React components out of the box.
  • 📊 Ready-to-use charts including bar, line, pie, and gauge.
  • 🛡 Written in TypeScript.
  • ⚙️ Supports React and Next.js projects.

🖥 Environment Support

  • Modern browsers
  • Server-side Rendering

🚀 Quick Start

📦 Install dependencies

To use the library, some preparations should be taken into consideration. The Library contains peer dependencies that should be installed in your project.

yarn add antd@^5.9.1 @ant-design/icons@^5.2.6 leaflet@^1.9.0 react-quill@^2.0.0 react-leaflet@^4.0.0 @microlink/react-json-view@^1.23.0
yarn add @hilscher/hilscher-ui

🔨 Usage Example

In this section, we provide examples that demonstrate how to use and interact with the library.

Import the typography font in the root CSS file of your app (index.css)

index.css:

Note: The ABC Diatype font must be available in your project under /public/fonts. If you do not have a license for ABC Diatype, please use another font.

@font-face {
  font-family: 'ABC Diatype';
  src: url('/fonts/ABCDiatype-Regular.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}

Import lib css files and components index.jsx:

import React from 'react';

// import lib css files
import '@hilscher/hilscher-ui/dist/global.css';
import '@hilscher/hilscher-ui/dist/esm/index.css';

// import lib component
import { Button, ThemeProvider } from '@hilscher/hilscher-ui';
// or import Button from 'hilscher-ui/dist/cjs/src/lib/button/button'

const App = () => (
  <ThemeProvider>
    <Button type="primary">PRESS ME</Button>
  </ThemeProvider>
);

Import chart

import { BarChart } from '@hilscher/hilscher-ui';

const ChartWrapper = () => (
  <div style={{ height: 400 }}>
    <BarChart data={{}} />
  </div>
);

Dynamic imports could also be used for Next.js projects.

import dynamic from 'next/dynamic';

const Button = dynamic(() => import('@hilscher/hilscher-ui').then((mod) => mod.Button), { ssr: false });

📘 Documentation

Note: For detailed information on theming and customization, refer to THEME.md.

The following table provides a comprehensive list of all available components and charts.

🎨 Component

| Component | Description | |-----------|-------------| | Action History | Component for displaying action history | | Autocomplete | Autocomplete input component | | Button | Styled button component | | Card | Card layout component | | Carousel | Carousel/slider component | | Checkbox | Checkbox input component | | Collapse | Collapsible panel component | | Color Picker | Color selection component | | Color Scheme | Color scheme management | | Conditional Form Item | Conditional form field component | | Date Picker | Date selection component | | Display Input | Read-only display input component | | Env Variable Input | Environment variable input component | | File Upload | File upload component | | Footer | Page footer component | | Form | Form container and utilities | | Header | Page header component | | Icon | Icon component | | Image Upload | Image upload component | | Input Number | Numeric input component | | JSON Input | JSON editor input component | | JSON View | JSON data viewer component | | Layout | Layout container component | | Link List | List of links component | | List | List component | | Menu | Navigation menu component | | Modal | Modal dialog component | | Notification | Notification/toast component | | Password Input | Password input with visibility toggle | | Progress | Progress bar/indicator component | | Radio | Radio button component | | Search | Search component | | Search Input | Search input field | | Select Input | Select/dropdown components | | Shadow | Shadow styling utilities | | Switch | Toggle switch component | | Table | Data table component | | Tabs | Tab navigation component | | Tag | Tag/label component | | Text Input | Text input components | | Theme Context | Theme provider and context | | Title | Title/heading component | | Tour | Guided tour component | | Transfer | Transfer/dual-list component | | Typography | Typography components | | Utils | Utility functions | | Geolocation | Map and geolocation components using Leaflet and React Leaflet |

📉 Charts

| Chart | Description | |-------|-------------| | Bar Chart | Bar chart visualization | | Line Chart | Line chart visualization | | Pie Chart | Pie chart visualization | | Gauge Chart | Gauge/dial chart visualization | | Label Chart | Label-based chart component | | Image View Chart | Image-based chart visualization | | Chart Wrapper | Wrapper component for charts |

🤝 Contributing

This package is maintained internally at Hilscher.

External contributions are currently not accepted.

Hilscher developers can find contribution guidelines in CONTRIBUTING.md.

📝 License

This software is licensed under the Hilscher Source Code and Software License Agreement.

See the LICENSE file included within the source code in this package.