Socket
Socket
Sign inDemoInstall

@highlight-ui/button

Package Overview
Dependencies
31
Maintainers
10
Versions
160
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @highlight-ui/button

The button


Version published
Weekly downloads
5.5K
increased by9.98%
Maintainers
10
Created
Weekly downloads
 

Readme

Source

npm personio.design storybook.personio.design

@highlight-ui/button

Versatile and customizable Button and IconButton components designed to handle user click interactions seamlessly. Enables actions to be triggered with a built-in loading feature, providing asynchronous feedback for improved user experience.

Features

  • Button
    • Supports different variants: default, emphasized, and plain
    • Supports different tones: default, critical, and success
    • Supports an optional icon placed on the left of the label
    • Optional loading state with the spinner
  • IconButton
    • A required icon property is provided
    • Supports different variants: default, emphasized and plain
    • Optional loading state with the spinner

Installation

Using npm:

npm install @highlight-ui/button

Using yarn:

yarn add @highlight-ui/button

Using pnpm:

pnpm install @highlight-ui/button

In your (S)CSS file:

@import url('@highlight-ui/button');

Once the package is installed, you can import the components from the library:

Button

import { Button } from '@highlight-ui/button';

Icon Button

import { IconButton } from '@highlight-ui/button';

Usage

import React from 'react';
import { Button, IconButton } from '@highlight-ui/button';

export default function ButtonExample() {
  return (
    <>
      <Button icon="plus" variant="emphasized" tone="critical" onClick={() => console.log('Button clicked')}>
        Click me!
      </Button>

      <IconButton icon="plus" variant="emphasized" onClick={() => console.log('Button clicked')}/>
    </>
  );
}

Props 📜

All HTMLButtonElement, React.PropsWithChildren and PropsWithMetadata props are accepted with this component. In addition to these, this component has the following props

Button Props

PropTypeRequiredDefaultDescription
variant'default' , 'emphasized' , 'plain'No'default'Determines the button's appearance (label color, background color)
tone'default' , 'critical' , 'success' (Success is only available for the emphasized variant)No'default'Determines the button's tone, which is used to convey the importance or context of the action (e.g., color for success, error, etc.)
onClick(event: React.MouseEvent) => voidYesFunction called when the button is clicked
childrenReact.ReactNodeYesThe content of the button, usually a text label
refReact.Ref<HTMLButtonElement>NoRef for the button element
blockbooleanNoMakes the component behave as a block element (take up the whole available space)
buttonState'default' , 'loading' , 'disabled'NoDetermines the state of the button
iconstringNoThe icon to be placed beside the label

IconButton Props

PropTypeRequiredDefaultDescription
iconstringYesThe icon to be placed beside the label
variant'default' , 'emphasized', 'plain'No'default'Determines the button's appearance (label color, background color)
onClick(event: React.MouseEvent) => voidYesFunction called when the button is clicked
refReact.Ref<HTMLButtonElement>NoRef for the button element
blockbooleanNoMakes the component behave as a block element (take up the whole available space)
buttonState'default' , 'loading' , 'disabled'NoDetermines the state of the button

Accessibility ♿️

The button component follows best practices for accessibility:

  • Uses a native <button> element to ensure proper keyboard navigation and focus handling
  • Uses aria attributes for accessibility features, such as aria-hidden for loading and disabled states or passing the optional aria-label prop to the IconButton
  • Supports keyboard navigation with the outline ring and trigger keys Enter and Space

Testing

The test below shows how the button and icon button can be tested when used within another component.

Button Test

import React, { useState } from 'react';
import { render, fireEvent } from '@testing-library/react';
import userEvent from '@testing-library/user-event';
import { Button } from '@highlight-ui/button';

function ButtonWrapper({children}) {
  const handleClick = () => console.log('button clicked);

  return (
    <Button
      onClick={handleClick}
    >{children}</Button>
  );
}

describe('ButtonWrapperTest', () => {
  const renderButtonWrapper = () => {
    return render(<ButtonWrapper />);
  };

  it('renders the ButtonWrapper and handles the button click', () => {
    const { getByText } = renderButtonWrapper({ children: 'Click me' });

    const buttonElement = getByText('Click me');
    expect(buttonElement).toBeInTheDocument();

    userEvent.click(buttonElement);
    // Add any other expects or assertions based on your wrapper component's behavior
  });
});

IconButton Test

import React, { useState } from 'react';
import { render, fireEvent } from '@testing-library/react';
import userEvent from '@testing-library/user-event';
import { IconButton, IconButtonProps } from '@highlight-ui/button';

type IconButtonWrapperProps = Omit<IconButtonProps, 'onClick'>;

function IconButtonWrapper(props: IconButtonWrapperProps) {
  const handleClick = () => console.log('button clicked');

  return <IconButton onClick={handleClick} {...props} />;
}

describe('IconButtonWrapperTest', () => {
  const renderIconButtonWrapper = (props) => {
    return render(<IconButtonWrapper {...props} />);
  };

  it('renders the IconButtonWrapper and calls the onClick handler', () => {
    const icon = 'plus';
    const { getByRole } = renderIconButtonWrapper({ icon });

    const buttonElement = getByRole('button');
    expect(buttonElement).toBeInTheDocument();

    userEvent.click(buttonElement);
    // Add any other expects or assertions based on your wrapper component's behavior
  });
});

Place in design system 💻

The button component is a foundational element of the design system and can be used across various services and contexts. It provides a consistent look and feel for user interactions and actions.

Some examples of when to use the button component:

  • Submitting forms
  • Triggering actions like adding, deleting, or editing items
  • Revealing additional content (Modals, dialogs, etc.)

Please visit the design system documentation for usage guidelines and visual examples.

Contributing 🖌️

To contribute to the development of the button component, please follow the contribution guidelines. Your input and expertise are welcome and appreciated!

FAQs

Last updated on 23 Feb 2024

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc