Skip to content

Commit

Permalink
docs(angular): add note about standalone components (#1411)
Browse files Browse the repository at this point in the history
  • Loading branch information
nuke-ellington authored Jul 31, 2024
1 parent db678ea commit 50bec1d
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions packages/documentation/docs/installation/angular.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,16 @@ sidebar_position: 1
sidebar_title: Angular
title: Angular
---

import Tabs from '@theme/Tabs';
import TabItem from '@theme/TabItem';

### Library installation

:::info
Currently, iX only supports `NgModule` based Angular projects. We are actively working to provide support for the new standalone component based approach soon. Otherwise Siemens iX is fully compatible with Angular version 17 and higher.
:::

Install `@siemens/ix`, `@siemens/ix-angular` and `@siemens/ix-icons` using a package manager:

<Tabs>
Expand Down Expand Up @@ -48,12 +53,7 @@ import { AppComponent } from './app.component';

@NgModule({
declarations: [AppComponent],
imports: [
BrowserModule,
AppRoutingModule,
IxModule.forRoot(),
BrowserAnimationsModule,
],
imports: [BrowserModule, AppRoutingModule, IxModule.forRoot(), BrowserAnimationsModule],
providers: [],
bootstrap: [AppComponent],
})
Expand Down

0 comments on commit 50bec1d

Please sign in to comment.