Exchange Solutions React components
Documentation and Demos
https://wtw-im.github.io/es-components/
Installation and Usage
npm install --save es-components
es-components
comes optimized for tree shaking. If your build tool does not support tree shaking please direct your imports towards es-components/lib
.
You may use either direct file paths or destructure from the index file.
import Component from 'es-components/lib/path/to/component';
import { Component } from 'es-components/lib';
Using The UMD Bundle
Because ES Components needs a reference to document.body
on startup, you must either include the defer
attribute, or place the <script>
tag somwhere within the body
of your html page. Here we're showing it using the defer
attribute.
<!DOCTYPE html>
<head>
<meta charset="UTF-8" />
<title>My ES Components Site</title>
<link
rel="stylesheet"
href="https://app.viabenefits.com/static/cdn/es-assets/icons.css"
/>
<link
rel="stylesheet"
href="https://app.viabenefits.com/static/cdn/es-assets/source-sans-pro.css"
/>
<script
crossorigin
src="https://app.viabenefits.com/static/third-party/react@16/umd/react.production.min.js"
></script>
<script
crossorigin
src="https://app.viabenefits.com/static/third-party/react-dom@16/umd/react-dom.production.min.js"
></script>
<script
crossorigin
src="https://app.viabenefits.com/static/third-party/prop-types@15/prop-types.js"
></script>
<script
crossorigin
src="https://app.viabenefits.com/static/third-party/styled-components/dist/styled-components.min.js"
></script>
<script
crossorigin
defer
src="https://app.viabenefits.com/static/third-party/es-components/bundle/main.min.js"
></script>
</head>
<body>
</body>
Jest
es-components uses ResizeObserver
, but if you're using jsdom, it doesn't come with it. You can set
up jest to work with es-components by using build-utils/jest
in your setupFilesAfterEnv
configuration. Eg:
module.exports = {
setupFilesAfterEnv: [
'es-components/build-utils/jest'
]
};