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 🙏

© 2024 – Pkg Stats / Ryan Hefner

@holmesdev/sync

v1.0.8

Published

Dazzling Alert Boxes and Buttons for you by the Sync UI developers

Downloads

149

Readme

SYNC COMPONENTS

Add some flair to your projects by trying our dazzling yet practical Button & Alert components! Built with user interactivity and accessibility in mind, choose from an array of themes/variant types pertaining to each level of action severity, along with customizable options to tailor and enhance the functionality of each component.

Check out our documentation site for visuals of our components.

Table of Contents (Sticky)

Installation

Run either of these commands inside the terminal:

  $ npm install @holmesdev/sync
  $ yarn add @holmesdev/sync

[!IMPORTANT] > Styled-components is the JavaScript CSS library used to build our components. To ensure that they work as intended, you will need to separately install styled-components within both the devDependencies & peerDependencies inside of your package.json upon installation of the package.

You MUST also ensure that you are:

  • Using React.js v18.3.1 or higher
  • Using styled-components v6.1.13 or higher

Latest Package Version

| Name | Version | | :----------------------------------------------------------------: | :------------------------------------------------------: | | @holmesdev/sync | NPM |

Install the latest package version if required:

  $ npm install @holmesdev/sync@latest
  $ yarn add @holmesdev/sync@latest

Usage

Import the components (together or separately, depending on usage) inside your project:

import { Button, Alert, AlertDialog } from "@holmesdev/sync";

Button Component

A Button that allows the user to trigger an action when clicked. It comes with a selection of themes/variants.

import { Button } from "@holmesdev/sync";

<Button
  variant="primary"
  hoverColor="#1f56ec"
  path="https://sync-documentation.onrender.com/"
>
  Click Me
</Button>

_________________________________________________

//BUTTON STATUS EXAMPLES:

<Button
  variant="success"
  hoverColor="#1cd560"
  type = "submit"
>
  Success Action
</Button>

Alert Component

An Alert box that appears on the page with a status notification or an action request. It comes with a selection of themes/statuses.

import { Alert } from "@holmesdev/sync";

<Alert
  title="Success!"
  body="Your action was completed successfully."
  status="success"
/>

________________________________________________

//ALERT STATUS EXAMPLES:

<div>

// Success Alert
<Alert
  title="Success!"
  body="Your action was completed successfully."
  status="success"
/>

// Error Alert
<Alert
  title="Error!"
  body="Something went wrong. Please try again."
  status="error"
/>

// Warning Alert
<Alert
  title="Warning!"
  body="Be careful! This action could have consequences."
  status="warning"
/>

AlertDialog Component

The role of AlertDialog is to "link" the Alert & Button components together, as well as toggling the visibility of the Alert on the page.

import { AlertDialog } from "@holmesdev/sync";

<AlertDialog
  title="Success!"
  body="Your action was completed successfully."
  status="success"
  buttonVariant="success"
  btnColor="#28a745"
  hoverColor="#218838"
>
  Show Success
</AlertDialog>

________________________________________________

//ALERTDIALOG STATUS EXAMPLES:

<AlertDialog
  title="Error"
  body="Something went wrong. Please try again."
  status="danger"
  buttonVariant="warning"
  btnColor="#dc3545"
  hoverColor="#c82333"
>
  Show Error
</AlertDialog>

Props

Button Component

| Prop | Type | Required | Description | | :----------- | :--------- | :------- | :---------------------------------------------------------------------------------- | | children | string | Yes | Text or content inside the Button. | | variant | string | No | Button style. Options: default, primary, success, warning. | | hoverColor | string | No | Color displayed on hover. | | path | string | No | URL path if the button is used as a link. | | type | string | No | Button type attribute. Options: button, submit, reset. Default is button. | | onClick | function | Yes | Callback function for the button click event. |

Alert Component

| Prop | Type | Required | Description | | :------- | :------- | :------- | :--------------------------------------------------------------------------------------------------------------------------- | | title | string | Yes | Content to be displayed inside the Alert. | | status | string | Yes | Alert type. Options: default, primary, success, warning, defaultDark, primaryDark, successDark, warningDark. | | body | string | Yes | Body text displayed inside the Alert. |

AlertDialog Component

| Prop | Type | Required | Description | | :-------------- | :--------- | :------- | :------------------------------------------------------------------------------------------------------------------------------------------------ | | title | string | Yes | Title text displayed inside the component. | | body | string | Yes | Body text displayed inside the component. | | children | string | Yes | The child elements of the button component. | | btnColor | string | Yes | Specifies the X close button's color. | | ariaLabel | string | No | Accessibility label for screen readers, describing the purpose of the dialog. | | status | enum | Yes | Specifies the visual theme – Options: ["default", "primary", "success", "warning", "defaultDark", "primaryDark", "successDark", "warningDark"]. | | buttonVariant | enum | Yes | Specifies the Button's variant – Options: ["default", "primary", "success", "warning"]. | | isOpen | boolean | No | If true, the component is open; if false, the component isn't open. | | onClose | function | No | Called when the component is closed. |

Themes

Light Themes

  • default: Gradient border with a white background
  • primary: Blue border with a white background
  • success: Green border with a white background
  • warning: Red border with a white background

Dark Themes

  • defaultDark: Gradient border with a black background
  • primaryDark: Blue border with a black background
  • successDark: Green border with a black background
  • warningDark: Red border with a black background

Customization

  • title & body text is customizable for each component
  • variant & status need to be specified, with no further CSS customization being necessary

Accessibility

  • ARIA attributes implemented
  • Color contrast compliant

License

MIT License

Available for open-source consumption under MIT licensing. See MIT License for more information.