How to list all FormJS component type names?

I am importing a form definition file from an external third-party form designer, but FormJS prompts that some component types are not supported. Therefore, I would like to know in advance the types of all components supported by FormJS and then filter them. Is there any way I can know the type names of all components supported by FormJS.

Uncaught (in promise) Error: form field of type <undefined> not supported
    create index.es.js:8526
    importFormField index.es.js:8478
    importSchema index.es.js:8442
    node_modules index.js:15833
    importSchema index.es.js:13815

To get all supported component types in FormJS, check the official FormJS documentation or source code, particularly the componentFactory or componentRegistry section. This lists all valid types. You can use this list to filter unsupported components before importing.