@progress/kendo-react-common
Version:
React Common package delivers common utilities that can be used with the KendoReact UI components. KendoReact Common Utilities package
27 lines (26 loc) • 1.84 kB
TypeScript
/**
* @license
*-------------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the package root for more information
*-------------------------------------------------------------------------------------------
*/
import { AnimationsClassStructure, ButtonsClassStructure, IconsClassStructure, DateInputsClassStructure, DropDownsClassStructure, GridClassStructure, InputsClassStructure, LabelsClassStructure, FormClassStructure, PopupClassStructure, WidgetClassStructure } from './interfaces/common.js';
export * from './animations.js';
export * from './icons.js';
export * from './buttons.js';
export * from './dropdowns.js';
export * from './dateinputs.js';
export * from './inputs.js';
export * from './labels.js';
export * from './form.js';
export * from './popup.js';
export * from './grid.js';
export * from './json-classes.js';
export { UnstyledContext, useUnstyled } from './unstyled-context.js';
/**
* All classes - Comprehensive structure containing all component styling configurations
*/
export interface AllClassStructure extends AnimationsClassStructure, ButtonsClassStructure, DropDownsClassStructure, GridClassStructure, IconsClassStructure, LabelsClassStructure, FormClassStructure, PopupClassStructure, ButtonsClassStructure, PopupClassStructure, GridClassStructure, InputsClassStructure, DropDownsClassStructure, DateInputsClassStructure {
}
export { type AnimationsClassStructure, type ButtonsClassStructure, type GridClassStructure, type IconsClassStructure, type DateInputsClassStructure, type DropDownsClassStructure, type InputsClassStructure, type LabelsClassStructure, type FormClassStructure, type PopupClassStructure, type WidgetClassStructure };