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

ids-css

v1.5.0

Published

Infor Design System (IDS) Components for the web

Downloads

315

Readme

Infor Design System CSS

Infor Design System is a set of use-case driven design practices, development tools, and support documentation to create a cohesive user experience across all Infor CloudSuite applications.

Lightweight, modular, extensible, this CSS library allows you to easily maintain the identity of the Infor Design System, while building or using your own functional web components.

For more information about IDS CSS and the Infor Design System, see our getting started guide for developers.

Getting Started

The easiest way to get the Infor Design System CSS library in your project is through npm.

npm install --save-dev ids-css

This will download the latest version of all of the assets and install in node_modules/ids-css. Include your desired file in the <head> of your application or using your build mechanism, like webpack.

Dev Quick start

  1. git clone the repo
  2. cd into the repo
  3. Switch to the branch you want to branch from
    • this will typically be master
  4. npm install
  5. npm start to build and serve on http://localhost:3000

NPM Tasks

  • npm start - Calls gulp dev but did this for consistency across repos
  • npm run build - Clean and Build the site and packages
  • npm test - Lints the src and site css raw files and markdown files
  • npm run publish{:env} - Build the markdown docs into json, zip it, then post to the design.infor.com server for the specified environment
  • npm run release - Run the release process (it defaults to "patch" release)

The website is served at http://localhost:3000/

Demos are at http://localhost:3000/ids-{package}/{package} (it follows the folder pattern under demo/)

Testing/Linting

You can run tests by doing npm test.

Site Directory

  • src/ The raw files for components and icons.
    • packages/ The individual components (while compiled each will have it's own dist/)
  • site/
    • www/ The generated files for the local docs website
    • css/ The CSS for the local docs site only
    • templates/ The templates for generating the site html files
    • www/dist/ Minified stylesheets used for the site.
  • demo Demo of each package.
  • gulp Contains the gulp tasks
  • documentation The tmp directory the website documentation deploy/publish is done from
  • dist The tmp directory npm package publishes from