@pepperi-addons/ngx-lib 0.3.15-loader.21 → 0.3.15-loader.24

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.
@@ -3247,11 +3247,11 @@
3247
3247
  };
3248
3248
  PepDynamicFieldGeneratorComponent.prototype.createControlDynamically = function () {
3249
3249
  if (this._controlContainer) {
3250
- //const factory: ComponentFactory<any> = this.getComponentFactory();
3251
- var factory = this._resolver.resolveComponentFactory(textbox.PepTextboxComponent);
3250
+ var factory = this.getComponentFactory();
3251
+ // const factory = this._resolver.resolveComponentFactory(PepTextboxComponent);
3252
3252
  if (factory) {
3253
- //const componentRef: ComponentRef<any> = this._controlContainer.createComponent(factory);
3254
3253
  var componentRef = this._controlContainer.createComponent(factory);
3254
+ //const componentRef: ComponentRef<PepTextboxComponent> = this._controlContainer.createComponent(factory);
3255
3255
  this._containerRef = componentRef.instance;
3256
3256
  this.setBaseProperties();
3257
3257
  this.setControlProperties();
@@ -3361,7 +3361,7 @@
3361
3361
  PepDynamicFieldGeneratorComponent.decorators = [
3362
3362
  { type: core.Component, args: [{
3363
3363
  selector: 'pep-dynamic-field-generator',
3364
- template: "<ng-container [formGroup]=\"form\">\n <ng-container #controlContainer></ng-container>\n</ng-container>",
3364
+ template: "<!-- <ng-container [formGroup]=\"form\"> -->\n <ng-template controlContainer></ng-template>\n<!-- </ng-container> -->",
3365
3365
  changeDetection: core.ChangeDetectionStrategy.OnPush,
3366
3366
  styles: [":host{width:100%;height:100%}"]
3367
3367
  },] }