You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Feb 23, 2023. It is now read-only.
[x] bug report => search github for a similar issue or PR before submitting
[ ] feature request
Current behavior
Importing NgPipesModule doesn't import NgAbsPipeModule and even importing NgMathPipesModule doesn't import NgAbsPipeModule. I have to explicitly import NgAbsPipeModule for the abs pipe to work.
Expected behavior
Each category of pipes has an exported module. And one module imports all these modules.
So for example, importing NgMathPipesModule should import the NgAbsPipeModule.
Moreover, importing the NgPipesModule should import ALL modules.
Minimal reproduction of the problem with instructions
1- import NgMathPipesModule or NgPipesModule
2- use the abs pipe in a template i.e.
{{someValue | abs }}
3- it won't work and throw an error that such pipe doesn't exist.
note: using angular v11
The text was updated successfully, but these errors were encountered:
I'm submitting a ... (check one with "x")
Current behavior
Importing
NgPipesModule
doesn't importNgAbsPipeModule
and even importingNgMathPipesModule
doesn't importNgAbsPipeModule
. I have to explicitly importNgAbsPipeModule
for the abs pipe to work.Expected behavior
Each category of pipes has an exported module. And one module imports all these modules.
So for example, importing
NgMathPipesModule
should import theNgAbsPipeModule
.Moreover, importing the
NgPipesModule
should import ALL modules.Minimal reproduction of the problem with instructions
1- import
NgMathPipesModule
orNgPipesModule
2- use the abs pipe in a template i.e.
{{someValue | abs }}
3- it won't work and throw an error that such pipe doesn't exist.
note: using angular v11
The text was updated successfully, but these errors were encountered: