Stencil Component Starter
npm install @paperless/core
A collection of Web, React & Angular components that conform to the Employes design system.




#### React
``bash`
npm install @paperless/core @paperless/react
`bash`
yarn add @paperless/core @paperless/react
#### Angular
`bash`
npm install @paperless/core @paperless/angular
`bash`
yarn add @paperless/core @paperless/angular
#### Web Components
`bash`
npm install @paperless/core
`bash`
yarn add @paperless/core
#### React
`jsx
// setup
import { applyPolyfills, defineCustomElements } from '@paperless/core/loader';
applyPolyfills().then(() => defineCustomElements());
// usage
import { Button } from '@employes/paperless';
const App = () => ;
`
#### Angular
`jsx
import { PButton } from '@paperless/angular';
@Component({
templateUrl:
,`
imports: [PButton],
})
export class MyComponent {}
#### Web Components
Add the following code snippet in your project to start using the components
`javascript`
import { defineCustomElements } from '@paperless/core/loader';
defineCustomElements();
And in your html:
`html`
The library is javascript based but types are supported with d.ts files.@paperless/core`.
You should get the types automatically when installing
We welcome contributions to @paperless!
Read our contributing
guide and help us build or improve our components.
This project is offered under Apache
License 2.0.