@progress/kendo-angular-chart-wizard
Version:
Kendo UI Angular Chart Wizard component
35 lines (34 loc) • 1.41 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 { ChartWizardComponent } from "./chart-wizard.component";
import { ChartWizardGridBindingDirective } from "./grid-integration/grid-chart-wizard.directive";
import { CustomMessagesComponent } from "./localization/custom-messages.component";
/**
* Represents the Kendo UI Chart Wizard utility array that contains all components and directives from the `@progress/kendo-angular-chart-wizard` package.
*
* Use this array to import all Chart Wizard-related components and directives into your standalone Angular component.
*
* @example
* ```typescript
* import { Component } from '@angular/core';
* import { KENDO_CHARTWIZARD } from '@progress/kendo-angular-chart-wizard';
*
* @Component({
* selector: 'app-my-component',
* standalone: true,
* imports: [KENDO_CHARTWIZARD],
* template: `
* <kendo-chart-wizard>
* </kendo-chart-wizard>
* `
* })
* export class MyComponent { }
* ```
*/
export const KENDO_CHARTWIZARD = [
ChartWizardComponent,
ChartWizardGridBindingDirective,
CustomMessagesComponent
];