@progress/kendo-react-common
Version:
React Common package delivers common utilities that can be used with the KendoReact UI components. KendoReact Common Utilities package
92 lines (91 loc) • 1.77 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
*-------------------------------------------------------------------------------------------
*/
/**
* @hidden
*/
export declare const FONT_SIZE_CLASSES: {
xsmall: string;
small: string;
medium: string;
large: string;
xlarge: string;
};
/**
* @hidden
*/
export declare const FONT_WEIGHT_CLASSES: {
light: string;
normal: string;
bold: string;
};
/**
* @hidden
*/
export declare const MARGIN_ENUM_CLASSES: {
xsmall: string;
small: string;
medium: string;
large: string;
xlarge: string;
thin: string;
hair: string;
};
/**
* @hidden
*/
export declare const MARGIN_ENUM_VALUES: {
xsmall: string;
small: string;
medium: string;
large: string;
xlarge: string;
thin: string;
hair: string;
};
/**
* @hidden
*/
export declare const MARGIN_SIDES_CLASSES: {
top: string;
right: string;
bottom: string;
left: string;
};
/**
* @hidden
*/
export declare const TEXT_ALIGN_CLASSES: {
left: string;
right: string;
center: string;
justify: string;
};
/**
* @hidden
*/
export declare const TEXT_TRANSFORM_CLASSES: {
lowercase: string;
uppercase: string;
capitalize: string;
};
/**
* @hidden
*/
export declare const THEME_COLOR_CLASSES: {
inherit: string;
primary: string;
secondary: string;
tertiary: string;
info: string;
success: string;
warning: string;
error: string;
dark: string;
light: string;
inverse: string;
};