@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 +4 -4
- package/fesm2022/ama-mfe-ng-utils.mjs +424 -346
- package/fesm2022/ama-mfe-ng-utils.mjs.map +1 -1
- package/index.d.ts +256 -210
- package/index.d.ts.map +1 -1
- package/package.json +6 -6
- package/schematics/ng-add/index.js.map +0 -1
- package/schematics/ng-add/schema.js.map +0 -1
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
|
|
97
|
+
import {ThemeConsumerService} from "./theme-consumer-service";
|
|
98
98
|
|
|
99
99
|
@Component({
|
|
100
|
-
selector: 'app-example-module',
|
|
101
|
-
template: './example-module.
|
|
102
|
-
styleUrl: './example-module.
|
|
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);
|