No exported member 'DynamicFormsMaterialUIModule'.
Opened this issue · 5 comments
I'm submitting a
[x] Bug / Regression
[ ] Feature Request / Proposal
I'm using
NG Dynamic Forms Version: `18.0.0`
[ ] Basic UI
[ ] Bootstrap UI
[ ] Foundation UI
[ ] Ionic UI
[x] Material
[ ] NG Bootstrap
[ ] Prime NG
Description
After upgrading from 17.0.0 to 18.0.0, an exception is thrown when building the application: Module '"@ng-dynamic-forms/ui-material"' has no exported member 'DynamicFormsMaterialUIModule'.
Can you describe how to migrate from v17 to v18?
Thank you. Kind regards.
Hi, any news on how to use the new standalone components?
Regards.
Im experiencing the same issue :(
We are also seeing this for Ionic. Does anyone have an update or workaround?
The last PR has removed all module files, so you need to follow Angular Standalone components guides. Unfortunately the documentation does not reflect this update - see #1178
As a workaround I created a subsitute-module and put it in our shared module.
find:
import { DynamicFormsMaterialUIModule } from "@ng-dynamic-forms/ui-material";
replace with:
import { DynamicFormsMaterialUIModule } from "@shared/dynamicformsmaterialui.module";