Skip to content

Commit

Permalink
Merge f8da789 into 72c8348
Browse files Browse the repository at this point in the history
  • Loading branch information
tmcconechy committed Sep 13, 2021
2 parents 72c8348 + f8da789 commit d4ac15f
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 17 deletions.
8 changes: 2 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
uses: actions/cache@v2
with:
path: node_modules
key: ids-enterprise-wc-016
key: ids-enterprise-wc-017

- name: Install Dependencies
run: npm ci
Expand All @@ -47,11 +47,7 @@ jobs:
run: npm run lint

- name: Run Tests
uses: percy/exec-action@v0.3.1
with:
command: "npm run test:ci"
env:
PERCY_TOKEN: ${{ secrets.PERCY_TOKEN }}
run: npm run test:ci

- name: Coveralls
uses: coverallsapp/github-action@master
Expand Down
22 changes: 11 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
[![Build Check](https://github.com/infor-design/enterprise-wc/actions/workflows/ci.yml/badge.svg)](https://github.com/infor-design/enterprise-wc/actions/workflows/ci.yml)
[![Coverage Status](https://coveralls.io/repos/github/infor-design/enterprise-wc/badge.svg?branch=main)](https://coveralls.io/github/infor-design/enterprise-wc?branch=main)

Infor Design System's Enterprise component library is a framework-independent UI library consisting of CSS and JS that provides Infor product development teams, partners, and customers the tools to create user experiences that are approachable, focused, relevant and perceptive.
Infor Design System's Enterprise component library is a framework independent UI library consisting of CSS and JS that provides Infor product development teams, partners, and customers the tools to create user experiences that are approachable, focused, relevant and perceptive.

For guidelines on when and where to use the components see the [design.infor.com](http://design.infor.com).

Expand All @@ -14,18 +14,18 @@ For guidelines on when and where to use the components see the [design.infor.com
- Multiple themes, including a WCAG 2.0 AAA compatible high-contrast theme
- Responsive components, patterns and layouts
- Touch-friendly interactions
- SVG-based iconography compatible with high DPI screens
- SVG-based iconography for high DPI screens and scaling
- Built-in, extendible localization system
- Built-in mitigation of XSS exploits
- 100% Test Coverage (TDD where possible)
- 100% Functional Test Coverage
- Passes all code security scans and is fully CSP compliant
- Well documented in `.md` format
- Contains an extensive [Change log](./doc/CHANGELOG.md) which lists any and all breaking changes
- [Fully linted code](./doc/LINTING.md)
- Follows [WAI-ARIA Authoring Practices](https://www.w3.org/TR/wai-aria-practices-1.1/#keyboard-interaction-12) with a focus on accessibility
- Fully Namespaced with an `ids-` namespace
- We Follow the [Gold Standard For Making Web Components](https://github.com/webcomponents/gold-standard/wiki)
- Type safe for TypeScript users with d.ts files
- Type safe for TypeScript users with `d.ts` files
- Every component has the CSS and DOM Encapsulated (in supported browsers)
- 140+ Components to convert

Expand All @@ -42,7 +42,13 @@ We support the latest release and the release previous to the latest (R-1) for b

## Installation

To Clone and Run this Repo:
The components are available via npm/yarn:

```sh
npm install --save ids-enterprise-wc@latest
```

To Clone and Run this Repo locally:

```sh
mkdir enterprise-wc
Expand All @@ -52,12 +58,6 @@ npm i
npm run start
```

The components are also available in npm:

```sh
npm install --save ids-enterprise-wc@latest
```

## Documentation

- For each component see the .md file in the relevant [component folder](https://github.com/infor-design/enterprise-wc/tree/main/src)
Expand Down

0 comments on commit d4ac15f

Please sign in to comment.