New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@progress/kendo-react-buttons

Package Overview
Dependencies
Maintainers
0
Versions
1317
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@progress/kendo-react-buttons

All you need in React Button in one package: disabled/enabled states, built-in styles and more. KendoReact Buttons package

10.1.0-develop.4
Source
npm
Version published
Weekly downloads
93K
-21.75%
Maintainers
0
Weekly downloads
 
Created
Source

KendoReact NPM Banner

KendoReact Buttons Library for React

Important

  • This package is а part of KendoReact—an enterprise-grade UI library with 120+ free and premium components.
  • It contains both free and premium KendoReact components and tools. To use the premium components, you will need to purchase a license or register for a free trial. You can use the free components without having to sign up or get a license key.
  • If you're looking for free React components, check out Get Started with KendoReact Free.
  • If you have an active license, visit the KendoReact My License page to learn how to configure your KendoReact licensing.
  • Installing and working with this package indicates that you accept the KendoReact License Agreement.
  • The 30-day free trial gives you access to all KendoReact components and their full functionality. Additionally, for the period of your trial, you can use our legendary technical support provided directly by the KendoReact dev team!

Start using KendoReact and speed up your development process!

The React Buttons package, part of KendoReact, includes a rich selection of fully configurable button types that help you create stylish and practical applications.

How to start:

npm install --save @progress/kendo-react-buttons @progress/kendo-react-popup @progress/kendo-popup-common @progress/kendo-svg-icons @progress/kendo-licensing

What's in this package:

Additional information:

React Buttons Components Library Features

Here are some of the features shared across all components included in the package (this is not an exhaustive list):

  • Disabled state—To disable user interaction, just change a single property.
  • Custom rendering—You can replace the content of the buttons with custom icons, text and elements.
  • Keyboard navigation—You can interact with the buttons using only the keyboard.
  • Accessibility support—The Buttons are compliant with WAI-ARIA and Section 508.
  • Theme support—The KendoReact Buttons, as well as all 100+ components in the KendoReact suite, are styled in three polished themes (Bootstrap, Material, and Default) and can be further customized to match your specific design guidelines.

React Button Component

This is a free React component—no sign-up or license required.

The React Button provides a clickable UI functionality and enables you to display only textual content, or show predefined icons, images and custom icons, and to render a combination of textual and image content.

Key features:

  • Primary Button—As a part of several built-in styles for the KendoReact Button, the Primary Button provides a unique highlighted look and feel to the React Button component.
  • Toggleable Button—A KendoReact Button that can be toggled showcases a clear representation between the default rendering of the Button and when the Button has been pressed.
  • Unstyled mode—The KendoReact Button supports an unstyled mode, offering complete control over the Button appearance.

How to use the Button component in your apps:

import { Button } from '@progress/kendo-react-buttons';
...
<Button>
    Button Label
</Button>

React ButtonGroup Component

This is a free React component—no sign-up or license required.

The KendoReact ButtonGroup is a container for two or more React Button components which can be separately configured to display only textual content, or show predefined icons, images and custom icons.

How to use the ButtonGroup component in your apps:

import { Button, ButtonGroup } from '@progress/kendo-react-buttons';
...
<ButtonGroup>
    /**
    * Insert the <Button> components that you want to display as a group here.
    */
</ButtonGroup>

React Chip Component

This is a free React component—no sign-up or license required.

The React Chip component is responsible for a single Chip (also called React Pill) and can contain text, an image or avatar (optional) and a built-in icon, such as an "X," to indicate that an action can be taken.

Key features:

  • Removable Chip—Through the removable property, React developers can configure whether the KendoReact Chip component should provide a built-in “X” icon to allow users to remove the Chip.
  • Avatars and icons—The React Chip component lets you add avatars and font or SVG icons to create more compelling and user-friendly interfaces.
  • Appearance—The KendoReact Chip component provides the size, fillMode, rounded, and themeColor properties to let you control its look and feel.

How to use the Chip component in your apps:

import { Chip } from '@progress/kendo-react-buttons';
...
<Chip
    text={'Chip Label'}
/>

React ChipList Component

This is a free React component—no sign-up or license required.

The React ChipList component takes the React Chip and provides additional functionality related to managing a collection of KendoReact Chip components.

Key features:

  • Selection mode—To ensure flexibility, the KendoReact ChipList component provides several selection modes.The default mode is “none”, which means no chips can be selected, yet you can enable single and multiple selection to help users manage their items individually or in bulk.
  • Data Binding—As the KendoReact ChipList component deals with displaying and manipulating a collection of items, you can bind it to different data sources.

How to use the ChipList component in your apps:

import { ChipList } from '@progress/kendo-react-buttons';
...
/**
* Introduce the data that you will use to populate the ChipList with chips.
*/
<ChipList
    data={data}
/>

React DropDown Button Component

This is a KendoReact premium component and requires a commercial license or an active trial license.

The React DropDownButton component displays a popup list with action items and provides options for enabling or disabling its content, displaying icons, and binding it to data.

Key features:

  • Icon DropDownButton—The KendoReact DropDownButton can be displayed as just an icon or with a mix of text and icons as a part of its main content.
  • Data Binding—Beyond being declaratively built, the KendoReact DropDownButton component can be data bound to an array of strings or an array of objects.
  • Unstyled mode—The KendoReact DropDownButton supports an unstyled mode, offering complete control over its appearance.

How to use the DropDownButton with hardcoded data:

import { DropDownButton, DropDownButtonItem } from '@progress/kendo-react-buttons';
...
<DropDownButton text="DropDownButton Label">
    <DropDownButtonItem text="Item 1 Label" />
    <DropDownButtonItem text="Item 2 Label" />
</DropDownButton>

How to use the DropDownButton with simple data binding:

import { DropDownButton } from '@progress/kendo-react-buttons';
...
/**
* Provide an array of items for the drop-down here.
*/
<DropDownButton 
    items={items}
    text="DropDownButton Label"
/>

React FloatingActionButton Component

This is a free React component—no sign-up or license required.

The KendoReact Floating Action Button is a button that appears to “float” above the content of any React application, usually serving as a shortcut to a single, common action like adding an item or composing a new email.

Key features:

  • Content Types—The content within the KendoReact Floating Action Button can be completely customized through the available properties. Access the icon, iconClass and text properties to define the React Floating Action Button icon, apply a custom CSS class to control the style of the button, and set text displayed within the component.
  • Speed Dial—If additional action items should be available to users, the speed dial feature of the KendoReact Floating Action Button is the perfect solution.
  • Positioning—The KendoReact Floating Action Button provides several configuration options to assist with defining where the React component should be displayed within the application. The position can be set through easy-to-remember options like “start”, “center”, “end”, “top”, “middle” and “bottom”.

How to use a simple text FloatingActionButton component in your apps:

import { FloatingActionButton } from '@progress/kendo-react-buttons';
...
<FloatingActionButton text={'FloatingActionButtonLabel'} />

React SplitButton Component

This is a KendoReact premium component and requires a commercial license or an active trial license.

The KendoReact SplitButton component allows the user to execute a default action which is bound to a Button or to choose a predefined action from a drop-down list.

Key features:

  • Icon SplitButton—Each item within the KendoReact SplitButton can be rendered as just text, text along with an icon, or just as an icon.
  • Data Binding—The React SplitButton can be defined declaratively and can also be bound to an array of strings, or an array of objects.

How to use the SplitButtonComponent with hardcoded data:

import { SplitButton, SplitButtonItem } from '@progress/kendo-react-buttons';
...
<SplitButton text="SplitButton Label">
    <SplitButtonItem text="Item 1 Label" />
    <SplitButtonItem text="Item 2 Label" />
</SplitButton>

How to use the DropDownButton with simple data binding:

import { SplitButton } from '@progress/kendo-react-buttons';
...
/**
* Provide an array of items for the drop-down here.
*/
<SplitButton 
    items={items}
    text="SplitButton Label"
/>

React Toolbar Component

This is a free React component—no sign-up or license required.

The React Toolbar component provides an intuitive component akin to the minimal toolbars found within traditional desktop applications like Word and Excel.

Key features:

  • Tools—Within the KendoReact Toolbar, the Tools can be rendered as a Button, ButtonGroup, DropDownButton and SplitButtons. Of course, custom buttons can also be added.
  • Globalization—The React Toolbar fully supports right-to-left (RTL) scenarios, ensuring that the component can be added in to any application, no matter what requirements for layout your applications have.

How to add a simple Toolbar component in your apps:

import { Toolbar, Button, ButtonGroup } from '@progress/kendo-react-buttons'; // You need to install and import all KendoReact components that you want to render within your Toolbar.
...
<Toolbar>
    <ButtonGroup>
        <Button>Item 1</Button>
        <Button>Item 2</Button>
    </ButtonGroup>
</Toolbar>

Support Options

For any issues you might encounter while working with the KendoReact Buttons, use any of the available support channels:

  • Industry-leading technical support—KendoReact paid license holders and users with an active (free) trial license can take advantage of our outstanding customer support. To submit a ticket, use the dedicated KendoReact support system.
  • Product forums—The KendoReact forums are part of the free support you can get from the community and from the KendoReact team.
  • Feedback portal—The KendoReact feedback portal is where you can request and vote for new features to be added.

Resources

High-level component overview pages

Copyright © 2025 Progress Software Corporation and/or its subsidiaries or affiliates. All Rights Reserved.

Progress, Telerik, and certain product names used herein are trademarks or registered trademarks of Progress Software Corporation and/or one of its subsidiaries or affiliates in the U.S. and/or other countries.

Keywords

Kendo UI

FAQs

Package last updated on 14 Mar 2025

Did you know?

Socket

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