@stemy/ngx-dynamic-form 13.3.4 → 13.3.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -288,8 +288,8 @@ function createFormFile(id, config, layout) {
288
288
  return new DynamicFileUploadModel(res, layout);
289
289
  }
290
290
 
291
- function getFormComponent(...types) {
292
- const factory = cachedFactory(types);
291
+ function getFormComponent(...providers) {
292
+ const factory = cachedFactory(providers);
293
293
  return (model, injector) => {
294
294
  const customizers = factory(injector);
295
295
  for (const customizer of customizers) {
@@ -301,8 +301,8 @@ function getFormComponent(...types) {
301
301
  return null;
302
302
  };
303
303
  }
304
- function customizeFormModel(...types) {
305
- const factory = cachedFactory(types);
304
+ function customizeFormModel(...providers) {
305
+ const factory = cachedFactory(providers);
306
306
  return async (property, schema, model, config, injector) => {
307
307
  const customizers = factory(injector);
308
308
  for (const customizer of customizers) {