@progress/kendo-angular-intl
Version:
Kendo UI Internationalization for Angular components
26 lines (25 loc) • 890 B
JavaScript
/**-----------------------------------------------------------------------------------------
* Copyright © 2025 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
import { DatePipe } from "./date.pipe";
import { NumberPipe } from "./number.pipe";
/**
* Utility array that contains all `kendoNumber` related components and directives.
*/
export const KENDO_NUMBER = [
NumberPipe
];
/**
* Utility array that contains all `kendoDate` related components and directives.
*/
export const KENDO_DATE = [
DatePipe
];
/**
* Utility array that contains all `@progress/kendo-angular-intl` related components and directives.
*/
export const KENDO_INTL = [
...KENDO_NUMBER,
...KENDO_DATE
];