@festo-ui/angular 9.0.0-dev.663 → 9.0.0-dev.677
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -3
- package/fesm2022/festo-ui-angular.mjs +279 -296
- package/fesm2022/festo-ui-angular.mjs.map +1 -1
- package/index.d.ts +8 -6
- package/package.json +9 -9
package/README.md
CHANGED
|
@@ -49,15 +49,14 @@ If you only want to load the styles for popovers or image gallery you can use fo
|
|
|
49
49
|
|
|
50
50
|
### Modules
|
|
51
51
|
|
|
52
|
-
After installation you have to import the **FestoAngularModule**
|
|
52
|
+
After installation you have to import the **FestoAngularModule** to your root module (called `app.module.ts` in the majority of projects). Have a look at the following example:
|
|
53
53
|
|
|
54
54
|
```typescript
|
|
55
55
|
import { FestoAngularModule } from '@festo-ui/angular';
|
|
56
|
-
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
|
|
57
56
|
|
|
58
57
|
@NgModule({
|
|
59
58
|
declarations: [AppComponent],
|
|
60
|
-
imports: [BrowserModule,
|
|
59
|
+
imports: [BrowserModule, FormsModule, ReactiveFormsModule, FestoAngularModule, AppRoutingModule],
|
|
61
60
|
providers: []
|
|
62
61
|
})
|
|
63
62
|
export class AppModule {}
|