@pepperi-addons/ngx-lib 0.2.51-beta.8 → 0.2.53

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.
Files changed (43) hide show
  1. package/bundles/pepperi-addons-ngx-lib-form.umd.js +200 -3315
  2. package/bundles/pepperi-addons-ngx-lib-form.umd.js.map +1 -1
  3. package/bundles/pepperi-addons-ngx-lib-image.umd.js +6 -1
  4. package/bundles/pepperi-addons-ngx-lib-image.umd.js.map +1 -1
  5. package/bundles/pepperi-addons-ngx-lib-slider.umd.js +15 -7
  6. package/bundles/pepperi-addons-ngx-lib-slider.umd.js.map +1 -1
  7. package/bundles/pepperi-addons-ngx-lib.umd.js +5 -1
  8. package/bundles/pepperi-addons-ngx-lib.umd.js.map +1 -1
  9. package/core/common/model/wapi.model.d.ts +2 -0
  10. package/core/customization/customization.model.d.ts +1 -0
  11. package/esm2015/core/common/model/wapi.model.js +1 -1
  12. package/esm2015/core/customization/customization.model.js +5 -1
  13. package/esm2015/form/field-generator.component.js +26 -10
  14. package/esm2015/form/form.component.js +53 -84
  15. package/esm2015/form/internal-carusel.component.js +41 -3149
  16. package/esm2015/form/internal-carusel.service.js +13 -13
  17. package/esm2015/form/internal-page.component.js +7 -7
  18. package/esm2015/image/image.component.js +6 -1
  19. package/esm2015/image/pepperi-addons-ngx-lib-image.js +1 -2
  20. package/esm2015/image/public-api.js +2 -1
  21. package/esm2015/slider/slider.component.js +16 -8
  22. package/fesm2015/pepperi-addons-ngx-lib-form.js +135 -3259
  23. package/fesm2015/pepperi-addons-ngx-lib-form.js.map +1 -1
  24. package/fesm2015/pepperi-addons-ngx-lib-image.js +6 -1
  25. package/fesm2015/pepperi-addons-ngx-lib-image.js.map +1 -1
  26. package/fesm2015/pepperi-addons-ngx-lib-slider.js +15 -7
  27. package/fesm2015/pepperi-addons-ngx-lib-slider.js.map +1 -1
  28. package/fesm2015/pepperi-addons-ngx-lib.js +4 -0
  29. package/fesm2015/pepperi-addons-ngx-lib.js.map +1 -1
  30. package/form/field-generator.component.d.ts +12 -5
  31. package/form/form.component.d.ts +10 -4
  32. package/form/internal-carusel.component.d.ts +6 -2
  33. package/form/internal-carusel.service.d.ts +2 -7
  34. package/form/internal-page.component.d.ts +2 -2
  35. package/form/pepperi-addons-ngx-lib-form.metadata.json +1 -1
  36. package/image/pepperi-addons-ngx-lib-image.d.ts +0 -1
  37. package/image/pepperi-addons-ngx-lib-image.metadata.json +1 -1
  38. package/image/public-api.d.ts +1 -0
  39. package/package.json +1 -1
  40. package/pepperi-addons-ngx-lib.metadata.json +1 -1
  41. package/slider/pepperi-addons-ngx-lib-slider.metadata.json +1 -1
  42. package/slider/slider.component.d.ts +5 -3
  43. package/src/core/style/base/typography.scss +28 -0
@@ -29,7 +29,7 @@ import { PepTextboxModule } from '@pepperi-addons/ngx-lib/textbox';
29
29
  import { PepFieldTitleModule } from '@pepperi-addons/ngx-lib/field-title';
30
30
  import { PepGroupButtonsModule } from '@pepperi-addons/ngx-lib/group-buttons';
31
31
  import { TranslateService } from '@ngx-translate/core';
32
- import { fromEvent } from 'rxjs';
32
+ import { BehaviorSubject, fromEvent } from 'rxjs';
33
33
  import { debounceTime } from 'rxjs/operators';
34
34
 
35
35
  class PepFormComponent {
@@ -56,13 +56,14 @@ class PepFormComponent {
56
56
  this.checkForChanges = null;
57
57
  this.valueChange = new EventEmitter();
58
58
  this.formValidationChange = new EventEmitter();
59
- this.childClick = new EventEmitter();
60
- this.childChange = new EventEmitter();
61
59
  this.fieldClick = new EventEmitter();
60
+ this.internalFormFieldClick = new EventEmitter();
61
+ this.internalFormFieldChange = new EventEmitter();
62
62
  this.isLocked = false;
63
63
  // payLoad = '';
64
64
  this.rows = [];
65
65
  this.fields = [];
66
+ this._fieldsSubject = new BehaviorSubject([]);
66
67
  this.columns = 1;
67
68
  this.hasMenuFloatingOnOtherField = false;
68
69
  this.indicatorsDataField = null;
@@ -84,6 +85,9 @@ class PepFormComponent {
84
85
  get data() {
85
86
  return this._data;
86
87
  }
88
+ get fields$() {
89
+ return this._fieldsSubject.asObservable();
90
+ }
87
91
  get shouldReloadForm() {
88
92
  return this._shouldReloadForm;
89
93
  }
@@ -618,6 +622,10 @@ class PepFormComponent {
618
622
  }
619
623
  return this.fb.group(group);
620
624
  }
625
+ createBaseField(uiControlField, dataField) {
626
+ const customField = this.convertToCustomField(uiControlField, dataField, this.canEditObject, this.menuDataField, this.hasCampaignDataField, this.indicatorsDataField, this.objectId, this.parentId, this.searchCode);
627
+ return customField;
628
+ }
621
629
  showFormValidationMessage() {
622
630
  const fields = this.fields;
623
631
  let emptyMandatoryFieldsMsg = '';
@@ -698,21 +706,6 @@ class PepFormComponent {
698
706
  // }
699
707
  }
700
708
  ngOnDestroy() {
701
- // if (this.valueChange) {
702
- // this.valueChange.unsubscribe();
703
- // }
704
- // if (this.formValidationChange) {
705
- // this.formValidationChange.unsubscribe();
706
- // }
707
- // if (this.childClick) {
708
- // this.childClick.unsubscribe();
709
- // }
710
- // if (this.childChange) {
711
- // this.childChange.unsubscribe();
712
- // }
713
- // if (this.fieldClick) {
714
- // this.fieldClick.unsubscribe();
715
- // }
716
709
  }
717
710
  getUiControlFields() {
718
711
  return this.layout ? this.layout.ControlFields : [];
@@ -736,6 +729,7 @@ class PepFormComponent {
736
729
  // this.layoutType === 'form' ||
737
730
  this.layoutType === 'table') {
738
731
  this.fields = fields;
732
+ this._fieldsSubject.next(fields);
739
733
  this.rows = [];
740
734
  for (let i = 0; i <= maxRow; i++) {
741
735
  this.rows[i] = [];
@@ -827,6 +821,7 @@ class PepFormComponent {
827
821
  : f1.col < f2.col
828
822
  ? -1
829
823
  : 0);
824
+ this._fieldsSubject.next(fields);
830
825
  }
831
826
  }
832
827
  }
@@ -836,9 +831,8 @@ class PepFormComponent {
836
831
  if (!isForUpdate) {
837
832
  const fields = [];
838
833
  for (const currentField of this.fields) {
839
- // Add all fields except 'internalPage' && internalCarusel type (for children).
840
- if (currentField.controlType !== 'internalPage' &&
841
- currentField.controlType !== 'internalCarusel') {
834
+ // Add all fields except 'internalPage' (for children).
835
+ if (currentField.controlType !== 'internalPage') {
842
836
  fields.push(currentField);
843
837
  }
844
838
  if (!currentField.readonly) {
@@ -849,9 +843,16 @@ class PepFormComponent {
849
843
  }
850
844
  else {
851
845
  // Update form values if changed by calculated fields.
852
- for (const currentField of this.fields) {
853
- if (currentField.controlType !== 'internalPage' &&
854
- currentField.controlType !== 'internalCarusel') {
846
+ for (let i = 0; i < this.fields.length; i++) {
847
+ let currentField = this.fields[i];
848
+ if (currentField.controlType === 'internalCarusel') {
849
+ // Hack to override (update) the field.
850
+ const uiControlField = this.getUiControlFields().find(cf => cf.ApiName === currentField.key);
851
+ const dataField = this.data.Fields.find(df => df.ApiName === currentField.key);
852
+ currentField = this.createBaseField(uiControlField, dataField);
853
+ this._fieldsSubject.value[i] = currentField;
854
+ }
855
+ else if (currentField.controlType !== 'internalPage') {
855
856
  if (currentField.groupFields &&
856
857
  currentField.groupFields.length > 0) {
857
858
  // for (let j = 0; j < currentField.groupFields.length; j++) {
@@ -917,6 +918,9 @@ class PepFormComponent {
917
918
  });
918
919
  }
919
920
  }
921
+ else if (customField instanceof PepInternalCaruselField) {
922
+ options.pageInfo = updatedField.UIPageInfo;
923
+ }
920
924
  customField.update(options);
921
925
  }
922
926
  updateForm() {
@@ -924,7 +928,7 @@ class PepFormComponent {
924
928
  for (const currentField of this.data.Fields) {
925
929
  const customField = this.fields.filter((f) => f.key === currentField.ApiName)[0];
926
930
  // Update all fields except 'internalPage' type (for children).
927
- if (customField && (customField.controlType !== 'internalPage' && customField.controlType !== 'internalCarusel')) {
931
+ if (customField && customField.controlType !== 'internalPage') {
928
932
  this.updateField(customField, currentField);
929
933
  // Update the group fields.
930
934
  if (customField.controlType === 'address' &&
@@ -1052,10 +1056,6 @@ class PepFormComponent {
1052
1056
  });
1053
1057
  }
1054
1058
  const fields = [];
1055
- // const matrixFields = controlFields.filter((cf) =>
1056
- // this.isMatrixField(cf.ApiName)
1057
- // ).length;
1058
- // let matrixAlreadyPlaced = false;
1059
1059
  controlFields.forEach((field, index) => {
1060
1060
  const dataField = dataFields.filter((df) => df.ApiName === field.ApiName)[0];
1061
1061
  if (!dataField) {
@@ -1077,21 +1077,12 @@ class PepFormComponent {
1077
1077
  dataField.FieldType = FIELD_TYPE.InternalLink;
1078
1078
  // dataField.Value = this.getInternalLinkHref();
1079
1079
  }
1080
- else if (dataField.Value.length > 0 &&
1081
- (field.FieldType === FIELD_TYPE.ReferenceType ||
1082
- field.FieldType === FIELD_TYPE.GuidReferenceType)) {
1083
- // const transactionUrl =
1084
- // this.data.MainAction === '2'
1085
- // ? 'transactions/scope_items/'
1086
- // : 'transactions/cart/';
1087
- // dataField.Value = transactionUrl + dataField.Value;
1088
- }
1089
1080
  if (field.ApiName === 'ObjectMenu') {
1090
1081
  dataField.Enabled = true;
1091
1082
  // HACK : Until "Enabled" returns from the server, we set PepMenu to be
1092
1083
  // Disabled in cart on regular items and not campign items.
1093
1084
  }
1094
- const customField = this.convertToCustomField(field, dataField, this.canEditObject, this.menuDataField, this.hasCampaignDataField, this.indicatorsDataField, this.objectId, this.parentId, this.searchCode);
1085
+ const customField = this.createBaseField(field, dataField);
1095
1086
  fields.push(customField);
1096
1087
  });
1097
1088
  return fields.sort((f1, f2) => f1.row > f2.row
@@ -1124,6 +1115,7 @@ class PepFormComponent {
1124
1115
  }
1125
1116
  this.valueChange.emit({
1126
1117
  id: this.data.UID.toString(),
1118
+ uiObjectKey: this.data.Key,
1127
1119
  key: event.key,
1128
1120
  value: event.value,
1129
1121
  controlType: event.controlType,
@@ -1134,47 +1126,23 @@ class PepFormComponent {
1134
1126
  const clickedUiControlField = this.data.Fields.filter((f) => f.ApiName === fieldClickEvent.key)[0];
1135
1127
  const idType = this.data.Type ? this.data.Type.toString() : '';
1136
1128
  if (clickedUiControlField) {
1137
- if (clickedUiControlField.FieldType === FIELD_TYPE.GuidReferenceType) {
1138
- this.fieldClick.emit({
1139
- id: this.data.UID.toString(),
1140
- key: fieldClickEvent.key,
1141
- idType,
1142
- which: fieldClickEvent.eventWhich,
1143
- value: fieldClickEvent.value,
1144
- controlType: fieldClickEvent.controlType,
1145
- fieldType: clickedUiControlField.FieldType,
1146
- otherData: fieldClickEvent.otherData,
1147
- });
1148
- }
1149
- else if (clickedUiControlField.FieldType === FIELD_TYPE.ListOfObjects) {
1150
- this.fieldClick.emit({
1151
- id: this.data.UID.toString(),
1152
- key: fieldClickEvent.key,
1153
- idType,
1154
- which: fieldClickEvent.eventWhich,
1155
- value: fieldClickEvent.value,
1156
- controlType: fieldClickEvent.controlType,
1157
- fieldType: clickedUiControlField.FieldType,
1158
- otherData: fieldClickEvent.otherData,
1159
- });
1160
- }
1161
- else {
1162
- this.fieldClick.emit({
1163
- id: this.data.UID.toString(),
1164
- key: fieldClickEvent.key,
1165
- idType,
1166
- which: fieldClickEvent.eventWhich,
1167
- value: fieldClickEvent.value,
1168
- controlType: fieldClickEvent.controlType,
1169
- fieldType: clickedUiControlField.FieldType,
1170
- otherData: fieldClickEvent.otherData,
1171
- });
1172
- }
1129
+ this.fieldClick.emit({
1130
+ id: this.data.UID.toString(),
1131
+ uiObjectKey: this.data.Key,
1132
+ key: fieldClickEvent.key,
1133
+ idType,
1134
+ which: fieldClickEvent.eventWhich,
1135
+ value: fieldClickEvent.value,
1136
+ controlType: fieldClickEvent.controlType,
1137
+ fieldType: clickedUiControlField.FieldType,
1138
+ otherData: fieldClickEvent.otherData,
1139
+ });
1173
1140
  }
1174
1141
  else {
1175
1142
  // For other api names (like enter children etc).
1176
1143
  this.fieldClick.emit({
1177
1144
  id: this.data.UID.toString(),
1145
+ uiObjectKey: this.data.Key,
1178
1146
  key: fieldClickEvent.key,
1179
1147
  idType,
1180
1148
  which: fieldClickEvent.eventWhich,
@@ -1185,16 +1153,16 @@ class PepFormComponent {
1185
1153
  }
1186
1154
  }
1187
1155
  // This event is for handle the internal page events.
1188
- onChildClicked(childClick) {
1189
- this.childClick.emit(childClick);
1156
+ onInternalFormFieldClicked(internalFormFieldClick) {
1157
+ this.internalFormFieldClick.emit(internalFormFieldClick);
1190
1158
  }
1191
1159
  // This event is for handle the internal page events.
1192
- onChildChanged(childChange) {
1193
- this.childChange.emit(childChange);
1160
+ onInternalFormFieldChanged(internalFormFieldChange) {
1161
+ this.internalFormFieldChange.emit(internalFormFieldChange);
1194
1162
  }
1195
1163
  // This event is for handle the related items change events.
1196
1164
  onFormValueChanged(event) {
1197
- this.valueChange.emit(event);
1165
+ // this.valueChange.emit(event);
1198
1166
  }
1199
1167
  // This event is for handle the related items change events.
1200
1168
  onFormFieldClick(event) {
@@ -1204,7 +1172,7 @@ class PepFormComponent {
1204
1172
  PepFormComponent.decorators = [
1205
1173
  { type: Component, args: [{
1206
1174
  selector: 'pep-form',
1207
- template: "<fieldset *ngIf=\"form\" [formGroup]=\"form\" [disabled]=\"isLocked\" class=\"pep-form\"\n [ngStyle]=\"{ 'background-color': layoutType == 'card' && data?.BackgroundColor }\">\n <!-- New Form -->\n <mat-grid-list *ngIf=\"layoutType == 'form'\" [cols]=\"columns\" [rowHeight]=\"rowHeight + 'rem'\"\n [gutterSize]=\"formGutterSize\">\n <mat-grid-tile *ngFor=\"let field of fields\" [rowspan]=\"field.rowSpan\" [colspan]=\"field.colSpan\">\n <pep-field-generator *ngIf=\"field.controlType != 'placeholder'\" [form]=\"form\" [layoutType]=\"layoutType\"\n [checkForChanges]=\"checkForChanges\" [uid]=\"data?.UID\" [field]=\"field\" [showTitle]=\"showTitle\"\n (valueChange)=\"onValueChanged($event)\" (elementClick)=\"onClick($event)\"\n (childClick)=\"onChildClicked($event)\" (childChange)=\"onChildChanged($event)\"\n (formValidationChange)=\"onFormValidationChanged($event)\">\n </pep-field-generator>\n </mat-grid-tile>\n </mat-grid-list>\n\n <!-- Thumbnails -->\n <mat-grid-list *ngIf=\"layoutType == 'card'\" [cols]=\"columns\" [rowHeight]=\"rowHeight + 'rem'\"\n [gutterSize]=\"cardGutterSize\" class=\"card-spacing\">\n <mat-grid-tile *ngFor=\"let field of fields\" [rowspan]=\"field.rowSpan\" [colspan]=\"field.colSpan\"\n [ngStyle]=\"{ overflow: field.type == 'qs' ? 'unset' : 'hidden' }\">\n <pep-field-generator *ngIf=\"field.controlType != 'placeholder'\" [form]=\"form\" [layoutType]=\"layoutType\"\n [ngClass]=\"{ 'lock-events': lockEvents }\" [isActive]=\"isActive\" [checkForChanges]=\"checkForChanges\"\n [uid]=\"data?.UID\" [field]=\"field\" [showTitle]=\"showTitle\" (valueChange)=\"onValueChanged($event)\"\n (elementClick)=\"onClick($event)\" (childClick)=\"onChildClicked($event)\"\n (childChange)=\"onChildChanged($event)\">\n </pep-field-generator>\n </mat-grid-tile>\n </mat-grid-list>\n\n <ng-container *ngIf=\"layoutType == 'table'\">\n <ng-container *ngIf=\"isReport; then reportBlock; else notReportBlock\"></ng-container>\n <ng-template #reportBlock>\n <ng-container *ngTemplateOutlet=\"report\"></ng-container>\n </ng-template>\n <ng-template #notReportBlock>\n <div *ngFor=\"let field of fields; let j = index\" class=\"pull-left flip table-cell \"\n [ngClass]=\"['text-align-' + field.xAlignment]\" style=\"height: 100%\"\n [ngStyle]=\"{ width: (layout?.ControlFields)[j]?.calcColumnWidthString}\">\n <pep-field-generator *ngIf=\"field.controlType != 'placeholder'\" [checkForChanges]=\"checkForChanges\"\n [uid]=\"data?.UID\" [field]=\"field\" [form]=\"form\" [layoutType]=\"layoutType\" [showTitle]=\"false\"\n [isActive]=\"isActive\" (elementClick)=\"onClick($event)\" (valueChange)=\"onValueChanged($event)\">\n </pep-field-generator>\n </div>\n </ng-template>\n </ng-container>\n\n <!------- For testing ------------\n {{ form.value | json }}\n {{ form.valid }}\n ---------------------------------->\n</fieldset>\n\n<ng-template #report>\n <div *ngFor=\"let field of fields; let j = index\" class=\"pull-left flip pep-report-fields\"\n [ngStyle]=\"{ width: (layout?.ControlFields)[j]?.calcColumnWidthString }\"\n [ngClass]=\"['text-align-' + field.xAlignment]\">\n <ng-container [ngSwitch]=\"field.controlType\">\n <pep-image *ngSwitchCase=\"'image'\" [uid]=\"data?.UID\" [form]=\"form\" [key]=\"field.key\"\n [src]=\"field.formattedValue\" [srcLarge]=\"field.value\" [options]=\"field.options\" [label]=\"field.label\"\n [mandatory]=\"field.mandatory\" [disabled]=\"field.disabled\" [readonly]=\"field.readonly\"\n [xAlignment]=\"field.xAlignment\" [rowSpan]=\"field.rowSpan\" [layoutType]=\"layoutType\"\n (elementClick)=\"onClick($event)\">\n </pep-image>\n\n <pep-signature *ngSwitchCase=\"'signature'\" [form]=\"form\" [key]=\"field.key\" [src]=\"field.value\"\n [label]=\"field.label\" [mandatory]=\"field.mandatory\" [disabled]=\"field.disabled\"\n [readonly]=\"field.readonly\" [xAlignment]=\"field.xAlignment\" [rowSpan]=\"field.rowSpan\"\n [layoutType]=\"layoutType\">\n </pep-signature>\n\n <pep-checkbox *ngSwitchCase=\"'checkbox'\" [form]=\"form\" [key]=\"field.key\"\n [value]=\"(field.value | lowercase) == 'true' || field.value == '1' ? true : false\" [label]=\"field.label\"\n [type]=\"field.type\" [mandatory]=\"field.mandatory\" [disabled]=\"field.disabled\"\n [readonly]=\"field.readonly\" [xAlignment]=\"field.xAlignment\" [rowSpan]=\"field.rowSpan\"\n [additionalValue]=\"field.additionalValue\" [layoutType]=\"layoutType\">\n </pep-checkbox>\n\n <pep-date *ngSwitchCase=\"'date'\" [form]=\"form\" [key]=\"field.key\" [value]=\"field.value\"\n [formattedValue]=\"field.formattedValue\" [label]=\"field.label\" [type]=\"field.type\"\n [mandatory]=\"field.mandatory\" [disabled]=\"field.disabled\" [readonly]=\"field.readonly\"\n [textColor]=\"field.textColor\" [xAlignment]=\"field.xAlignment\" [rowSpan]=\"field.rowSpan\"\n [minValue]=\"field.minValue\" [maxValue]=\"field.maxValue\" [layoutType]=\"layoutType\">\n </pep-date>\n\n <pep-internal-button *ngSwitchCase=\"'button'\" [form]=\"form\" [key]=\"field.key\" [value]=\"field.value\"\n [formattedValue]=\"field.formattedValue\" [label]=\"field.label\" [type]=\"field.type\"\n [disabled]=\"field.disabled\" [readonly]=\"field.readonly\" [xAlignment]=\"field.xAlignment\"\n [layoutType]=\"layoutType\" (elementClick)=\"onClick($event)\">\n </pep-internal-button>\n\n <pep-textarea *ngSwitchCase=\"'textarea'\" [form]=\"form\" [key]=\"field.key\" [value]=\"field.value\"\n [label]=\"field.label\" [mandatory]=\"field.mandatory\" [disabled]=\"field.disabled\"\n [readonly]=\"field.readonly\" [maxFieldCharacters]=\"field.maxFieldCharacters\"\n [textColor]=\"field.textColor\" [xAlignment]=\"field.xAlignment\" [rowSpan]=\"field.rowSpan\"\n [layoutType]=\"layoutType\">\n </pep-textarea>\n\n <pep-quantity-selector *ngSwitchCase=\"'qs'\" [id]=\"field.key\" [form]=\"form\" [key]=\"field.key\"\n [value]=\"field.value\" [formattedValue]=\"field.formattedValue\" [label]=\"field.label\" [type]=\"field.type\"\n [mandatory]=\"field.mandatory\" [disabled]=\"field.disabled\" [readonly]=\"field.readonly\"\n [textColor]=\"field.textColor\" [xAlignment]=\"field.xAlignment\" [rowSpan]=\"field.rowSpan\"\n [layoutType]=\"layoutType\" (valueChange)=\"onValueChanged($event)\" (elementClick)=\"onClick($event)\">\n </pep-quantity-selector>\n\n <ng-container *ngSwitchDefault>\n <ng-container *ngIf=\"field.formattedValue?.length > 0; then notEmptyBlock; else emptyBlock\">\n </ng-container>\n <ng-template #notEmptyBlock>\n <ng-container\n *ngIf=\"field.controlType === 'attachment' || field.type === 'link'; then linkBlock; else notLinkBlock\">\n </ng-container>\n <ng-template #linkBlock>\n <a [id]=\"field.key\" class=\"color-link body-sm pep-report-input readonly\"\n *ngIf=\"field.formattedValue != null\" title=\"{{ field.formattedValue }}\" target=\"_blank\"\n href=\"{{ field.value }}\">{{ field.formattedValue }}</a>\n </ng-template>\n <ng-template #notLinkBlock>\n <span [id]=\"field.key\" class=\"body-sm pep-report-input readonly\"\n title=\"{{ field.formattedValue }}\" [ngStyle]=\"{ color: field.textColor }\">{{\n field.formattedValue }}</span>\n </ng-template>\n </ng-template>\n <ng-template #emptyBlock>\n <span>&nbsp;</span>\n </ng-template>\n </ng-container>\n </ng-container>\n </div>\n</ng-template>",
1175
+ template: "<fieldset *ngIf=\"form\" [formGroup]=\"form\" [disabled]=\"isLocked\" class=\"pep-form\"\n [ngStyle]=\"{ 'background-color': layoutType == 'card' && data?.BackgroundColor }\">\n <!-- New Form -->\n <mat-grid-list *ngIf=\"layoutType == 'form'\" [cols]=\"columns\" [rowHeight]=\"rowHeight + 'rem'\"\n [gutterSize]=\"formGutterSize\">\n <mat-grid-tile *ngFor=\"let field of fields$ | async\" [rowspan]=\"field.rowSpan\" [colspan]=\"field.colSpan\">\n <pep-field-generator *ngIf=\"field.controlType != 'placeholder'\" [form]=\"form\" [layoutType]=\"layoutType\"\n [checkForChanges]=\"checkForChanges\" [uid]=\"data?.UID\" [field]=\"field\" [showTitle]=\"showTitle\"\n (valueChange)=\"onValueChanged($event)\" (elementClick)=\"onClick($event)\"\n (internalFormFieldClick)=\"onInternalFormFieldClicked($event)\"\n (internalFormFieldChange)=\"onInternalFormFieldChanged($event)\"\n (formValueChange)=\"onFormValueChanged($event)\" (formFieldClick)=\"onFormFieldClick($event)\"\n (formValidationChange)=\"onFormValidationChanged($event)\">\n </pep-field-generator>\n </mat-grid-tile>\n </mat-grid-list>\n\n <!-- Thumbnails -->\n <mat-grid-list *ngIf=\"layoutType == 'card'\" [cols]=\"columns\" [rowHeight]=\"rowHeight + 'rem'\"\n [gutterSize]=\"cardGutterSize\" class=\"card-spacing\">\n <mat-grid-tile *ngFor=\"let field of fields$ | async\" [rowspan]=\"field.rowSpan\" [colspan]=\"field.colSpan\"\n [ngStyle]=\"{ overflow: field.type == 'qs' ? 'unset' : 'hidden' }\">\n <pep-field-generator *ngIf=\"field.controlType != 'placeholder'\" [form]=\"form\" [layoutType]=\"layoutType\"\n [ngClass]=\"{ 'lock-events': lockEvents }\" [isActive]=\"isActive\" [checkForChanges]=\"checkForChanges\"\n [uid]=\"data?.UID\" [field]=\"field\" [showTitle]=\"showTitle\" (valueChange)=\"onValueChanged($event)\"\n (elementClick)=\"onClick($event)\" (internalFormFieldClick)=\"onInternalFormFieldClicked($event)\"\n (internalFormFieldChange)=\"onInternalFormFieldChanged($event)\"\n (formValueChange)=\"onFormValueChanged($event)\" (formFieldClick)=\"onFormFieldClick($event)\">\n </pep-field-generator>\n </mat-grid-tile>\n </mat-grid-list>\n\n <ng-container *ngIf=\"layoutType == 'table'\">\n <ng-container *ngIf=\"isReport; then reportBlock; else notReportBlock\"></ng-container>\n <ng-template #reportBlock>\n <ng-container *ngTemplateOutlet=\"report\"></ng-container>\n </ng-template>\n <ng-template #notReportBlock>\n <div *ngFor=\"let field of fields$ | async; let j = index\" class=\"pull-left flip table-cell \"\n [ngClass]=\"['text-align-' + field.xAlignment]\" style=\"height: 100%\"\n [ngStyle]=\"{ width: (layout?.ControlFields)[j]?.calcColumnWidthString}\">\n <pep-field-generator *ngIf=\"field.controlType != 'placeholder'\" [checkForChanges]=\"checkForChanges\"\n [uid]=\"data?.UID\" [field]=\"field\" [form]=\"form\" [layoutType]=\"layoutType\" [showTitle]=\"false\"\n (elementClick)=\"onClick($event)\" (valueChange)=\"onValueChanged($event)\"\n (formValueChange)=\"onFormValueChanged($event)\" (formFieldClick)=\"onFormFieldClick($event)\"\n [isActive]=\"isActive\">\n </pep-field-generator>\n </div>\n </ng-template>\n </ng-container>\n\n <!------- For testing ------------\n {{ form.value | json }}\n {{ form.valid }}\n ---------------------------------->\n</fieldset>\n\n<ng-template #report>\n <div *ngFor=\"let field of fields$ | async; let j = index\" class=\"pull-left flip pep-report-fields\"\n [ngStyle]=\"{ width: (layout?.ControlFields)[j]?.calcColumnWidthString }\"\n [ngClass]=\"['text-align-' + field.xAlignment]\">\n <ng-container [ngSwitch]=\"field.controlType\">\n <pep-image *ngSwitchCase=\"'image'\" [uid]=\"data?.UID\" [form]=\"form\" [key]=\"field.key\"\n [src]=\"field.formattedValue\" [srcLarge]=\"field.value\" [options]=\"field.options\" [label]=\"field.label\"\n [mandatory]=\"field.mandatory\" [disabled]=\"field.disabled\" [readonly]=\"field.readonly\"\n [xAlignment]=\"field.xAlignment\" [rowSpan]=\"field.rowSpan\" [layoutType]=\"layoutType\"\n (elementClick)=\"onClick($event)\">\n </pep-image>\n\n <pep-signature *ngSwitchCase=\"'signature'\" [form]=\"form\" [key]=\"field.key\" [src]=\"field.value\"\n [label]=\"field.label\" [mandatory]=\"field.mandatory\" [disabled]=\"field.disabled\"\n [readonly]=\"field.readonly\" [xAlignment]=\"field.xAlignment\" [rowSpan]=\"field.rowSpan\"\n [layoutType]=\"layoutType\">\n </pep-signature>\n\n <pep-checkbox *ngSwitchCase=\"'checkbox'\" [form]=\"form\" [key]=\"field.key\"\n [value]=\"(field.value | lowercase) == 'true' || field.value == '1' ? true : false\" [label]=\"field.label\"\n [type]=\"field.type\" [mandatory]=\"field.mandatory\" [disabled]=\"field.disabled\"\n [readonly]=\"field.readonly\" [xAlignment]=\"field.xAlignment\" [rowSpan]=\"field.rowSpan\"\n [additionalValue]=\"field.additionalValue\" [layoutType]=\"layoutType\">\n </pep-checkbox>\n\n <pep-date *ngSwitchCase=\"'date'\" [form]=\"form\" [key]=\"field.key\" [value]=\"field.value\"\n [formattedValue]=\"field.formattedValue\" [label]=\"field.label\" [type]=\"field.type\"\n [mandatory]=\"field.mandatory\" [disabled]=\"field.disabled\" [readonly]=\"field.readonly\"\n [textColor]=\"field.textColor\" [xAlignment]=\"field.xAlignment\" [rowSpan]=\"field.rowSpan\"\n [minValue]=\"field.minValue\" [maxValue]=\"field.maxValue\" [layoutType]=\"layoutType\">\n </pep-date>\n\n <pep-internal-button *ngSwitchCase=\"'button'\" [form]=\"form\" [key]=\"field.key\" [value]=\"field.value\"\n [formattedValue]=\"field.formattedValue\" [label]=\"field.label\" [type]=\"field.type\"\n [disabled]=\"field.disabled\" [readonly]=\"field.readonly\" [xAlignment]=\"field.xAlignment\"\n [layoutType]=\"layoutType\" (elementClick)=\"onClick($event)\">\n </pep-internal-button>\n\n <pep-textarea *ngSwitchCase=\"'textarea'\" [form]=\"form\" [key]=\"field.key\" [value]=\"field.value\"\n [label]=\"field.label\" [mandatory]=\"field.mandatory\" [disabled]=\"field.disabled\"\n [readonly]=\"field.readonly\" [maxFieldCharacters]=\"field.maxFieldCharacters\"\n [textColor]=\"field.textColor\" [xAlignment]=\"field.xAlignment\" [rowSpan]=\"field.rowSpan\"\n [layoutType]=\"layoutType\">\n </pep-textarea>\n\n <pep-quantity-selector *ngSwitchCase=\"'qs'\" [id]=\"field.key\" [form]=\"form\" [key]=\"field.key\"\n [value]=\"field.value\" [formattedValue]=\"field.formattedValue\" [label]=\"field.label\" [type]=\"field.type\"\n [mandatory]=\"field.mandatory\" [disabled]=\"field.disabled\" [readonly]=\"field.readonly\"\n [textColor]=\"field.textColor\" [xAlignment]=\"field.xAlignment\" [rowSpan]=\"field.rowSpan\"\n [layoutType]=\"layoutType\" (valueChange)=\"onValueChanged($event)\" (elementClick)=\"onClick($event)\">\n </pep-quantity-selector>\n\n <ng-container *ngSwitchDefault>\n <ng-container *ngIf=\"field.formattedValue?.length > 0; then notEmptyBlock; else emptyBlock\">\n </ng-container>\n <ng-template #notEmptyBlock>\n <ng-container\n *ngIf=\"field.controlType === 'attachment' || field.type === 'link'; then linkBlock; else notLinkBlock\">\n </ng-container>\n <ng-template #linkBlock>\n <a [id]=\"field.key\" class=\"color-link body-sm pep-report-input readonly\"\n *ngIf=\"field.formattedValue != null\" title=\"{{ field.formattedValue }}\" target=\"_blank\"\n href=\"{{ field.value }}\">{{ field.formattedValue }}</a>\n </ng-template>\n <ng-template #notLinkBlock>\n <span [id]=\"field.key\" class=\"body-sm pep-report-input readonly\"\n title=\"{{ field.formattedValue }}\" [ngStyle]=\"{ color: field.textColor }\">{{\n field.formattedValue }}</span>\n </ng-template>\n </ng-template>\n <ng-template #emptyBlock>\n <span>&nbsp;</span>\n </ng-template>\n </ng-container>\n </ng-container>\n </div>\n</ng-template>",
1208
1176
  changeDetection: ChangeDetectionStrategy.OnPush,
1209
1177
  styles: [":host{display:grid}"]
1210
1178
  },] }
@@ -1233,9 +1201,9 @@ PepFormComponent.propDecorators = {
1233
1201
  checkForChanges: [{ type: Input }],
1234
1202
  valueChange: [{ type: Output }],
1235
1203
  formValidationChange: [{ type: Output }],
1236
- childClick: [{ type: Output }],
1237
- childChange: [{ type: Output }],
1238
- fieldClick: [{ type: Output }]
1204
+ fieldClick: [{ type: Output }],
1205
+ internalFormFieldClick: [{ type: Output }],
1206
+ internalFormFieldChange: [{ type: Output }]
1239
1207
  };
1240
1208
 
1241
1209
  class PepFieldGeneratorComponent {
@@ -1246,10 +1214,18 @@ class PepFieldGeneratorComponent {
1246
1214
  this.showTitle = true;
1247
1215
  this.checkForChanges = null;
1248
1216
  this.valueChange = new EventEmitter();
1249
- this.childChange = new EventEmitter();
1250
1217
  this.formValidationChange = new EventEmitter();
1251
1218
  this.elementClick = new EventEmitter();
1252
- this.childClick = new EventEmitter();
1219
+ this.internalFormFieldChange = new EventEmitter();
1220
+ this.internalFormFieldClick = new EventEmitter();
1221
+ this.formValueChange = new EventEmitter();
1222
+ this.formFieldClick = new EventEmitter();
1223
+ }
1224
+ set field(value) {
1225
+ this._field = value;
1226
+ }
1227
+ get field() {
1228
+ return this._field;
1253
1229
  }
1254
1230
  get isValid() {
1255
1231
  if (this.field.readonly || this.field.disabled) {
@@ -1301,8 +1277,8 @@ class PepFieldGeneratorComponent {
1301
1277
  };
1302
1278
  this.valueChange.emit(fieldValueChange);
1303
1279
  }
1304
- onChildChanged(childChange) {
1305
- this.childChange.emit(childChange);
1280
+ onInternalFormFieldChanged(internalFormFieldChange) {
1281
+ this.internalFormFieldChange.emit(internalFormFieldChange);
1306
1282
  }
1307
1283
  onFormValidationChanged(formValidationChange) {
1308
1284
  this.formValidationChange.emit(formValidationChange);
@@ -1310,8 +1286,14 @@ class PepFieldGeneratorComponent {
1310
1286
  onClick(fieldClicked) {
1311
1287
  this.elementClick.emit(fieldClicked);
1312
1288
  }
1313
- onChildClick(childClick) {
1314
- this.childClick.emit(childClick);
1289
+ onInternalFormFieldClick(internalFormFieldClick) {
1290
+ this.internalFormFieldClick.emit(internalFormFieldClick);
1291
+ }
1292
+ onFormValueChanged(event) {
1293
+ this.formValueChange.emit(event);
1294
+ }
1295
+ onFormFieldClick(event) {
1296
+ this.formFieldClick.emit(event);
1315
1297
  }
1316
1298
  ngOnChanges(changes) {
1317
1299
  // debugger;
@@ -1322,7 +1304,7 @@ class PepFieldGeneratorComponent {
1322
1304
  PepFieldGeneratorComponent.decorators = [
1323
1305
  { type: Component, args: [{
1324
1306
  selector: 'pep-field-generator',
1325
- template: "<ng-container [ngSwitch]=\"field.controlType\" [formGroup]=\"form\">\n\n <pep-address *ngSwitchCase=\"'address'\" [form]=\"form\" [key]=\"field.key\" [formattedValue]=\"field.formattedValue\"\n [label]=\"field.label\" [mandatory]=\"field.mandatory\" [disabled]=\"field.disabled\" [readonly]=\"field.readonly\"\n [xAlignment]=\"field.xAlignment\" [rowSpan]=\"field.rowSpan\" [groupFields]=\"field.groupFields\"\n [layoutType]=\"layoutType\" [visible]=\"field.visible\" (addressValueChange)=\"onAddressValueChanged($event, field)\">\n </pep-address>\n\n <pep-attachment *ngSwitchCase=\"'attachment'\" [form]=\"form\" [key]=\"field.key\" [src]=\"field.value\"\n [label]=\"field.label\" [mandatory]=\"field.mandatory\" [disabled]=\"field.disabled\" [readonly]=\"field.readonly\"\n [xAlignment]=\"field.xAlignment\" [rowSpan]=\"field.rowSpan\" [isActive]=\"isActive\" [showTitle]=\"showTitle\"\n [layoutType]=\"layoutType\" [visible]=\"field.visible\" (elementClick)=\"onClick($event)\"\n (fileChange)=\"onFileChanged($event, field)\">\n </pep-attachment>\n\n <pep-checkbox *ngSwitchCase=\"'checkbox'\" [form]=\"form\" [key]=\"field.key\"\n [value]=\"(field.value | lowercase) == 'true' || field.value == '1' ? true : false\" [label]=\"field.label\"\n [type]=\"field.type\" [mandatory]=\"field.mandatory\" [disabled]=\"field.disabled\" [readonly]=\"field.readonly\"\n [xAlignment]=\"field.xAlignment\" [rowSpan]=\"field.rowSpan\" [additionalValue]=\"field.additionalValue\"\n [showTitle]=\"showTitle\" [layoutType]=\"layoutType\" [visible]=\"field.visible\"\n (valueChange)=\"onValueChanged($event, field)\" [isActive]=\"isActive\">\n </pep-checkbox>\n\n <pep-date *ngSwitchCase=\"'date'\" [form]=\"form\" [key]=\"field.key\" [value]=\"field.value\"\n [formattedValue]=\"field.formattedValue\" [label]=\"field.label\" [type]=\"field.type\" [mandatory]=\"field.mandatory\"\n [disabled]=\"field.disabled\" [readonly]=\"field.readonly\" [textColor]=\"field.textColor\"\n [xAlignment]=\"field.xAlignment\" [rowSpan]=\"field.rowSpan\" [minValue]=\"field.minValue\"\n [maxValue]=\"field.maxValue\" [showTitle]=\"showTitle\" [layoutType]=\"layoutType\" [visible]=\"field.visible\"\n (valueChange)=\"onValueChanged($event, field)\" [isActive]=\"isActive\">\n </pep-date>\n\n <pep-images-filmstrip *ngSwitchCase=\"'images'\" [uid]=\"uid\" [form]=\"form\" [key]=\"field.key\" [label]=\"field.label\"\n [showTitle]=\"showTitle\" [rowSpan]=\"field.rowSpan\" [value]=\"field.value\" [layoutType]=\"layoutType\">\n </pep-images-filmstrip>\n\n <pep-image *ngSwitchCase=\"'image'\" [uid]=\"uid\" [form]=\"form\" [key]=\"field.key\" [src]=\"field.formattedValue\"\n [srcLarge]=\"field.value\" [options]=\"field.options\" [label]=\"field.label\" [mandatory]=\"field.mandatory\"\n [disabled]=\"field.disabled\" [readonly]=\"field.readonly\" [xAlignment]=\"field.xAlignment\"\n [rowSpan]=\"field.rowSpan\" [indicatorsField]=\"field.indicatorsField\" [menuField]=\"field.menuField\"\n [hasCampaignField]=\"field.hasCampaignField\" [sizeLimitMB]=\"field.sizeLimitMB\" [isActive]=\"isActive\"\n [layoutType]=\"layoutType\" [visible]=\"field.visible\" (elementClick)=\"onClick($event)\"\n (fileChange)=\"onFileChanged($event, field)\">\n </pep-image>\n\n <pep-quantity-selector *ngSwitchCase=\"'qs'\" [form]=\"form\" [key]=\"field.key\" [value]=\"field.value\"\n [formattedValue]=\"field.formattedValue\" [label]=\"field.label\" [type]=\"field.type\" [mandatory]=\"field.mandatory\"\n [disabled]=\"field.disabled\" [readonly]=\"field.readonly\" [textColor]=\"field.textColor\"\n [xAlignment]=\"field.xAlignment\" [rowSpan]=\"field.rowSpan\" [allowDecimal]=\"field.allowDecimal\"\n [additionalValue]=\"field.additionalValue\" [notificationInfo]=\"field.notificationInfo\" [isActive]=\"isActive\"\n [layoutType]=\"layoutType\" [showTitle]=\"showTitle\" [visible]=\"field.visible\"\n (valueChange)=\"onValueChanged($event, field)\" (formValidationChange)=\"onFormValidationChanged($event)\"\n (elementClick)=\"onClick($event)\">\n </pep-quantity-selector>\n\n <pep-rich-html-textarea *ngSwitchCase=\"'richhtmltextarea'\" [form]=\"form\" [key]=\"field.key\" [value]=\"field.value\"\n [label]=\"field.label\" [mandatory]=\"field.mandatory\" [disabled]=\"field.disabled\" [readonly]=\"field.readonly\"\n [maxFieldCharacters]=\"field.maxFieldCharacters\" [xAlignment]=\"field.xAlignment\" [rowSpan]=\"field.rowSpan\"\n [showTitle]=\"showTitle\" [layoutType]=\"layoutType\" [visible]=\"field.visible\"\n (valueChange)=\"onValueChanged($event, field)\" [isActive]=\"isActive\">\n </pep-rich-html-textarea>\n\n <pep-select *ngSwitchCase=\"'select'\" [form]=\"form\" [key]=\"field.key\" [value]=\"field.value\" [label]=\"field.label\"\n [type]=\"field.type\" [mandatory]=\"field.mandatory\" [disabled]=\"field.disabled\" [readonly]=\"field.readonly\"\n [xAlignment]=\"field.xAlignment\" [rowSpan]=\"field.rowSpan\" [options]=\"field.options\" [showTitle]=\"showTitle\"\n [layoutType]=\"layoutType\" [visible]=\"field.visible\" (valueChange)=\"onValueChanged($event, field)\"\n (formValidationChange)=\"onFormValidationChanged($event)\" [isActive]=\"isActive\">\n </pep-select>\n\n <pep-separator *ngSwitchCase=\"'separator'\" [form]=\"form\" [key]=\"field.key\" [label]=\"field.label\"\n [xAlignment]=\"field.xAlignment\" [layoutType]=\"layoutType\" [visible]=\"field.visible\">\n </pep-separator>\n\n <pep-signature *ngSwitchCase=\"'signature'\" [form]=\"form\" [key]=\"field.key\" [src]=\"field.value\" [label]=\"field.label\"\n [mandatory]=\"field.mandatory\" [disabled]=\"field.disabled\" [readonly]=\"field.readonly\"\n [xAlignment]=\"field.xAlignment\" [rowSpan]=\"field.rowSpan\" [isActive]=\"isActive\" [layoutType]=\"layoutType\"\n [visible]=\"field.visible\" (fileChange)=\"onFileChanged($event, field)\">\n </pep-signature>\n\n <pep-textarea *ngSwitchCase=\"'textarea'\" [form]=\"form\" [key]=\"field.key\" [value]=\"field.value\" [label]=\"field.label\"\n [mandatory]=\"field.mandatory\" [disabled]=\"field.disabled\" [readonly]=\"field.readonly\"\n [maxFieldCharacters]=\"field.maxFieldCharacters\" [textColor]=\"field.textColor\" [xAlignment]=\"field.xAlignment\"\n [rowSpan]=\"field.rowSpan\" [showTitle]=\"showTitle\" [layoutType]=\"layoutType\" [visible]=\"field.visible\"\n (valueChange)=\"onValueChanged($event, field)\" [isActive]=\"isActive\">\n </pep-textarea>\n\n <pep-textbox *ngSwitchCase=\"'textbox'\" [form]=\"form\" [key]=\"field.key\" [value]=\"field.value\"\n [formattedValue]=\"field.formattedValue\" [label]=\"field.label\" [placeholder]=\"field.placeholder\"\n [type]=\"field.type\" [mandatory]=\"field.mandatory\" [disabled]=\"field.disabled\" [readonly]=\"field.readonly\"\n [maxFieldCharacters]=\"field.maxFieldCharacters\" [textColor]=\"field.textColor\" [xAlignment]=\"field.xAlignment\"\n [rowSpan]=\"field.rowSpan\" [showTitle]=\"showTitle\" [layoutType]=\"layoutType\"\n (valueChange)=\"onValueChanged($event, field)\" (formValidationChange)=\"onFormValidationChanged($event)\"\n [isActive]=\"isActive\" [visible]=\"field.visible\">\n </pep-textbox>\n\n <pep-indicators *ngSwitchCase=\"'indicators'\" [key]=\"field.key\" [value]=\"field.value\" [layoutType]=\"layoutType\">\n </pep-indicators>\n <pep-internal-button *ngSwitchCase=\"'button'\" [form]=\"form\" [key]=\"field.key\" [value]=\"field.value\"\n [formattedValue]=\"field.formattedValue\" [label]=\"field.label\"\n [referenceObjectInternalType]=\"field.referenceObjectInternalType\" [type]=\"field.type\"\n [disabled]=\"field.disabled\" [readonly]=\"field.readonly\" [xAlignment]=\"field.xAlignment\"\n [layoutType]=\"layoutType\" [visible]=\"field.visible\" (elementClick)=\"onClick($event)\"\n (valueChange)=\"onValueChanged($event, field)\">\n </pep-internal-button>\n <pep-internal-menu *ngSwitchCase=\"'menu'\" [key]=\"field.key\" [label]=\"field.label\" [disabled]=\"field.disabled\"\n [xAlignment]=\"field.xAlignment\" [options]=\"field.options\" [layoutType]=\"layoutType\"\n (elementClick)=\"onClick($event)\">\n </pep-internal-menu>\n <pep-internal-page *ngSwitchCase=\"'internalPage'\" [field]=\"field\" [layoutType]=\"layoutType\"\n (childClick)=\"onChildClick($event)\" (childChange)=\"onChildChanged($event)\">\n </pep-internal-page>\n\n <pep-internal-carusel *ngSwitchCase=\"'internalCarusel'\" [field]=\"field\"></pep-internal-carusel>\n\n <ng-container *ngSwitchCase=\"'placeholder'\">\n </ng-container>\n</ng-container>",
1307
+ template: "<ng-container [ngSwitch]=\"field.controlType\" [formGroup]=\"form\">\n\n <pep-address *ngSwitchCase=\"'address'\" [form]=\"form\" [key]=\"field.key\" [formattedValue]=\"field.formattedValue\"\n [label]=\"field.label\" [mandatory]=\"field.mandatory\" [disabled]=\"field.disabled\" [readonly]=\"field.readonly\"\n [xAlignment]=\"field.xAlignment\" [rowSpan]=\"field.rowSpan\" [groupFields]=\"field.groupFields\"\n [layoutType]=\"layoutType\" [visible]=\"field.visible\" (addressValueChange)=\"onAddressValueChanged($event, field)\">\n </pep-address>\n\n <pep-attachment *ngSwitchCase=\"'attachment'\" [form]=\"form\" [key]=\"field.key\" [src]=\"field.value\"\n [label]=\"field.label\" [mandatory]=\"field.mandatory\" [disabled]=\"field.disabled\" [readonly]=\"field.readonly\"\n [xAlignment]=\"field.xAlignment\" [rowSpan]=\"field.rowSpan\" [isActive]=\"isActive\" [showTitle]=\"showTitle\"\n [layoutType]=\"layoutType\" [visible]=\"field.visible\" (elementClick)=\"onClick($event)\"\n (fileChange)=\"onFileChanged($event, field)\">\n </pep-attachment>\n\n <pep-checkbox *ngSwitchCase=\"'checkbox'\" [form]=\"form\" [key]=\"field.key\"\n [value]=\"(field.value | lowercase) == 'true' || field.value == '1' ? true : false\" [label]=\"field.label\"\n [type]=\"field.type\" [mandatory]=\"field.mandatory\" [disabled]=\"field.disabled\" [readonly]=\"field.readonly\"\n [xAlignment]=\"field.xAlignment\" [rowSpan]=\"field.rowSpan\" [additionalValue]=\"field.additionalValue\"\n [showTitle]=\"showTitle\" [layoutType]=\"layoutType\" [visible]=\"field.visible\"\n (valueChange)=\"onValueChanged($event, field)\" [isActive]=\"isActive\">\n </pep-checkbox>\n\n <pep-date *ngSwitchCase=\"'date'\" [form]=\"form\" [key]=\"field.key\" [value]=\"field.value\"\n [formattedValue]=\"field.formattedValue\" [label]=\"field.label\" [type]=\"field.type\" [mandatory]=\"field.mandatory\"\n [disabled]=\"field.disabled\" [readonly]=\"field.readonly\" [textColor]=\"field.textColor\"\n [xAlignment]=\"field.xAlignment\" [rowSpan]=\"field.rowSpan\" [minValue]=\"field.minValue\"\n [maxValue]=\"field.maxValue\" [showTitle]=\"showTitle\" [layoutType]=\"layoutType\" [visible]=\"field.visible\"\n (valueChange)=\"onValueChanged($event, field)\" [isActive]=\"isActive\">\n </pep-date>\n\n <pep-images-filmstrip *ngSwitchCase=\"'images'\" [uid]=\"uid\" [form]=\"form\" [key]=\"field.key\" [label]=\"field.label\"\n [showTitle]=\"showTitle\" [rowSpan]=\"field.rowSpan\" [value]=\"field.value\" [layoutType]=\"layoutType\">\n </pep-images-filmstrip>\n\n <pep-image *ngSwitchCase=\"'image'\" [uid]=\"uid\" [form]=\"form\" [key]=\"field.key\" [src]=\"field.formattedValue\"\n [srcLarge]=\"field.value\" [options]=\"field.options\" [label]=\"field.label\" [mandatory]=\"field.mandatory\"\n [disabled]=\"field.disabled\" [readonly]=\"field.readonly\" [xAlignment]=\"field.xAlignment\"\n [rowSpan]=\"field.rowSpan\" [indicatorsField]=\"field.indicatorsField\" [menuField]=\"field.menuField\"\n [hasCampaignField]=\"field.hasCampaignField\" [sizeLimitMB]=\"field.sizeLimitMB\" [isActive]=\"isActive\"\n [layoutType]=\"layoutType\" [visible]=\"field.visible\" (elementClick)=\"onClick($event)\"\n (fileChange)=\"onFileChanged($event, field)\">\n </pep-image>\n\n <pep-quantity-selector *ngSwitchCase=\"'qs'\" [form]=\"form\" [key]=\"field.key\" [value]=\"field.value\"\n [formattedValue]=\"field.formattedValue\" [label]=\"field.label\" [type]=\"field.type\" [mandatory]=\"field.mandatory\"\n [disabled]=\"field.disabled\" [readonly]=\"field.readonly\" [textColor]=\"field.textColor\"\n [xAlignment]=\"field.xAlignment\" [rowSpan]=\"field.rowSpan\" [allowDecimal]=\"field.allowDecimal\"\n [additionalValue]=\"field.additionalValue\" [notificationInfo]=\"field.notificationInfo\" [isActive]=\"isActive\"\n [layoutType]=\"layoutType\" [showTitle]=\"showTitle\" [visible]=\"field.visible\"\n (valueChange)=\"onValueChanged($event, field)\" (formValidationChange)=\"onFormValidationChanged($event)\"\n (elementClick)=\"onClick($event)\">\n </pep-quantity-selector>\n\n <pep-rich-html-textarea *ngSwitchCase=\"'richhtmltextarea'\" [form]=\"form\" [key]=\"field.key\" [value]=\"field.value\"\n [label]=\"field.label\" [mandatory]=\"field.mandatory\" [disabled]=\"field.disabled\" [readonly]=\"field.readonly\"\n [maxFieldCharacters]=\"field.maxFieldCharacters\" [xAlignment]=\"field.xAlignment\" [rowSpan]=\"field.rowSpan\"\n [showTitle]=\"showTitle\" [layoutType]=\"layoutType\" [visible]=\"field.visible\"\n (valueChange)=\"onValueChanged($event, field)\" [isActive]=\"isActive\">\n </pep-rich-html-textarea>\n\n <pep-select *ngSwitchCase=\"'select'\" [form]=\"form\" [key]=\"field.key\" [value]=\"field.value\" [label]=\"field.label\"\n [type]=\"field.type\" [mandatory]=\"field.mandatory\" [disabled]=\"field.disabled\" [readonly]=\"field.readonly\"\n [xAlignment]=\"field.xAlignment\" [rowSpan]=\"field.rowSpan\" [options]=\"field.options\" [showTitle]=\"showTitle\"\n [layoutType]=\"layoutType\" [visible]=\"field.visible\" (valueChange)=\"onValueChanged($event, field)\"\n (formValidationChange)=\"onFormValidationChanged($event)\" [isActive]=\"isActive\">\n </pep-select>\n\n <pep-separator *ngSwitchCase=\"'separator'\" [form]=\"form\" [key]=\"field.key\" [label]=\"field.label\"\n [xAlignment]=\"field.xAlignment\" [layoutType]=\"layoutType\" [visible]=\"field.visible\">\n </pep-separator>\n\n <pep-signature *ngSwitchCase=\"'signature'\" [form]=\"form\" [key]=\"field.key\" [src]=\"field.value\" [label]=\"field.label\"\n [mandatory]=\"field.mandatory\" [disabled]=\"field.disabled\" [readonly]=\"field.readonly\"\n [xAlignment]=\"field.xAlignment\" [rowSpan]=\"field.rowSpan\" [isActive]=\"isActive\" [layoutType]=\"layoutType\"\n [visible]=\"field.visible\" (fileChange)=\"onFileChanged($event, field)\">\n </pep-signature>\n\n <pep-textarea *ngSwitchCase=\"'textarea'\" [form]=\"form\" [key]=\"field.key\" [value]=\"field.value\" [label]=\"field.label\"\n [mandatory]=\"field.mandatory\" [disabled]=\"field.disabled\" [readonly]=\"field.readonly\"\n [maxFieldCharacters]=\"field.maxFieldCharacters\" [textColor]=\"field.textColor\" [xAlignment]=\"field.xAlignment\"\n [rowSpan]=\"field.rowSpan\" [showTitle]=\"showTitle\" [layoutType]=\"layoutType\" [visible]=\"field.visible\"\n (valueChange)=\"onValueChanged($event, field)\" [isActive]=\"isActive\">\n </pep-textarea>\n\n <pep-textbox *ngSwitchCase=\"'textbox'\" [form]=\"form\" [key]=\"field.key\" [value]=\"field.value\"\n [formattedValue]=\"field.formattedValue\" [label]=\"field.label\" [placeholder]=\"field.placeholder\"\n [type]=\"field.type\" [mandatory]=\"field.mandatory\" [disabled]=\"field.disabled\" [readonly]=\"field.readonly\"\n [maxFieldCharacters]=\"field.maxFieldCharacters\" [textColor]=\"field.textColor\" [xAlignment]=\"field.xAlignment\"\n [rowSpan]=\"field.rowSpan\" [showTitle]=\"showTitle\" [layoutType]=\"layoutType\"\n (valueChange)=\"onValueChanged($event, field)\" (formValidationChange)=\"onFormValidationChanged($event)\"\n [isActive]=\"isActive\" [visible]=\"field.visible\">\n </pep-textbox>\n\n <pep-indicators *ngSwitchCase=\"'indicators'\" [key]=\"field.key\" [value]=\"field.value\" [layoutType]=\"layoutType\">\n </pep-indicators>\n <pep-internal-button *ngSwitchCase=\"'button'\" [form]=\"form\" [key]=\"field.key\" [value]=\"field.value\"\n [formattedValue]=\"field.formattedValue\" [label]=\"field.label\"\n [referenceObjectInternalType]=\"field.referenceObjectInternalType\" [type]=\"field.type\"\n [disabled]=\"field.disabled\" [readonly]=\"field.readonly\" [xAlignment]=\"field.xAlignment\"\n [layoutType]=\"layoutType\" [visible]=\"field.visible\" (elementClick)=\"onClick($event)\"\n (valueChange)=\"onValueChanged($event, field)\">\n </pep-internal-button>\n <pep-internal-menu *ngSwitchCase=\"'menu'\" [key]=\"field.key\" [label]=\"field.label\" [disabled]=\"field.disabled\"\n [xAlignment]=\"field.xAlignment\" [options]=\"field.options\" [layoutType]=\"layoutType\"\n (elementClick)=\"onClick($event)\">\n </pep-internal-menu>\n <pep-internal-page *ngSwitchCase=\"'internalPage'\" [field]=\"field\" [layoutType]=\"layoutType\"\n (internalFormFieldClick)=\"onInternalFormFieldClick($event)\"\n (internalFormFieldChange)=\"onInternalFormFieldChanged($event)\">\n </pep-internal-page>\n\n <pep-internal-carusel *ngSwitchCase=\"'internalCarusel'\" [field]=\"field\"\n (internalFormFieldClick)=\"onInternalFormFieldClick($event)\"\n (internalFormFieldChange)=\"onInternalFormFieldChanged($event)\">\n </pep-internal-carusel>\n\n <ng-container *ngSwitchCase=\"'placeholder'\">\n </ng-container>\n</ng-container>",
1326
1308
  encapsulation: ViewEncapsulation.Emulated,
1327
1309
  changeDetection: ChangeDetectionStrategy.OnPush,
1328
1310
  styles: [":host{width:100%;height:100%}"]
@@ -1337,10 +1319,12 @@ PepFieldGeneratorComponent.propDecorators = {
1337
1319
  showTitle: [{ type: Input }],
1338
1320
  checkForChanges: [{ type: Input }],
1339
1321
  valueChange: [{ type: Output }],
1340
- childChange: [{ type: Output }],
1341
1322
  formValidationChange: [{ type: Output }],
1342
1323
  elementClick: [{ type: Output }],
1343
- childClick: [{ type: Output }]
1324
+ internalFormFieldChange: [{ type: Output }],
1325
+ internalFormFieldClick: [{ type: Output }],
1326
+ formValueChange: [{ type: Output }],
1327
+ formFieldClick: [{ type: Output }]
1344
1328
  };
1345
1329
 
1346
1330
  class PepIndicatorsComponent {
@@ -2198,8 +2182,8 @@ class PepInternalPageComponent {
2198
2182
  this.changeDetectorRef = changeDetectorRef;
2199
2183
  this.controlType = 'internalPage';
2200
2184
  this.layoutType = 'form';
2201
- this.childChange = new EventEmitter();
2202
- this.childClick = new EventEmitter();
2185
+ this.internalFormFieldChange = new EventEmitter();
2186
+ this.internalFormFieldClick = new EventEmitter();
2203
2187
  this.checkForChanges = null;
2204
2188
  this.childData = null;
2205
2189
  this.totalsRow = [];
@@ -2468,7 +2452,7 @@ class PepInternalPageComponent {
2468
2452
  this.setTotalsRow();
2469
2453
  this.checkForChanges = new Date();
2470
2454
  // DI-15985
2471
- this.childChange.emit(res);
2455
+ this.internalFormFieldChange.emit(res);
2472
2456
  this.changeDetectorRef.markForCheck();
2473
2457
  }
2474
2458
  onCustomizeObjectChanged(customizeObjectChangedData) {
@@ -2494,7 +2478,7 @@ class PepInternalPageComponent {
2494
2478
  }
2495
2479
  }
2496
2480
  if (!handledEvent) {
2497
- this.childClick.emit(fieldClickEvent);
2481
+ this.internalFormFieldClick.emit(fieldClickEvent);
2498
2482
  }
2499
2483
  }
2500
2484
  }
@@ -2519,8 +2503,8 @@ PepInternalPageComponent.ctorParameters = () => [
2519
2503
  PepInternalPageComponent.propDecorators = {
2520
2504
  field: [{ type: Input }],
2521
2505
  layoutType: [{ type: Input }],
2522
- childChange: [{ type: Output }],
2523
- childClick: [{ type: Output }],
2506
+ internalFormFieldChange: [{ type: Output }],
2507
+ internalFormFieldClick: [{ type: Output }],
2524
2508
  my1mm: [{ type: ViewChild, args: ['my1mm',] }],
2525
2509
  mainViewCont: [{ type: ViewChild, args: ['mainViewCont',] }],
2526
2510
  orgCont: [{ type: ViewChild, args: ['orgCont', { read: ViewContainerRef },] }],
@@ -2533,19 +2517,19 @@ PepInternalPageComponent.propDecorators = {
2533
2517
  class PepInternalCaruselService {
2534
2518
  constructor(httpService) {
2535
2519
  this.httpService = httpService;
2536
- this.parentId = '0';
2537
- this.additionalApiName = '';
2538
- this.transactionUrl = 'Service1.svc/v1/OrderCenter/Transaction/';
2539
- }
2540
- initCarusel(objectId, searchCode, callbackFunc) {
2541
- if (!objectId) {
2542
- return;
2543
- }
2544
- this.objectId = objectId;
2545
- this.searchCode = searchCode;
2546
- this.httpService
2547
- .getWapiApiCall(`${this.transactionUrl}${this.objectId}/CaruselItems`)
2548
- .subscribe((res) => {
2520
+ this.eventUrl = 'Service1.svc/v1/EmitEvent';
2521
+ }
2522
+ emitEvent(uiObjectKey, fieldKey, fieldValue, eventName, callbackFunc) {
2523
+ const body = {
2524
+ 'EventKey': eventName,
2525
+ 'EventData': JSON.stringify({
2526
+ UIObjectKey: uiObjectKey,
2527
+ FieldID: fieldKey,
2528
+ Value: fieldValue
2529
+ })
2530
+ };
2531
+ this.httpService.postWapiApiCall(`${this.eventUrl}`, body).subscribe((res) => {
2532
+ console.log(res);
2549
2533
  callbackFunc(res);
2550
2534
  }
2551
2535
  // (error) => {},
@@ -2566,10 +2550,8 @@ class PepInternalCaruselComponent {
2566
2550
  this.layoutService = layoutService;
2567
2551
  this.internalCaruselService = internalCaruselService;
2568
2552
  this.layoutType = 'form';
2569
- // @Output()
2570
- // formValueChange: EventEmitter<IPepFormFieldValueChangeEvent> = new EventEmitter<IPepFormFieldValueChangeEvent>();
2571
- // @Output()
2572
- // formFieldClick: EventEmitter<IPepFormFieldClickEvent> = new EventEmitter<IPepFormFieldClickEvent>();
2553
+ this.internalFormFieldChange = new EventEmitter();
2554
+ this.internalFormFieldClick = new EventEmitter();
2573
2555
  this._items = null;
2574
2556
  this.layout = null;
2575
2557
  this.duration = 1000;
@@ -2578,6 +2560,17 @@ class PepInternalCaruselComponent {
2578
2560
  this.nextDisabled = false;
2579
2561
  this.PepScreenSizeType = PepScreenSizeType;
2580
2562
  }
2563
+ set field(value) {
2564
+ this._field = value;
2565
+ const caruselField = this._field;
2566
+ if (caruselField && caruselField.pageInfo) {
2567
+ this.layout = caruselField.pageInfo.UIControl;
2568
+ this.items = caruselField.pageInfo.Rows;
2569
+ }
2570
+ }
2571
+ get field() {
2572
+ return this._field;
2573
+ }
2581
2574
  set items(value) {
2582
2575
  this._items = value;
2583
2576
  // this.moveTo(0);
@@ -2586,17 +2579,6 @@ class PepInternalCaruselComponent {
2586
2579
  return this._items;
2587
2580
  }
2588
2581
  ngOnInit() {
2589
- // this.internalCaruselService.initCarusel(
2590
- // this.field.objectId,
2591
- // this.field.searchCode,
2592
- // (caruselItems: any) => {
2593
- const caruselField = this.field;
2594
- if (caruselField) {
2595
- this.layout = caruselField.pageInfo.UIControl;
2596
- this.items = caruselField.pageInfo.Rows;
2597
- }
2598
- // }
2599
- // );
2600
2582
  }
2601
2583
  ngAfterViewInit() {
2602
2584
  this.layoutService.onResize$.subscribe((size) => {
@@ -2604,10 +2586,30 @@ class PepInternalCaruselComponent {
2604
2586
  });
2605
2587
  }
2606
2588
  onCustomizeObjectChanged(customizeObjectChangedData) {
2607
- // this.formValueChange.emit(customizeObjectChangedData);
2589
+ this.internalCaruselService.emitEvent(customizeObjectChangedData.uiObjectKey, customizeObjectChangedData.key, customizeObjectChangedData.value, 'SetFieldValue', () => {
2590
+ this.internalFormFieldChange.emit(customizeObjectChangedData);
2591
+ });
2608
2592
  }
2609
2593
  onCustomizeFieldClick(fieldClickEvent) {
2610
- // this.formFieldClick.emit(fieldClickEvent);
2594
+ let handledEvent = false;
2595
+ // For the new custom form, the plus and minus events transform in the IPepFormFieldValueChangeEvent
2596
+ if (fieldClickEvent.controlType === 'qs') {
2597
+ if (fieldClickEvent.value === PepQuantitySelectorComponent.PLUS) {
2598
+ handledEvent = true;
2599
+ this.internalCaruselService.emitEvent(fieldClickEvent.uiObjectKey, fieldClickEvent.key, '', 'IncrementFieldValue', () => {
2600
+ this.internalFormFieldChange.emit({});
2601
+ });
2602
+ }
2603
+ else if (fieldClickEvent.value === PepQuantitySelectorComponent.MINUS) {
2604
+ handledEvent = true;
2605
+ this.internalCaruselService.emitEvent(fieldClickEvent.uiObjectKey, fieldClickEvent.key, '', 'DecrementFieldValue', () => {
2606
+ this.internalFormFieldChange.emit({});
2607
+ });
2608
+ }
2609
+ }
2610
+ if (!handledEvent) {
2611
+ this.internalFormFieldClick.emit(fieldClickEvent);
2612
+ }
2611
2613
  }
2612
2614
  moveLeft() {
2613
2615
  const indexToMove = Math.max(this.carousel.currIndex - this.itemsToMove, 0);
@@ -2646,3136 +2648,10 @@ PepInternalCaruselComponent.ctorParameters = () => [
2646
2648
  PepInternalCaruselComponent.propDecorators = {
2647
2649
  carousel: [{ type: ViewChild, args: ['carousel', { read: PepCarouselComponent },] }],
2648
2650
  field: [{ type: Input }],
2649
- layoutType: [{ type: Input }]
2650
- };
2651
- // const TempRelatedItems = {
2652
- // "Rows": [
2653
- // {
2654
- // "AdditionalData": null,
2655
- // "BackgroundColor": "",
2656
- // "Fields": [
2657
- // {
2658
- // "Accessory": "",
2659
- // "AdditionalValue": "",
2660
- // "ApiName": "ItemTSAType",
2661
- // "BackgroundColor": "",
2662
- // "Enabled": false,
2663
- // "EventsData": null,
2664
- // "FieldType": 1,
2665
- // "FormattedValue": "Accessories",
2666
- // "GroupFields": null,
2667
- // "Highlighted": false,
2668
- // "NotificationInfo": "",
2669
- // "OptionalValues": [],
2670
- // "ReferenceObjectInternalType": "",
2671
- // "ReferenceObjectSubType": "",
2672
- // "ReferenceObjectType": 2129893312,
2673
- // "TextColor": "",
2674
- // "UiPageKey": "",
2675
- // "Value": "Accessories",
2676
- // "Visible": true
2677
- // },
2678
- // {
2679
- // "Accessory": "",
2680
- // "AdditionalValue": "",
2681
- // "ApiName": "ObjectMenu",
2682
- // "BackgroundColor": "",
2683
- // "Enabled": true,
2684
- // "EventsData": null,
2685
- // "FieldType": 17,
2686
- // "FormattedValue": "",
2687
- // "GroupFields": null,
2688
- // "Highlighted": false,
2689
- // "NotificationInfo": "",
2690
- // "OptionalValues": [],
2691
- // "ReferenceObjectInternalType": "",
2692
- // "ReferenceObjectSubType": "",
2693
- // "ReferenceObjectType": 0,
2694
- // "TextColor": "",
2695
- // "UiPageKey": "",
2696
- // "Value": "",
2697
- // "Visible": true
2698
- // },
2699
- // {
2700
- // "Accessory": "",
2701
- // "AdditionalValue": "",
2702
- // "ApiName": "TSARelteadItems",
2703
- // "BackgroundColor": "",
2704
- // "Enabled": true,
2705
- // "EventsData": null,
2706
- // "FieldType": 1,
2707
- // "FormattedValue": "[\"56d8015b-705c-4a1d-9db9-8926fad4bc48\",\"32fca2a8-9882-44e3-a9e2-fb98d4282529\",\"a76fad1a-0143-449f-9553-fa85a11d7e81\",\"f2c6c4c6-b33c-47e1-86a4-57ed5edb757a\",\"e77f883f-92b0-41ef-80fb-806bfb375b6a\"]",
2708
- // "GroupFields": null,
2709
- // "Highlighted": false,
2710
- // "NotificationInfo": "",
2711
- // "OptionalValues": [],
2712
- // "ReferenceObjectInternalType": "",
2713
- // "ReferenceObjectSubType": "",
2714
- // "ReferenceObjectType": 0,
2715
- // "TextColor": "",
2716
- // "UiPageKey": "",
2717
- // "Value": "[\"56d8015b-705c-4a1d-9db9-8926fad4bc48\",\"32fca2a8-9882-44e3-a9e2-fb98d4282529\",\"a76fad1a-0143-449f-9553-fa85a11d7e81\",\"f2c6c4c6-b33c-47e1-86a4-57ed5edb757a\",\"e77f883f-92b0-41ef-80fb-806bfb375b6a\"]",
2718
- // "Visible": true
2719
- // },
2720
- // {
2721
- // "Accessory": "",
2722
- // "AdditionalValue": "",
2723
- // "ApiName": "Image",
2724
- // "BackgroundColor": "",
2725
- // "Enabled": false,
2726
- // "EventsData": null,
2727
- // "FieldType": 27,
2728
- // "FormattedValue": "https://cdn.pepperi.com/WrntyImages/30013636/PortfolioItems/6/65147316_1.jpg?ft=1",
2729
- // "GroupFields": null,
2730
- // "Highlighted": false,
2731
- // "NotificationInfo": "",
2732
- // "OptionalValues": [],
2733
- // "ReferenceObjectInternalType": "",
2734
- // "ReferenceObjectSubType": "",
2735
- // "ReferenceObjectType": -1,
2736
- // "TextColor": "",
2737
- // "UiPageKey": "",
2738
- // "Value": "https://cdn.pepperi.com/WrntyImages/30013636/PortfolioItems/6/65147316_1.jpg?ft=1",
2739
- // "Visible": true
2740
- // },
2741
- // {
2742
- // "Accessory": "",
2743
- // "AdditionalValue": "",
2744
- // "ApiName": "ItemName",
2745
- // "BackgroundColor": "",
2746
- // "Enabled": false,
2747
- // "EventsData": null,
2748
- // "FieldType": 1,
2749
- // "FormattedValue": "Wool Hat",
2750
- // "GroupFields": null,
2751
- // "Highlighted": false,
2752
- // "NotificationInfo": "",
2753
- // "OptionalValues": [],
2754
- // "ReferenceObjectInternalType": "",
2755
- // "ReferenceObjectSubType": "",
2756
- // "ReferenceObjectType": 2129890288,
2757
- // "TextColor": "",
2758
- // "UiPageKey": "",
2759
- // "Value": "Wool Hat",
2760
- // "Visible": true
2761
- // },
2762
- // {
2763
- // "Accessory": "",
2764
- // "AdditionalValue": "",
2765
- // "ApiName": "ItemExternalID",
2766
- // "BackgroundColor": "",
2767
- // "Enabled": false,
2768
- // "EventsData": null,
2769
- // "FieldType": 1,
2770
- // "FormattedValue": "HT3002",
2771
- // "GroupFields": null,
2772
- // "Highlighted": false,
2773
- // "NotificationInfo": "",
2774
- // "OptionalValues": [],
2775
- // "ReferenceObjectInternalType": "",
2776
- // "ReferenceObjectSubType": "",
2777
- // "ReferenceObjectType": 0,
2778
- // "TextColor": "",
2779
- // "UiPageKey": "",
2780
- // "Value": "HT3002",
2781
- // "Visible": true
2782
- // },
2783
- // {
2784
- // "Accessory": "$",
2785
- // "AdditionalValue": "",
2786
- // "ApiName": "ItemPrice",
2787
- // "BackgroundColor": "",
2788
- // "Enabled": false,
2789
- // "EventsData": null,
2790
- // "FieldType": 9,
2791
- // "FormattedValue": "$23.00",
2792
- // "GroupFields": null,
2793
- // "Highlighted": false,
2794
- // "NotificationInfo": "",
2795
- // "OptionalValues": [],
2796
- // "ReferenceObjectInternalType": "",
2797
- // "ReferenceObjectSubType": "",
2798
- // "ReferenceObjectType": 2129896912,
2799
- // "TextColor": "",
2800
- // "UiPageKey": "",
2801
- // "Value": "23.0000",
2802
- // "Visible": true
2803
- // },
2804
- // {
2805
- // "Accessory": "",
2806
- // "AdditionalValue": "",
2807
- // "ApiName": "UnitsQuantity",
2808
- // "BackgroundColor": "",
2809
- // "Enabled": true,
2810
- // "EventsData": null,
2811
- // "FieldType": 28,
2812
- // "FormattedValue": "0",
2813
- // "GroupFields": null,
2814
- // "Highlighted": false,
2815
- // "NotificationInfo": "",
2816
- // "OptionalValues": [],
2817
- // "ReferenceObjectInternalType": "",
2818
- // "ReferenceObjectSubType": "",
2819
- // "ReferenceObjectType": 0,
2820
- // "TextColor": "",
2821
- // "UiPageKey": "",
2822
- // "Value": "0.0000",
2823
- // "Visible": true
2824
- // },
2825
- // {
2826
- // "Accessory": "",
2827
- // "AdditionalValue": "",
2828
- // "ApiName": "ItemTSASeason",
2829
- // "BackgroundColor": "",
2830
- // "Enabled": false,
2831
- // "EventsData": null,
2832
- // "FieldType": 1,
2833
- // "FormattedValue": "Fall",
2834
- // "GroupFields": null,
2835
- // "Highlighted": false,
2836
- // "NotificationInfo": "",
2837
- // "OptionalValues": [],
2838
- // "ReferenceObjectInternalType": "",
2839
- // "ReferenceObjectSubType": "",
2840
- // "ReferenceObjectType": 0,
2841
- // "TextColor": "",
2842
- // "UiPageKey": "",
2843
- // "Value": "Fall",
2844
- // "Visible": true
2845
- // },
2846
- // {
2847
- // "Accessory": "",
2848
- // "AdditionalValue": "",
2849
- // "ApiName": "ItemTSAPackaging",
2850
- // "BackgroundColor": "",
2851
- // "Enabled": false,
2852
- // "EventsData": null,
2853
- // "FieldType": 1,
2854
- // "FormattedValue": "B",
2855
- // "GroupFields": null,
2856
- // "Highlighted": false,
2857
- // "NotificationInfo": "",
2858
- // "OptionalValues": [],
2859
- // "ReferenceObjectInternalType": "",
2860
- // "ReferenceObjectSubType": "",
2861
- // "ReferenceObjectType": -1218391789,
2862
- // "TextColor": "",
2863
- // "UiPageKey": "",
2864
- // "Value": "B",
2865
- // "Visible": true
2866
- // }
2867
- // ],
2868
- // "IsEditable": false,
2869
- // "IsSelectableForActions": false,
2870
- // "MainAction": null,
2871
- // "Profile": null,
2872
- // "Type": 0,
2873
- // "UID": "56d8015b-705c-4a1d-9db9-8926fad4bc48"
2874
- // },
2875
- // {
2876
- // "AdditionalData": null,
2877
- // "BackgroundColor": "",
2878
- // "Fields": [
2879
- // {
2880
- // "Accessory": "",
2881
- // "AdditionalValue": "",
2882
- // "ApiName": "ItemTSAType",
2883
- // "BackgroundColor": "",
2884
- // "Enabled": false,
2885
- // "EventsData": null,
2886
- // "FieldType": 1,
2887
- // "FormattedValue": "Accessories",
2888
- // "GroupFields": null,
2889
- // "Highlighted": false,
2890
- // "NotificationInfo": "",
2891
- // "OptionalValues": [],
2892
- // "ReferenceObjectInternalType": "",
2893
- // "ReferenceObjectSubType": "",
2894
- // "ReferenceObjectType": -1,
2895
- // "TextColor": "",
2896
- // "UiPageKey": "",
2897
- // "Value": "Accessories",
2898
- // "Visible": true
2899
- // },
2900
- // {
2901
- // "Accessory": "",
2902
- // "AdditionalValue": "",
2903
- // "ApiName": "ObjectMenu",
2904
- // "BackgroundColor": "",
2905
- // "Enabled": true,
2906
- // "EventsData": null,
2907
- // "FieldType": 17,
2908
- // "FormattedValue": "",
2909
- // "GroupFields": null,
2910
- // "Highlighted": false,
2911
- // "NotificationInfo": "",
2912
- // "OptionalValues": [],
2913
- // "ReferenceObjectInternalType": "",
2914
- // "ReferenceObjectSubType": "",
2915
- // "ReferenceObjectType": 0,
2916
- // "TextColor": "",
2917
- // "UiPageKey": "",
2918
- // "Value": "",
2919
- // "Visible": true
2920
- // },
2921
- // {
2922
- // "Accessory": "",
2923
- // "AdditionalValue": "",
2924
- // "ApiName": "TSARelteadItems",
2925
- // "BackgroundColor": "",
2926
- // "Enabled": true,
2927
- // "EventsData": null,
2928
- // "FieldType": 1,
2929
- // "FormattedValue": "[\"56d8015b-705c-4a1d-9db9-8926fad4bc48\",\"32fca2a8-9882-44e3-a9e2-fb98d4282529\",\"a76fad1a-0143-449f-9553-fa85a11d7e81\",\"f2c6c4c6-b33c-47e1-86a4-57ed5edb757a\",\"e77f883f-92b0-41ef-80fb-806bfb375b6a\"]",
2930
- // "GroupFields": null,
2931
- // "Highlighted": false,
2932
- // "NotificationInfo": "",
2933
- // "OptionalValues": [],
2934
- // "ReferenceObjectInternalType": "",
2935
- // "ReferenceObjectSubType": "",
2936
- // "ReferenceObjectType": 0,
2937
- // "TextColor": "",
2938
- // "UiPageKey": "",
2939
- // "Value": "[\"56d8015b-705c-4a1d-9db9-8926fad4bc48\",\"32fca2a8-9882-44e3-a9e2-fb98d4282529\",\"a76fad1a-0143-449f-9553-fa85a11d7e81\",\"f2c6c4c6-b33c-47e1-86a4-57ed5edb757a\",\"e77f883f-92b0-41ef-80fb-806bfb375b6a\"]",
2940
- // "Visible": true
2941
- // },
2942
- // {
2943
- // "Accessory": "",
2944
- // "AdditionalValue": "",
2945
- // "ApiName": "Image",
2946
- // "BackgroundColor": "",
2947
- // "Enabled": false,
2948
- // "EventsData": null,
2949
- // "FieldType": 27,
2950
- // "FormattedValue": "https://cdn.pepperi.com/WrntyImages/30013636/PortfolioItems/7/65147317_1.jpg?ft=1",
2951
- // "GroupFields": null,
2952
- // "Highlighted": false,
2953
- // "NotificationInfo": "",
2954
- // "OptionalValues": [],
2955
- // "ReferenceObjectInternalType": "",
2956
- // "ReferenceObjectSubType": "",
2957
- // "ReferenceObjectType": -1,
2958
- // "TextColor": "",
2959
- // "UiPageKey": "",
2960
- // "Value": "https://cdn.pepperi.com/WrntyImages/30013636/PortfolioItems/7/65147317_1.jpg?ft=1",
2961
- // "Visible": true
2962
- // },
2963
- // {
2964
- // "Accessory": "",
2965
- // "AdditionalValue": "",
2966
- // "ApiName": "ItemName",
2967
- // "BackgroundColor": "",
2968
- // "Enabled": false,
2969
- // "EventsData": null,
2970
- // "FieldType": 1,
2971
- // "FormattedValue": "Elegant Hat",
2972
- // "GroupFields": null,
2973
- // "Highlighted": false,
2974
- // "NotificationInfo": "",
2975
- // "OptionalValues": [],
2976
- // "ReferenceObjectInternalType": "",
2977
- // "ReferenceObjectSubType": "",
2978
- // "ReferenceObjectType": -1272524079,
2979
- // "TextColor": "",
2980
- // "UiPageKey": "",
2981
- // "Value": "Elegant Hat",
2982
- // "Visible": true
2983
- // },
2984
- // {
2985
- // "Accessory": "",
2986
- // "AdditionalValue": "",
2987
- // "ApiName": "ItemExternalID",
2988
- // "BackgroundColor": "",
2989
- // "Enabled": false,
2990
- // "EventsData": null,
2991
- // "FieldType": 1,
2992
- // "FormattedValue": "HT3003",
2993
- // "GroupFields": null,
2994
- // "Highlighted": false,
2995
- // "NotificationInfo": "",
2996
- // "OptionalValues": [],
2997
- // "ReferenceObjectInternalType": "",
2998
- // "ReferenceObjectSubType": "",
2999
- // "ReferenceObjectType": 2129893168,
3000
- // "TextColor": "",
3001
- // "UiPageKey": "",
3002
- // "Value": "HT3003",
3003
- // "Visible": true
3004
- // },
3005
- // {
3006
- // "Accessory": "$",
3007
- // "AdditionalValue": "",
3008
- // "ApiName": "ItemPrice",
3009
- // "BackgroundColor": "",
3010
- // "Enabled": false,
3011
- // "EventsData": null,
3012
- // "FieldType": 9,
3013
- // "FormattedValue": "$24.00",
3014
- // "GroupFields": null,
3015
- // "Highlighted": false,
3016
- // "NotificationInfo": "",
3017
- // "OptionalValues": [],
3018
- // "ReferenceObjectInternalType": "",
3019
- // "ReferenceObjectSubType": "",
3020
- // "ReferenceObjectType": -1230843819,
3021
- // "TextColor": "",
3022
- // "UiPageKey": "",
3023
- // "Value": "24.0000",
3024
- // "Visible": true
3025
- // },
3026
- // {
3027
- // "Accessory": "",
3028
- // "AdditionalValue": "",
3029
- // "ApiName": "UnitsQuantity",
3030
- // "BackgroundColor": "",
3031
- // "Enabled": true,
3032
- // "EventsData": null,
3033
- // "FieldType": 28,
3034
- // "FormattedValue": "0",
3035
- // "GroupFields": null,
3036
- // "Highlighted": false,
3037
- // "NotificationInfo": "",
3038
- // "OptionalValues": [],
3039
- // "ReferenceObjectInternalType": "",
3040
- // "ReferenceObjectSubType": "",
3041
- // "ReferenceObjectType": -1,
3042
- // "TextColor": "",
3043
- // "UiPageKey": "",
3044
- // "Value": "0.0000",
3045
- // "Visible": true
3046
- // },
3047
- // {
3048
- // "Accessory": "",
3049
- // "AdditionalValue": "",
3050
- // "ApiName": "ItemTSASeason",
3051
- // "BackgroundColor": "",
3052
- // "Enabled": false,
3053
- // "EventsData": null,
3054
- // "FieldType": 1,
3055
- // "FormattedValue": "Fall",
3056
- // "GroupFields": null,
3057
- // "Highlighted": false,
3058
- // "NotificationInfo": "",
3059
- // "OptionalValues": [],
3060
- // "ReferenceObjectInternalType": "",
3061
- // "ReferenceObjectSubType": "",
3062
- // "ReferenceObjectType": -1,
3063
- // "TextColor": "",
3064
- // "UiPageKey": "",
3065
- // "Value": "Fall",
3066
- // "Visible": true
3067
- // },
3068
- // {
3069
- // "Accessory": "",
3070
- // "AdditionalValue": "",
3071
- // "ApiName": "ItemTSAPackaging",
3072
- // "BackgroundColor": "",
3073
- // "Enabled": false,
3074
- // "EventsData": null,
3075
- // "FieldType": 1,
3076
- // "FormattedValue": "C",
3077
- // "GroupFields": null,
3078
- // "Highlighted": false,
3079
- // "NotificationInfo": "",
3080
- // "OptionalValues": [],
3081
- // "ReferenceObjectInternalType": "",
3082
- // "ReferenceObjectSubType": "",
3083
- // "ReferenceObjectType": 0,
3084
- // "TextColor": "",
3085
- // "UiPageKey": "",
3086
- // "Value": "C",
3087
- // "Visible": true
3088
- // }
3089
- // ],
3090
- // "IsEditable": false,
3091
- // "IsSelectableForActions": false,
3092
- // "MainAction": null,
3093
- // "Profile": null,
3094
- // "Type": 0,
3095
- // "UID": "32fca2a8-9882-44e3-a9e2-fb98d4282529"
3096
- // },
3097
- // {
3098
- // "AdditionalData": null,
3099
- // "BackgroundColor": "",
3100
- // "Fields": [
3101
- // {
3102
- // "Accessory": "",
3103
- // "AdditionalValue": "",
3104
- // "ApiName": "ItemTSAType",
3105
- // "BackgroundColor": "",
3106
- // "Enabled": false,
3107
- // "EventsData": null,
3108
- // "FieldType": 1,
3109
- // "FormattedValue": "Accessories",
3110
- // "GroupFields": null,
3111
- // "Highlighted": false,
3112
- // "NotificationInfo": "",
3113
- // "OptionalValues": [],
3114
- // "ReferenceObjectInternalType": "",
3115
- // "ReferenceObjectSubType": "",
3116
- // "ReferenceObjectType": 14,
3117
- // "TextColor": "",
3118
- // "UiPageKey": "",
3119
- // "Value": "Accessories",
3120
- // "Visible": true
3121
- // },
3122
- // {
3123
- // "Accessory": "",
3124
- // "AdditionalValue": "",
3125
- // "ApiName": "ObjectMenu",
3126
- // "BackgroundColor": "",
3127
- // "Enabled": true,
3128
- // "EventsData": null,
3129
- // "FieldType": 17,
3130
- // "FormattedValue": "",
3131
- // "GroupFields": null,
3132
- // "Highlighted": false,
3133
- // "NotificationInfo": "",
3134
- // "OptionalValues": [],
3135
- // "ReferenceObjectInternalType": "",
3136
- // "ReferenceObjectSubType": "",
3137
- // "ReferenceObjectType": 2129897584,
3138
- // "TextColor": "",
3139
- // "UiPageKey": "",
3140
- // "Value": "",
3141
- // "Visible": true
3142
- // },
3143
- // {
3144
- // "Accessory": "",
3145
- // "AdditionalValue": "",
3146
- // "ApiName": "TSARelteadItems",
3147
- // "BackgroundColor": "",
3148
- // "Enabled": true,
3149
- // "EventsData": null,
3150
- // "FieldType": 1,
3151
- // "FormattedValue": "[\"56d8015b-705c-4a1d-9db9-8926fad4bc48\",\"32fca2a8-9882-44e3-a9e2-fb98d4282529\",\"a76fad1a-0143-449f-9553-fa85a11d7e81\",\"f2c6c4c6-b33c-47e1-86a4-57ed5edb757a\",\"e77f883f-92b0-41ef-80fb-806bfb375b6a\"]",
3152
- // "GroupFields": null,
3153
- // "Highlighted": false,
3154
- // "NotificationInfo": "",
3155
- // "OptionalValues": [],
3156
- // "ReferenceObjectInternalType": "",
3157
- // "ReferenceObjectSubType": "",
3158
- // "ReferenceObjectType": 0,
3159
- // "TextColor": "",
3160
- // "UiPageKey": "",
3161
- // "Value": "[\"56d8015b-705c-4a1d-9db9-8926fad4bc48\",\"32fca2a8-9882-44e3-a9e2-fb98d4282529\",\"a76fad1a-0143-449f-9553-fa85a11d7e81\",\"f2c6c4c6-b33c-47e1-86a4-57ed5edb757a\",\"e77f883f-92b0-41ef-80fb-806bfb375b6a\"]",
3162
- // "Visible": true
3163
- // },
3164
- // {
3165
- // "Accessory": "",
3166
- // "AdditionalValue": "",
3167
- // "ApiName": "Image",
3168
- // "BackgroundColor": "",
3169
- // "Enabled": false,
3170
- // "EventsData": null,
3171
- // "FieldType": 27,
3172
- // "FormattedValue": "https://cdn.pepperi.com/WrntyImages/30013636/PortfolioItems/8/65147318_1.jpg?ft=1",
3173
- // "GroupFields": null,
3174
- // "Highlighted": false,
3175
- // "NotificationInfo": "",
3176
- // "OptionalValues": [],
3177
- // "ReferenceObjectInternalType": "",
3178
- // "ReferenceObjectSubType": "",
3179
- // "ReferenceObjectType": -1252338867,
3180
- // "TextColor": "",
3181
- // "UiPageKey": "",
3182
- // "Value": "https://cdn.pepperi.com/WrntyImages/30013636/PortfolioItems/8/65147318_1.jpg?ft=1",
3183
- // "Visible": true
3184
- // },
3185
- // {
3186
- // "Accessory": "",
3187
- // "AdditionalValue": "",
3188
- // "ApiName": "ItemName",
3189
- // "BackgroundColor": "",
3190
- // "Enabled": false,
3191
- // "EventsData": null,
3192
- // "FieldType": 1,
3193
- // "FormattedValue": "Elegant Hat",
3194
- // "GroupFields": null,
3195
- // "Highlighted": false,
3196
- // "NotificationInfo": "",
3197
- // "OptionalValues": [],
3198
- // "ReferenceObjectInternalType": "",
3199
- // "ReferenceObjectSubType": "",
3200
- // "ReferenceObjectType": 2,
3201
- // "TextColor": "",
3202
- // "UiPageKey": "",
3203
- // "Value": "Elegant Hat",
3204
- // "Visible": true
3205
- // },
3206
- // {
3207
- // "Accessory": "",
3208
- // "AdditionalValue": "",
3209
- // "ApiName": "ItemExternalID",
3210
- // "BackgroundColor": "",
3211
- // "Enabled": false,
3212
- // "EventsData": null,
3213
- // "FieldType": 1,
3214
- // "FormattedValue": "HT3004",
3215
- // "GroupFields": null,
3216
- // "Highlighted": false,
3217
- // "NotificationInfo": "",
3218
- // "OptionalValues": [],
3219
- // "ReferenceObjectInternalType": "",
3220
- // "ReferenceObjectSubType": "",
3221
- // "ReferenceObjectType": 2125052912,
3222
- // "TextColor": "",
3223
- // "UiPageKey": "",
3224
- // "Value": "HT3004",
3225
- // "Visible": true
3226
- // },
3227
- // {
3228
- // "Accessory": "$",
3229
- // "AdditionalValue": "",
3230
- // "ApiName": "ItemPrice",
3231
- // "BackgroundColor": "",
3232
- // "Enabled": false,
3233
- // "EventsData": null,
3234
- // "FieldType": 9,
3235
- // "FormattedValue": "$21.00",
3236
- // "GroupFields": null,
3237
- // "Highlighted": false,
3238
- // "NotificationInfo": "",
3239
- // "OptionalValues": [],
3240
- // "ReferenceObjectInternalType": "",
3241
- // "ReferenceObjectSubType": "",
3242
- // "ReferenceObjectType": 0,
3243
- // "TextColor": "",
3244
- // "UiPageKey": "",
3245
- // "Value": "21.0000",
3246
- // "Visible": true
3247
- // },
3248
- // {
3249
- // "Accessory": "",
3250
- // "AdditionalValue": "",
3251
- // "ApiName": "UnitsQuantity",
3252
- // "BackgroundColor": "",
3253
- // "Enabled": true,
3254
- // "EventsData": null,
3255
- // "FieldType": 28,
3256
- // "FormattedValue": "0",
3257
- // "GroupFields": null,
3258
- // "Highlighted": false,
3259
- // "NotificationInfo": "",
3260
- // "OptionalValues": [],
3261
- // "ReferenceObjectInternalType": "",
3262
- // "ReferenceObjectSubType": "",
3263
- // "ReferenceObjectType": 8,
3264
- // "TextColor": "",
3265
- // "UiPageKey": "",
3266
- // "Value": "0.0000",
3267
- // "Visible": true
3268
- // },
3269
- // {
3270
- // "Accessory": "",
3271
- // "AdditionalValue": "",
3272
- // "ApiName": "ItemTSASeason",
3273
- // "BackgroundColor": "",
3274
- // "Enabled": false,
3275
- // "EventsData": null,
3276
- // "FieldType": 1,
3277
- // "FormattedValue": "Fall",
3278
- // "GroupFields": null,
3279
- // "Highlighted": false,
3280
- // "NotificationInfo": "",
3281
- // "OptionalValues": [],
3282
- // "ReferenceObjectInternalType": "",
3283
- // "ReferenceObjectSubType": "",
3284
- // "ReferenceObjectType": 2125050496,
3285
- // "TextColor": "",
3286
- // "UiPageKey": "",
3287
- // "Value": "Fall",
3288
- // "Visible": true
3289
- // },
3290
- // {
3291
- // "Accessory": "",
3292
- // "AdditionalValue": "",
3293
- // "ApiName": "ItemTSAPackaging",
3294
- // "BackgroundColor": "",
3295
- // "Enabled": false,
3296
- // "EventsData": null,
3297
- // "FieldType": 1,
3298
- // "FormattedValue": "C",
3299
- // "GroupFields": null,
3300
- // "Highlighted": false,
3301
- // "NotificationInfo": "",
3302
- // "OptionalValues": [],
3303
- // "ReferenceObjectInternalType": "",
3304
- // "ReferenceObjectSubType": "",
3305
- // "ReferenceObjectType": 2125051672,
3306
- // "TextColor": "",
3307
- // "UiPageKey": "",
3308
- // "Value": "C",
3309
- // "Visible": true
3310
- // }
3311
- // ],
3312
- // "IsEditable": false,
3313
- // "IsSelectableForActions": false,
3314
- // "MainAction": null,
3315
- // "Profile": null,
3316
- // "Type": 0,
3317
- // "UID": "a76fad1a-0143-449f-9553-fa85a11d7e81"
3318
- // },
3319
- // {
3320
- // "AdditionalData": null,
3321
- // "BackgroundColor": "",
3322
- // "Fields": [
3323
- // {
3324
- // "Accessory": "",
3325
- // "AdditionalValue": "",
3326
- // "ApiName": "ItemTSAType",
3327
- // "BackgroundColor": "",
3328
- // "Enabled": false,
3329
- // "EventsData": null,
3330
- // "FieldType": 1,
3331
- // "FormattedValue": "Accessories",
3332
- // "GroupFields": null,
3333
- // "Highlighted": false,
3334
- // "NotificationInfo": "",
3335
- // "OptionalValues": [],
3336
- // "ReferenceObjectInternalType": "",
3337
- // "ReferenceObjectSubType": "",
3338
- // "ReferenceObjectType": 1660598050,
3339
- // "TextColor": "",
3340
- // "UiPageKey": "",
3341
- // "Value": "Accessories",
3342
- // "Visible": true
3343
- // },
3344
- // {
3345
- // "Accessory": "",
3346
- // "AdditionalValue": "",
3347
- // "ApiName": "ObjectMenu",
3348
- // "BackgroundColor": "",
3349
- // "Enabled": true,
3350
- // "EventsData": null,
3351
- // "FieldType": 17,
3352
- // "FormattedValue": "",
3353
- // "GroupFields": null,
3354
- // "Highlighted": false,
3355
- // "NotificationInfo": "",
3356
- // "OptionalValues": [],
3357
- // "ReferenceObjectInternalType": "",
3358
- // "ReferenceObjectSubType": "",
3359
- // "ReferenceObjectType": 0,
3360
- // "TextColor": "",
3361
- // "UiPageKey": "",
3362
- // "Value": "",
3363
- // "Visible": true
3364
- // },
3365
- // {
3366
- // "Accessory": "",
3367
- // "AdditionalValue": "",
3368
- // "ApiName": "TSARelteadItems",
3369
- // "BackgroundColor": "",
3370
- // "Enabled": true,
3371
- // "EventsData": null,
3372
- // "FieldType": 1,
3373
- // "FormattedValue": "[\"56d8015b-705c-4a1d-9db9-8926fad4bc48\",\"32fca2a8-9882-44e3-a9e2-fb98d4282529\",\"a76fad1a-0143-449f-9553-fa85a11d7e81\",\"f2c6c4c6-b33c-47e1-86a4-57ed5edb757a\",\"e77f883f-92b0-41ef-80fb-806bfb375b6a\"]",
3374
- // "GroupFields": null,
3375
- // "Highlighted": false,
3376
- // "NotificationInfo": "",
3377
- // "OptionalValues": [],
3378
- // "ReferenceObjectInternalType": "",
3379
- // "ReferenceObjectSubType": "",
3380
- // "ReferenceObjectType": -1591707634,
3381
- // "TextColor": "",
3382
- // "UiPageKey": "",
3383
- // "Value": "[\"56d8015b-705c-4a1d-9db9-8926fad4bc48\",\"32fca2a8-9882-44e3-a9e2-fb98d4282529\",\"a76fad1a-0143-449f-9553-fa85a11d7e81\",\"f2c6c4c6-b33c-47e1-86a4-57ed5edb757a\",\"e77f883f-92b0-41ef-80fb-806bfb375b6a\"]",
3384
- // "Visible": true
3385
- // },
3386
- // {
3387
- // "Accessory": "",
3388
- // "AdditionalValue": "",
3389
- // "ApiName": "Image",
3390
- // "BackgroundColor": "",
3391
- // "Enabled": false,
3392
- // "EventsData": null,
3393
- // "FieldType": 27,
3394
- // "FormattedValue": "https://cdn.pepperi.com/WrntyImages/30013636/PortfolioItems/9/65147319_1.jpg?ft=1",
3395
- // "GroupFields": null,
3396
- // "Highlighted": false,
3397
- // "NotificationInfo": "",
3398
- // "OptionalValues": [],
3399
- // "ReferenceObjectInternalType": "",
3400
- // "ReferenceObjectSubType": "",
3401
- // "ReferenceObjectType": 2125052176,
3402
- // "TextColor": "",
3403
- // "UiPageKey": "",
3404
- // "Value": "https://cdn.pepperi.com/WrntyImages/30013636/PortfolioItems/9/65147319_1.jpg?ft=1",
3405
- // "Visible": true
3406
- // },
3407
- // {
3408
- // "Accessory": "",
3409
- // "AdditionalValue": "",
3410
- // "ApiName": "ItemName",
3411
- // "BackgroundColor": "",
3412
- // "Enabled": false,
3413
- // "EventsData": null,
3414
- // "FieldType": 1,
3415
- // "FormattedValue": "Outdoor Hat",
3416
- // "GroupFields": null,
3417
- // "Highlighted": false,
3418
- // "NotificationInfo": "",
3419
- // "OptionalValues": [],
3420
- // "ReferenceObjectInternalType": "",
3421
- // "ReferenceObjectSubType": "",
3422
- // "ReferenceObjectType": 2125040248,
3423
- // "TextColor": "",
3424
- // "UiPageKey": "",
3425
- // "Value": "Outdoor Hat",
3426
- // "Visible": true
3427
- // },
3428
- // {
3429
- // "Accessory": "",
3430
- // "AdditionalValue": "",
3431
- // "ApiName": "ItemExternalID",
3432
- // "BackgroundColor": "",
3433
- // "Enabled": false,
3434
- // "EventsData": null,
3435
- // "FieldType": 1,
3436
- // "FormattedValue": "HT3005",
3437
- // "GroupFields": null,
3438
- // "Highlighted": false,
3439
- // "NotificationInfo": "",
3440
- // "OptionalValues": [],
3441
- // "ReferenceObjectInternalType": "",
3442
- // "ReferenceObjectSubType": "",
3443
- // "ReferenceObjectType": 2125053472,
3444
- // "TextColor": "",
3445
- // "UiPageKey": "",
3446
- // "Value": "HT3005",
3447
- // "Visible": true
3448
- // },
3449
- // {
3450
- // "Accessory": "$",
3451
- // "AdditionalValue": "",
3452
- // "ApiName": "ItemPrice",
3453
- // "BackgroundColor": "",
3454
- // "Enabled": false,
3455
- // "EventsData": null,
3456
- // "FieldType": 9,
3457
- // "FormattedValue": "$23.00",
3458
- // "GroupFields": null,
3459
- // "Highlighted": false,
3460
- // "NotificationInfo": "",
3461
- // "OptionalValues": [],
3462
- // "ReferenceObjectInternalType": "",
3463
- // "ReferenceObjectSubType": "",
3464
- // "ReferenceObjectType": 2,
3465
- // "TextColor": "",
3466
- // "UiPageKey": "",
3467
- // "Value": "23.0000",
3468
- // "Visible": true
3469
- // },
3470
- // {
3471
- // "Accessory": "",
3472
- // "AdditionalValue": "",
3473
- // "ApiName": "UnitsQuantity",
3474
- // "BackgroundColor": "",
3475
- // "Enabled": true,
3476
- // "EventsData": null,
3477
- // "FieldType": 28,
3478
- // "FormattedValue": "0",
3479
- // "GroupFields": null,
3480
- // "Highlighted": false,
3481
- // "NotificationInfo": "",
3482
- // "OptionalValues": [],
3483
- // "ReferenceObjectInternalType": "",
3484
- // "ReferenceObjectSubType": "",
3485
- // "ReferenceObjectType": 2106867472,
3486
- // "TextColor": "",
3487
- // "UiPageKey": "",
3488
- // "Value": "0.0000",
3489
- // "Visible": true
3490
- // },
3491
- // {
3492
- // "Accessory": "",
3493
- // "AdditionalValue": "",
3494
- // "ApiName": "ItemTSASeason",
3495
- // "BackgroundColor": "",
3496
- // "Enabled": false,
3497
- // "EventsData": null,
3498
- // "FieldType": 1,
3499
- // "FormattedValue": "Fall",
3500
- // "GroupFields": null,
3501
- // "Highlighted": false,
3502
- // "NotificationInfo": "",
3503
- // "OptionalValues": [],
3504
- // "ReferenceObjectInternalType": "",
3505
- // "ReferenceObjectSubType": "",
3506
- // "ReferenceObjectType": 0,
3507
- // "TextColor": "",
3508
- // "UiPageKey": "",
3509
- // "Value": "Fall",
3510
- // "Visible": true
3511
- // },
3512
- // {
3513
- // "Accessory": "",
3514
- // "AdditionalValue": "",
3515
- // "ApiName": "ItemTSAPackaging",
3516
- // "BackgroundColor": "",
3517
- // "Enabled": false,
3518
- // "EventsData": null,
3519
- // "FieldType": 1,
3520
- // "FormattedValue": "D",
3521
- // "GroupFields": null,
3522
- // "Highlighted": false,
3523
- // "NotificationInfo": "",
3524
- // "OptionalValues": [],
3525
- // "ReferenceObjectInternalType": "",
3526
- // "ReferenceObjectSubType": "",
3527
- // "ReferenceObjectType": 0,
3528
- // "TextColor": "",
3529
- // "UiPageKey": "",
3530
- // "Value": "D",
3531
- // "Visible": true
3532
- // }
3533
- // ],
3534
- // "IsEditable": false,
3535
- // "IsSelectableForActions": false,
3536
- // "MainAction": null,
3537
- // "Profile": null,
3538
- // "Type": 0,
3539
- // "UID": "f2c6c4c6-b33c-47e1-86a4-57ed5edb757a"
3540
- // },
3541
- // {
3542
- // "AdditionalData": null,
3543
- // "BackgroundColor": "",
3544
- // "Fields": [
3545
- // {
3546
- // "Accessory": "",
3547
- // "AdditionalValue": "",
3548
- // "ApiName": "ItemTSAType",
3549
- // "BackgroundColor": "",
3550
- // "Enabled": false,
3551
- // "EventsData": null,
3552
- // "FieldType": 1,
3553
- // "FormattedValue": "Accessories",
3554
- // "GroupFields": null,
3555
- // "Highlighted": false,
3556
- // "NotificationInfo": "",
3557
- // "OptionalValues": [],
3558
- // "ReferenceObjectInternalType": "",
3559
- // "ReferenceObjectSubType": "",
3560
- // "ReferenceObjectType": 5,
3561
- // "TextColor": "",
3562
- // "UiPageKey": "",
3563
- // "Value": "Accessories",
3564
- // "Visible": true
3565
- // },
3566
- // {
3567
- // "Accessory": "",
3568
- // "AdditionalValue": "",
3569
- // "ApiName": "ObjectMenu",
3570
- // "BackgroundColor": "",
3571
- // "Enabled": true,
3572
- // "EventsData": null,
3573
- // "FieldType": 17,
3574
- // "FormattedValue": "",
3575
- // "GroupFields": null,
3576
- // "Highlighted": false,
3577
- // "NotificationInfo": "",
3578
- // "OptionalValues": [],
3579
- // "ReferenceObjectInternalType": "",
3580
- // "ReferenceObjectSubType": "",
3581
- // "ReferenceObjectType": 5,
3582
- // "TextColor": "",
3583
- // "UiPageKey": "",
3584
- // "Value": "",
3585
- // "Visible": true
3586
- // },
3587
- // {
3588
- // "Accessory": "",
3589
- // "AdditionalValue": "",
3590
- // "ApiName": "TSARelteadItems",
3591
- // "BackgroundColor": "",
3592
- // "Enabled": true,
3593
- // "EventsData": null,
3594
- // "FieldType": 1,
3595
- // "FormattedValue": "[\"56d8015b-705c-4a1d-9db9-8926fad4bc48\",\"32fca2a8-9882-44e3-a9e2-fb98d4282529\",\"a76fad1a-0143-449f-9553-fa85a11d7e81\",\"f2c6c4c6-b33c-47e1-86a4-57ed5edb757a\",\"e77f883f-92b0-41ef-80fb-806bfb375b6a\"]",
3596
- // "GroupFields": null,
3597
- // "Highlighted": false,
3598
- // "NotificationInfo": "",
3599
- // "OptionalValues": [],
3600
- // "ReferenceObjectInternalType": "",
3601
- // "ReferenceObjectSubType": "",
3602
- // "ReferenceObjectType": 2123848360,
3603
- // "TextColor": "",
3604
- // "UiPageKey": "",
3605
- // "Value": "[\"56d8015b-705c-4a1d-9db9-8926fad4bc48\",\"32fca2a8-9882-44e3-a9e2-fb98d4282529\",\"a76fad1a-0143-449f-9553-fa85a11d7e81\",\"f2c6c4c6-b33c-47e1-86a4-57ed5edb757a\",\"e77f883f-92b0-41ef-80fb-806bfb375b6a\"]",
3606
- // "Visible": true
3607
- // },
3608
- // {
3609
- // "Accessory": "",
3610
- // "AdditionalValue": "",
3611
- // "ApiName": "Image",
3612
- // "BackgroundColor": "",
3613
- // "Enabled": false,
3614
- // "EventsData": null,
3615
- // "FieldType": 27,
3616
- // "FormattedValue": "https://cdn.pepperi.com/WrntyImages/30013636/PortfolioItems/0/65147320_1.jpg?ft=1",
3617
- // "GroupFields": null,
3618
- // "Highlighted": false,
3619
- // "NotificationInfo": "",
3620
- // "OptionalValues": [],
3621
- // "ReferenceObjectInternalType": "",
3622
- // "ReferenceObjectSubType": "",
3623
- // "ReferenceObjectType": 0,
3624
- // "TextColor": "",
3625
- // "UiPageKey": "",
3626
- // "Value": "https://cdn.pepperi.com/WrntyImages/30013636/PortfolioItems/0/65147320_1.jpg?ft=1",
3627
- // "Visible": true
3628
- // },
3629
- // {
3630
- // "Accessory": "",
3631
- // "AdditionalValue": "",
3632
- // "ApiName": "ItemName",
3633
- // "BackgroundColor": "",
3634
- // "Enabled": false,
3635
- // "EventsData": null,
3636
- // "FieldType": 1,
3637
- // "FormattedValue": "Outdoor Hat",
3638
- // "GroupFields": null,
3639
- // "Highlighted": false,
3640
- // "NotificationInfo": "",
3641
- // "OptionalValues": [],
3642
- // "ReferenceObjectInternalType": "",
3643
- // "ReferenceObjectSubType": "",
3644
- // "ReferenceObjectType": 2123341872,
3645
- // "TextColor": "",
3646
- // "UiPageKey": "",
3647
- // "Value": "Outdoor Hat",
3648
- // "Visible": true
3649
- // },
3650
- // {
3651
- // "Accessory": "",
3652
- // "AdditionalValue": "",
3653
- // "ApiName": "ItemExternalID",
3654
- // "BackgroundColor": "",
3655
- // "Enabled": false,
3656
- // "EventsData": null,
3657
- // "FieldType": 1,
3658
- // "FormattedValue": "HT3006",
3659
- // "GroupFields": null,
3660
- // "Highlighted": false,
3661
- // "NotificationInfo": "",
3662
- // "OptionalValues": [],
3663
- // "ReferenceObjectInternalType": "",
3664
- // "ReferenceObjectSubType": "",
3665
- // "ReferenceObjectType": -1,
3666
- // "TextColor": "",
3667
- // "UiPageKey": "",
3668
- // "Value": "HT3006",
3669
- // "Visible": true
3670
- // },
3671
- // {
3672
- // "Accessory": "$",
3673
- // "AdditionalValue": "",
3674
- // "ApiName": "ItemPrice",
3675
- // "BackgroundColor": "",
3676
- // "Enabled": false,
3677
- // "EventsData": null,
3678
- // "FieldType": 9,
3679
- // "FormattedValue": "$19.00",
3680
- // "GroupFields": null,
3681
- // "Highlighted": false,
3682
- // "NotificationInfo": "",
3683
- // "OptionalValues": [],
3684
- // "ReferenceObjectInternalType": "",
3685
- // "ReferenceObjectSubType": "",
3686
- // "ReferenceObjectType": 2123850704,
3687
- // "TextColor": "",
3688
- // "UiPageKey": "",
3689
- // "Value": "19.0000",
3690
- // "Visible": true
3691
- // },
3692
- // {
3693
- // "Accessory": "",
3694
- // "AdditionalValue": "",
3695
- // "ApiName": "UnitsQuantity",
3696
- // "BackgroundColor": "",
3697
- // "Enabled": true,
3698
- // "EventsData": null,
3699
- // "FieldType": 28,
3700
- // "FormattedValue": "0",
3701
- // "GroupFields": null,
3702
- // "Highlighted": false,
3703
- // "NotificationInfo": "",
3704
- // "OptionalValues": [],
3705
- // "ReferenceObjectInternalType": "",
3706
- // "ReferenceObjectSubType": "",
3707
- // "ReferenceObjectType": 2123860720,
3708
- // "TextColor": "",
3709
- // "UiPageKey": "",
3710
- // "Value": "0.0000",
3711
- // "Visible": true
3712
- // },
3713
- // {
3714
- // "Accessory": "",
3715
- // "AdditionalValue": "",
3716
- // "ApiName": "ItemTSASeason",
3717
- // "BackgroundColor": "",
3718
- // "Enabled": false,
3719
- // "EventsData": null,
3720
- // "FieldType": 1,
3721
- // "FormattedValue": "Fall",
3722
- // "GroupFields": null,
3723
- // "Highlighted": false,
3724
- // "NotificationInfo": "",
3725
- // "OptionalValues": [],
3726
- // "ReferenceObjectInternalType": "",
3727
- // "ReferenceObjectSubType": "",
3728
- // "ReferenceObjectType": 2123846016,
3729
- // "TextColor": "",
3730
- // "UiPageKey": "",
3731
- // "Value": "Fall",
3732
- // "Visible": true
3733
- // },
3734
- // {
3735
- // "Accessory": "",
3736
- // "AdditionalValue": "",
3737
- // "ApiName": "ItemTSAPackaging",
3738
- // "BackgroundColor": "",
3739
- // "Enabled": false,
3740
- // "EventsData": null,
3741
- // "FieldType": 1,
3742
- // "FormattedValue": "D",
3743
- // "GroupFields": null,
3744
- // "Highlighted": false,
3745
- // "NotificationInfo": "",
3746
- // "OptionalValues": [],
3747
- // "ReferenceObjectInternalType": "",
3748
- // "ReferenceObjectSubType": "",
3749
- // "ReferenceObjectType": 2123846016,
3750
- // "TextColor": "",
3751
- // "UiPageKey": "",
3752
- // "Value": "D",
3753
- // "Visible": true
3754
- // }
3755
- // ],
3756
- // "IsEditable": false,
3757
- // "IsSelectableForActions": false,
3758
- // "MainAction": null,
3759
- // "Profile": null,
3760
- // "Type": 0,
3761
- // "UID": "e77f883f-92b0-41ef-80fb-806bfb375b6a"
3762
- // },
3763
- // {
3764
- // "AdditionalData": null,
3765
- // "BackgroundColor": "",
3766
- // "Fields": [
3767
- // {
3768
- // "Accessory": "",
3769
- // "AdditionalValue": "",
3770
- // "ApiName": "ItemTSAType",
3771
- // "BackgroundColor": "",
3772
- // "Enabled": false,
3773
- // "EventsData": null,
3774
- // "FieldType": 1,
3775
- // "FormattedValue": "Accessories",
3776
- // "GroupFields": null,
3777
- // "Highlighted": false,
3778
- // "NotificationInfo": "",
3779
- // "OptionalValues": [],
3780
- // "ReferenceObjectInternalType": "",
3781
- // "ReferenceObjectSubType": "",
3782
- // "ReferenceObjectType": 2123848360,
3783
- // "TextColor": "",
3784
- // "UiPageKey": "",
3785
- // "Value": "Accessories",
3786
- // "Visible": true
3787
- // },
3788
- // {
3789
- // "Accessory": "",
3790
- // "AdditionalValue": "",
3791
- // "ApiName": "ObjectMenu",
3792
- // "BackgroundColor": "",
3793
- // "Enabled": true,
3794
- // "EventsData": null,
3795
- // "FieldType": 17,
3796
- // "FormattedValue": "",
3797
- // "GroupFields": null,
3798
- // "Highlighted": false,
3799
- // "NotificationInfo": "",
3800
- // "OptionalValues": [],
3801
- // "ReferenceObjectInternalType": "",
3802
- // "ReferenceObjectSubType": "",
3803
- // "ReferenceObjectType": 2123850704,
3804
- // "TextColor": "",
3805
- // "UiPageKey": "",
3806
- // "Value": "",
3807
- // "Visible": true
3808
- // },
3809
- // {
3810
- // "Accessory": "",
3811
- // "AdditionalValue": "",
3812
- // "ApiName": "TSARelteadItems",
3813
- // "BackgroundColor": "",
3814
- // "Enabled": true,
3815
- // "EventsData": null,
3816
- // "FieldType": 1,
3817
- // "FormattedValue": "[\"56d8015b-705c-4a1d-9db9-8926fad4bc48\",\"32fca2a8-9882-44e3-a9e2-fb98d4282529\",\"a76fad1a-0143-449f-9553-fa85a11d7e81\",\"f2c6c4c6-b33c-47e1-86a4-57ed5edb757a\",\"e77f883f-92b0-41ef-80fb-806bfb375b6a\"]",
3818
- // "GroupFields": null,
3819
- // "Highlighted": false,
3820
- // "NotificationInfo": "",
3821
- // "OptionalValues": [],
3822
- // "ReferenceObjectInternalType": "",
3823
- // "ReferenceObjectSubType": "",
3824
- // "ReferenceObjectType": 5,
3825
- // "TextColor": "",
3826
- // "UiPageKey": "",
3827
- // "Value": "[\"56d8015b-705c-4a1d-9db9-8926fad4bc48\",\"32fca2a8-9882-44e3-a9e2-fb98d4282529\",\"a76fad1a-0143-449f-9553-fa85a11d7e81\",\"f2c6c4c6-b33c-47e1-86a4-57ed5edb757a\",\"e77f883f-92b0-41ef-80fb-806bfb375b6a\"]",
3828
- // "Visible": true
3829
- // },
3830
- // {
3831
- // "Accessory": "",
3832
- // "AdditionalValue": "",
3833
- // "ApiName": "Image",
3834
- // "BackgroundColor": "",
3835
- // "Enabled": false,
3836
- // "EventsData": null,
3837
- // "FieldType": 27,
3838
- // "FormattedValue": "https://cdn.pepperi.com/WrntyImages/30013636/PortfolioItems/1/65147321_1.jpg?ft=1",
3839
- // "GroupFields": null,
3840
- // "Highlighted": false,
3841
- // "NotificationInfo": "",
3842
- // "OptionalValues": [],
3843
- // "ReferenceObjectInternalType": "",
3844
- // "ReferenceObjectSubType": "",
3845
- // "ReferenceObjectType": 2123853240,
3846
- // "TextColor": "",
3847
- // "UiPageKey": "",
3848
- // "Value": "https://cdn.pepperi.com/WrntyImages/30013636/PortfolioItems/1/65147321_1.jpg?ft=1",
3849
- // "Visible": true
3850
- // },
3851
- // {
3852
- // "Accessory": "",
3853
- // "AdditionalValue": "",
3854
- // "ApiName": "ItemName",
3855
- // "BackgroundColor": "",
3856
- // "Enabled": false,
3857
- // "EventsData": null,
3858
- // "FieldType": 1,
3859
- // "FormattedValue": "Outdoor Hat",
3860
- // "GroupFields": null,
3861
- // "Highlighted": false,
3862
- // "NotificationInfo": "",
3863
- // "OptionalValues": [],
3864
- // "ReferenceObjectInternalType": "",
3865
- // "ReferenceObjectSubType": "",
3866
- // "ReferenceObjectType": 5,
3867
- // "TextColor": "",
3868
- // "UiPageKey": "",
3869
- // "Value": "Outdoor Hat",
3870
- // "Visible": true
3871
- // },
3872
- // {
3873
- // "Accessory": "",
3874
- // "AdditionalValue": "",
3875
- // "ApiName": "ItemExternalID",
3876
- // "BackgroundColor": "",
3877
- // "Enabled": false,
3878
- // "EventsData": null,
3879
- // "FieldType": 1,
3880
- // "FormattedValue": "HT3007",
3881
- // "GroupFields": null,
3882
- // "Highlighted": false,
3883
- // "NotificationInfo": "",
3884
- // "OptionalValues": [],
3885
- // "ReferenceObjectInternalType": "",
3886
- // "ReferenceObjectSubType": "",
3887
- // "ReferenceObjectType": 13,
3888
- // "TextColor": "",
3889
- // "UiPageKey": "",
3890
- // "Value": "HT3007",
3891
- // "Visible": true
3892
- // },
3893
- // {
3894
- // "Accessory": "$",
3895
- // "AdditionalValue": "",
3896
- // "ApiName": "ItemPrice",
3897
- // "BackgroundColor": "",
3898
- // "Enabled": false,
3899
- // "EventsData": null,
3900
- // "FieldType": 9,
3901
- // "FormattedValue": "$22.00",
3902
- // "GroupFields": null,
3903
- // "Highlighted": false,
3904
- // "NotificationInfo": "",
3905
- // "OptionalValues": [],
3906
- // "ReferenceObjectInternalType": "",
3907
- // "ReferenceObjectSubType": "",
3908
- // "ReferenceObjectType": 0,
3909
- // "TextColor": "",
3910
- // "UiPageKey": "",
3911
- // "Value": "22.0000",
3912
- // "Visible": true
3913
- // },
3914
- // {
3915
- // "Accessory": "",
3916
- // "AdditionalValue": "",
3917
- // "ApiName": "UnitsQuantity",
3918
- // "BackgroundColor": "",
3919
- // "Enabled": true,
3920
- // "EventsData": null,
3921
- // "FieldType": 28,
3922
- // "FormattedValue": "0",
3923
- // "GroupFields": null,
3924
- // "Highlighted": false,
3925
- // "NotificationInfo": "",
3926
- // "OptionalValues": [],
3927
- // "ReferenceObjectInternalType": "",
3928
- // "ReferenceObjectSubType": "",
3929
- // "ReferenceObjectType": 0,
3930
- // "TextColor": "",
3931
- // "UiPageKey": "",
3932
- // "Value": "0.0000",
3933
- // "Visible": true
3934
- // },
3935
- // {
3936
- // "Accessory": "",
3937
- // "AdditionalValue": "",
3938
- // "ApiName": "ItemTSASeason",
3939
- // "BackgroundColor": "",
3940
- // "Enabled": false,
3941
- // "EventsData": null,
3942
- // "FieldType": 1,
3943
- // "FormattedValue": "Fall",
3944
- // "GroupFields": null,
3945
- // "Highlighted": false,
3946
- // "NotificationInfo": "",
3947
- // "OptionalValues": [],
3948
- // "ReferenceObjectInternalType": "",
3949
- // "ReferenceObjectSubType": "",
3950
- // "ReferenceObjectType": 0,
3951
- // "TextColor": "",
3952
- // "UiPageKey": "",
3953
- // "Value": "Fall",
3954
- // "Visible": true
3955
- // },
3956
- // {
3957
- // "Accessory": "",
3958
- // "AdditionalValue": "",
3959
- // "ApiName": "ItemTSAPackaging",
3960
- // "BackgroundColor": "",
3961
- // "Enabled": false,
3962
- // "EventsData": null,
3963
- // "FieldType": 1,
3964
- // "FormattedValue": "D",
3965
- // "GroupFields": null,
3966
- // "Highlighted": false,
3967
- // "NotificationInfo": "",
3968
- // "OptionalValues": [],
3969
- // "ReferenceObjectInternalType": "",
3970
- // "ReferenceObjectSubType": "",
3971
- // "ReferenceObjectType": 0,
3972
- // "TextColor": "",
3973
- // "UiPageKey": "",
3974
- // "Value": "D",
3975
- // "Visible": true
3976
- // }
3977
- // ],
3978
- // "IsEditable": false,
3979
- // "IsSelectableForActions": false,
3980
- // "MainAction": null,
3981
- // "Profile": null,
3982
- // "Type": 0,
3983
- // "UID": "0b91c165-1ca4-4bb5-ba69-a877948a7a2d"
3984
- // },
3985
- // {
3986
- // "AdditionalData": null,
3987
- // "BackgroundColor": "",
3988
- // "Fields": [
3989
- // {
3990
- // "Accessory": "",
3991
- // "AdditionalValue": "",
3992
- // "ApiName": "ItemTSAType",
3993
- // "BackgroundColor": "",
3994
- // "Enabled": false,
3995
- // "EventsData": null,
3996
- // "FieldType": 1,
3997
- // "FormattedValue": "Accessories",
3998
- // "GroupFields": null,
3999
- // "Highlighted": false,
4000
- // "NotificationInfo": "",
4001
- // "OptionalValues": [],
4002
- // "ReferenceObjectInternalType": "",
4003
- // "ReferenceObjectSubType": "",
4004
- // "ReferenceObjectType": 0,
4005
- // "TextColor": "",
4006
- // "UiPageKey": "",
4007
- // "Value": "Accessories",
4008
- // "Visible": true
4009
- // },
4010
- // {
4011
- // "Accessory": "",
4012
- // "AdditionalValue": "",
4013
- // "ApiName": "ObjectMenu",
4014
- // "BackgroundColor": "",
4015
- // "Enabled": true,
4016
- // "EventsData": null,
4017
- // "FieldType": 17,
4018
- // "FormattedValue": "",
4019
- // "GroupFields": null,
4020
- // "Highlighted": false,
4021
- // "NotificationInfo": "",
4022
- // "OptionalValues": [],
4023
- // "ReferenceObjectInternalType": "",
4024
- // "ReferenceObjectSubType": "",
4025
- // "ReferenceObjectType": 0,
4026
- // "TextColor": "",
4027
- // "UiPageKey": "",
4028
- // "Value": "",
4029
- // "Visible": true
4030
- // },
4031
- // {
4032
- // "Accessory": "",
4033
- // "AdditionalValue": "",
4034
- // "ApiName": "TSARelteadItems",
4035
- // "BackgroundColor": "",
4036
- // "Enabled": true,
4037
- // "EventsData": null,
4038
- // "FieldType": 1,
4039
- // "FormattedValue": "[\"56d8015b-705c-4a1d-9db9-8926fad4bc48\",\"32fca2a8-9882-44e3-a9e2-fb98d4282529\",\"a76fad1a-0143-449f-9553-fa85a11d7e81\",\"f2c6c4c6-b33c-47e1-86a4-57ed5edb757a\",\"e77f883f-92b0-41ef-80fb-806bfb375b6a\"]",
4040
- // "GroupFields": null,
4041
- // "Highlighted": false,
4042
- // "NotificationInfo": "",
4043
- // "OptionalValues": [],
4044
- // "ReferenceObjectInternalType": "",
4045
- // "ReferenceObjectSubType": "",
4046
- // "ReferenceObjectType": 0,
4047
- // "TextColor": "",
4048
- // "UiPageKey": "",
4049
- // "Value": "[\"56d8015b-705c-4a1d-9db9-8926fad4bc48\",\"32fca2a8-9882-44e3-a9e2-fb98d4282529\",\"a76fad1a-0143-449f-9553-fa85a11d7e81\",\"f2c6c4c6-b33c-47e1-86a4-57ed5edb757a\",\"e77f883f-92b0-41ef-80fb-806bfb375b6a\"]",
4050
- // "Visible": true
4051
- // },
4052
- // {
4053
- // "Accessory": "",
4054
- // "AdditionalValue": "",
4055
- // "ApiName": "Image",
4056
- // "BackgroundColor": "",
4057
- // "Enabled": false,
4058
- // "EventsData": null,
4059
- // "FieldType": 27,
4060
- // "FormattedValue": "https://cdn.pepperi.com/WrntyImages/30013636/PortfolioItems/2/65147322_1.jpg?ft=1",
4061
- // "GroupFields": null,
4062
- // "Highlighted": false,
4063
- // "NotificationInfo": "",
4064
- // "OptionalValues": [],
4065
- // "ReferenceObjectInternalType": "",
4066
- // "ReferenceObjectSubType": "",
4067
- // "ReferenceObjectType": 0,
4068
- // "TextColor": "",
4069
- // "UiPageKey": "",
4070
- // "Value": "https://cdn.pepperi.com/WrntyImages/30013636/PortfolioItems/2/65147322_1.jpg?ft=1",
4071
- // "Visible": true
4072
- // },
4073
- // {
4074
- // "Accessory": "",
4075
- // "AdditionalValue": "",
4076
- // "ApiName": "ItemName",
4077
- // "BackgroundColor": "",
4078
- // "Enabled": false,
4079
- // "EventsData": null,
4080
- // "FieldType": 1,
4081
- // "FormattedValue": "Outdoor Hat",
4082
- // "GroupFields": null,
4083
- // "Highlighted": false,
4084
- // "NotificationInfo": "",
4085
- // "OptionalValues": [],
4086
- // "ReferenceObjectInternalType": "",
4087
- // "ReferenceObjectSubType": "",
4088
- // "ReferenceObjectType": 0,
4089
- // "TextColor": "",
4090
- // "UiPageKey": "",
4091
- // "Value": "Outdoor Hat",
4092
- // "Visible": true
4093
- // },
4094
- // {
4095
- // "Accessory": "",
4096
- // "AdditionalValue": "",
4097
- // "ApiName": "ItemExternalID",
4098
- // "BackgroundColor": "",
4099
- // "Enabled": false,
4100
- // "EventsData": null,
4101
- // "FieldType": 1,
4102
- // "FormattedValue": "HT3008",
4103
- // "GroupFields": null,
4104
- // "Highlighted": false,
4105
- // "NotificationInfo": "",
4106
- // "OptionalValues": [],
4107
- // "ReferenceObjectInternalType": "",
4108
- // "ReferenceObjectSubType": "",
4109
- // "ReferenceObjectType": 0,
4110
- // "TextColor": "",
4111
- // "UiPageKey": "",
4112
- // "Value": "HT3008",
4113
- // "Visible": true
4114
- // },
4115
- // {
4116
- // "Accessory": "$",
4117
- // "AdditionalValue": "",
4118
- // "ApiName": "ItemPrice",
4119
- // "BackgroundColor": "",
4120
- // "Enabled": false,
4121
- // "EventsData": null,
4122
- // "FieldType": 9,
4123
- // "FormattedValue": "$22.00",
4124
- // "GroupFields": null,
4125
- // "Highlighted": false,
4126
- // "NotificationInfo": "",
4127
- // "OptionalValues": [],
4128
- // "ReferenceObjectInternalType": "",
4129
- // "ReferenceObjectSubType": "",
4130
- // "ReferenceObjectType": 0,
4131
- // "TextColor": "",
4132
- // "UiPageKey": "",
4133
- // "Value": "22.0000",
4134
- // "Visible": true
4135
- // },
4136
- // {
4137
- // "Accessory": "",
4138
- // "AdditionalValue": "",
4139
- // "ApiName": "UnitsQuantity",
4140
- // "BackgroundColor": "",
4141
- // "Enabled": true,
4142
- // "EventsData": null,
4143
- // "FieldType": 28,
4144
- // "FormattedValue": "0",
4145
- // "GroupFields": null,
4146
- // "Highlighted": false,
4147
- // "NotificationInfo": "",
4148
- // "OptionalValues": [],
4149
- // "ReferenceObjectInternalType": "",
4150
- // "ReferenceObjectSubType": "",
4151
- // "ReferenceObjectType": 0,
4152
- // "TextColor": "",
4153
- // "UiPageKey": "",
4154
- // "Value": "0.0000",
4155
- // "Visible": true
4156
- // },
4157
- // {
4158
- // "Accessory": "",
4159
- // "AdditionalValue": "",
4160
- // "ApiName": "ItemTSASeason",
4161
- // "BackgroundColor": "",
4162
- // "Enabled": false,
4163
- // "EventsData": null,
4164
- // "FieldType": 1,
4165
- // "FormattedValue": "Winter",
4166
- // "GroupFields": null,
4167
- // "Highlighted": false,
4168
- // "NotificationInfo": "",
4169
- // "OptionalValues": [],
4170
- // "ReferenceObjectInternalType": "",
4171
- // "ReferenceObjectSubType": "",
4172
- // "ReferenceObjectType": 0,
4173
- // "TextColor": "",
4174
- // "UiPageKey": "",
4175
- // "Value": "Winter",
4176
- // "Visible": true
4177
- // },
4178
- // {
4179
- // "Accessory": "",
4180
- // "AdditionalValue": "",
4181
- // "ApiName": "ItemTSAPackaging",
4182
- // "BackgroundColor": "",
4183
- // "Enabled": false,
4184
- // "EventsData": null,
4185
- // "FieldType": 1,
4186
- // "FormattedValue": "A",
4187
- // "GroupFields": null,
4188
- // "Highlighted": false,
4189
- // "NotificationInfo": "",
4190
- // "OptionalValues": [],
4191
- // "ReferenceObjectInternalType": "",
4192
- // "ReferenceObjectSubType": "",
4193
- // "ReferenceObjectType": 0,
4194
- // "TextColor": "",
4195
- // "UiPageKey": "",
4196
- // "Value": "A",
4197
- // "Visible": true
4198
- // }
4199
- // ],
4200
- // "IsEditable": false,
4201
- // "IsSelectableForActions": false,
4202
- // "MainAction": null,
4203
- // "Profile": null,
4204
- // "Type": 0,
4205
- // "UID": "bd8b13ae-2a5c-4689-8488-32f6cb722ba9"
4206
- // },
4207
- // {
4208
- // "AdditionalData": null,
4209
- // "BackgroundColor": "",
4210
- // "Fields": [
4211
- // {
4212
- // "Accessory": "",
4213
- // "AdditionalValue": "",
4214
- // "ApiName": "ItemTSAType",
4215
- // "BackgroundColor": "",
4216
- // "Enabled": false,
4217
- // "EventsData": null,
4218
- // "FieldType": 1,
4219
- // "FormattedValue": "Accessories",
4220
- // "GroupFields": null,
4221
- // "Highlighted": false,
4222
- // "NotificationInfo": "",
4223
- // "OptionalValues": [],
4224
- // "ReferenceObjectInternalType": "",
4225
- // "ReferenceObjectSubType": "",
4226
- // "ReferenceObjectType": 0,
4227
- // "TextColor": "",
4228
- // "UiPageKey": "",
4229
- // "Value": "Accessories",
4230
- // "Visible": true
4231
- // },
4232
- // {
4233
- // "Accessory": "",
4234
- // "AdditionalValue": "",
4235
- // "ApiName": "ObjectMenu",
4236
- // "BackgroundColor": "",
4237
- // "Enabled": true,
4238
- // "EventsData": null,
4239
- // "FieldType": 17,
4240
- // "FormattedValue": "",
4241
- // "GroupFields": null,
4242
- // "Highlighted": false,
4243
- // "NotificationInfo": "",
4244
- // "OptionalValues": [],
4245
- // "ReferenceObjectInternalType": "",
4246
- // "ReferenceObjectSubType": "",
4247
- // "ReferenceObjectType": 0,
4248
- // "TextColor": "",
4249
- // "UiPageKey": "",
4250
- // "Value": "",
4251
- // "Visible": true
4252
- // },
4253
- // {
4254
- // "Accessory": "",
4255
- // "AdditionalValue": "",
4256
- // "ApiName": "TSARelteadItems",
4257
- // "BackgroundColor": "",
4258
- // "Enabled": true,
4259
- // "EventsData": null,
4260
- // "FieldType": 1,
4261
- // "FormattedValue": "[\"56d8015b-705c-4a1d-9db9-8926fad4bc48\",\"32fca2a8-9882-44e3-a9e2-fb98d4282529\",\"a76fad1a-0143-449f-9553-fa85a11d7e81\",\"f2c6c4c6-b33c-47e1-86a4-57ed5edb757a\",\"e77f883f-92b0-41ef-80fb-806bfb375b6a\"]",
4262
- // "GroupFields": null,
4263
- // "Highlighted": false,
4264
- // "NotificationInfo": "",
4265
- // "OptionalValues": [],
4266
- // "ReferenceObjectInternalType": "",
4267
- // "ReferenceObjectSubType": "",
4268
- // "ReferenceObjectType": 0,
4269
- // "TextColor": "",
4270
- // "UiPageKey": "",
4271
- // "Value": "[\"56d8015b-705c-4a1d-9db9-8926fad4bc48\",\"32fca2a8-9882-44e3-a9e2-fb98d4282529\",\"a76fad1a-0143-449f-9553-fa85a11d7e81\",\"f2c6c4c6-b33c-47e1-86a4-57ed5edb757a\",\"e77f883f-92b0-41ef-80fb-806bfb375b6a\"]",
4272
- // "Visible": true
4273
- // },
4274
- // {
4275
- // "Accessory": "",
4276
- // "AdditionalValue": "",
4277
- // "ApiName": "Image",
4278
- // "BackgroundColor": "",
4279
- // "Enabled": false,
4280
- // "EventsData": null,
4281
- // "FieldType": 27,
4282
- // "FormattedValue": "https://cdn.pepperi.com/WrntyImages/30013636/PortfolioItems/3/65147323_1.jpg?ft=1",
4283
- // "GroupFields": null,
4284
- // "Highlighted": false,
4285
- // "NotificationInfo": "",
4286
- // "OptionalValues": [],
4287
- // "ReferenceObjectInternalType": "",
4288
- // "ReferenceObjectSubType": "",
4289
- // "ReferenceObjectType": 0,
4290
- // "TextColor": "",
4291
- // "UiPageKey": "",
4292
- // "Value": "https://cdn.pepperi.com/WrntyImages/30013636/PortfolioItems/3/65147323_1.jpg?ft=1",
4293
- // "Visible": true
4294
- // },
4295
- // {
4296
- // "Accessory": "",
4297
- // "AdditionalValue": "",
4298
- // "ApiName": "ItemName",
4299
- // "BackgroundColor": "",
4300
- // "Enabled": false,
4301
- // "EventsData": null,
4302
- // "FieldType": 1,
4303
- // "FormattedValue": "Outdoor Hat",
4304
- // "GroupFields": null,
4305
- // "Highlighted": false,
4306
- // "NotificationInfo": "",
4307
- // "OptionalValues": [],
4308
- // "ReferenceObjectInternalType": "",
4309
- // "ReferenceObjectSubType": "",
4310
- // "ReferenceObjectType": 0,
4311
- // "TextColor": "",
4312
- // "UiPageKey": "",
4313
- // "Value": "Outdoor Hat",
4314
- // "Visible": true
4315
- // },
4316
- // {
4317
- // "Accessory": "",
4318
- // "AdditionalValue": "",
4319
- // "ApiName": "ItemExternalID",
4320
- // "BackgroundColor": "",
4321
- // "Enabled": false,
4322
- // "EventsData": null,
4323
- // "FieldType": 1,
4324
- // "FormattedValue": "HT3009",
4325
- // "GroupFields": null,
4326
- // "Highlighted": false,
4327
- // "NotificationInfo": "",
4328
- // "OptionalValues": [],
4329
- // "ReferenceObjectInternalType": "",
4330
- // "ReferenceObjectSubType": "",
4331
- // "ReferenceObjectType": 0,
4332
- // "TextColor": "",
4333
- // "UiPageKey": "",
4334
- // "Value": "HT3009",
4335
- // "Visible": true
4336
- // },
4337
- // {
4338
- // "Accessory": "$",
4339
- // "AdditionalValue": "",
4340
- // "ApiName": "ItemPrice",
4341
- // "BackgroundColor": "",
4342
- // "Enabled": false,
4343
- // "EventsData": null,
4344
- // "FieldType": 9,
4345
- // "FormattedValue": "$23.00",
4346
- // "GroupFields": null,
4347
- // "Highlighted": false,
4348
- // "NotificationInfo": "",
4349
- // "OptionalValues": [],
4350
- // "ReferenceObjectInternalType": "",
4351
- // "ReferenceObjectSubType": "",
4352
- // "ReferenceObjectType": 0,
4353
- // "TextColor": "",
4354
- // "UiPageKey": "",
4355
- // "Value": "23.0000",
4356
- // "Visible": true
4357
- // },
4358
- // {
4359
- // "Accessory": "",
4360
- // "AdditionalValue": "",
4361
- // "ApiName": "UnitsQuantity",
4362
- // "BackgroundColor": "",
4363
- // "Enabled": true,
4364
- // "EventsData": null,
4365
- // "FieldType": 28,
4366
- // "FormattedValue": "0",
4367
- // "GroupFields": null,
4368
- // "Highlighted": false,
4369
- // "NotificationInfo": "",
4370
- // "OptionalValues": [],
4371
- // "ReferenceObjectInternalType": "",
4372
- // "ReferenceObjectSubType": "",
4373
- // "ReferenceObjectType": 0,
4374
- // "TextColor": "",
4375
- // "UiPageKey": "",
4376
- // "Value": "0.0000",
4377
- // "Visible": true
4378
- // },
4379
- // {
4380
- // "Accessory": "",
4381
- // "AdditionalValue": "",
4382
- // "ApiName": "ItemTSASeason",
4383
- // "BackgroundColor": "",
4384
- // "Enabled": false,
4385
- // "EventsData": null,
4386
- // "FieldType": 1,
4387
- // "FormattedValue": "Winter",
4388
- // "GroupFields": null,
4389
- // "Highlighted": false,
4390
- // "NotificationInfo": "",
4391
- // "OptionalValues": [],
4392
- // "ReferenceObjectInternalType": "",
4393
- // "ReferenceObjectSubType": "",
4394
- // "ReferenceObjectType": 0,
4395
- // "TextColor": "",
4396
- // "UiPageKey": "",
4397
- // "Value": "Winter",
4398
- // "Visible": true
4399
- // },
4400
- // {
4401
- // "Accessory": "",
4402
- // "AdditionalValue": "",
4403
- // "ApiName": "ItemTSAPackaging",
4404
- // "BackgroundColor": "",
4405
- // "Enabled": false,
4406
- // "EventsData": null,
4407
- // "FieldType": 1,
4408
- // "FormattedValue": "A",
4409
- // "GroupFields": null,
4410
- // "Highlighted": false,
4411
- // "NotificationInfo": "",
4412
- // "OptionalValues": [],
4413
- // "ReferenceObjectInternalType": "",
4414
- // "ReferenceObjectSubType": "",
4415
- // "ReferenceObjectType": 0,
4416
- // "TextColor": "",
4417
- // "UiPageKey": "",
4418
- // "Value": "A",
4419
- // "Visible": true
4420
- // }
4421
- // ],
4422
- // "IsEditable": false,
4423
- // "IsSelectableForActions": false,
4424
- // "MainAction": null,
4425
- // "Profile": null,
4426
- // "Type": 0,
4427
- // "UID": "27bfe67d-13f4-4982-b5d0-3ebf5d753e0f"
4428
- // },
4429
- // {
4430
- // "AdditionalData": null,
4431
- // "BackgroundColor": "",
4432
- // "Fields": [
4433
- // {
4434
- // "Accessory": "",
4435
- // "AdditionalValue": "",
4436
- // "ApiName": "ItemTSAType",
4437
- // "BackgroundColor": "",
4438
- // "Enabled": false,
4439
- // "EventsData": null,
4440
- // "FieldType": 1,
4441
- // "FormattedValue": "Accessories",
4442
- // "GroupFields": null,
4443
- // "Highlighted": false,
4444
- // "NotificationInfo": "",
4445
- // "OptionalValues": [],
4446
- // "ReferenceObjectInternalType": "",
4447
- // "ReferenceObjectSubType": "",
4448
- // "ReferenceObjectType": 0,
4449
- // "TextColor": "",
4450
- // "UiPageKey": "",
4451
- // "Value": "Accessories",
4452
- // "Visible": true
4453
- // },
4454
- // {
4455
- // "Accessory": "",
4456
- // "AdditionalValue": "",
4457
- // "ApiName": "ObjectMenu",
4458
- // "BackgroundColor": "",
4459
- // "Enabled": true,
4460
- // "EventsData": null,
4461
- // "FieldType": 17,
4462
- // "FormattedValue": "",
4463
- // "GroupFields": null,
4464
- // "Highlighted": false,
4465
- // "NotificationInfo": "",
4466
- // "OptionalValues": [],
4467
- // "ReferenceObjectInternalType": "",
4468
- // "ReferenceObjectSubType": "",
4469
- // "ReferenceObjectType": 0,
4470
- // "TextColor": "",
4471
- // "UiPageKey": "",
4472
- // "Value": "",
4473
- // "Visible": true
4474
- // },
4475
- // {
4476
- // "Accessory": "",
4477
- // "AdditionalValue": "",
4478
- // "ApiName": "TSARelteadItems",
4479
- // "BackgroundColor": "",
4480
- // "Enabled": true,
4481
- // "EventsData": null,
4482
- // "FieldType": 1,
4483
- // "FormattedValue": "[\"56d8015b-705c-4a1d-9db9-8926fad4bc48\",\"32fca2a8-9882-44e3-a9e2-fb98d4282529\",\"a76fad1a-0143-449f-9553-fa85a11d7e81\",\"f2c6c4c6-b33c-47e1-86a4-57ed5edb757a\",\"e77f883f-92b0-41ef-80fb-806bfb375b6a\"]",
4484
- // "GroupFields": null,
4485
- // "Highlighted": false,
4486
- // "NotificationInfo": "",
4487
- // "OptionalValues": [],
4488
- // "ReferenceObjectInternalType": "",
4489
- // "ReferenceObjectSubType": "",
4490
- // "ReferenceObjectType": 0,
4491
- // "TextColor": "",
4492
- // "UiPageKey": "",
4493
- // "Value": "[\"56d8015b-705c-4a1d-9db9-8926fad4bc48\",\"32fca2a8-9882-44e3-a9e2-fb98d4282529\",\"a76fad1a-0143-449f-9553-fa85a11d7e81\",\"f2c6c4c6-b33c-47e1-86a4-57ed5edb757a\",\"e77f883f-92b0-41ef-80fb-806bfb375b6a\"]",
4494
- // "Visible": true
4495
- // },
4496
- // {
4497
- // "Accessory": "",
4498
- // "AdditionalValue": "",
4499
- // "ApiName": "Image",
4500
- // "BackgroundColor": "",
4501
- // "Enabled": false,
4502
- // "EventsData": null,
4503
- // "FieldType": 27,
4504
- // "FormattedValue": "https://cdn.pepperi.com/WrntyImages/30013636/PortfolioItems/4/65147324_1.jpg?ft=1",
4505
- // "GroupFields": null,
4506
- // "Highlighted": false,
4507
- // "NotificationInfo": "",
4508
- // "OptionalValues": [],
4509
- // "ReferenceObjectInternalType": "",
4510
- // "ReferenceObjectSubType": "",
4511
- // "ReferenceObjectType": 0,
4512
- // "TextColor": "",
4513
- // "UiPageKey": "",
4514
- // "Value": "https://cdn.pepperi.com/WrntyImages/30013636/PortfolioItems/4/65147324_1.jpg?ft=1",
4515
- // "Visible": true
4516
- // },
4517
- // {
4518
- // "Accessory": "",
4519
- // "AdditionalValue": "",
4520
- // "ApiName": "ItemName",
4521
- // "BackgroundColor": "",
4522
- // "Enabled": false,
4523
- // "EventsData": null,
4524
- // "FieldType": 1,
4525
- // "FormattedValue": "Sport Hat",
4526
- // "GroupFields": null,
4527
- // "Highlighted": false,
4528
- // "NotificationInfo": "",
4529
- // "OptionalValues": [],
4530
- // "ReferenceObjectInternalType": "",
4531
- // "ReferenceObjectSubType": "",
4532
- // "ReferenceObjectType": 3473458,
4533
- // "TextColor": "",
4534
- // "UiPageKey": "",
4535
- // "Value": "Sport Hat",
4536
- // "Visible": true
4537
- // },
4538
- // {
4539
- // "Accessory": "",
4540
- // "AdditionalValue": "",
4541
- // "ApiName": "ItemExternalID",
4542
- // "BackgroundColor": "",
4543
- // "Enabled": false,
4544
- // "EventsData": null,
4545
- // "FieldType": 1,
4546
- // "FormattedValue": "HT3010",
4547
- // "GroupFields": null,
4548
- // "Highlighted": false,
4549
- // "NotificationInfo": "",
4550
- // "OptionalValues": [],
4551
- // "ReferenceObjectInternalType": "",
4552
- // "ReferenceObjectSubType": "",
4553
- // "ReferenceObjectType": 0,
4554
- // "TextColor": "",
4555
- // "UiPageKey": "",
4556
- // "Value": "HT3010",
4557
- // "Visible": true
4558
- // },
4559
- // {
4560
- // "Accessory": "$",
4561
- // "AdditionalValue": "",
4562
- // "ApiName": "ItemPrice",
4563
- // "BackgroundColor": "",
4564
- // "Enabled": false,
4565
- // "EventsData": null,
4566
- // "FieldType": 9,
4567
- // "FormattedValue": "$24.00",
4568
- // "GroupFields": null,
4569
- // "Highlighted": false,
4570
- // "NotificationInfo": "",
4571
- // "OptionalValues": [],
4572
- // "ReferenceObjectInternalType": "",
4573
- // "ReferenceObjectSubType": "",
4574
- // "ReferenceObjectType": 0,
4575
- // "TextColor": "",
4576
- // "UiPageKey": "",
4577
- // "Value": "24.0000",
4578
- // "Visible": true
4579
- // },
4580
- // {
4581
- // "Accessory": "",
4582
- // "AdditionalValue": "",
4583
- // "ApiName": "UnitsQuantity",
4584
- // "BackgroundColor": "",
4585
- // "Enabled": true,
4586
- // "EventsData": null,
4587
- // "FieldType": 28,
4588
- // "FormattedValue": "0",
4589
- // "GroupFields": null,
4590
- // "Highlighted": false,
4591
- // "NotificationInfo": "",
4592
- // "OptionalValues": [],
4593
- // "ReferenceObjectInternalType": "",
4594
- // "ReferenceObjectSubType": "",
4595
- // "ReferenceObjectType": 0,
4596
- // "TextColor": "",
4597
- // "UiPageKey": "",
4598
- // "Value": "0.0000",
4599
- // "Visible": true
4600
- // },
4601
- // {
4602
- // "Accessory": "",
4603
- // "AdditionalValue": "",
4604
- // "ApiName": "ItemTSASeason",
4605
- // "BackgroundColor": "",
4606
- // "Enabled": false,
4607
- // "EventsData": null,
4608
- // "FieldType": 1,
4609
- // "FormattedValue": "Winter",
4610
- // "GroupFields": null,
4611
- // "Highlighted": false,
4612
- // "NotificationInfo": "",
4613
- // "OptionalValues": [],
4614
- // "ReferenceObjectInternalType": "",
4615
- // "ReferenceObjectSubType": "",
4616
- // "ReferenceObjectType": 0,
4617
- // "TextColor": "",
4618
- // "UiPageKey": "",
4619
- // "Value": "Winter",
4620
- // "Visible": true
4621
- // },
4622
- // {
4623
- // "Accessory": "",
4624
- // "AdditionalValue": "",
4625
- // "ApiName": "ItemTSAPackaging",
4626
- // "BackgroundColor": "",
4627
- // "Enabled": false,
4628
- // "EventsData": null,
4629
- // "FieldType": 1,
4630
- // "FormattedValue": "A",
4631
- // "GroupFields": null,
4632
- // "Highlighted": false,
4633
- // "NotificationInfo": "",
4634
- // "OptionalValues": [],
4635
- // "ReferenceObjectInternalType": "",
4636
- // "ReferenceObjectSubType": "",
4637
- // "ReferenceObjectType": 0,
4638
- // "TextColor": "",
4639
- // "UiPageKey": "",
4640
- // "Value": "A",
4641
- // "Visible": true
4642
- // }
4643
- // ],
4644
- // "IsEditable": false,
4645
- // "IsSelectableForActions": false,
4646
- // "MainAction": null,
4647
- // "Profile": null,
4648
- // "Type": 0,
4649
- // "UID": "f04e0fd3-7832-432d-ae27-1820ba9a9c85"
4650
- // },
4651
- // {
4652
- // "AdditionalData": null,
4653
- // "BackgroundColor": "",
4654
- // "Fields": [
4655
- // {
4656
- // "Accessory": "",
4657
- // "AdditionalValue": "",
4658
- // "ApiName": "ItemTSAType",
4659
- // "BackgroundColor": "",
4660
- // "Enabled": false,
4661
- // "EventsData": null,
4662
- // "FieldType": 1,
4663
- // "FormattedValue": "Accessories",
4664
- // "GroupFields": null,
4665
- // "Highlighted": false,
4666
- // "NotificationInfo": "",
4667
- // "OptionalValues": [],
4668
- // "ReferenceObjectInternalType": "",
4669
- // "ReferenceObjectSubType": "",
4670
- // "ReferenceObjectType": 2106973712,
4671
- // "TextColor": "",
4672
- // "UiPageKey": "",
4673
- // "Value": "Accessories",
4674
- // "Visible": true
4675
- // },
4676
- // {
4677
- // "Accessory": "",
4678
- // "AdditionalValue": "",
4679
- // "ApiName": "ObjectMenu",
4680
- // "BackgroundColor": "",
4681
- // "Enabled": true,
4682
- // "EventsData": null,
4683
- // "FieldType": 17,
4684
- // "FormattedValue": "",
4685
- // "GroupFields": null,
4686
- // "Highlighted": false,
4687
- // "NotificationInfo": "",
4688
- // "OptionalValues": [],
4689
- // "ReferenceObjectInternalType": "",
4690
- // "ReferenceObjectSubType": "",
4691
- // "ReferenceObjectType": 0,
4692
- // "TextColor": "",
4693
- // "UiPageKey": "",
4694
- // "Value": "",
4695
- // "Visible": true
4696
- // },
4697
- // {
4698
- // "Accessory": "",
4699
- // "AdditionalValue": "",
4700
- // "ApiName": "TSARelteadItems",
4701
- // "BackgroundColor": "",
4702
- // "Enabled": true,
4703
- // "EventsData": null,
4704
- // "FieldType": 1,
4705
- // "FormattedValue": "[\"56d8015b-705c-4a1d-9db9-8926fad4bc48\",\"32fca2a8-9882-44e3-a9e2-fb98d4282529\",\"a76fad1a-0143-449f-9553-fa85a11d7e81\",\"f2c6c4c6-b33c-47e1-86a4-57ed5edb757a\",\"e77f883f-92b0-41ef-80fb-806bfb375b6a\"]",
4706
- // "GroupFields": null,
4707
- // "Highlighted": false,
4708
- // "NotificationInfo": "",
4709
- // "OptionalValues": [],
4710
- // "ReferenceObjectInternalType": "",
4711
- // "ReferenceObjectSubType": "",
4712
- // "ReferenceObjectType": 13,
4713
- // "TextColor": "",
4714
- // "UiPageKey": "",
4715
- // "Value": "[\"56d8015b-705c-4a1d-9db9-8926fad4bc48\",\"32fca2a8-9882-44e3-a9e2-fb98d4282529\",\"a76fad1a-0143-449f-9553-fa85a11d7e81\",\"f2c6c4c6-b33c-47e1-86a4-57ed5edb757a\",\"e77f883f-92b0-41ef-80fb-806bfb375b6a\"]",
4716
- // "Visible": true
4717
- // },
4718
- // {
4719
- // "Accessory": "",
4720
- // "AdditionalValue": "",
4721
- // "ApiName": "Image",
4722
- // "BackgroundColor": "",
4723
- // "Enabled": false,
4724
- // "EventsData": null,
4725
- // "FieldType": 27,
4726
- // "FormattedValue": "https://cdn.pepperi.com/WrntyImages/30013636/PortfolioItems/5/65147315_1.jpg?ft=1",
4727
- // "GroupFields": null,
4728
- // "Highlighted": false,
4729
- // "NotificationInfo": "",
4730
- // "OptionalValues": [],
4731
- // "ReferenceObjectInternalType": "",
4732
- // "ReferenceObjectSubType": "",
4733
- // "ReferenceObjectType": 0,
4734
- // "TextColor": "",
4735
- // "UiPageKey": "",
4736
- // "Value": "https://cdn.pepperi.com/WrntyImages/30013636/PortfolioItems/5/65147315_1.jpg?ft=1",
4737
- // "Visible": true
4738
- // },
4739
- // {
4740
- // "Accessory": "",
4741
- // "AdditionalValue": "",
4742
- // "ApiName": "ItemName",
4743
- // "BackgroundColor": "",
4744
- // "Enabled": false,
4745
- // "EventsData": null,
4746
- // "FieldType": 1,
4747
- // "FormattedValue": "Wool Hat",
4748
- // "GroupFields": null,
4749
- // "Highlighted": false,
4750
- // "NotificationInfo": "",
4751
- // "OptionalValues": [],
4752
- // "ReferenceObjectInternalType": "",
4753
- // "ReferenceObjectSubType": "",
4754
- // "ReferenceObjectType": 0,
4755
- // "TextColor": "",
4756
- // "UiPageKey": "",
4757
- // "Value": "Wool Hat",
4758
- // "Visible": true
4759
- // },
4760
- // {
4761
- // "Accessory": "",
4762
- // "AdditionalValue": "",
4763
- // "ApiName": "ItemExternalID",
4764
- // "BackgroundColor": "",
4765
- // "Enabled": false,
4766
- // "EventsData": null,
4767
- // "FieldType": 1,
4768
- // "FormattedValue": "HT3001",
4769
- // "GroupFields": null,
4770
- // "Highlighted": false,
4771
- // "NotificationInfo": "",
4772
- // "OptionalValues": [],
4773
- // "ReferenceObjectInternalType": "",
4774
- // "ReferenceObjectSubType": "",
4775
- // "ReferenceObjectType": 0,
4776
- // "TextColor": "",
4777
- // "UiPageKey": "",
4778
- // "Value": "HT3001",
4779
- // "Visible": true
4780
- // },
4781
- // {
4782
- // "Accessory": "$",
4783
- // "AdditionalValue": "",
4784
- // "ApiName": "ItemPrice",
4785
- // "BackgroundColor": "",
4786
- // "Enabled": false,
4787
- // "EventsData": null,
4788
- // "FieldType": 9,
4789
- // "FormattedValue": "$23.00",
4790
- // "GroupFields": null,
4791
- // "Highlighted": false,
4792
- // "NotificationInfo": "",
4793
- // "OptionalValues": [],
4794
- // "ReferenceObjectInternalType": "",
4795
- // "ReferenceObjectSubType": "",
4796
- // "ReferenceObjectType": 4980834,
4797
- // "TextColor": "",
4798
- // "UiPageKey": "",
4799
- // "Value": "23.0000",
4800
- // "Visible": true
4801
- // },
4802
- // {
4803
- // "Accessory": "",
4804
- // "AdditionalValue": "",
4805
- // "ApiName": "UnitsQuantity",
4806
- // "BackgroundColor": "",
4807
- // "Enabled": true,
4808
- // "EventsData": null,
4809
- // "FieldType": 28,
4810
- // "FormattedValue": "1",
4811
- // "GroupFields": null,
4812
- // "Highlighted": false,
4813
- // "NotificationInfo": "",
4814
- // "OptionalValues": [],
4815
- // "ReferenceObjectInternalType": "",
4816
- // "ReferenceObjectSubType": "",
4817
- // "ReferenceObjectType": 0,
4818
- // "TextColor": "#FF0000",
4819
- // "UiPageKey": "",
4820
- // "Value": "1.0000",
4821
- // "Visible": true
4822
- // },
4823
- // {
4824
- // "Accessory": "",
4825
- // "AdditionalValue": "",
4826
- // "ApiName": "ItemTSASeason",
4827
- // "BackgroundColor": "",
4828
- // "Enabled": false,
4829
- // "EventsData": null,
4830
- // "FieldType": 1,
4831
- // "FormattedValue": "Fall",
4832
- // "GroupFields": null,
4833
- // "Highlighted": false,
4834
- // "NotificationInfo": "",
4835
- // "OptionalValues": [],
4836
- // "ReferenceObjectInternalType": "",
4837
- // "ReferenceObjectSubType": "",
4838
- // "ReferenceObjectType": 0,
4839
- // "TextColor": "",
4840
- // "UiPageKey": "",
4841
- // "Value": "Fall",
4842
- // "Visible": true
4843
- // },
4844
- // {
4845
- // "Accessory": "",
4846
- // "AdditionalValue": "",
4847
- // "ApiName": "ItemTSAPackaging",
4848
- // "BackgroundColor": "",
4849
- // "Enabled": false,
4850
- // "EventsData": null,
4851
- // "FieldType": 1,
4852
- // "FormattedValue": "A",
4853
- // "GroupFields": null,
4854
- // "Highlighted": false,
4855
- // "NotificationInfo": "",
4856
- // "OptionalValues": [],
4857
- // "ReferenceObjectInternalType": "",
4858
- // "ReferenceObjectSubType": "",
4859
- // "ReferenceObjectType": 0,
4860
- // "TextColor": "",
4861
- // "UiPageKey": "",
4862
- // "Value": "A",
4863
- // "Visible": true
4864
- // }
4865
- // ],
4866
- // "IsEditable": false,
4867
- // "IsSelectableForActions": false,
4868
- // "MainAction": null,
4869
- // "Profile": null,
4870
- // "Type": 0,
4871
- // "UID": "040f35a5-c35f-4099-9ddf-717d346194b0"
4872
- // },
4873
- // {
4874
- // "AdditionalData": null,
4875
- // "BackgroundColor": "",
4876
- // "Fields": [
4877
- // {
4878
- // "Accessory": "",
4879
- // "AdditionalValue": "",
4880
- // "ApiName": "ItemTSAType",
4881
- // "BackgroundColor": "",
4882
- // "Enabled": false,
4883
- // "EventsData": null,
4884
- // "FieldType": 1,
4885
- // "FormattedValue": "Bottoms",
4886
- // "GroupFields": null,
4887
- // "Highlighted": false,
4888
- // "NotificationInfo": "",
4889
- // "OptionalValues": [],
4890
- // "ReferenceObjectInternalType": "",
4891
- // "ReferenceObjectSubType": "",
4892
- // "ReferenceObjectType": 7012437,
4893
- // "TextColor": "",
4894
- // "UiPageKey": "",
4895
- // "Value": "Bottoms",
4896
- // "Visible": true
4897
- // },
4898
- // {
4899
- // "Accessory": "",
4900
- // "AdditionalValue": "",
4901
- // "ApiName": "ObjectMenu",
4902
- // "BackgroundColor": "",
4903
- // "Enabled": true,
4904
- // "EventsData": null,
4905
- // "FieldType": 17,
4906
- // "FormattedValue": "",
4907
- // "GroupFields": null,
4908
- // "Highlighted": false,
4909
- // "NotificationInfo": "",
4910
- // "OptionalValues": [],
4911
- // "ReferenceObjectInternalType": "",
4912
- // "ReferenceObjectSubType": "",
4913
- // "ReferenceObjectType": 0,
4914
- // "TextColor": "",
4915
- // "UiPageKey": "",
4916
- // "Value": "",
4917
- // "Visible": true
4918
- // },
4919
- // {
4920
- // "Accessory": "",
4921
- // "AdditionalValue": "",
4922
- // "ApiName": "TSARelteadItems",
4923
- // "BackgroundColor": "",
4924
- // "Enabled": true,
4925
- // "EventsData": null,
4926
- // "FieldType": 1,
4927
- // "FormattedValue": "[\"56d8015b-705c-4a1d-9db9-8926fad4bc48\",\"32fca2a8-9882-44e3-a9e2-fb98d4282529\",\"a76fad1a-0143-449f-9553-fa85a11d7e81\",\"f2c6c4c6-b33c-47e1-86a4-57ed5edb757a\",\"e77f883f-92b0-41ef-80fb-806bfb375b6a\"]",
4928
- // "GroupFields": null,
4929
- // "Highlighted": false,
4930
- // "NotificationInfo": "",
4931
- // "OptionalValues": [],
4932
- // "ReferenceObjectInternalType": "",
4933
- // "ReferenceObjectSubType": "",
4934
- // "ReferenceObjectType": 3604586,
4935
- // "TextColor": "",
4936
- // "UiPageKey": "",
4937
- // "Value": "[\"56d8015b-705c-4a1d-9db9-8926fad4bc48\",\"32fca2a8-9882-44e3-a9e2-fb98d4282529\",\"a76fad1a-0143-449f-9553-fa85a11d7e81\",\"f2c6c4c6-b33c-47e1-86a4-57ed5edb757a\",\"e77f883f-92b0-41ef-80fb-806bfb375b6a\"]",
4938
- // "Visible": true
4939
- // },
4940
- // {
4941
- // "Accessory": "",
4942
- // "AdditionalValue": "",
4943
- // "ApiName": "Image",
4944
- // "BackgroundColor": "",
4945
- // "Enabled": false,
4946
- // "EventsData": null,
4947
- // "FieldType": 27,
4948
- // "FormattedValue": "",
4949
- // "GroupFields": null,
4950
- // "Highlighted": false,
4951
- // "NotificationInfo": "",
4952
- // "OptionalValues": [],
4953
- // "ReferenceObjectInternalType": "",
4954
- // "ReferenceObjectSubType": "",
4955
- // "ReferenceObjectType": 0,
4956
- // "TextColor": "",
4957
- // "UiPageKey": "",
4958
- // "Value": "",
4959
- // "Visible": true
4960
- // },
4961
- // {
4962
- // "Accessory": "",
4963
- // "AdditionalValue": "",
4964
- // "ApiName": "ItemName",
4965
- // "BackgroundColor": "",
4966
- // "Enabled": false,
4967
- // "EventsData": null,
4968
- // "FieldType": 1,
4969
- // "FormattedValue": "Loose fit",
4970
- // "GroupFields": null,
4971
- // "Highlighted": false,
4972
- // "NotificationInfo": "",
4973
- // "OptionalValues": [],
4974
- // "ReferenceObjectInternalType": "",
4975
- // "ReferenceObjectSubType": "",
4976
- // "ReferenceObjectType": 0,
4977
- // "TextColor": "",
4978
- // "UiPageKey": "",
4979
- // "Value": "Loose fit",
4980
- // "Visible": true
4981
- // },
4982
- // {
4983
- // "Accessory": "",
4984
- // "AdditionalValue": "",
4985
- // "ApiName": "ItemExternalID",
4986
- // "BackgroundColor": "",
4987
- // "Enabled": false,
4988
- // "EventsData": null,
4989
- // "FieldType": 1,
4990
- // "FormattedValue": "WJS32",
4991
- // "GroupFields": null,
4992
- // "Highlighted": false,
4993
- // "NotificationInfo": "",
4994
- // "OptionalValues": [],
4995
- // "ReferenceObjectInternalType": "",
4996
- // "ReferenceObjectSubType": "",
4997
- // "ReferenceObjectType": 0,
4998
- // "TextColor": "",
4999
- // "UiPageKey": "",
5000
- // "Value": "WJS32",
5001
- // "Visible": true
5002
- // },
5003
- // {
5004
- // "Accessory": "$",
5005
- // "AdditionalValue": "",
5006
- // "ApiName": "ItemPrice",
5007
- // "BackgroundColor": "",
5008
- // "Enabled": false,
5009
- // "EventsData": null,
5010
- // "FieldType": 9,
5011
- // "FormattedValue": "$123.00",
5012
- // "GroupFields": null,
5013
- // "Highlighted": false,
5014
- // "NotificationInfo": "",
5015
- // "OptionalValues": [],
5016
- // "ReferenceObjectInternalType": "",
5017
- // "ReferenceObjectSubType": "",
5018
- // "ReferenceObjectType": 0,
5019
- // "TextColor": "",
5020
- // "UiPageKey": "",
5021
- // "Value": "123.0000",
5022
- // "Visible": true
5023
- // },
5024
- // {
5025
- // "Accessory": "",
5026
- // "AdditionalValue": "",
5027
- // "ApiName": "UnitsQuantity",
5028
- // "BackgroundColor": "",
5029
- // "Enabled": true,
5030
- // "EventsData": null,
5031
- // "FieldType": 17,
5032
- // "FormattedValue": "0",
5033
- // "GroupFields": null,
5034
- // "Highlighted": false,
5035
- // "NotificationInfo": "",
5036
- // "OptionalValues": [],
5037
- // "ReferenceObjectInternalType": "",
5038
- // "ReferenceObjectSubType": "",
5039
- // "ReferenceObjectType": 0,
5040
- // "TextColor": "",
5041
- // "UiPageKey": "",
5042
- // "Value": "0.0000",
5043
- // "Visible": true
5044
- // },
5045
- // {
5046
- // "Accessory": "",
5047
- // "AdditionalValue": "",
5048
- // "ApiName": "ItemTSASeason",
5049
- // "BackgroundColor": "",
5050
- // "Enabled": false,
5051
- // "EventsData": null,
5052
- // "FieldType": 1,
5053
- // "FormattedValue": "Summer",
5054
- // "GroupFields": null,
5055
- // "Highlighted": false,
5056
- // "NotificationInfo": "",
5057
- // "OptionalValues": [],
5058
- // "ReferenceObjectInternalType": "",
5059
- // "ReferenceObjectSubType": "",
5060
- // "ReferenceObjectType": 0,
5061
- // "TextColor": "",
5062
- // "UiPageKey": "",
5063
- // "Value": "Summer",
5064
- // "Visible": true
5065
- // },
5066
- // {
5067
- // "Accessory": "",
5068
- // "AdditionalValue": "",
5069
- // "ApiName": "ItemTSAPackaging",
5070
- // "BackgroundColor": "",
5071
- // "Enabled": false,
5072
- // "EventsData": null,
5073
- // "FieldType": 1,
5074
- // "FormattedValue": "D",
5075
- // "GroupFields": null,
5076
- // "Highlighted": false,
5077
- // "NotificationInfo": "",
5078
- // "OptionalValues": [],
5079
- // "ReferenceObjectInternalType": "",
5080
- // "ReferenceObjectSubType": "",
5081
- // "ReferenceObjectType": 2123301536,
5082
- // "TextColor": "",
5083
- // "UiPageKey": "",
5084
- // "Value": "D",
5085
- // "Visible": true
5086
- // }
5087
- // ],
5088
- // "IsEditable": false,
5089
- // "IsSelectableForActions": false,
5090
- // "MainAction": null,
5091
- // "Profile": null,
5092
- // "Type": 0,
5093
- // "UID": "777aecb5-6fed-4fa4-890f-71d9dd77205c"
5094
- // },
5095
- // {
5096
- // "AdditionalData": null,
5097
- // "BackgroundColor": "",
5098
- // "Fields": [
5099
- // {
5100
- // "Accessory": "",
5101
- // "AdditionalValue": "",
5102
- // "ApiName": "ItemTSAType",
5103
- // "BackgroundColor": "",
5104
- // "Enabled": false,
5105
- // "EventsData": null,
5106
- // "FieldType": 1,
5107
- // "FormattedValue": "Bottoms",
5108
- // "GroupFields": null,
5109
- // "Highlighted": false,
5110
- // "NotificationInfo": "",
5111
- // "OptionalValues": [],
5112
- // "ReferenceObjectInternalType": "",
5113
- // "ReferenceObjectSubType": "",
5114
- // "ReferenceObjectType": 2123301536,
5115
- // "TextColor": "",
5116
- // "UiPageKey": "",
5117
- // "Value": "Bottoms",
5118
- // "Visible": true
5119
- // },
5120
- // {
5121
- // "Accessory": "",
5122
- // "AdditionalValue": "",
5123
- // "ApiName": "ObjectMenu",
5124
- // "BackgroundColor": "",
5125
- // "Enabled": true,
5126
- // "EventsData": null,
5127
- // "FieldType": 17,
5128
- // "FormattedValue": "",
5129
- // "GroupFields": null,
5130
- // "Highlighted": false,
5131
- // "NotificationInfo": "",
5132
- // "OptionalValues": [],
5133
- // "ReferenceObjectInternalType": "",
5134
- // "ReferenceObjectSubType": "",
5135
- // "ReferenceObjectType": 0,
5136
- // "TextColor": "",
5137
- // "UiPageKey": "",
5138
- // "Value": "",
5139
- // "Visible": true
5140
- // },
5141
- // {
5142
- // "Accessory": "",
5143
- // "AdditionalValue": "",
5144
- // "ApiName": "TSARelteadItems",
5145
- // "BackgroundColor": "",
5146
- // "Enabled": true,
5147
- // "EventsData": null,
5148
- // "FieldType": 1,
5149
- // "FormattedValue": "[\"56d8015b-705c-4a1d-9db9-8926fad4bc48\",\"32fca2a8-9882-44e3-a9e2-fb98d4282529\",\"a76fad1a-0143-449f-9553-fa85a11d7e81\",\"f2c6c4c6-b33c-47e1-86a4-57ed5edb757a\",\"e77f883f-92b0-41ef-80fb-806bfb375b6a\"]",
5150
- // "GroupFields": null,
5151
- // "Highlighted": false,
5152
- // "NotificationInfo": "",
5153
- // "OptionalValues": [],
5154
- // "ReferenceObjectInternalType": "",
5155
- // "ReferenceObjectSubType": "",
5156
- // "ReferenceObjectType": 168635513,
5157
- // "TextColor": "",
5158
- // "UiPageKey": "",
5159
- // "Value": "[\"56d8015b-705c-4a1d-9db9-8926fad4bc48\",\"32fca2a8-9882-44e3-a9e2-fb98d4282529\",\"a76fad1a-0143-449f-9553-fa85a11d7e81\",\"f2c6c4c6-b33c-47e1-86a4-57ed5edb757a\",\"e77f883f-92b0-41ef-80fb-806bfb375b6a\"]",
5160
- // "Visible": true
5161
- // },
5162
- // {
5163
- // "Accessory": "",
5164
- // "AdditionalValue": "",
5165
- // "ApiName": "Image",
5166
- // "BackgroundColor": "",
5167
- // "Enabled": false,
5168
- // "EventsData": null,
5169
- // "FieldType": 27,
5170
- // "FormattedValue": "",
5171
- // "GroupFields": null,
5172
- // "Highlighted": false,
5173
- // "NotificationInfo": "",
5174
- // "OptionalValues": [],
5175
- // "ReferenceObjectInternalType": "",
5176
- // "ReferenceObjectSubType": "",
5177
- // "ReferenceObjectType": 602522121,
5178
- // "TextColor": "",
5179
- // "UiPageKey": "",
5180
- // "Value": "",
5181
- // "Visible": true
5182
- // },
5183
- // {
5184
- // "Accessory": "",
5185
- // "AdditionalValue": "",
5186
- // "ApiName": "ItemName",
5187
- // "BackgroundColor": "",
5188
- // "Enabled": false,
5189
- // "EventsData": null,
5190
- // "FieldType": 1,
5191
- // "FormattedValue": "Skinny jeans",
5192
- // "GroupFields": null,
5193
- // "Highlighted": false,
5194
- // "NotificationInfo": "",
5195
- // "OptionalValues": [],
5196
- // "ReferenceObjectInternalType": "",
5197
- // "ReferenceObjectSubType": "",
5198
- // "ReferenceObjectType": 0,
5199
- // "TextColor": "",
5200
- // "UiPageKey": "",
5201
- // "Value": "Skinny jeans",
5202
- // "Visible": true
5203
- // },
5204
- // {
5205
- // "Accessory": "",
5206
- // "AdditionalValue": "",
5207
- // "ApiName": "ItemExternalID",
5208
- // "BackgroundColor": "",
5209
- // "Enabled": false,
5210
- // "EventsData": null,
5211
- // "FieldType": 1,
5212
- // "FormattedValue": "WJS33",
5213
- // "GroupFields": null,
5214
- // "Highlighted": false,
5215
- // "NotificationInfo": "",
5216
- // "OptionalValues": [],
5217
- // "ReferenceObjectInternalType": "",
5218
- // "ReferenceObjectSubType": "",
5219
- // "ReferenceObjectType": 0,
5220
- // "TextColor": "",
5221
- // "UiPageKey": "",
5222
- // "Value": "WJS33",
5223
- // "Visible": true
5224
- // },
5225
- // {
5226
- // "Accessory": "$",
5227
- // "AdditionalValue": "",
5228
- // "ApiName": "ItemPrice",
5229
- // "BackgroundColor": "",
5230
- // "Enabled": false,
5231
- // "EventsData": null,
5232
- // "FieldType": 9,
5233
- // "FormattedValue": "$56.00",
5234
- // "GroupFields": null,
5235
- // "Highlighted": false,
5236
- // "NotificationInfo": "",
5237
- // "OptionalValues": [],
5238
- // "ReferenceObjectInternalType": "",
5239
- // "ReferenceObjectSubType": "",
5240
- // "ReferenceObjectType": 0,
5241
- // "TextColor": "",
5242
- // "UiPageKey": "",
5243
- // "Value": "56.0000",
5244
- // "Visible": true
5245
- // },
5246
- // {
5247
- // "Accessory": "",
5248
- // "AdditionalValue": "",
5249
- // "ApiName": "UnitsQuantity",
5250
- // "BackgroundColor": "",
5251
- // "Enabled": true,
5252
- // "EventsData": null,
5253
- // "FieldType": 17,
5254
- // "FormattedValue": "0",
5255
- // "GroupFields": null,
5256
- // "Highlighted": false,
5257
- // "NotificationInfo": "",
5258
- // "OptionalValues": [],
5259
- // "ReferenceObjectInternalType": "",
5260
- // "ReferenceObjectSubType": "",
5261
- // "ReferenceObjectType": 0,
5262
- // "TextColor": "",
5263
- // "UiPageKey": "",
5264
- // "Value": "0.0000",
5265
- // "Visible": true
5266
- // },
5267
- // {
5268
- // "Accessory": "",
5269
- // "AdditionalValue": "",
5270
- // "ApiName": "ItemTSASeason",
5271
- // "BackgroundColor": "",
5272
- // "Enabled": false,
5273
- // "EventsData": null,
5274
- // "FieldType": 1,
5275
- // "FormattedValue": "Winter",
5276
- // "GroupFields": null,
5277
- // "Highlighted": false,
5278
- // "NotificationInfo": "",
5279
- // "OptionalValues": [],
5280
- // "ReferenceObjectInternalType": "",
5281
- // "ReferenceObjectSubType": "",
5282
- // "ReferenceObjectType": 2123302832,
5283
- // "TextColor": "",
5284
- // "UiPageKey": "",
5285
- // "Value": "Winter",
5286
- // "Visible": true
5287
- // },
5288
- // {
5289
- // "Accessory": "",
5290
- // "AdditionalValue": "",
5291
- // "ApiName": "ItemTSAPackaging",
5292
- // "BackgroundColor": "",
5293
- // "Enabled": false,
5294
- // "EventsData": null,
5295
- // "FieldType": 1,
5296
- // "FormattedValue": "B",
5297
- // "GroupFields": null,
5298
- // "Highlighted": false,
5299
- // "NotificationInfo": "",
5300
- // "OptionalValues": [],
5301
- // "ReferenceObjectInternalType": "",
5302
- // "ReferenceObjectSubType": "",
5303
- // "ReferenceObjectType": 2123302832,
5304
- // "TextColor": "",
5305
- // "UiPageKey": "",
5306
- // "Value": "B",
5307
- // "Visible": true
5308
- // }
5309
- // ],
5310
- // "IsEditable": false,
5311
- // "IsSelectableForActions": false,
5312
- // "MainAction": null,
5313
- // "Profile": null,
5314
- // "Type": 0,
5315
- // "UID": "7fac686e-3ec5-4b95-ba70-c109c8778b63"
5316
- // },
5317
- // {
5318
- // "AdditionalData": null,
5319
- // "BackgroundColor": "",
5320
- // "Fields": [
5321
- // {
5322
- // "Accessory": "",
5323
- // "AdditionalValue": "",
5324
- // "ApiName": "ItemTSAType",
5325
- // "BackgroundColor": "",
5326
- // "Enabled": false,
5327
- // "EventsData": null,
5328
- // "FieldType": 1,
5329
- // "FormattedValue": "Bottoms",
5330
- // "GroupFields": null,
5331
- // "Highlighted": false,
5332
- // "NotificationInfo": "",
5333
- // "OptionalValues": [],
5334
- // "ReferenceObjectInternalType": "",
5335
- // "ReferenceObjectSubType": "",
5336
- // "ReferenceObjectType": -1225808615,
5337
- // "TextColor": "",
5338
- // "UiPageKey": "",
5339
- // "Value": "Bottoms",
5340
- // "Visible": true
5341
- // },
5342
- // {
5343
- // "Accessory": "",
5344
- // "AdditionalValue": "",
5345
- // "ApiName": "ObjectMenu",
5346
- // "BackgroundColor": "",
5347
- // "Enabled": true,
5348
- // "EventsData": null,
5349
- // "FieldType": 17,
5350
- // "FormattedValue": "",
5351
- // "GroupFields": null,
5352
- // "Highlighted": false,
5353
- // "NotificationInfo": "",
5354
- // "OptionalValues": [],
5355
- // "ReferenceObjectInternalType": "",
5356
- // "ReferenceObjectSubType": "",
5357
- // "ReferenceObjectType": 602519433,
5358
- // "TextColor": "",
5359
- // "UiPageKey": "",
5360
- // "Value": "",
5361
- // "Visible": true
5362
- // },
5363
- // {
5364
- // "Accessory": "",
5365
- // "AdditionalValue": "",
5366
- // "ApiName": "TSARelteadItems",
5367
- // "BackgroundColor": "",
5368
- // "Enabled": true,
5369
- // "EventsData": null,
5370
- // "FieldType": 1,
5371
- // "FormattedValue": "[\"56d8015b-705c-4a1d-9db9-8926fad4bc48\",\"32fca2a8-9882-44e3-a9e2-fb98d4282529\",\"a76fad1a-0143-449f-9553-fa85a11d7e81\",\"f2c6c4c6-b33c-47e1-86a4-57ed5edb757a\",\"e77f883f-92b0-41ef-80fb-806bfb375b6a\"]",
5372
- // "GroupFields": null,
5373
- // "Highlighted": false,
5374
- // "NotificationInfo": "",
5375
- // "OptionalValues": [],
5376
- // "ReferenceObjectInternalType": "",
5377
- // "ReferenceObjectSubType": "",
5378
- // "ReferenceObjectType": 602528137,
5379
- // "TextColor": "",
5380
- // "UiPageKey": "",
5381
- // "Value": "[\"56d8015b-705c-4a1d-9db9-8926fad4bc48\",\"32fca2a8-9882-44e3-a9e2-fb98d4282529\",\"a76fad1a-0143-449f-9553-fa85a11d7e81\",\"f2c6c4c6-b33c-47e1-86a4-57ed5edb757a\",\"e77f883f-92b0-41ef-80fb-806bfb375b6a\"]",
5382
- // "Visible": true
5383
- // },
5384
- // {
5385
- // "Accessory": "",
5386
- // "AdditionalValue": "",
5387
- // "ApiName": "Image",
5388
- // "BackgroundColor": "",
5389
- // "Enabled": false,
5390
- // "EventsData": null,
5391
- // "FieldType": 27,
5392
- // "FormattedValue": "",
5393
- // "GroupFields": null,
5394
- // "Highlighted": false,
5395
- // "NotificationInfo": "",
5396
- // "OptionalValues": [],
5397
- // "ReferenceObjectInternalType": "",
5398
- // "ReferenceObjectSubType": "",
5399
- // "ReferenceObjectType": 2123301536,
5400
- // "TextColor": "",
5401
- // "UiPageKey": "",
5402
- // "Value": "",
5403
- // "Visible": true
5404
- // },
5405
- // {
5406
- // "Accessory": "",
5407
- // "AdditionalValue": "",
5408
- // "ApiName": "ItemName",
5409
- // "BackgroundColor": "",
5410
- // "Enabled": false,
5411
- // "EventsData": null,
5412
- // "FieldType": 1,
5413
- // "FormattedValue": "Skinny jeans",
5414
- // "GroupFields": null,
5415
- // "Highlighted": false,
5416
- // "NotificationInfo": "",
5417
- // "OptionalValues": [],
5418
- // "ReferenceObjectInternalType": "",
5419
- // "ReferenceObjectSubType": "",
5420
- // "ReferenceObjectType": 2123302832,
5421
- // "TextColor": "",
5422
- // "UiPageKey": "",
5423
- // "Value": "Skinny jeans",
5424
- // "Visible": true
5425
- // },
5426
- // {
5427
- // "Accessory": "",
5428
- // "AdditionalValue": "",
5429
- // "ApiName": "ItemExternalID",
5430
- // "BackgroundColor": "",
5431
- // "Enabled": false,
5432
- // "EventsData": null,
5433
- // "FieldType": 1,
5434
- // "FormattedValue": "WJS31",
5435
- // "GroupFields": null,
5436
- // "Highlighted": false,
5437
- // "NotificationInfo": "",
5438
- // "OptionalValues": [],
5439
- // "ReferenceObjectInternalType": "",
5440
- // "ReferenceObjectSubType": "",
5441
- // "ReferenceObjectType": 0,
5442
- // "TextColor": "",
5443
- // "UiPageKey": "",
5444
- // "Value": "WJS31",
5445
- // "Visible": true
5446
- // },
5447
- // {
5448
- // "Accessory": "$",
5449
- // "AdditionalValue": "",
5450
- // "ApiName": "ItemPrice",
5451
- // "BackgroundColor": "",
5452
- // "Enabled": false,
5453
- // "EventsData": null,
5454
- // "FieldType": 9,
5455
- // "FormattedValue": "$118.00",
5456
- // "GroupFields": null,
5457
- // "Highlighted": false,
5458
- // "NotificationInfo": "",
5459
- // "OptionalValues": [],
5460
- // "ReferenceObjectInternalType": "",
5461
- // "ReferenceObjectSubType": "",
5462
- // "ReferenceObjectType": 0,
5463
- // "TextColor": "",
5464
- // "UiPageKey": "",
5465
- // "Value": "118.0000",
5466
- // "Visible": true
5467
- // },
5468
- // {
5469
- // "Accessory": "",
5470
- // "AdditionalValue": "",
5471
- // "ApiName": "UnitsQuantity",
5472
- // "BackgroundColor": "",
5473
- // "Enabled": true,
5474
- // "EventsData": null,
5475
- // "FieldType": 17,
5476
- // "FormattedValue": "0",
5477
- // "GroupFields": null,
5478
- // "Highlighted": false,
5479
- // "NotificationInfo": "",
5480
- // "OptionalValues": [],
5481
- // "ReferenceObjectInternalType": "",
5482
- // "ReferenceObjectSubType": "",
5483
- // "ReferenceObjectType": 2123302832,
5484
- // "TextColor": "",
5485
- // "UiPageKey": "",
5486
- // "Value": "0.0000",
5487
- // "Visible": true
5488
- // },
5489
- // {
5490
- // "Accessory": "",
5491
- // "AdditionalValue": "",
5492
- // "ApiName": "ItemTSASeason",
5493
- // "BackgroundColor": "",
5494
- // "Enabled": false,
5495
- // "EventsData": null,
5496
- // "FieldType": 1,
5497
- // "FormattedValue": "Summer",
5498
- // "GroupFields": null,
5499
- // "Highlighted": false,
5500
- // "NotificationInfo": "",
5501
- // "OptionalValues": [],
5502
- // "ReferenceObjectInternalType": "",
5503
- // "ReferenceObjectSubType": "",
5504
- // "ReferenceObjectType": 2123302832,
5505
- // "TextColor": "",
5506
- // "UiPageKey": "",
5507
- // "Value": "Summer",
5508
- // "Visible": true
5509
- // },
5510
- // {
5511
- // "Accessory": "",
5512
- // "AdditionalValue": "",
5513
- // "ApiName": "ItemTSAPackaging",
5514
- // "BackgroundColor": "",
5515
- // "Enabled": false,
5516
- // "EventsData": null,
5517
- // "FieldType": 1,
5518
- // "FormattedValue": "A",
5519
- // "GroupFields": null,
5520
- // "Highlighted": false,
5521
- // "NotificationInfo": "",
5522
- // "OptionalValues": [],
5523
- // "ReferenceObjectInternalType": "",
5524
- // "ReferenceObjectSubType": "",
5525
- // "ReferenceObjectType": 2123302832,
5526
- // "TextColor": "",
5527
- // "UiPageKey": "",
5528
- // "Value": "A",
5529
- // "Visible": true
5530
- // }
5531
- // ],
5532
- // "IsEditable": false,
5533
- // "IsSelectableForActions": false,
5534
- // "MainAction": null,
5535
- // "Profile": null,
5536
- // "Type": 0,
5537
- // "UID": "10ef7ace-0086-4151-b075-f009fd20a01c"
5538
- // }
5539
- // ],
5540
- // "UIControl": {
5541
- // "ObjectID": "",
5542
- // "Type": "",
5543
- // "DisplayName": "",
5544
- // "Columns": 10,
5545
- // "ControlFields": [
5546
- // {
5547
- // "ApiName": "ItemTSAType",
5548
- // "ColumnWidth": 10,
5549
- // "ColumnWidthType": 0,
5550
- // "FieldName": "Item Type",
5551
- // "FieldType": 1,
5552
- // "Layout": {
5553
- // "Height": 1,
5554
- // "LineNumber": 0,
5555
- // "Width": 1,
5556
- // "X": 0,
5557
- // "XAlignment": 1,
5558
- // "Y": 0,
5559
- // "YAlignment": 3
5560
- // },
5561
- // "Mandatory": false,
5562
- // "MaxFieldCharacters": 0,
5563
- // "MaxFieldLines": 0,
5564
- // "MaxValue": 1000000000,
5565
- // "MinValue": -1000000000,
5566
- // "ReadOnly": true,
5567
- // "Title": "Item Type"
5568
- // },
5569
- // {
5570
- // "ApiName": "ObjectMenu",
5571
- // "ColumnWidth": 10,
5572
- // "ColumnWidthType": 0,
5573
- // "FieldName": "",
5574
- // "FieldType": 17,
5575
- // "Layout": {
5576
- // "Height": 2,
5577
- // "LineNumber": 1,
5578
- // "Width": 2,
5579
- // "X": 8,
5580
- // "XAlignment": 1,
5581
- // "Y": 0,
5582
- // "YAlignment": 3
5583
- // },
5584
- // "Mandatory": false,
5585
- // "MaxFieldCharacters": 0,
5586
- // "MaxFieldLines": 0,
5587
- // "MaxValue": 1000000000,
5588
- // "MinValue": -1000000000,
5589
- // "ReadOnly": false,
5590
- // "Title": ""
5591
- // },
5592
- // {
5593
- // "ApiName": "TSARelteadItems",
5594
- // "ColumnWidth": 10,
5595
- // "ColumnWidthType": 0,
5596
- // "FieldName": "RelteadItems",
5597
- // "FieldType": 1,
5598
- // "Layout": {
5599
- // "Height": 8,
5600
- // "LineNumber": 2,
5601
- // "Width": 10,
5602
- // "X": 0,
5603
- // "XAlignment": 1,
5604
- // "Y": 2,
5605
- // "YAlignment": 3
5606
- // },
5607
- // "Mandatory": false,
5608
- // "MaxFieldCharacters": 0,
5609
- // "MaxFieldLines": 0,
5610
- // "MaxValue": 1000000000,
5611
- // "MinValue": -1000000000,
5612
- // "ReadOnly": false,
5613
- // "Title": "RelteadItems"
5614
- // },
5615
- // {
5616
- // "ApiName": "Image",
5617
- // "ColumnWidth": 10,
5618
- // "ColumnWidthType": 0,
5619
- // "FieldName": "",
5620
- // "FieldType": 20,
5621
- // "Layout": {
5622
- // "Height": 8,
5623
- // "LineNumber": 3,
5624
- // "Width": 10,
5625
- // "X": 0,
5626
- // "XAlignment": 3,
5627
- // "Y": 10,
5628
- // "YAlignment": 3
5629
- // },
5630
- // "Mandatory": false,
5631
- // "MaxFieldCharacters": 0,
5632
- // "MaxFieldLines": 0,
5633
- // "MaxValue": 1000000000,
5634
- // "MinValue": -1000000000,
5635
- // "ReadOnly": true,
5636
- // "Title": ""
5637
- // },
5638
- // {
5639
- // "ApiName": "ItemName",
5640
- // "ColumnWidth": 10,
5641
- // "ColumnWidthType": 0,
5642
- // "FieldName": "",
5643
- // "FieldType": 1,
5644
- // "Layout": {
5645
- // "Height": 1,
5646
- // "LineNumber": 4,
5647
- // "Width": 10,
5648
- // "X": 0,
5649
- // "XAlignment": 3,
5650
- // "Y": 18,
5651
- // "YAlignment": 3
5652
- // },
5653
- // "Mandatory": false,
5654
- // "MaxFieldCharacters": 0,
5655
- // "MaxFieldLines": 0,
5656
- // "MaxValue": 1000000000,
5657
- // "MinValue": -1000000000,
5658
- // "ReadOnly": true,
5659
- // "Title": ""
5660
- // },
5661
- // {
5662
- // "ApiName": "ItemExternalID",
5663
- // "ColumnWidth": 10,
5664
- // "ColumnWidthType": 0,
5665
- // "FieldName": "",
5666
- // "FieldType": 1,
5667
- // "Layout": {
5668
- // "Height": 1,
5669
- // "LineNumber": 5,
5670
- // "Width": 10,
5671
- // "X": 0,
5672
- // "XAlignment": 3,
5673
- // "Y": 19,
5674
- // "YAlignment": 3
5675
- // },
5676
- // "Mandatory": false,
5677
- // "MaxFieldCharacters": 0,
5678
- // "MaxFieldLines": 0,
5679
- // "MaxValue": 1000000000,
5680
- // "MinValue": -1000000000,
5681
- // "ReadOnly": true,
5682
- // "Title": ""
5683
- // },
5684
- // {
5685
- // "ApiName": "ItemPrice",
5686
- // "ColumnWidth": 10,
5687
- // "ColumnWidthType": 0,
5688
- // "FieldName": "",
5689
- // "FieldType": 9,
5690
- // "Layout": {
5691
- // "Height": 1,
5692
- // "LineNumber": 6,
5693
- // "Width": 10,
5694
- // "X": 0,
5695
- // "XAlignment": 3,
5696
- // "Y": 20,
5697
- // "YAlignment": 3
5698
- // },
5699
- // "Mandatory": false,
5700
- // "MaxFieldCharacters": 0,
5701
- // "MaxFieldLines": 0,
5702
- // "MaxValue": 1000000000,
5703
- // "MinValue": -1000000000,
5704
- // "ReadOnly": true,
5705
- // "Title": ""
5706
- // },
5707
- // {
5708
- // "ApiName": "UnitsQuantity",
5709
- // "ColumnWidth": 10,
5710
- // "ColumnWidthType": 0,
5711
- // "FieldName": "",
5712
- // "FieldType": 8,
5713
- // "Layout": {
5714
- // "Height": 2,
5715
- // "LineNumber": 7,
5716
- // "Width": 10,
5717
- // "X": 0,
5718
- // "XAlignment": 3,
5719
- // "Y": 21,
5720
- // "YAlignment": 3
5721
- // },
5722
- // "Mandatory": false,
5723
- // "MaxFieldCharacters": 0,
5724
- // "MaxFieldLines": 0,
5725
- // "MaxValue": 1000000000,
5726
- // "MinValue": -1000000000,
5727
- // "ReadOnly": false,
5728
- // "Title": ""
5729
- // },
5730
- // {
5731
- // "ApiName": "ItemTSASeason",
5732
- // "ColumnWidth": 10,
5733
- // "ColumnWidthType": 0,
5734
- // "FieldName": "Item Season",
5735
- // "FieldType": 1,
5736
- // "Layout": {
5737
- // "Height": 1,
5738
- // "LineNumber": 8,
5739
- // "Width": 1,
5740
- // "X": 0,
5741
- // "XAlignment": 1,
5742
- // "Y": 23,
5743
- // "YAlignment": 3
5744
- // },
5745
- // "Mandatory": false,
5746
- // "MaxFieldCharacters": 0,
5747
- // "MaxFieldLines": 0,
5748
- // "MaxValue": 1000000000,
5749
- // "MinValue": -1000000000,
5750
- // "ReadOnly": true,
5751
- // "Title": "Item Season"
5752
- // },
5753
- // {
5754
- // "ApiName": "ItemTSAPackaging",
5755
- // "ColumnWidth": 10,
5756
- // "ColumnWidthType": 0,
5757
- // "FieldName": "Item Packaging",
5758
- // "FieldType": 1,
5759
- // "Layout": {
5760
- // "Height": 1,
5761
- // "LineNumber": 9,
5762
- // "Width": 1,
5763
- // "X": 0,
5764
- // "XAlignment": 1,
5765
- // "Y": 24,
5766
- // "YAlignment": 3
5767
- // },
5768
- // "Mandatory": false,
5769
- // "MaxFieldCharacters": 0,
5770
- // "MaxFieldLines": 0,
5771
- // "MaxValue": 1000000000,
5772
- // "MinValue": -1000000000,
5773
- // "ReadOnly": true,
5774
- // "Title": "Item Packaging"
5775
- // }
5776
- // ]
5777
- // }
5778
- // }
2651
+ layoutType: [{ type: Input }],
2652
+ internalFormFieldChange: [{ type: Output }],
2653
+ internalFormFieldClick: [{ type: Output }]
2654
+ };
5779
2655
 
5780
2656
  const pepComponentsModules = [
5781
2657
  PepAddressModule,