Skip to content

Commit

Permalink
Merge 376ddaa into 72c8348
Browse files Browse the repository at this point in the history
  • Loading branch information
tmcconechy committed Sep 14, 2021
2 parents 72c8348 + 376ddaa commit 25b98dd
Show file tree
Hide file tree
Showing 5 changed files with 59 additions and 56 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,9 @@ jobs:
- name: Build and Compile
run: npm run build

- name: Run Tests For Percy Baselines
run: npm run test:percy

- name: Extract branch name
shell: bash
run: |
Expand Down
2 changes: 1 addition & 1 deletion .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 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
80 changes: 40 additions & 40 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,8 @@
"@babel/types": "^7.15.6",
"@percy/cli": "^1.0.0-beta.67",
"@percy/puppeteer": "^2.0.0",
"@typescript-eslint/eslint-plugin": "^4.31.0",
"@typescript-eslint/parser": "^4.31.0",
"@typescript-eslint/eslint-plugin": "^4.31.1",
"@typescript-eslint/parser": "^4.31.1",
"@wordpress/jest-puppeteer-axe": "^3.1.0",
"autoprefixer": "^10.3.4",
"babel-loader": "^8.2.2",
Expand Down Expand Up @@ -96,7 +96,7 @@
"puppeteer": "^10.2.0",
"remark-cli": "^10.0.0",
"remark-preset-lint-markdown-style-guide": "^5.0.1",
"sass": "^1.39.2",
"sass": "^1.40.1",
"sass-loader": "^12.1.0",
"sass-to-string": "^1.5.1",
"source-map-loader": "^3.0.0",
Expand All @@ -109,7 +109,7 @@
"typescript": "^4.4.3",
"webpack": "5.52.1",
"webpack-cli": "^4.8.0",
"webpack-dev-server": "^4.2.0",
"webpack-dev-server": "^4.2.1",
"yaml-loader": "^0.6.0"
}
}

0 comments on commit 25b98dd

Please sign in to comment.