@ama-mfe/ng-utils 14.0.0-next.2 → 14.0.0-next.4

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 CHANGED
@@ -94,12 +94,12 @@ If you are a consumer of the message, call the `start` and `stop` methods to res
94
94
  ```typescript
95
95
  import {Component, inject} from '@angular/core';
96
96
  import {NavigationConsumerService} from '@ama-mfe/ng-utils';
97
- import {ThemeConsumerService} from "./theme.consumer.service";
97
+ import {ThemeConsumerService} from "./theme-consumer-service";
98
98
 
99
99
  @Component({
100
- selector: 'app-example-module',
101
- template: './example-module.template.html',
102
- styleUrl: './example-module.style.scss',
100
+ selector: 'app-example-module-component',
101
+ template: './example-module-component.html',
102
+ styleUrl: './example-module-component.scss',
103
103
  })
104
104
  export class ExampleModuleComponent {
105
105
  private readonly navigationConsumerService = inject(NavigationConsumerService);