The manual setup approach provides greater visibility and better control over the files and references installed in your Angular application.
If you already followed the installation steps in the Getting Started page, you can skip the manual setup approach demonstrated in this article.
You can install the required peer dependencies and a Kendo UI theme by running separate commands for each step and import the desired DropDowns components and directives in your standalone component.
Install the DropDowns package together with its dependencies by running the following command:
npm install --save @progress/kendo-angular-dropdowns @progress/kendo-angular-l10n @progress/kendo-angular-navigation @progress/kendo-angular-popup @progress/kendo-angular-treeview @progress/kendo-angular-inputs @progress/kendo-angular-intl @progress/kendo-drawing @progress/kendo-angular-common @progress/kendo-licensing @progress/kendo-angular-icons
Import the required components and directives:
To add all components from the DropDowns package, import the KENDO_DROPDOWNS
utility array in your standalone component.
import { Component } from '@angular/core';
import { KENDO_DROPDOWNS } from '@progress/kendo-angular-dropdowns';
@Component({
standalone: true,
selector: 'my-app',
imports: [KENDO_DROPDOWNS]
})
To add individual DropDowns components, import the corresponding utility arrays in your standalone component. See the list of available utility arrays.
For example if you only need the DropDownList component, import KENDO_DROPDOWNLIST
.
import { Component } from '@angular/core';
import { KENDO_DROPDOWNLIST } from '@progress/kendo-angular-dropdowns';
@Component({
standalone: true,
selector: 'my-app',
imports: [KENDO_DROPDOWNLIST]
})
The next step is to style the components by installing one of the available Kendo UI themes.
3.1 To start using a theme, install its package through NPM.
Default theme
npm install --save @progress/kendo-theme-default
Bootstrap theme
npm install --save @progress/kendo-theme-bootstrap
Material theme
npm install --save @progress/kendo-theme-material
Fluent theme
npm install --save @progress/kendo-theme-fluent
3.2 After the theme package is installed, reference it in your project. You can include a Kendo UI theme in your project in one of the following ways: