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
Description
Root index.d.ts exports FormTemplate as MuiFormtemplate, while index.js exported it as FormTemplate
export { default as MuiFormTemplate } from './form-template';
so there is a type error when importing it.
TS2724: '"@data-driven-forms/mui-component-mapper"' has no exported member named 'FormTemplate'. Did you mean 'MuiFormTemplate'?
The root cause of this issue is that default exported variable is called 'MuiFormTemplate'
The text was updated successfully, but these errors were encountered:
friedbizkvit
changed the title
FormTemplate exported as MuiFormTemplate in typings
FormTemplate exported as MuiFormTemplate in typings of mui-component-mapper
Jun 13, 2023
Scope: @data-driven-forms/mui-component-mapper
Description
Root
index.d.ts
exports FormTemplate as MuiFormtemplate, whileindex.js
exported it as FormTemplateso there is a type error when importing it.
The root cause of this issue is that default exported variable is called 'MuiFormTemplate'
The text was updated successfully, but these errors were encountered: