You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP

@progress/kendo-react-common

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install
k

@progress/kendo-react-common

React Common package delivers common utilities that can be used with the KendoReact UI components. KendoReact Common Utilities package

5.13.0
100

Supply Chain Security

100

Vulnerability

92

Quality

96

Maintenance

82

License

Version published
Weekly downloads
300K
-18.38%
Maintainers
1
Weekly downloads
 
Created
Issues
608

What is @progress/kendo-react-common?

@progress/kendo-react-common is a utility package that provides common functionalities and utilities used across various KendoReact components. It includes helper functions, constants, and other shared resources that facilitate the development of KendoReact applications.

What are @progress/kendo-react-common's main functionalities?

ClassNames Utility

The classNames utility helps in conditionally joining class names together. This is particularly useful for dynamically applying styles based on component state.

import { classNames } from '@progress/kendo-react-common';

const buttonClass = classNames('k-button', { 'k-primary': isPrimary, 'k-disabled': isDisabled });
console.log(buttonClass); // Outputs: 'k-button k-primary' or 'k-button k-disabled' based on the state

Guid Utility

The guid utility generates a unique identifier, which can be used for elements that require unique IDs, such as form elements or dynamically created components.

import { guid } from '@progress/kendo-react-common';

const uniqueId = guid();
console.log(uniqueId); // Outputs a unique GUID string

Draggable Component

The Draggable component provides drag-and-drop functionality. It can be used to make any element draggable and handle drag events.

import { Draggable } from '@progress/kendo-react-common';

const DraggableComponent = () => (
  <Draggable onDrag={(e) => console.log('Dragging', e)}>
    <div>Drag me!</div>
  </Draggable>
);

Other packages similar to @progress/kendo-react-common

FAQs

Package last updated on 25 Apr 2023

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