@progress/kendo-angular-label
Version:
Kendo UI Label for Angular
46 lines (45 loc) • 1.45 kB
JavaScript
/**-----------------------------------------------------------------------------------------
* Copyright © 2025 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
import { FloatingLabelComponent } from "./floating-label/floating-label.component";
import { LabelDirective } from "./label.directive";
import { LabelComponent } from "./label/label.component";
import { CustomMessagesComponent } from "./localization/custom-messages.component";
/**
* Holds all `Label`-related components and directives.
*
* @example
* ```typescript
* import { KENDO_LABEL } from '@progress/kendo-angular-label';
* ```
*/
export const KENDO_LABEL = [
LabelDirective,
LabelComponent,
CustomMessagesComponent
];
/**
* Holds all `FloatingLabel`-related components and directives.
*
* @example
* ```typescript
* import { KENDO_FLOATINGLABEL } from '@progress/kendo-angular-label';
* ```
*/
export const KENDO_FLOATINGLABEL = [
FloatingLabelComponent,
CustomMessagesComponent
];
/**
* Holds all `@progress/kendo-angular-label`-related components and directives.
*
* @example
* ```typescript
* import { KENDO_LABELS } from '@progress/kendo-angular-label';
* ```
*/
export const KENDO_LABELS = [
...KENDO_LABEL,
...KENDO_FLOATINGLABEL
];