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 🙏

© 2026 – Pkg Stats / Ryan Hefner

@aeros-ui/components

v0.2.68

Published

AEROS component library

Readme

AEROS Component Library

A UI and component library for ELANY's new AEROS system.
Built with React, Material UI, and Material-Table to allow developers to access the ELANY UI theme and custom components for a faster workflow.

Contents

Installation

Install

//with npm

npm install @aeros-ui/components
//with yarn

yarn add @aeros-ui/components

Update Package

//with npm

npm install @aeros-ui/components@latest
//with yarn

yarn add @aeros-ui/components@latest

Peer Dependencies

React

This package requires use of react version 17^ and react-dom version 17^

// with npx

npx create-react-app <app-name>
//with yarn

yarn create react-app <app-name>

Material UI

This package requires use of Material UI version 5^

//with npm

npm install @emotion/react @emotion/styled @mui/material @mui/icons-material @mui/lab @mui/styles
//with yarn

yarn add @emotion/react @emotion/styled @mui/material @mui/icons-material @mui/lab @mui/styles

Material-Table

This package requires use of @material-table/core and @material-table/exporters
@material-table/core documentation (new release)
@material-table/exporters documentation (new release)
material-table documentation (older version)

//with npm

npm install @material-table/core @material-table/exporters
//with yarn

yarn add @material-table/core @material-table/exporters

Note: InternationalTelInput Peer Dependency

If you use the InternationalTelInput component, you must install the following peer dependency in your project:

// with npm
npm install react-international-phone

// with yarn
yarn add react-international-phone

This package also requires the CSS import:

import 'react-international-phone/style.css';

Updating and Publishing to npm

To update and publish this package to npm, follow these steps:

  1. Update the Version

  2. Build the Package

    npm run build

    This will generate the dist/ directory with the compiled output.

  3. Login to npm (if not already logged in)

    npm login

    Enter your npm credentials when prompted.

  4. Publish the Package

    npm publish --access public

    Ensure the private field in package.json is set to false.

  5. (Optional) Tag the Release in Git

    git tag v<new-version>
    git push origin v<new-version>

    Replace <new-version> with the version you set in package.json.


Components

Accordions

Accordion Item

Import

import { AccordionItem } from '@aeros-ui/components';

Props

| Name | Type | Description | | --------- | --------- | ------------------------------------------------------------ | | children | node | The content of the component. | | disabled | boolean | A true or false condition to disable the accordion. | | expanded | boolean | A true or false condition to expand the accordion panel. | | panelName | string | The header for the accordion. |

Buttons

Choose File Button

Import

import { ChooseFileButton } from '@aeros-ui/components';

Props

Search Button

Import

import { SearchButton } from '@aeros-ui/components';

Props

| Name | Type | Description | | -------- | ---------- | --------------------------------------------------- | | onClick | function | Event fired when button is clicked | | disabled | boolean | a true or false condition to disable the button |

Addition MuiButton Props

Search Loading Button

Import

import { SearchLoadingButton } from '@aeros-ui/components';

Props

The loading button has no required props.
Additonal MuiLoadingButton Props

Cards

TransactionCard

Import

import { TransactionCard } from '@aeros-ui/components';

Props

| Name | Type | Description | Options | | -------------- | ------------------- | ----------------------------------------------------------- | ------- | | children | node | Content for the component | | | sideNote | element or null | An instance of the InfoSideNote or ErrorSideNote component. | | | selectedPolicy | element or null | An instance of the SelectedPolicyTable component. | | | title | string | The header component for the card. | |

Dialogs

Session Timeout

Import

import { SessionTimeout } from '@aeros-ui/components';

Props

| Name | Type | Description | | ---- | --------- | ------------------------------------------------ | | open | boolean | a true or false condition to open the dialog |

Inputs

Currency Input

Import

import { CurrencyInput } from '@aeros-ui/components';

const CurrencyInputExample = () => {
    const [currencyValue, setCurrencyValue] = useState();
    return (
        <CurrencyInput
            label="Premium"
            value={currencyValue}
            onChange={(event, value)=> setCurrencyValue(value)}
        />
    )
}