@pepperi-addons/ngx-lib 0.3.15-loader.36 → 0.3.15-loader.37

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.
@@ -602,40 +602,6 @@
602
602
  fieldProperties = Object.assign(Object.assign({}, fieldProperties), dataField.AdditionalProps);
603
603
  }
604
604
  return fieldProperties;
605
- /*
606
- return {
607
- key: controlField.ApiName,
608
- label: controlField.Title,
609
- accessory: dataField.Accessory,
610
- placeholder,
611
- readonly: controlField.ReadOnly || !canEditObject,
612
- disabled: !dataField.Enabled || !canEditObject,
613
- hidden: controlField.Hidden,
614
- mandatory: controlField.Mandatory,
615
- value: dataField.Value,
616
- formattedValue: dataField.FormattedValue,
617
- additionalValue: dataField.AdditionalValue,
618
- row: controlField.Layout.Y,
619
- rowSpan: controlField.Layout.Height,
620
- col: controlField.Layout.X,
621
- colSpan: controlField.Layout.Width,
622
- xAlignment: this.convertXAlignToHorizontalAlign(
623
- controlField.Layout.XAlignment
624
- ),
625
- yAlignment: this.convertYAlignToVerticalAlign(
626
- controlField.Layout.YAlignment
627
- ),
628
- options: this.convertOptionalValues(dataField.OptionalValues),
629
- groupFields: undefined,
630
- maxFieldCharacters: controlField.MaxFieldCharacters,
631
- minValue: controlField.MinValue,
632
- maxValue: controlField.MaxValue,
633
- // hasMenu: hasMenu,
634
- // hasCampaign: hasCampaign,
635
- // hasIndicators: hasIndicators,
636
- textColor: dataField.TextColor,
637
- visible: dataField.Visible,
638
- }; */
639
605
  };
640
606
  PepFormComponent.prototype.convertToCustomField = function (controlField, dataField, canEditObject, menuField, hasCampaignField, indicatorsField, objectId, parentId, searchCode) {
641
607
  var customField;