Vugar
Vugar
@waterplea There is solution with PR for that but unfortunately it is stuck on review. It passes tests , we need somehow to force them to approve this PR lol....
@vpetrusevici I am sure there can always be a reason to not like specific library/framework because of issue. For now I suggest to do this temporary without hacking. Pass onTouched...
`::part `looks like a good native solution but I wonder what about material or other 3 rd party components where current projects use `:ng-deep`. The only problem imo is auto...
@ohabash Unfortunately not. It is library issue. I just switched the library. Or you can fork and edit the library code.
Make sure you pass correct full path. // tsconfig.json in apps/mfe1 folder ``` "compilerOptions": { .... "paths": { "@core/*": ["apps/mfe1/src/app/core/*"] } }, ``` Also,I discovered that thanks to [comment](https://stackoverflow.com/questions/70170398/path-alias-inheritance-in-tsconfig-for-angular-nx-project). That...
@arrgson It is because of secondary point. According to manfred amazing book. The reason for this is the secondary entry point ```@angular/common/http``` which is a bit like an npm package...
solved this problem by adding a class to ng-select such as custom. Then in styles.scss > ng-select.custom > div { > border: 0!important; > outline: none; > } > ng-select.custom...
I had the same issue on circleci which was using Linux platform. So as a temporary workaround I used `npm install --no-package-lock`. But of course, don't use it in production...
Should be fixed by this [PR ](https://github.com/tanansatpal/ngx-mat-intl-tel-input/pull/122)
@prabh-62 I strongly agree with @alan-agius4 that we should NOT have onPush by default. It should be opt in. Because new joiners to Angular dont know about onPush strategy and...