@pepperi-addons/ngx-lib 0.2.51-beta.2 → 0.2.51-beta.23

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 (49) hide show
  1. package/bundles/pepperi-addons-ngx-lib-form.umd.js +136 -3344
  2. package/bundles/pepperi-addons-ngx-lib-form.umd.js.map +1 -1
  3. package/bundles/pepperi-addons-ngx-lib-image.umd.js +133 -72
  4. package/bundles/pepperi-addons-ngx-lib-image.umd.js.map +1 -1
  5. package/bundles/pepperi-addons-ngx-lib-smart-filters.umd.js +1 -1
  6. package/bundles/pepperi-addons-ngx-lib-smart-filters.umd.js.map +1 -1
  7. package/bundles/pepperi-addons-ngx-lib-textbox.umd.js +1 -1
  8. package/bundles/pepperi-addons-ngx-lib-textbox.umd.js.map +1 -1
  9. package/bundles/pepperi-addons-ngx-lib.umd.js +5 -4
  10. package/bundles/pepperi-addons-ngx-lib.umd.js.map +1 -1
  11. package/core/common/model/wapi.model.d.ts +2 -0
  12. package/core/customization/customization.model.d.ts +3 -2
  13. package/esm2015/core/common/model/wapi.model.js +1 -1
  14. package/esm2015/core/customization/customization.model.js +6 -5
  15. package/esm2015/form/field-generator.component.js +10 -10
  16. package/esm2015/form/form.component.js +54 -73
  17. package/esm2015/form/internal-carusel.component.js +46 -119
  18. package/esm2015/form/internal-carusel.service.js +13 -13
  19. package/esm2015/form/internal-page.component.js +14 -10
  20. package/esm2015/image/image.component.js +20 -36
  21. package/esm2015/image/image.module.js +3 -1
  22. package/esm2015/image/image.service.js +55 -0
  23. package/esm2015/image/public-api.js +2 -1
  24. package/esm2015/smart-filters/common/model/base-filter-component.js +2 -2
  25. package/esm2015/textbox/textbox.component.js +2 -2
  26. package/fesm2015/pepperi-addons-ngx-lib-form.js +130 -3347
  27. package/fesm2015/pepperi-addons-ngx-lib-form.js.map +1 -1
  28. package/fesm2015/pepperi-addons-ngx-lib-image.js +73 -36
  29. package/fesm2015/pepperi-addons-ngx-lib-image.js.map +1 -1
  30. package/fesm2015/pepperi-addons-ngx-lib-smart-filters.js +1 -1
  31. package/fesm2015/pepperi-addons-ngx-lib-smart-filters.js.map +1 -1
  32. package/fesm2015/pepperi-addons-ngx-lib-textbox.js +1 -1
  33. package/fesm2015/pepperi-addons-ngx-lib-textbox.js.map +1 -1
  34. package/fesm2015/pepperi-addons-ngx-lib.js +5 -4
  35. package/fesm2015/pepperi-addons-ngx-lib.js.map +1 -1
  36. package/form/field-generator.component.d.ts +4 -4
  37. package/form/form.component.d.ts +10 -4
  38. package/form/internal-carusel.component.d.ts +13 -21
  39. package/form/internal-carusel.service.d.ts +2 -7
  40. package/form/internal-page.component.d.ts +2 -2
  41. package/form/pepperi-addons-ngx-lib-form.metadata.json +1 -1
  42. package/image/image.component.d.ts +5 -5
  43. package/image/image.service.d.ts +11 -0
  44. package/image/pepperi-addons-ngx-lib-image.metadata.json +1 -1
  45. package/image/public-api.d.ts +1 -0
  46. package/package.json +1 -1
  47. package/pepperi-addons-ngx-lib.metadata.json +1 -1
  48. package/esm2015/form/internal-carusel.temp-data.js +0 -3129
  49. package/form/internal-carusel.temp-data.d.ts +0 -62
@@ -340,13 +340,14 @@
340
340
  this.checkForChanges = null;
341
341
  this.valueChange = new core.EventEmitter();
342
342
  this.formValidationChange = new core.EventEmitter();
343
- this.childClick = new core.EventEmitter();
344
- this.childChange = new core.EventEmitter();
345
343
  this.fieldClick = new core.EventEmitter();
344
+ this.internalFormFieldClick = new core.EventEmitter();
345
+ this.internalFormFieldChange = new core.EventEmitter();
346
346
  this.isLocked = false;
347
347
  // payLoad = '';
348
348
  this.rows = [];
349
349
  this.fields = [];
350
+ this._fieldsSubject = new rxjs.BehaviorSubject([]);
350
351
  this.columns = 1;
351
352
  this.hasMenuFloatingOnOtherField = false;
352
353
  this.indicatorsDataField = null;
@@ -372,6 +373,13 @@
372
373
  enumerable: false,
373
374
  configurable: true
374
375
  });
376
+ Object.defineProperty(PepFormComponent.prototype, "fields$", {
377
+ get: function () {
378
+ return this._fieldsSubject.asObservable();
379
+ },
380
+ enumerable: false,
381
+ configurable: true
382
+ });
375
383
  Object.defineProperty(PepFormComponent.prototype, "shouldReloadForm", {
376
384
  get: function () {
377
385
  return this._shouldReloadForm;
@@ -658,9 +666,8 @@
658
666
  }
659
667
  case ngxLib.FIELD_TYPE.RelatedObjectsCards: {
660
668
  options.rowSpan = controlField.Layout.Height;
661
- // options.objectId = objectId;
662
- // options.parentId = parentId;
663
- // options.searchCode = searchCode;
669
+ options.searchCode = searchCode;
670
+ options.pageInfo = dataField.UIPageInfo;
664
671
  customField = new ngxLib.PepInternalCaruselField(options);
665
672
  break;
666
673
  }
@@ -1004,21 +1011,6 @@
1004
1011
  // }
1005
1012
  };
1006
1013
  PepFormComponent.prototype.ngOnDestroy = function () {
1007
- // if (this.valueChange) {
1008
- // this.valueChange.unsubscribe();
1009
- // }
1010
- // if (this.formValidationChange) {
1011
- // this.formValidationChange.unsubscribe();
1012
- // }
1013
- // if (this.childClick) {
1014
- // this.childClick.unsubscribe();
1015
- // }
1016
- // if (this.childChange) {
1017
- // this.childChange.unsubscribe();
1018
- // }
1019
- // if (this.fieldClick) {
1020
- // this.fieldClick.unsubscribe();
1021
- // }
1022
1014
  };
1023
1015
  PepFormComponent.prototype.getUiControlFields = function () {
1024
1016
  return this.layout ? this.layout.ControlFields : [];
@@ -1043,6 +1035,7 @@
1043
1035
  // this.layoutType === 'form' ||
1044
1036
  this.layoutType === 'table') {
1045
1037
  this.fields = fields;
1038
+ this._fieldsSubject.next(fields);
1046
1039
  this.rows = [];
1047
1040
  for (var i = 0; i <= maxRow; i++) {
1048
1041
  this.rows[i] = [];
@@ -1154,6 +1147,7 @@
1154
1147
  : f1.col < f2.col
1155
1148
  ? -1
1156
1149
  : 0; });
1150
+ this._fieldsSubject.next(fields);
1157
1151
  }
1158
1152
  }
1159
1153
  };
@@ -1167,9 +1161,8 @@
1167
1161
  try {
1168
1162
  for (var _e = __values(this.fields), _f = _e.next(); !_f.done; _f = _e.next()) {
1169
1163
  var currentField = _f.value;
1170
- // Add all fields except 'internalPage' && internalCarusel type (for children).
1171
- if (currentField.controlType !== 'internalPage' &&
1172
- currentField.controlType !== 'internalCarusel') {
1164
+ // Add all fields except 'internalPage' (for children).
1165
+ if (currentField.controlType !== 'internalPage') {
1173
1166
  fields.push(currentField);
1174
1167
  }
1175
1168
  if (!currentField.readonly) {
@@ -1191,8 +1184,7 @@
1191
1184
  // Update form values if changed by calculated fields.
1192
1185
  for (var _g = __values(this.fields), _h = _g.next(); !_h.done; _h = _g.next()) {
1193
1186
  var currentField = _h.value;
1194
- if (currentField.controlType !== 'internalPage' &&
1195
- currentField.controlType !== 'internalCarusel') {
1187
+ if (currentField.controlType !== 'internalPage') {
1196
1188
  if (currentField.groupFields &&
1197
1189
  currentField.groupFields.length > 0) {
1198
1190
  try {
@@ -1216,6 +1208,10 @@
1216
1208
  var fieldFormattedValue = this.getFieldFormattedValue(currentField);
1217
1209
  // this.form.controls[currentField.key].setValue(fieldFormattedValue);
1218
1210
  this.customizationService.updateFormField(this.form, currentField, fieldFormattedValue);
1211
+ // // Hack to override (update) the field.
1212
+ // if (currentField.controlType === 'internalCarusel') {
1213
+ // currentField = this.createCopyField(currentField);
1214
+ // }
1219
1215
  }
1220
1216
  }
1221
1217
  if (!currentField.readonly) {
@@ -1230,6 +1226,8 @@
1230
1226
  }
1231
1227
  finally { if (e_5) throw e_5.error; }
1232
1228
  }
1229
+ // Hack to override (update) the fields.
1230
+ this._fieldsSubject.next(this.fields);
1233
1231
  }
1234
1232
  var isFormValid = (_a = this.form) === null || _a === void 0 ? void 0 : _a.valid;
1235
1233
  // Change validation to true if all fields are read only.
@@ -1240,6 +1238,12 @@
1240
1238
  // Set it to false to enable all fields.
1241
1239
  this.isLocked = false;
1242
1240
  };
1241
+ PepFormComponent.prototype.createCopyField = function (baseField) {
1242
+ var uiControlField = this.getUiControlFields().find(function (cf) { return cf.ApiName === baseField.key; });
1243
+ var dataField = this.data.Fields.find(function (df) { return df.ApiName === baseField.key; });
1244
+ var customField = this.convertToCustomField(uiControlField, dataField, this.canEditObject, this.menuDataField, this.hasCampaignDataField, this.indicatorsDataField, this.objectId, this.parentId, this.searchCode);
1245
+ return customField;
1246
+ };
1243
1247
  PepFormComponent.prototype.initForm = function () {
1244
1248
  if (this.data && this.data.Fields) {
1245
1249
  var fields = this.convertCustomFields(this.getUiControlFields(), this.data.Fields);
@@ -1276,6 +1280,9 @@
1276
1280
  });
1277
1281
  }
1278
1282
  }
1283
+ else if (customField instanceof ngxLib.PepInternalCaruselField) {
1284
+ options.pageInfo = updatedField.UIPageInfo;
1285
+ }
1279
1286
  customField.update(options);
1280
1287
  };
1281
1288
  PepFormComponent.prototype.updateForm = function () {
@@ -1285,7 +1292,7 @@
1285
1292
  var e_8, _e;
1286
1293
  var customField = this_1.fields.filter(function (f) { return f.key === currentField.ApiName; })[0];
1287
1294
  // Update all fields except 'internalPage' type (for children).
1288
- if (customField && (customField.controlType !== 'internalPage' && customField.controlType !== 'internalCarusel')) {
1295
+ if (customField && customField.controlType !== 'internalPage') {
1289
1296
  this_1.updateField(customField, currentField);
1290
1297
  // Update the group fields.
1291
1298
  if (customField.controlType === 'address' &&
@@ -1545,6 +1552,7 @@
1545
1552
  }
1546
1553
  this.valueChange.emit({
1547
1554
  id: this.data.UID.toString(),
1555
+ uiObjectKey: this.data.Key,
1548
1556
  key: event.key,
1549
1557
  value: event.value,
1550
1558
  controlType: event.controlType,
@@ -1555,47 +1563,23 @@
1555
1563
  var clickedUiControlField = this.data.Fields.filter(function (f) { return f.ApiName === fieldClickEvent.key; })[0];
1556
1564
  var idType = this.data.Type ? this.data.Type.toString() : '';
1557
1565
  if (clickedUiControlField) {
1558
- if (clickedUiControlField.FieldType === ngxLib.FIELD_TYPE.GuidReferenceType) {
1559
- this.fieldClick.emit({
1560
- id: this.data.UID.toString(),
1561
- key: fieldClickEvent.key,
1562
- idType: idType,
1563
- which: fieldClickEvent.eventWhich,
1564
- value: fieldClickEvent.value,
1565
- controlType: fieldClickEvent.controlType,
1566
- fieldType: clickedUiControlField.FieldType,
1567
- otherData: fieldClickEvent.otherData,
1568
- });
1569
- }
1570
- else if (clickedUiControlField.FieldType === ngxLib.FIELD_TYPE.ListOfObjects) {
1571
- this.fieldClick.emit({
1572
- id: this.data.UID.toString(),
1573
- key: fieldClickEvent.key,
1574
- idType: idType,
1575
- which: fieldClickEvent.eventWhich,
1576
- value: fieldClickEvent.value,
1577
- controlType: fieldClickEvent.controlType,
1578
- fieldType: clickedUiControlField.FieldType,
1579
- otherData: fieldClickEvent.otherData,
1580
- });
1581
- }
1582
- else {
1583
- this.fieldClick.emit({
1584
- id: this.data.UID.toString(),
1585
- key: fieldClickEvent.key,
1586
- idType: idType,
1587
- which: fieldClickEvent.eventWhich,
1588
- value: fieldClickEvent.value,
1589
- controlType: fieldClickEvent.controlType,
1590
- fieldType: clickedUiControlField.FieldType,
1591
- otherData: fieldClickEvent.otherData,
1592
- });
1593
- }
1566
+ this.fieldClick.emit({
1567
+ id: this.data.UID.toString(),
1568
+ uiObjectKey: this.data.Key,
1569
+ key: fieldClickEvent.key,
1570
+ idType: idType,
1571
+ which: fieldClickEvent.eventWhich,
1572
+ value: fieldClickEvent.value,
1573
+ controlType: fieldClickEvent.controlType,
1574
+ fieldType: clickedUiControlField.FieldType,
1575
+ otherData: fieldClickEvent.otherData,
1576
+ });
1594
1577
  }
1595
1578
  else {
1596
1579
  // For other api names (like enter children etc).
1597
1580
  this.fieldClick.emit({
1598
1581
  id: this.data.UID.toString(),
1582
+ uiObjectKey: this.data.Key,
1599
1583
  key: fieldClickEvent.key,
1600
1584
  idType: idType,
1601
1585
  which: fieldClickEvent.eventWhich,
@@ -1606,16 +1590,16 @@
1606
1590
  }
1607
1591
  };
1608
1592
  // This event is for handle the internal page events.
1609
- PepFormComponent.prototype.onChildClicked = function (childClick) {
1610
- this.childClick.emit(childClick);
1593
+ PepFormComponent.prototype.onInternalFormFieldClicked = function (internalFormFieldClick) {
1594
+ this.internalFormFieldClick.emit(internalFormFieldClick);
1611
1595
  };
1612
1596
  // This event is for handle the internal page events.
1613
- PepFormComponent.prototype.onChildChanged = function (childChange) {
1614
- this.childChange.emit(childChange);
1597
+ PepFormComponent.prototype.onInternalFormFieldChanged = function (internalFormFieldChange) {
1598
+ this.internalFormFieldChange.emit(internalFormFieldChange);
1615
1599
  };
1616
1600
  // This event is for handle the related items change events.
1617
1601
  PepFormComponent.prototype.onFormValueChanged = function (event) {
1618
- this.valueChange.emit(event);
1602
+ // this.valueChange.emit(event);
1619
1603
  };
1620
1604
  // This event is for handle the related items change events.
1621
1605
  PepFormComponent.prototype.onFormFieldClick = function (event) {
@@ -1626,7 +1610,7 @@
1626
1610
  PepFormComponent.decorators = [
1627
1611
  { type: core.Component, args: [{
1628
1612
  selector: 'pep-form',
1629
- 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 (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\" [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)\" (formValueChange)=\"onFormValueChanged($event)\"\n (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; 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; 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>",
1613
+ 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 (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$\" [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$; 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$; 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>",
1630
1614
  changeDetection: core.ChangeDetectionStrategy.OnPush,
1631
1615
  styles: [":host{display:grid}"]
1632
1616
  },] }
@@ -1655,9 +1639,9 @@
1655
1639
  checkForChanges: [{ type: core.Input }],
1656
1640
  valueChange: [{ type: core.Output }],
1657
1641
  formValidationChange: [{ type: core.Output }],
1658
- childClick: [{ type: core.Output }],
1659
- childChange: [{ type: core.Output }],
1660
- fieldClick: [{ type: core.Output }]
1642
+ fieldClick: [{ type: core.Output }],
1643
+ internalFormFieldClick: [{ type: core.Output }],
1644
+ internalFormFieldChange: [{ type: core.Output }]
1661
1645
  };
1662
1646
 
1663
1647
  var PepFieldGeneratorComponent = /** @class */ (function () {
@@ -1668,10 +1652,10 @@
1668
1652
  this.showTitle = true;
1669
1653
  this.checkForChanges = null;
1670
1654
  this.valueChange = new core.EventEmitter();
1671
- this.childChange = new core.EventEmitter();
1672
1655
  this.formValidationChange = new core.EventEmitter();
1673
1656
  this.elementClick = new core.EventEmitter();
1674
- this.childClick = new core.EventEmitter();
1657
+ this.internalFormFieldChange = new core.EventEmitter();
1658
+ this.internalFormFieldClick = new core.EventEmitter();
1675
1659
  this.formValueChange = new core.EventEmitter();
1676
1660
  this.formFieldClick = new core.EventEmitter();
1677
1661
  }
@@ -1737,8 +1721,8 @@
1737
1721
  };
1738
1722
  this.valueChange.emit(fieldValueChange);
1739
1723
  };
1740
- PepFieldGeneratorComponent.prototype.onChildChanged = function (childChange) {
1741
- this.childChange.emit(childChange);
1724
+ PepFieldGeneratorComponent.prototype.onInternalFormFieldChanged = function (internalFormFieldChange) {
1725
+ this.internalFormFieldChange.emit(internalFormFieldChange);
1742
1726
  };
1743
1727
  PepFieldGeneratorComponent.prototype.onFormValidationChanged = function (formValidationChange) {
1744
1728
  this.formValidationChange.emit(formValidationChange);
@@ -1746,8 +1730,8 @@
1746
1730
  PepFieldGeneratorComponent.prototype.onClick = function (fieldClicked) {
1747
1731
  this.elementClick.emit(fieldClicked);
1748
1732
  };
1749
- PepFieldGeneratorComponent.prototype.onChildClick = function (childClick) {
1750
- this.childClick.emit(childClick);
1733
+ PepFieldGeneratorComponent.prototype.onInternalFormFieldClick = function (internalFormFieldClick) {
1734
+ this.internalFormFieldClick.emit(internalFormFieldClick);
1751
1735
  };
1752
1736
  PepFieldGeneratorComponent.prototype.onFormValueChanged = function (event) {
1753
1737
  this.formValueChange.emit(event);
@@ -1765,7 +1749,7 @@
1765
1749
  PepFieldGeneratorComponent.decorators = [
1766
1750
  { type: core.Component, args: [{
1767
1751
  selector: 'pep-field-generator',
1768
- 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\"\n (formValueChange)=\"onFormValueChanged($event)\" (formFieldClick)=\"onFormFieldClick($event)\">\n </pep-internal-carusel>\n\n <ng-container *ngSwitchCase=\"'placeholder'\">\n </ng-container>\n</ng-container>",
1752
+ 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>",
1769
1753
  encapsulation: core.ViewEncapsulation.Emulated,
1770
1754
  changeDetection: core.ChangeDetectionStrategy.OnPush,
1771
1755
  styles: [":host{width:100%;height:100%}"]
@@ -1780,10 +1764,10 @@
1780
1764
  showTitle: [{ type: core.Input }],
1781
1765
  checkForChanges: [{ type: core.Input }],
1782
1766
  valueChange: [{ type: core.Output }],
1783
- childChange: [{ type: core.Output }],
1784
1767
  formValidationChange: [{ type: core.Output }],
1785
1768
  elementClick: [{ type: core.Output }],
1786
- childClick: [{ type: core.Output }],
1769
+ internalFormFieldChange: [{ type: core.Output }],
1770
+ internalFormFieldClick: [{ type: core.Output }],
1787
1771
  formValueChange: [{ type: core.Output }],
1788
1772
  formFieldClick: [{ type: core.Output }]
1789
1773
  };
@@ -2665,8 +2649,8 @@
2665
2649
  this.changeDetectorRef = changeDetectorRef;
2666
2650
  this.controlType = 'internalPage';
2667
2651
  this.layoutType = 'form';
2668
- this.childChange = new core.EventEmitter();
2669
- this.childClick = new core.EventEmitter();
2652
+ this.internalFormFieldChange = new core.EventEmitter();
2653
+ this.internalFormFieldClick = new core.EventEmitter();
2670
2654
  this.checkForChanges = null;
2671
2655
  this.childData = null;
2672
2656
  this.totalsRow = [];
@@ -2741,13 +2725,17 @@
2741
2725
  }))));
2742
2726
  // * 16 convert rem to pixel
2743
2727
  var cardRowsHeight = _this.customizationService.calculateCardRowsHeight(maxRow) * 16;
2728
+ // maxRow * 24 + 60 - 24 for each row in card + 60 for the padding of each card.
2729
+ // const rowSpanToAdd = Math.floor(childrenCount * ((cardRowsHeight + 56) / formRowHeight) + rowsToAdd);
2744
2730
  // + 16 is the 1rem margin outside card.
2745
- var rowSpanToAdd = (childrenCount * (cardRowsHeight + 16));
2746
- // formRowHeight +
2747
- // rowsToAdd;
2731
+ var rowSpanToAdd = (childrenCount * (cardRowsHeight + 16)) /
2732
+ formRowHeight +
2733
+ rowsToAdd;
2748
2734
  _this.field.rowSpan = rowSpanToAdd;
2749
2735
  }
2750
2736
  else {
2737
+ // const tableRowsHeight = this.customizationService.calculateTableRowsHeight(childrenCount) * 16;
2738
+ // this.field.rowSpan = Math.ceil((tableRowsHeight + (rowsToAdd * 40)) / formRowHeight);
2751
2739
  // * 16 convert rem to pixel
2752
2740
  var rowsToAddHeight = _this.customizationService.calculateTableRowsHeight(rowsToAdd, false) * 16;
2753
2741
  var tableRowsHeight = _this.customizationService.calculateTableRowsHeight(childrenCount) * 16;
@@ -2981,7 +2969,7 @@
2981
2969
  this.setTotalsRow();
2982
2970
  this.checkForChanges = new Date();
2983
2971
  // DI-15985
2984
- this.childChange.emit(res);
2972
+ this.internalFormFieldChange.emit(res);
2985
2973
  this.changeDetectorRef.markForCheck();
2986
2974
  };
2987
2975
  PepInternalPageComponent.prototype.onCustomizeObjectChanged = function (customizeObjectChangedData) {
@@ -3009,7 +2997,7 @@
3009
2997
  }
3010
2998
  }
3011
2999
  if (!handledEvent) {
3012
- this.childClick.emit(fieldClickEvent);
3000
+ this.internalFormFieldClick.emit(fieldClickEvent);
3013
3001
  }
3014
3002
  };
3015
3003
  return PepInternalPageComponent;
@@ -3035,8 +3023,8 @@
3035
3023
  PepInternalPageComponent.propDecorators = {
3036
3024
  field: [{ type: core.Input }],
3037
3025
  layoutType: [{ type: core.Input }],
3038
- childChange: [{ type: core.Output }],
3039
- childClick: [{ type: core.Output }],
3026
+ internalFormFieldChange: [{ type: core.Output }],
3027
+ internalFormFieldClick: [{ type: core.Output }],
3040
3028
  my1mm: [{ type: core.ViewChild, args: ['my1mm',] }],
3041
3029
  mainViewCont: [{ type: core.ViewChild, args: ['mainViewCont',] }],
3042
3030
  orgCont: [{ type: core.ViewChild, args: ['orgCont', { read: core.ViewContainerRef },] }],
@@ -3049,19 +3037,19 @@
3049
3037
  var PepInternalCaruselService = /** @class */ (function () {
3050
3038
  function PepInternalCaruselService(httpService) {
3051
3039
  this.httpService = httpService;
3052
- this.parentId = '0';
3053
- this.additionalApiName = '';
3054
- this.transactionUrl = 'Service1.svc/v1/OrderCenter/Transaction/';
3040
+ this.eventUrl = 'Service1.svc/v1/EmitEvent';
3055
3041
  }
3056
- PepInternalCaruselService.prototype.initCarusel = function (objectId, searchCode, callbackFunc) {
3057
- if (!objectId) {
3058
- return;
3059
- }
3060
- this.objectId = objectId;
3061
- this.searchCode = searchCode;
3062
- this.httpService
3063
- .getWapiApiCall("" + this.transactionUrl + this.objectId + "/CaruselItems")
3064
- .subscribe(function (res) {
3042
+ PepInternalCaruselService.prototype.emitEvent = function (uiObjectKey, fieldKey, fieldValue, eventName, callbackFunc) {
3043
+ var body = {
3044
+ 'EventKey': eventName,
3045
+ 'EventData': JSON.stringify({
3046
+ UIObjectKey: uiObjectKey,
3047
+ FieldID: fieldKey,
3048
+ Value: fieldValue
3049
+ })
3050
+ };
3051
+ this.httpService.postWapiApiCall("" + this.eventUrl, body).subscribe(function (res) {
3052
+ console.log(res);
3065
3053
  callbackFunc(res);
3066
3054
  }
3067
3055
  // (error) => {},
@@ -3077,3203 +3065,49 @@
3077
3065
  { type: ngxLib.PepHttpService }
3078
3066
  ]; };
3079
3067
 
3080
- var TempRelatedItems = {
3081
- "Rows": [
3082
- {
3083
- "AdditionalData": null,
3084
- "BackgroundColor": "",
3085
- "Fields": [
3086
- {
3087
- "Accessory": "",
3088
- "AdditionalValue": "",
3089
- "ApiName": "ItemTSAType",
3090
- "BackgroundColor": "",
3091
- "Enabled": false,
3092
- "EventsData": null,
3093
- "FieldType": 1,
3094
- "FormattedValue": "Accessories",
3095
- "GroupFields": null,
3096
- "Highlighted": false,
3097
- "NotificationInfo": "",
3098
- "OptionalValues": [],
3099
- "ReferenceObjectInternalType": "",
3100
- "ReferenceObjectSubType": "",
3101
- "ReferenceObjectType": 2129893312,
3102
- "TextColor": "",
3103
- "UiPageKey": "",
3104
- "Value": "Accessories",
3105
- "Visible": true
3106
- },
3107
- {
3108
- "Accessory": "",
3109
- "AdditionalValue": "",
3110
- "ApiName": "ObjectMenu",
3111
- "BackgroundColor": "",
3112
- "Enabled": true,
3113
- "EventsData": null,
3114
- "FieldType": 17,
3115
- "FormattedValue": "",
3116
- "GroupFields": null,
3117
- "Highlighted": false,
3118
- "NotificationInfo": "",
3119
- "OptionalValues": [],
3120
- "ReferenceObjectInternalType": "",
3121
- "ReferenceObjectSubType": "",
3122
- "ReferenceObjectType": 0,
3123
- "TextColor": "",
3124
- "UiPageKey": "",
3125
- "Value": "",
3126
- "Visible": true
3127
- },
3128
- {
3129
- "Accessory": "",
3130
- "AdditionalValue": "",
3131
- "ApiName": "TSARelteadItems",
3132
- "BackgroundColor": "",
3133
- "Enabled": true,
3134
- "EventsData": null,
3135
- "FieldType": 1,
3136
- "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\"]",
3137
- "GroupFields": null,
3138
- "Highlighted": false,
3139
- "NotificationInfo": "",
3140
- "OptionalValues": [],
3141
- "ReferenceObjectInternalType": "",
3142
- "ReferenceObjectSubType": "",
3143
- "ReferenceObjectType": 0,
3144
- "TextColor": "",
3145
- "UiPageKey": "",
3146
- "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\"]",
3147
- "Visible": true
3148
- },
3149
- {
3150
- "Accessory": "",
3151
- "AdditionalValue": "",
3152
- "ApiName": "Image",
3153
- "BackgroundColor": "",
3154
- "Enabled": false,
3155
- "EventsData": null,
3156
- "FieldType": 27,
3157
- "FormattedValue": "https://cdn.pepperi.com/WrntyImages/30013636/PortfolioItems/6/65147316_1.jpg?ft=1",
3158
- "GroupFields": null,
3159
- "Highlighted": false,
3160
- "NotificationInfo": "",
3161
- "OptionalValues": [],
3162
- "ReferenceObjectInternalType": "",
3163
- "ReferenceObjectSubType": "",
3164
- "ReferenceObjectType": -1,
3165
- "TextColor": "",
3166
- "UiPageKey": "",
3167
- "Value": "https://cdn.pepperi.com/WrntyImages/30013636/PortfolioItems/6/65147316_1.jpg?ft=1",
3168
- "Visible": true
3169
- },
3170
- {
3171
- "Accessory": "",
3172
- "AdditionalValue": "",
3173
- "ApiName": "ItemName",
3174
- "BackgroundColor": "",
3175
- "Enabled": false,
3176
- "EventsData": null,
3177
- "FieldType": 1,
3178
- "FormattedValue": "Wool Hat",
3179
- "GroupFields": null,
3180
- "Highlighted": false,
3181
- "NotificationInfo": "",
3182
- "OptionalValues": [],
3183
- "ReferenceObjectInternalType": "",
3184
- "ReferenceObjectSubType": "",
3185
- "ReferenceObjectType": 2129890288,
3186
- "TextColor": "",
3187
- "UiPageKey": "",
3188
- "Value": "Wool Hat",
3189
- "Visible": true
3190
- },
3191
- {
3192
- "Accessory": "",
3193
- "AdditionalValue": "",
3194
- "ApiName": "ItemExternalID",
3195
- "BackgroundColor": "",
3196
- "Enabled": false,
3197
- "EventsData": null,
3198
- "FieldType": 1,
3199
- "FormattedValue": "HT3002",
3200
- "GroupFields": null,
3201
- "Highlighted": false,
3202
- "NotificationInfo": "",
3203
- "OptionalValues": [],
3204
- "ReferenceObjectInternalType": "",
3205
- "ReferenceObjectSubType": "",
3206
- "ReferenceObjectType": 0,
3207
- "TextColor": "",
3208
- "UiPageKey": "",
3209
- "Value": "HT3002",
3210
- "Visible": true
3211
- },
3212
- {
3213
- "Accessory": "$",
3214
- "AdditionalValue": "",
3215
- "ApiName": "ItemPrice",
3216
- "BackgroundColor": "",
3217
- "Enabled": false,
3218
- "EventsData": null,
3219
- "FieldType": 9,
3220
- "FormattedValue": "$23.00",
3221
- "GroupFields": null,
3222
- "Highlighted": false,
3223
- "NotificationInfo": "",
3224
- "OptionalValues": [],
3225
- "ReferenceObjectInternalType": "",
3226
- "ReferenceObjectSubType": "",
3227
- "ReferenceObjectType": 2129896912,
3228
- "TextColor": "",
3229
- "UiPageKey": "",
3230
- "Value": "23.0000",
3231
- "Visible": true
3232
- },
3233
- {
3234
- "Accessory": "",
3235
- "AdditionalValue": "",
3236
- "ApiName": "UnitsQuantity",
3237
- "BackgroundColor": "",
3238
- "Enabled": true,
3239
- "EventsData": null,
3240
- "FieldType": 28,
3241
- "FormattedValue": "0",
3242
- "GroupFields": null,
3243
- "Highlighted": false,
3244
- "NotificationInfo": "",
3245
- "OptionalValues": [],
3246
- "ReferenceObjectInternalType": "",
3247
- "ReferenceObjectSubType": "",
3248
- "ReferenceObjectType": 0,
3249
- "TextColor": "",
3250
- "UiPageKey": "",
3251
- "Value": "0.0000",
3252
- "Visible": true
3253
- },
3254
- {
3255
- "Accessory": "",
3256
- "AdditionalValue": "",
3257
- "ApiName": "ItemTSASeason",
3258
- "BackgroundColor": "",
3259
- "Enabled": false,
3260
- "EventsData": null,
3261
- "FieldType": 1,
3262
- "FormattedValue": "Fall",
3263
- "GroupFields": null,
3264
- "Highlighted": false,
3265
- "NotificationInfo": "",
3266
- "OptionalValues": [],
3267
- "ReferenceObjectInternalType": "",
3268
- "ReferenceObjectSubType": "",
3269
- "ReferenceObjectType": 0,
3270
- "TextColor": "",
3271
- "UiPageKey": "",
3272
- "Value": "Fall",
3273
- "Visible": true
3274
- },
3275
- {
3276
- "Accessory": "",
3277
- "AdditionalValue": "",
3278
- "ApiName": "ItemTSAPackaging",
3279
- "BackgroundColor": "",
3280
- "Enabled": false,
3281
- "EventsData": null,
3282
- "FieldType": 1,
3283
- "FormattedValue": "B",
3284
- "GroupFields": null,
3285
- "Highlighted": false,
3286
- "NotificationInfo": "",
3287
- "OptionalValues": [],
3288
- "ReferenceObjectInternalType": "",
3289
- "ReferenceObjectSubType": "",
3290
- "ReferenceObjectType": -1218391789,
3291
- "TextColor": "",
3292
- "UiPageKey": "",
3293
- "Value": "B",
3294
- "Visible": true
3295
- }
3296
- ],
3297
- "IsEditable": false,
3298
- "IsSelectableForActions": false,
3299
- "MainAction": null,
3300
- "Profile": null,
3301
- "Type": 0,
3302
- "UID": "56d8015b-705c-4a1d-9db9-8926fad4bc48"
3303
- },
3304
- {
3305
- "AdditionalData": null,
3306
- "BackgroundColor": "",
3307
- "Fields": [
3308
- {
3309
- "Accessory": "",
3310
- "AdditionalValue": "",
3311
- "ApiName": "ItemTSAType",
3312
- "BackgroundColor": "",
3313
- "Enabled": false,
3314
- "EventsData": null,
3315
- "FieldType": 1,
3316
- "FormattedValue": "Accessories",
3317
- "GroupFields": null,
3318
- "Highlighted": false,
3319
- "NotificationInfo": "",
3320
- "OptionalValues": [],
3321
- "ReferenceObjectInternalType": "",
3322
- "ReferenceObjectSubType": "",
3323
- "ReferenceObjectType": -1,
3324
- "TextColor": "",
3325
- "UiPageKey": "",
3326
- "Value": "Accessories",
3327
- "Visible": true
3328
- },
3329
- {
3330
- "Accessory": "",
3331
- "AdditionalValue": "",
3332
- "ApiName": "ObjectMenu",
3333
- "BackgroundColor": "",
3334
- "Enabled": true,
3335
- "EventsData": null,
3336
- "FieldType": 17,
3337
- "FormattedValue": "",
3338
- "GroupFields": null,
3339
- "Highlighted": false,
3340
- "NotificationInfo": "",
3341
- "OptionalValues": [],
3342
- "ReferenceObjectInternalType": "",
3343
- "ReferenceObjectSubType": "",
3344
- "ReferenceObjectType": 0,
3345
- "TextColor": "",
3346
- "UiPageKey": "",
3347
- "Value": "",
3348
- "Visible": true
3349
- },
3350
- {
3351
- "Accessory": "",
3352
- "AdditionalValue": "",
3353
- "ApiName": "TSARelteadItems",
3354
- "BackgroundColor": "",
3355
- "Enabled": true,
3356
- "EventsData": null,
3357
- "FieldType": 1,
3358
- "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\"]",
3359
- "GroupFields": null,
3360
- "Highlighted": false,
3361
- "NotificationInfo": "",
3362
- "OptionalValues": [],
3363
- "ReferenceObjectInternalType": "",
3364
- "ReferenceObjectSubType": "",
3365
- "ReferenceObjectType": 0,
3366
- "TextColor": "",
3367
- "UiPageKey": "",
3368
- "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\"]",
3369
- "Visible": true
3370
- },
3371
- {
3372
- "Accessory": "",
3373
- "AdditionalValue": "",
3374
- "ApiName": "Image",
3375
- "BackgroundColor": "",
3376
- "Enabled": false,
3377
- "EventsData": null,
3378
- "FieldType": 27,
3379
- "FormattedValue": "https://cdn.pepperi.com/WrntyImages/30013636/PortfolioItems/7/65147317_1.jpg?ft=1",
3380
- "GroupFields": null,
3381
- "Highlighted": false,
3382
- "NotificationInfo": "",
3383
- "OptionalValues": [],
3384
- "ReferenceObjectInternalType": "",
3385
- "ReferenceObjectSubType": "",
3386
- "ReferenceObjectType": -1,
3387
- "TextColor": "",
3388
- "UiPageKey": "",
3389
- "Value": "https://cdn.pepperi.com/WrntyImages/30013636/PortfolioItems/7/65147317_1.jpg?ft=1",
3390
- "Visible": true
3391
- },
3392
- {
3393
- "Accessory": "",
3394
- "AdditionalValue": "",
3395
- "ApiName": "ItemName",
3396
- "BackgroundColor": "",
3397
- "Enabled": false,
3398
- "EventsData": null,
3399
- "FieldType": 1,
3400
- "FormattedValue": "Elegant Hat",
3401
- "GroupFields": null,
3402
- "Highlighted": false,
3403
- "NotificationInfo": "",
3404
- "OptionalValues": [],
3405
- "ReferenceObjectInternalType": "",
3406
- "ReferenceObjectSubType": "",
3407
- "ReferenceObjectType": -1272524079,
3408
- "TextColor": "",
3409
- "UiPageKey": "",
3410
- "Value": "Elegant Hat",
3411
- "Visible": true
3412
- },
3413
- {
3414
- "Accessory": "",
3415
- "AdditionalValue": "",
3416
- "ApiName": "ItemExternalID",
3417
- "BackgroundColor": "",
3418
- "Enabled": false,
3419
- "EventsData": null,
3420
- "FieldType": 1,
3421
- "FormattedValue": "HT3003",
3422
- "GroupFields": null,
3423
- "Highlighted": false,
3424
- "NotificationInfo": "",
3425
- "OptionalValues": [],
3426
- "ReferenceObjectInternalType": "",
3427
- "ReferenceObjectSubType": "",
3428
- "ReferenceObjectType": 2129893168,
3429
- "TextColor": "",
3430
- "UiPageKey": "",
3431
- "Value": "HT3003",
3432
- "Visible": true
3433
- },
3434
- {
3435
- "Accessory": "$",
3436
- "AdditionalValue": "",
3437
- "ApiName": "ItemPrice",
3438
- "BackgroundColor": "",
3439
- "Enabled": false,
3440
- "EventsData": null,
3441
- "FieldType": 9,
3442
- "FormattedValue": "$24.00",
3443
- "GroupFields": null,
3444
- "Highlighted": false,
3445
- "NotificationInfo": "",
3446
- "OptionalValues": [],
3447
- "ReferenceObjectInternalType": "",
3448
- "ReferenceObjectSubType": "",
3449
- "ReferenceObjectType": -1230843819,
3450
- "TextColor": "",
3451
- "UiPageKey": "",
3452
- "Value": "24.0000",
3453
- "Visible": true
3454
- },
3455
- {
3456
- "Accessory": "",
3457
- "AdditionalValue": "",
3458
- "ApiName": "UnitsQuantity",
3459
- "BackgroundColor": "",
3460
- "Enabled": true,
3461
- "EventsData": null,
3462
- "FieldType": 28,
3463
- "FormattedValue": "0",
3464
- "GroupFields": null,
3465
- "Highlighted": false,
3466
- "NotificationInfo": "",
3467
- "OptionalValues": [],
3468
- "ReferenceObjectInternalType": "",
3469
- "ReferenceObjectSubType": "",
3470
- "ReferenceObjectType": -1,
3471
- "TextColor": "",
3472
- "UiPageKey": "",
3473
- "Value": "0.0000",
3474
- "Visible": true
3475
- },
3476
- {
3477
- "Accessory": "",
3478
- "AdditionalValue": "",
3479
- "ApiName": "ItemTSASeason",
3480
- "BackgroundColor": "",
3481
- "Enabled": false,
3482
- "EventsData": null,
3483
- "FieldType": 1,
3484
- "FormattedValue": "Fall",
3485
- "GroupFields": null,
3486
- "Highlighted": false,
3487
- "NotificationInfo": "",
3488
- "OptionalValues": [],
3489
- "ReferenceObjectInternalType": "",
3490
- "ReferenceObjectSubType": "",
3491
- "ReferenceObjectType": -1,
3492
- "TextColor": "",
3493
- "UiPageKey": "",
3494
- "Value": "Fall",
3495
- "Visible": true
3496
- },
3497
- {
3498
- "Accessory": "",
3499
- "AdditionalValue": "",
3500
- "ApiName": "ItemTSAPackaging",
3501
- "BackgroundColor": "",
3502
- "Enabled": false,
3503
- "EventsData": null,
3504
- "FieldType": 1,
3505
- "FormattedValue": "C",
3506
- "GroupFields": null,
3507
- "Highlighted": false,
3508
- "NotificationInfo": "",
3509
- "OptionalValues": [],
3510
- "ReferenceObjectInternalType": "",
3511
- "ReferenceObjectSubType": "",
3512
- "ReferenceObjectType": 0,
3513
- "TextColor": "",
3514
- "UiPageKey": "",
3515
- "Value": "C",
3516
- "Visible": true
3517
- }
3518
- ],
3519
- "IsEditable": false,
3520
- "IsSelectableForActions": false,
3521
- "MainAction": null,
3522
- "Profile": null,
3523
- "Type": 0,
3524
- "UID": "32fca2a8-9882-44e3-a9e2-fb98d4282529"
3525
- },
3526
- {
3527
- "AdditionalData": null,
3528
- "BackgroundColor": "",
3529
- "Fields": [
3530
- {
3531
- "Accessory": "",
3532
- "AdditionalValue": "",
3533
- "ApiName": "ItemTSAType",
3534
- "BackgroundColor": "",
3535
- "Enabled": false,
3536
- "EventsData": null,
3537
- "FieldType": 1,
3538
- "FormattedValue": "Accessories",
3539
- "GroupFields": null,
3540
- "Highlighted": false,
3541
- "NotificationInfo": "",
3542
- "OptionalValues": [],
3543
- "ReferenceObjectInternalType": "",
3544
- "ReferenceObjectSubType": "",
3545
- "ReferenceObjectType": 14,
3546
- "TextColor": "",
3547
- "UiPageKey": "",
3548
- "Value": "Accessories",
3549
- "Visible": true
3550
- },
3551
- {
3552
- "Accessory": "",
3553
- "AdditionalValue": "",
3554
- "ApiName": "ObjectMenu",
3555
- "BackgroundColor": "",
3556
- "Enabled": true,
3557
- "EventsData": null,
3558
- "FieldType": 17,
3559
- "FormattedValue": "",
3560
- "GroupFields": null,
3561
- "Highlighted": false,
3562
- "NotificationInfo": "",
3563
- "OptionalValues": [],
3564
- "ReferenceObjectInternalType": "",
3565
- "ReferenceObjectSubType": "",
3566
- "ReferenceObjectType": 2129897584,
3567
- "TextColor": "",
3568
- "UiPageKey": "",
3569
- "Value": "",
3570
- "Visible": true
3571
- },
3572
- {
3573
- "Accessory": "",
3574
- "AdditionalValue": "",
3575
- "ApiName": "TSARelteadItems",
3576
- "BackgroundColor": "",
3577
- "Enabled": true,
3578
- "EventsData": null,
3579
- "FieldType": 1,
3580
- "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\"]",
3581
- "GroupFields": null,
3582
- "Highlighted": false,
3583
- "NotificationInfo": "",
3584
- "OptionalValues": [],
3585
- "ReferenceObjectInternalType": "",
3586
- "ReferenceObjectSubType": "",
3587
- "ReferenceObjectType": 0,
3588
- "TextColor": "",
3589
- "UiPageKey": "",
3590
- "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\"]",
3591
- "Visible": true
3592
- },
3593
- {
3594
- "Accessory": "",
3595
- "AdditionalValue": "",
3596
- "ApiName": "Image",
3597
- "BackgroundColor": "",
3598
- "Enabled": false,
3599
- "EventsData": null,
3600
- "FieldType": 27,
3601
- "FormattedValue": "https://cdn.pepperi.com/WrntyImages/30013636/PortfolioItems/8/65147318_1.jpg?ft=1",
3602
- "GroupFields": null,
3603
- "Highlighted": false,
3604
- "NotificationInfo": "",
3605
- "OptionalValues": [],
3606
- "ReferenceObjectInternalType": "",
3607
- "ReferenceObjectSubType": "",
3608
- "ReferenceObjectType": -1252338867,
3609
- "TextColor": "",
3610
- "UiPageKey": "",
3611
- "Value": "https://cdn.pepperi.com/WrntyImages/30013636/PortfolioItems/8/65147318_1.jpg?ft=1",
3612
- "Visible": true
3613
- },
3614
- {
3615
- "Accessory": "",
3616
- "AdditionalValue": "",
3617
- "ApiName": "ItemName",
3618
- "BackgroundColor": "",
3619
- "Enabled": false,
3620
- "EventsData": null,
3621
- "FieldType": 1,
3622
- "FormattedValue": "Elegant Hat",
3623
- "GroupFields": null,
3624
- "Highlighted": false,
3625
- "NotificationInfo": "",
3626
- "OptionalValues": [],
3627
- "ReferenceObjectInternalType": "",
3628
- "ReferenceObjectSubType": "",
3629
- "ReferenceObjectType": 2,
3630
- "TextColor": "",
3631
- "UiPageKey": "",
3632
- "Value": "Elegant Hat",
3633
- "Visible": true
3634
- },
3635
- {
3636
- "Accessory": "",
3637
- "AdditionalValue": "",
3638
- "ApiName": "ItemExternalID",
3639
- "BackgroundColor": "",
3640
- "Enabled": false,
3641
- "EventsData": null,
3642
- "FieldType": 1,
3643
- "FormattedValue": "HT3004",
3644
- "GroupFields": null,
3645
- "Highlighted": false,
3646
- "NotificationInfo": "",
3647
- "OptionalValues": [],
3648
- "ReferenceObjectInternalType": "",
3649
- "ReferenceObjectSubType": "",
3650
- "ReferenceObjectType": 2125052912,
3651
- "TextColor": "",
3652
- "UiPageKey": "",
3653
- "Value": "HT3004",
3654
- "Visible": true
3655
- },
3656
- {
3657
- "Accessory": "$",
3658
- "AdditionalValue": "",
3659
- "ApiName": "ItemPrice",
3660
- "BackgroundColor": "",
3661
- "Enabled": false,
3662
- "EventsData": null,
3663
- "FieldType": 9,
3664
- "FormattedValue": "$21.00",
3665
- "GroupFields": null,
3666
- "Highlighted": false,
3667
- "NotificationInfo": "",
3668
- "OptionalValues": [],
3669
- "ReferenceObjectInternalType": "",
3670
- "ReferenceObjectSubType": "",
3671
- "ReferenceObjectType": 0,
3672
- "TextColor": "",
3673
- "UiPageKey": "",
3674
- "Value": "21.0000",
3675
- "Visible": true
3676
- },
3677
- {
3678
- "Accessory": "",
3679
- "AdditionalValue": "",
3680
- "ApiName": "UnitsQuantity",
3681
- "BackgroundColor": "",
3682
- "Enabled": true,
3683
- "EventsData": null,
3684
- "FieldType": 28,
3685
- "FormattedValue": "0",
3686
- "GroupFields": null,
3687
- "Highlighted": false,
3688
- "NotificationInfo": "",
3689
- "OptionalValues": [],
3690
- "ReferenceObjectInternalType": "",
3691
- "ReferenceObjectSubType": "",
3692
- "ReferenceObjectType": 8,
3693
- "TextColor": "",
3694
- "UiPageKey": "",
3695
- "Value": "0.0000",
3696
- "Visible": true
3697
- },
3698
- {
3699
- "Accessory": "",
3700
- "AdditionalValue": "",
3701
- "ApiName": "ItemTSASeason",
3702
- "BackgroundColor": "",
3703
- "Enabled": false,
3704
- "EventsData": null,
3705
- "FieldType": 1,
3706
- "FormattedValue": "Fall",
3707
- "GroupFields": null,
3708
- "Highlighted": false,
3709
- "NotificationInfo": "",
3710
- "OptionalValues": [],
3711
- "ReferenceObjectInternalType": "",
3712
- "ReferenceObjectSubType": "",
3713
- "ReferenceObjectType": 2125050496,
3714
- "TextColor": "",
3715
- "UiPageKey": "",
3716
- "Value": "Fall",
3717
- "Visible": true
3718
- },
3719
- {
3720
- "Accessory": "",
3721
- "AdditionalValue": "",
3722
- "ApiName": "ItemTSAPackaging",
3723
- "BackgroundColor": "",
3724
- "Enabled": false,
3725
- "EventsData": null,
3726
- "FieldType": 1,
3727
- "FormattedValue": "C",
3728
- "GroupFields": null,
3729
- "Highlighted": false,
3730
- "NotificationInfo": "",
3731
- "OptionalValues": [],
3732
- "ReferenceObjectInternalType": "",
3733
- "ReferenceObjectSubType": "",
3734
- "ReferenceObjectType": 2125051672,
3735
- "TextColor": "",
3736
- "UiPageKey": "",
3737
- "Value": "C",
3738
- "Visible": true
3739
- }
3740
- ],
3741
- "IsEditable": false,
3742
- "IsSelectableForActions": false,
3743
- "MainAction": null,
3744
- "Profile": null,
3745
- "Type": 0,
3746
- "UID": "a76fad1a-0143-449f-9553-fa85a11d7e81"
3747
- },
3748
- {
3749
- "AdditionalData": null,
3750
- "BackgroundColor": "",
3751
- "Fields": [
3752
- {
3753
- "Accessory": "",
3754
- "AdditionalValue": "",
3755
- "ApiName": "ItemTSAType",
3756
- "BackgroundColor": "",
3757
- "Enabled": false,
3758
- "EventsData": null,
3759
- "FieldType": 1,
3760
- "FormattedValue": "Accessories",
3761
- "GroupFields": null,
3762
- "Highlighted": false,
3763
- "NotificationInfo": "",
3764
- "OptionalValues": [],
3765
- "ReferenceObjectInternalType": "",
3766
- "ReferenceObjectSubType": "",
3767
- "ReferenceObjectType": 1660598050,
3768
- "TextColor": "",
3769
- "UiPageKey": "",
3770
- "Value": "Accessories",
3771
- "Visible": true
3772
- },
3773
- {
3774
- "Accessory": "",
3775
- "AdditionalValue": "",
3776
- "ApiName": "ObjectMenu",
3777
- "BackgroundColor": "",
3778
- "Enabled": true,
3779
- "EventsData": null,
3780
- "FieldType": 17,
3781
- "FormattedValue": "",
3782
- "GroupFields": null,
3783
- "Highlighted": false,
3784
- "NotificationInfo": "",
3785
- "OptionalValues": [],
3786
- "ReferenceObjectInternalType": "",
3787
- "ReferenceObjectSubType": "",
3788
- "ReferenceObjectType": 0,
3789
- "TextColor": "",
3790
- "UiPageKey": "",
3791
- "Value": "",
3792
- "Visible": true
3793
- },
3794
- {
3795
- "Accessory": "",
3796
- "AdditionalValue": "",
3797
- "ApiName": "TSARelteadItems",
3798
- "BackgroundColor": "",
3799
- "Enabled": true,
3800
- "EventsData": null,
3801
- "FieldType": 1,
3802
- "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\"]",
3803
- "GroupFields": null,
3804
- "Highlighted": false,
3805
- "NotificationInfo": "",
3806
- "OptionalValues": [],
3807
- "ReferenceObjectInternalType": "",
3808
- "ReferenceObjectSubType": "",
3809
- "ReferenceObjectType": -1591707634,
3810
- "TextColor": "",
3811
- "UiPageKey": "",
3812
- "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\"]",
3813
- "Visible": true
3814
- },
3815
- {
3816
- "Accessory": "",
3817
- "AdditionalValue": "",
3818
- "ApiName": "Image",
3819
- "BackgroundColor": "",
3820
- "Enabled": false,
3821
- "EventsData": null,
3822
- "FieldType": 27,
3823
- "FormattedValue": "https://cdn.pepperi.com/WrntyImages/30013636/PortfolioItems/9/65147319_1.jpg?ft=1",
3824
- "GroupFields": null,
3825
- "Highlighted": false,
3826
- "NotificationInfo": "",
3827
- "OptionalValues": [],
3828
- "ReferenceObjectInternalType": "",
3829
- "ReferenceObjectSubType": "",
3830
- "ReferenceObjectType": 2125052176,
3831
- "TextColor": "",
3832
- "UiPageKey": "",
3833
- "Value": "https://cdn.pepperi.com/WrntyImages/30013636/PortfolioItems/9/65147319_1.jpg?ft=1",
3834
- "Visible": true
3835
- },
3836
- {
3837
- "Accessory": "",
3838
- "AdditionalValue": "",
3839
- "ApiName": "ItemName",
3840
- "BackgroundColor": "",
3841
- "Enabled": false,
3842
- "EventsData": null,
3843
- "FieldType": 1,
3844
- "FormattedValue": "Outdoor Hat",
3845
- "GroupFields": null,
3846
- "Highlighted": false,
3847
- "NotificationInfo": "",
3848
- "OptionalValues": [],
3849
- "ReferenceObjectInternalType": "",
3850
- "ReferenceObjectSubType": "",
3851
- "ReferenceObjectType": 2125040248,
3852
- "TextColor": "",
3853
- "UiPageKey": "",
3854
- "Value": "Outdoor Hat",
3855
- "Visible": true
3856
- },
3857
- {
3858
- "Accessory": "",
3859
- "AdditionalValue": "",
3860
- "ApiName": "ItemExternalID",
3861
- "BackgroundColor": "",
3862
- "Enabled": false,
3863
- "EventsData": null,
3864
- "FieldType": 1,
3865
- "FormattedValue": "HT3005",
3866
- "GroupFields": null,
3867
- "Highlighted": false,
3868
- "NotificationInfo": "",
3869
- "OptionalValues": [],
3870
- "ReferenceObjectInternalType": "",
3871
- "ReferenceObjectSubType": "",
3872
- "ReferenceObjectType": 2125053472,
3873
- "TextColor": "",
3874
- "UiPageKey": "",
3875
- "Value": "HT3005",
3876
- "Visible": true
3877
- },
3878
- {
3879
- "Accessory": "$",
3880
- "AdditionalValue": "",
3881
- "ApiName": "ItemPrice",
3882
- "BackgroundColor": "",
3883
- "Enabled": false,
3884
- "EventsData": null,
3885
- "FieldType": 9,
3886
- "FormattedValue": "$23.00",
3887
- "GroupFields": null,
3888
- "Highlighted": false,
3889
- "NotificationInfo": "",
3890
- "OptionalValues": [],
3891
- "ReferenceObjectInternalType": "",
3892
- "ReferenceObjectSubType": "",
3893
- "ReferenceObjectType": 2,
3894
- "TextColor": "",
3895
- "UiPageKey": "",
3896
- "Value": "23.0000",
3897
- "Visible": true
3898
- },
3899
- {
3900
- "Accessory": "",
3901
- "AdditionalValue": "",
3902
- "ApiName": "UnitsQuantity",
3903
- "BackgroundColor": "",
3904
- "Enabled": true,
3905
- "EventsData": null,
3906
- "FieldType": 28,
3907
- "FormattedValue": "0",
3908
- "GroupFields": null,
3909
- "Highlighted": false,
3910
- "NotificationInfo": "",
3911
- "OptionalValues": [],
3912
- "ReferenceObjectInternalType": "",
3913
- "ReferenceObjectSubType": "",
3914
- "ReferenceObjectType": 2106867472,
3915
- "TextColor": "",
3916
- "UiPageKey": "",
3917
- "Value": "0.0000",
3918
- "Visible": true
3919
- },
3920
- {
3921
- "Accessory": "",
3922
- "AdditionalValue": "",
3923
- "ApiName": "ItemTSASeason",
3924
- "BackgroundColor": "",
3925
- "Enabled": false,
3926
- "EventsData": null,
3927
- "FieldType": 1,
3928
- "FormattedValue": "Fall",
3929
- "GroupFields": null,
3930
- "Highlighted": false,
3931
- "NotificationInfo": "",
3932
- "OptionalValues": [],
3933
- "ReferenceObjectInternalType": "",
3934
- "ReferenceObjectSubType": "",
3935
- "ReferenceObjectType": 0,
3936
- "TextColor": "",
3937
- "UiPageKey": "",
3938
- "Value": "Fall",
3939
- "Visible": true
3940
- },
3941
- {
3942
- "Accessory": "",
3943
- "AdditionalValue": "",
3944
- "ApiName": "ItemTSAPackaging",
3945
- "BackgroundColor": "",
3946
- "Enabled": false,
3947
- "EventsData": null,
3948
- "FieldType": 1,
3949
- "FormattedValue": "D",
3950
- "GroupFields": null,
3951
- "Highlighted": false,
3952
- "NotificationInfo": "",
3953
- "OptionalValues": [],
3954
- "ReferenceObjectInternalType": "",
3955
- "ReferenceObjectSubType": "",
3956
- "ReferenceObjectType": 0,
3957
- "TextColor": "",
3958
- "UiPageKey": "",
3959
- "Value": "D",
3960
- "Visible": true
3961
- }
3962
- ],
3963
- "IsEditable": false,
3964
- "IsSelectableForActions": false,
3965
- "MainAction": null,
3966
- "Profile": null,
3967
- "Type": 0,
3968
- "UID": "f2c6c4c6-b33c-47e1-86a4-57ed5edb757a"
3969
- },
3970
- {
3971
- "AdditionalData": null,
3972
- "BackgroundColor": "",
3973
- "Fields": [
3974
- {
3975
- "Accessory": "",
3976
- "AdditionalValue": "",
3977
- "ApiName": "ItemTSAType",
3978
- "BackgroundColor": "",
3979
- "Enabled": false,
3980
- "EventsData": null,
3981
- "FieldType": 1,
3982
- "FormattedValue": "Accessories",
3983
- "GroupFields": null,
3984
- "Highlighted": false,
3985
- "NotificationInfo": "",
3986
- "OptionalValues": [],
3987
- "ReferenceObjectInternalType": "",
3988
- "ReferenceObjectSubType": "",
3989
- "ReferenceObjectType": 5,
3990
- "TextColor": "",
3991
- "UiPageKey": "",
3992
- "Value": "Accessories",
3993
- "Visible": true
3994
- },
3995
- {
3996
- "Accessory": "",
3997
- "AdditionalValue": "",
3998
- "ApiName": "ObjectMenu",
3999
- "BackgroundColor": "",
4000
- "Enabled": true,
4001
- "EventsData": null,
4002
- "FieldType": 17,
4003
- "FormattedValue": "",
4004
- "GroupFields": null,
4005
- "Highlighted": false,
4006
- "NotificationInfo": "",
4007
- "OptionalValues": [],
4008
- "ReferenceObjectInternalType": "",
4009
- "ReferenceObjectSubType": "",
4010
- "ReferenceObjectType": 5,
4011
- "TextColor": "",
4012
- "UiPageKey": "",
4013
- "Value": "",
4014
- "Visible": true
4015
- },
4016
- {
4017
- "Accessory": "",
4018
- "AdditionalValue": "",
4019
- "ApiName": "TSARelteadItems",
4020
- "BackgroundColor": "",
4021
- "Enabled": true,
4022
- "EventsData": null,
4023
- "FieldType": 1,
4024
- "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\"]",
4025
- "GroupFields": null,
4026
- "Highlighted": false,
4027
- "NotificationInfo": "",
4028
- "OptionalValues": [],
4029
- "ReferenceObjectInternalType": "",
4030
- "ReferenceObjectSubType": "",
4031
- "ReferenceObjectType": 2123848360,
4032
- "TextColor": "",
4033
- "UiPageKey": "",
4034
- "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\"]",
4035
- "Visible": true
4036
- },
4037
- {
4038
- "Accessory": "",
4039
- "AdditionalValue": "",
4040
- "ApiName": "Image",
4041
- "BackgroundColor": "",
4042
- "Enabled": false,
4043
- "EventsData": null,
4044
- "FieldType": 27,
4045
- "FormattedValue": "https://cdn.pepperi.com/WrntyImages/30013636/PortfolioItems/0/65147320_1.jpg?ft=1",
4046
- "GroupFields": null,
4047
- "Highlighted": false,
4048
- "NotificationInfo": "",
4049
- "OptionalValues": [],
4050
- "ReferenceObjectInternalType": "",
4051
- "ReferenceObjectSubType": "",
4052
- "ReferenceObjectType": 0,
4053
- "TextColor": "",
4054
- "UiPageKey": "",
4055
- "Value": "https://cdn.pepperi.com/WrntyImages/30013636/PortfolioItems/0/65147320_1.jpg?ft=1",
4056
- "Visible": true
4057
- },
4058
- {
4059
- "Accessory": "",
4060
- "AdditionalValue": "",
4061
- "ApiName": "ItemName",
4062
- "BackgroundColor": "",
4063
- "Enabled": false,
4064
- "EventsData": null,
4065
- "FieldType": 1,
4066
- "FormattedValue": "Outdoor Hat",
4067
- "GroupFields": null,
4068
- "Highlighted": false,
4069
- "NotificationInfo": "",
4070
- "OptionalValues": [],
4071
- "ReferenceObjectInternalType": "",
4072
- "ReferenceObjectSubType": "",
4073
- "ReferenceObjectType": 2123341872,
4074
- "TextColor": "",
4075
- "UiPageKey": "",
4076
- "Value": "Outdoor Hat",
4077
- "Visible": true
4078
- },
4079
- {
4080
- "Accessory": "",
4081
- "AdditionalValue": "",
4082
- "ApiName": "ItemExternalID",
4083
- "BackgroundColor": "",
4084
- "Enabled": false,
4085
- "EventsData": null,
4086
- "FieldType": 1,
4087
- "FormattedValue": "HT3006",
4088
- "GroupFields": null,
4089
- "Highlighted": false,
4090
- "NotificationInfo": "",
4091
- "OptionalValues": [],
4092
- "ReferenceObjectInternalType": "",
4093
- "ReferenceObjectSubType": "",
4094
- "ReferenceObjectType": -1,
4095
- "TextColor": "",
4096
- "UiPageKey": "",
4097
- "Value": "HT3006",
4098
- "Visible": true
4099
- },
4100
- {
4101
- "Accessory": "$",
4102
- "AdditionalValue": "",
4103
- "ApiName": "ItemPrice",
4104
- "BackgroundColor": "",
4105
- "Enabled": false,
4106
- "EventsData": null,
4107
- "FieldType": 9,
4108
- "FormattedValue": "$19.00",
4109
- "GroupFields": null,
4110
- "Highlighted": false,
4111
- "NotificationInfo": "",
4112
- "OptionalValues": [],
4113
- "ReferenceObjectInternalType": "",
4114
- "ReferenceObjectSubType": "",
4115
- "ReferenceObjectType": 2123850704,
4116
- "TextColor": "",
4117
- "UiPageKey": "",
4118
- "Value": "19.0000",
4119
- "Visible": true
4120
- },
4121
- {
4122
- "Accessory": "",
4123
- "AdditionalValue": "",
4124
- "ApiName": "UnitsQuantity",
4125
- "BackgroundColor": "",
4126
- "Enabled": true,
4127
- "EventsData": null,
4128
- "FieldType": 28,
4129
- "FormattedValue": "0",
4130
- "GroupFields": null,
4131
- "Highlighted": false,
4132
- "NotificationInfo": "",
4133
- "OptionalValues": [],
4134
- "ReferenceObjectInternalType": "",
4135
- "ReferenceObjectSubType": "",
4136
- "ReferenceObjectType": 2123860720,
4137
- "TextColor": "",
4138
- "UiPageKey": "",
4139
- "Value": "0.0000",
4140
- "Visible": true
4141
- },
4142
- {
4143
- "Accessory": "",
4144
- "AdditionalValue": "",
4145
- "ApiName": "ItemTSASeason",
4146
- "BackgroundColor": "",
4147
- "Enabled": false,
4148
- "EventsData": null,
4149
- "FieldType": 1,
4150
- "FormattedValue": "Fall",
4151
- "GroupFields": null,
4152
- "Highlighted": false,
4153
- "NotificationInfo": "",
4154
- "OptionalValues": [],
4155
- "ReferenceObjectInternalType": "",
4156
- "ReferenceObjectSubType": "",
4157
- "ReferenceObjectType": 2123846016,
4158
- "TextColor": "",
4159
- "UiPageKey": "",
4160
- "Value": "Fall",
4161
- "Visible": true
4162
- },
4163
- {
4164
- "Accessory": "",
4165
- "AdditionalValue": "",
4166
- "ApiName": "ItemTSAPackaging",
4167
- "BackgroundColor": "",
4168
- "Enabled": false,
4169
- "EventsData": null,
4170
- "FieldType": 1,
4171
- "FormattedValue": "D",
4172
- "GroupFields": null,
4173
- "Highlighted": false,
4174
- "NotificationInfo": "",
4175
- "OptionalValues": [],
4176
- "ReferenceObjectInternalType": "",
4177
- "ReferenceObjectSubType": "",
4178
- "ReferenceObjectType": 2123846016,
4179
- "TextColor": "",
4180
- "UiPageKey": "",
4181
- "Value": "D",
4182
- "Visible": true
4183
- }
4184
- ],
4185
- "IsEditable": false,
4186
- "IsSelectableForActions": false,
4187
- "MainAction": null,
4188
- "Profile": null,
4189
- "Type": 0,
4190
- "UID": "e77f883f-92b0-41ef-80fb-806bfb375b6a"
4191
- },
4192
- {
4193
- "AdditionalData": null,
4194
- "BackgroundColor": "",
4195
- "Fields": [
4196
- {
4197
- "Accessory": "",
4198
- "AdditionalValue": "",
4199
- "ApiName": "ItemTSAType",
4200
- "BackgroundColor": "",
4201
- "Enabled": false,
4202
- "EventsData": null,
4203
- "FieldType": 1,
4204
- "FormattedValue": "Accessories",
4205
- "GroupFields": null,
4206
- "Highlighted": false,
4207
- "NotificationInfo": "",
4208
- "OptionalValues": [],
4209
- "ReferenceObjectInternalType": "",
4210
- "ReferenceObjectSubType": "",
4211
- "ReferenceObjectType": 2123848360,
4212
- "TextColor": "",
4213
- "UiPageKey": "",
4214
- "Value": "Accessories",
4215
- "Visible": true
4216
- },
4217
- {
4218
- "Accessory": "",
4219
- "AdditionalValue": "",
4220
- "ApiName": "ObjectMenu",
4221
- "BackgroundColor": "",
4222
- "Enabled": true,
4223
- "EventsData": null,
4224
- "FieldType": 17,
4225
- "FormattedValue": "",
4226
- "GroupFields": null,
4227
- "Highlighted": false,
4228
- "NotificationInfo": "",
4229
- "OptionalValues": [],
4230
- "ReferenceObjectInternalType": "",
4231
- "ReferenceObjectSubType": "",
4232
- "ReferenceObjectType": 2123850704,
4233
- "TextColor": "",
4234
- "UiPageKey": "",
4235
- "Value": "",
4236
- "Visible": true
4237
- },
4238
- {
4239
- "Accessory": "",
4240
- "AdditionalValue": "",
4241
- "ApiName": "TSARelteadItems",
4242
- "BackgroundColor": "",
4243
- "Enabled": true,
4244
- "EventsData": null,
4245
- "FieldType": 1,
4246
- "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\"]",
4247
- "GroupFields": null,
4248
- "Highlighted": false,
4249
- "NotificationInfo": "",
4250
- "OptionalValues": [],
4251
- "ReferenceObjectInternalType": "",
4252
- "ReferenceObjectSubType": "",
4253
- "ReferenceObjectType": 5,
4254
- "TextColor": "",
4255
- "UiPageKey": "",
4256
- "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\"]",
4257
- "Visible": true
4258
- },
4259
- {
4260
- "Accessory": "",
4261
- "AdditionalValue": "",
4262
- "ApiName": "Image",
4263
- "BackgroundColor": "",
4264
- "Enabled": false,
4265
- "EventsData": null,
4266
- "FieldType": 27,
4267
- "FormattedValue": "https://cdn.pepperi.com/WrntyImages/30013636/PortfolioItems/1/65147321_1.jpg?ft=1",
4268
- "GroupFields": null,
4269
- "Highlighted": false,
4270
- "NotificationInfo": "",
4271
- "OptionalValues": [],
4272
- "ReferenceObjectInternalType": "",
4273
- "ReferenceObjectSubType": "",
4274
- "ReferenceObjectType": 2123853240,
4275
- "TextColor": "",
4276
- "UiPageKey": "",
4277
- "Value": "https://cdn.pepperi.com/WrntyImages/30013636/PortfolioItems/1/65147321_1.jpg?ft=1",
4278
- "Visible": true
4279
- },
4280
- {
4281
- "Accessory": "",
4282
- "AdditionalValue": "",
4283
- "ApiName": "ItemName",
4284
- "BackgroundColor": "",
4285
- "Enabled": false,
4286
- "EventsData": null,
4287
- "FieldType": 1,
4288
- "FormattedValue": "Outdoor Hat",
4289
- "GroupFields": null,
4290
- "Highlighted": false,
4291
- "NotificationInfo": "",
4292
- "OptionalValues": [],
4293
- "ReferenceObjectInternalType": "",
4294
- "ReferenceObjectSubType": "",
4295
- "ReferenceObjectType": 5,
4296
- "TextColor": "",
4297
- "UiPageKey": "",
4298
- "Value": "Outdoor Hat",
4299
- "Visible": true
4300
- },
4301
- {
4302
- "Accessory": "",
4303
- "AdditionalValue": "",
4304
- "ApiName": "ItemExternalID",
4305
- "BackgroundColor": "",
4306
- "Enabled": false,
4307
- "EventsData": null,
4308
- "FieldType": 1,
4309
- "FormattedValue": "HT3007",
4310
- "GroupFields": null,
4311
- "Highlighted": false,
4312
- "NotificationInfo": "",
4313
- "OptionalValues": [],
4314
- "ReferenceObjectInternalType": "",
4315
- "ReferenceObjectSubType": "",
4316
- "ReferenceObjectType": 13,
4317
- "TextColor": "",
4318
- "UiPageKey": "",
4319
- "Value": "HT3007",
4320
- "Visible": true
4321
- },
4322
- {
4323
- "Accessory": "$",
4324
- "AdditionalValue": "",
4325
- "ApiName": "ItemPrice",
4326
- "BackgroundColor": "",
4327
- "Enabled": false,
4328
- "EventsData": null,
4329
- "FieldType": 9,
4330
- "FormattedValue": "$22.00",
4331
- "GroupFields": null,
4332
- "Highlighted": false,
4333
- "NotificationInfo": "",
4334
- "OptionalValues": [],
4335
- "ReferenceObjectInternalType": "",
4336
- "ReferenceObjectSubType": "",
4337
- "ReferenceObjectType": 0,
4338
- "TextColor": "",
4339
- "UiPageKey": "",
4340
- "Value": "22.0000",
4341
- "Visible": true
4342
- },
4343
- {
4344
- "Accessory": "",
4345
- "AdditionalValue": "",
4346
- "ApiName": "UnitsQuantity",
4347
- "BackgroundColor": "",
4348
- "Enabled": true,
4349
- "EventsData": null,
4350
- "FieldType": 28,
4351
- "FormattedValue": "0",
4352
- "GroupFields": null,
4353
- "Highlighted": false,
4354
- "NotificationInfo": "",
4355
- "OptionalValues": [],
4356
- "ReferenceObjectInternalType": "",
4357
- "ReferenceObjectSubType": "",
4358
- "ReferenceObjectType": 0,
4359
- "TextColor": "",
4360
- "UiPageKey": "",
4361
- "Value": "0.0000",
4362
- "Visible": true
4363
- },
4364
- {
4365
- "Accessory": "",
4366
- "AdditionalValue": "",
4367
- "ApiName": "ItemTSASeason",
4368
- "BackgroundColor": "",
4369
- "Enabled": false,
4370
- "EventsData": null,
4371
- "FieldType": 1,
4372
- "FormattedValue": "Fall",
4373
- "GroupFields": null,
4374
- "Highlighted": false,
4375
- "NotificationInfo": "",
4376
- "OptionalValues": [],
4377
- "ReferenceObjectInternalType": "",
4378
- "ReferenceObjectSubType": "",
4379
- "ReferenceObjectType": 0,
4380
- "TextColor": "",
4381
- "UiPageKey": "",
4382
- "Value": "Fall",
4383
- "Visible": true
4384
- },
4385
- {
4386
- "Accessory": "",
4387
- "AdditionalValue": "",
4388
- "ApiName": "ItemTSAPackaging",
4389
- "BackgroundColor": "",
4390
- "Enabled": false,
4391
- "EventsData": null,
4392
- "FieldType": 1,
4393
- "FormattedValue": "D",
4394
- "GroupFields": null,
4395
- "Highlighted": false,
4396
- "NotificationInfo": "",
4397
- "OptionalValues": [],
4398
- "ReferenceObjectInternalType": "",
4399
- "ReferenceObjectSubType": "",
4400
- "ReferenceObjectType": 0,
4401
- "TextColor": "",
4402
- "UiPageKey": "",
4403
- "Value": "D",
4404
- "Visible": true
4405
- }
4406
- ],
4407
- "IsEditable": false,
4408
- "IsSelectableForActions": false,
4409
- "MainAction": null,
4410
- "Profile": null,
4411
- "Type": 0,
4412
- "UID": "0b91c165-1ca4-4bb5-ba69-a877948a7a2d"
4413
- },
4414
- {
4415
- "AdditionalData": null,
4416
- "BackgroundColor": "",
4417
- "Fields": [
4418
- {
4419
- "Accessory": "",
4420
- "AdditionalValue": "",
4421
- "ApiName": "ItemTSAType",
4422
- "BackgroundColor": "",
4423
- "Enabled": false,
4424
- "EventsData": null,
4425
- "FieldType": 1,
4426
- "FormattedValue": "Accessories",
4427
- "GroupFields": null,
4428
- "Highlighted": false,
4429
- "NotificationInfo": "",
4430
- "OptionalValues": [],
4431
- "ReferenceObjectInternalType": "",
4432
- "ReferenceObjectSubType": "",
4433
- "ReferenceObjectType": 0,
4434
- "TextColor": "",
4435
- "UiPageKey": "",
4436
- "Value": "Accessories",
4437
- "Visible": true
4438
- },
4439
- {
4440
- "Accessory": "",
4441
- "AdditionalValue": "",
4442
- "ApiName": "ObjectMenu",
4443
- "BackgroundColor": "",
4444
- "Enabled": true,
4445
- "EventsData": null,
4446
- "FieldType": 17,
4447
- "FormattedValue": "",
4448
- "GroupFields": null,
4449
- "Highlighted": false,
4450
- "NotificationInfo": "",
4451
- "OptionalValues": [],
4452
- "ReferenceObjectInternalType": "",
4453
- "ReferenceObjectSubType": "",
4454
- "ReferenceObjectType": 0,
4455
- "TextColor": "",
4456
- "UiPageKey": "",
4457
- "Value": "",
4458
- "Visible": true
4459
- },
4460
- {
4461
- "Accessory": "",
4462
- "AdditionalValue": "",
4463
- "ApiName": "TSARelteadItems",
4464
- "BackgroundColor": "",
4465
- "Enabled": true,
4466
- "EventsData": null,
4467
- "FieldType": 1,
4468
- "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\"]",
4469
- "GroupFields": null,
4470
- "Highlighted": false,
4471
- "NotificationInfo": "",
4472
- "OptionalValues": [],
4473
- "ReferenceObjectInternalType": "",
4474
- "ReferenceObjectSubType": "",
4475
- "ReferenceObjectType": 0,
4476
- "TextColor": "",
4477
- "UiPageKey": "",
4478
- "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\"]",
4479
- "Visible": true
4480
- },
4481
- {
4482
- "Accessory": "",
4483
- "AdditionalValue": "",
4484
- "ApiName": "Image",
4485
- "BackgroundColor": "",
4486
- "Enabled": false,
4487
- "EventsData": null,
4488
- "FieldType": 27,
4489
- "FormattedValue": "https://cdn.pepperi.com/WrntyImages/30013636/PortfolioItems/2/65147322_1.jpg?ft=1",
4490
- "GroupFields": null,
4491
- "Highlighted": false,
4492
- "NotificationInfo": "",
4493
- "OptionalValues": [],
4494
- "ReferenceObjectInternalType": "",
4495
- "ReferenceObjectSubType": "",
4496
- "ReferenceObjectType": 0,
4497
- "TextColor": "",
4498
- "UiPageKey": "",
4499
- "Value": "https://cdn.pepperi.com/WrntyImages/30013636/PortfolioItems/2/65147322_1.jpg?ft=1",
4500
- "Visible": true
4501
- },
4502
- {
4503
- "Accessory": "",
4504
- "AdditionalValue": "",
4505
- "ApiName": "ItemName",
4506
- "BackgroundColor": "",
4507
- "Enabled": false,
4508
- "EventsData": null,
4509
- "FieldType": 1,
4510
- "FormattedValue": "Outdoor Hat",
4511
- "GroupFields": null,
4512
- "Highlighted": false,
4513
- "NotificationInfo": "",
4514
- "OptionalValues": [],
4515
- "ReferenceObjectInternalType": "",
4516
- "ReferenceObjectSubType": "",
4517
- "ReferenceObjectType": 0,
4518
- "TextColor": "",
4519
- "UiPageKey": "",
4520
- "Value": "Outdoor Hat",
4521
- "Visible": true
4522
- },
4523
- {
4524
- "Accessory": "",
4525
- "AdditionalValue": "",
4526
- "ApiName": "ItemExternalID",
4527
- "BackgroundColor": "",
4528
- "Enabled": false,
4529
- "EventsData": null,
4530
- "FieldType": 1,
4531
- "FormattedValue": "HT3008",
4532
- "GroupFields": null,
4533
- "Highlighted": false,
4534
- "NotificationInfo": "",
4535
- "OptionalValues": [],
4536
- "ReferenceObjectInternalType": "",
4537
- "ReferenceObjectSubType": "",
4538
- "ReferenceObjectType": 0,
4539
- "TextColor": "",
4540
- "UiPageKey": "",
4541
- "Value": "HT3008",
4542
- "Visible": true
4543
- },
4544
- {
4545
- "Accessory": "$",
4546
- "AdditionalValue": "",
4547
- "ApiName": "ItemPrice",
4548
- "BackgroundColor": "",
4549
- "Enabled": false,
4550
- "EventsData": null,
4551
- "FieldType": 9,
4552
- "FormattedValue": "$22.00",
4553
- "GroupFields": null,
4554
- "Highlighted": false,
4555
- "NotificationInfo": "",
4556
- "OptionalValues": [],
4557
- "ReferenceObjectInternalType": "",
4558
- "ReferenceObjectSubType": "",
4559
- "ReferenceObjectType": 0,
4560
- "TextColor": "",
4561
- "UiPageKey": "",
4562
- "Value": "22.0000",
4563
- "Visible": true
4564
- },
4565
- {
4566
- "Accessory": "",
4567
- "AdditionalValue": "",
4568
- "ApiName": "UnitsQuantity",
4569
- "BackgroundColor": "",
4570
- "Enabled": true,
4571
- "EventsData": null,
4572
- "FieldType": 28,
4573
- "FormattedValue": "0",
4574
- "GroupFields": null,
4575
- "Highlighted": false,
4576
- "NotificationInfo": "",
4577
- "OptionalValues": [],
4578
- "ReferenceObjectInternalType": "",
4579
- "ReferenceObjectSubType": "",
4580
- "ReferenceObjectType": 0,
4581
- "TextColor": "",
4582
- "UiPageKey": "",
4583
- "Value": "0.0000",
4584
- "Visible": true
4585
- },
4586
- {
4587
- "Accessory": "",
4588
- "AdditionalValue": "",
4589
- "ApiName": "ItemTSASeason",
4590
- "BackgroundColor": "",
4591
- "Enabled": false,
4592
- "EventsData": null,
4593
- "FieldType": 1,
4594
- "FormattedValue": "Winter",
4595
- "GroupFields": null,
4596
- "Highlighted": false,
4597
- "NotificationInfo": "",
4598
- "OptionalValues": [],
4599
- "ReferenceObjectInternalType": "",
4600
- "ReferenceObjectSubType": "",
4601
- "ReferenceObjectType": 0,
4602
- "TextColor": "",
4603
- "UiPageKey": "",
4604
- "Value": "Winter",
4605
- "Visible": true
4606
- },
4607
- {
4608
- "Accessory": "",
4609
- "AdditionalValue": "",
4610
- "ApiName": "ItemTSAPackaging",
4611
- "BackgroundColor": "",
4612
- "Enabled": false,
4613
- "EventsData": null,
4614
- "FieldType": 1,
4615
- "FormattedValue": "A",
4616
- "GroupFields": null,
4617
- "Highlighted": false,
4618
- "NotificationInfo": "",
4619
- "OptionalValues": [],
4620
- "ReferenceObjectInternalType": "",
4621
- "ReferenceObjectSubType": "",
4622
- "ReferenceObjectType": 0,
4623
- "TextColor": "",
4624
- "UiPageKey": "",
4625
- "Value": "A",
4626
- "Visible": true
4627
- }
4628
- ],
4629
- "IsEditable": false,
4630
- "IsSelectableForActions": false,
4631
- "MainAction": null,
4632
- "Profile": null,
4633
- "Type": 0,
4634
- "UID": "bd8b13ae-2a5c-4689-8488-32f6cb722ba9"
4635
- },
4636
- {
4637
- "AdditionalData": null,
4638
- "BackgroundColor": "",
4639
- "Fields": [
4640
- {
4641
- "Accessory": "",
4642
- "AdditionalValue": "",
4643
- "ApiName": "ItemTSAType",
4644
- "BackgroundColor": "",
4645
- "Enabled": false,
4646
- "EventsData": null,
4647
- "FieldType": 1,
4648
- "FormattedValue": "Accessories",
4649
- "GroupFields": null,
4650
- "Highlighted": false,
4651
- "NotificationInfo": "",
4652
- "OptionalValues": [],
4653
- "ReferenceObjectInternalType": "",
4654
- "ReferenceObjectSubType": "",
4655
- "ReferenceObjectType": 0,
4656
- "TextColor": "",
4657
- "UiPageKey": "",
4658
- "Value": "Accessories",
4659
- "Visible": true
4660
- },
4661
- {
4662
- "Accessory": "",
4663
- "AdditionalValue": "",
4664
- "ApiName": "ObjectMenu",
4665
- "BackgroundColor": "",
4666
- "Enabled": true,
4667
- "EventsData": null,
4668
- "FieldType": 17,
4669
- "FormattedValue": "",
4670
- "GroupFields": null,
4671
- "Highlighted": false,
4672
- "NotificationInfo": "",
4673
- "OptionalValues": [],
4674
- "ReferenceObjectInternalType": "",
4675
- "ReferenceObjectSubType": "",
4676
- "ReferenceObjectType": 0,
4677
- "TextColor": "",
4678
- "UiPageKey": "",
4679
- "Value": "",
4680
- "Visible": true
4681
- },
4682
- {
4683
- "Accessory": "",
4684
- "AdditionalValue": "",
4685
- "ApiName": "TSARelteadItems",
4686
- "BackgroundColor": "",
4687
- "Enabled": true,
4688
- "EventsData": null,
4689
- "FieldType": 1,
4690
- "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\"]",
4691
- "GroupFields": null,
4692
- "Highlighted": false,
4693
- "NotificationInfo": "",
4694
- "OptionalValues": [],
4695
- "ReferenceObjectInternalType": "",
4696
- "ReferenceObjectSubType": "",
4697
- "ReferenceObjectType": 0,
4698
- "TextColor": "",
4699
- "UiPageKey": "",
4700
- "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\"]",
4701
- "Visible": true
4702
- },
4703
- {
4704
- "Accessory": "",
4705
- "AdditionalValue": "",
4706
- "ApiName": "Image",
4707
- "BackgroundColor": "",
4708
- "Enabled": false,
4709
- "EventsData": null,
4710
- "FieldType": 27,
4711
- "FormattedValue": "https://cdn.pepperi.com/WrntyImages/30013636/PortfolioItems/3/65147323_1.jpg?ft=1",
4712
- "GroupFields": null,
4713
- "Highlighted": false,
4714
- "NotificationInfo": "",
4715
- "OptionalValues": [],
4716
- "ReferenceObjectInternalType": "",
4717
- "ReferenceObjectSubType": "",
4718
- "ReferenceObjectType": 0,
4719
- "TextColor": "",
4720
- "UiPageKey": "",
4721
- "Value": "https://cdn.pepperi.com/WrntyImages/30013636/PortfolioItems/3/65147323_1.jpg?ft=1",
4722
- "Visible": true
4723
- },
4724
- {
4725
- "Accessory": "",
4726
- "AdditionalValue": "",
4727
- "ApiName": "ItemName",
4728
- "BackgroundColor": "",
4729
- "Enabled": false,
4730
- "EventsData": null,
4731
- "FieldType": 1,
4732
- "FormattedValue": "Outdoor Hat",
4733
- "GroupFields": null,
4734
- "Highlighted": false,
4735
- "NotificationInfo": "",
4736
- "OptionalValues": [],
4737
- "ReferenceObjectInternalType": "",
4738
- "ReferenceObjectSubType": "",
4739
- "ReferenceObjectType": 0,
4740
- "TextColor": "",
4741
- "UiPageKey": "",
4742
- "Value": "Outdoor Hat",
4743
- "Visible": true
4744
- },
4745
- {
4746
- "Accessory": "",
4747
- "AdditionalValue": "",
4748
- "ApiName": "ItemExternalID",
4749
- "BackgroundColor": "",
4750
- "Enabled": false,
4751
- "EventsData": null,
4752
- "FieldType": 1,
4753
- "FormattedValue": "HT3009",
4754
- "GroupFields": null,
4755
- "Highlighted": false,
4756
- "NotificationInfo": "",
4757
- "OptionalValues": [],
4758
- "ReferenceObjectInternalType": "",
4759
- "ReferenceObjectSubType": "",
4760
- "ReferenceObjectType": 0,
4761
- "TextColor": "",
4762
- "UiPageKey": "",
4763
- "Value": "HT3009",
4764
- "Visible": true
4765
- },
4766
- {
4767
- "Accessory": "$",
4768
- "AdditionalValue": "",
4769
- "ApiName": "ItemPrice",
4770
- "BackgroundColor": "",
4771
- "Enabled": false,
4772
- "EventsData": null,
4773
- "FieldType": 9,
4774
- "FormattedValue": "$23.00",
4775
- "GroupFields": null,
4776
- "Highlighted": false,
4777
- "NotificationInfo": "",
4778
- "OptionalValues": [],
4779
- "ReferenceObjectInternalType": "",
4780
- "ReferenceObjectSubType": "",
4781
- "ReferenceObjectType": 0,
4782
- "TextColor": "",
4783
- "UiPageKey": "",
4784
- "Value": "23.0000",
4785
- "Visible": true
4786
- },
4787
- {
4788
- "Accessory": "",
4789
- "AdditionalValue": "",
4790
- "ApiName": "UnitsQuantity",
4791
- "BackgroundColor": "",
4792
- "Enabled": true,
4793
- "EventsData": null,
4794
- "FieldType": 28,
4795
- "FormattedValue": "0",
4796
- "GroupFields": null,
4797
- "Highlighted": false,
4798
- "NotificationInfo": "",
4799
- "OptionalValues": [],
4800
- "ReferenceObjectInternalType": "",
4801
- "ReferenceObjectSubType": "",
4802
- "ReferenceObjectType": 0,
4803
- "TextColor": "",
4804
- "UiPageKey": "",
4805
- "Value": "0.0000",
4806
- "Visible": true
4807
- },
4808
- {
4809
- "Accessory": "",
4810
- "AdditionalValue": "",
4811
- "ApiName": "ItemTSASeason",
4812
- "BackgroundColor": "",
4813
- "Enabled": false,
4814
- "EventsData": null,
4815
- "FieldType": 1,
4816
- "FormattedValue": "Winter",
4817
- "GroupFields": null,
4818
- "Highlighted": false,
4819
- "NotificationInfo": "",
4820
- "OptionalValues": [],
4821
- "ReferenceObjectInternalType": "",
4822
- "ReferenceObjectSubType": "",
4823
- "ReferenceObjectType": 0,
4824
- "TextColor": "",
4825
- "UiPageKey": "",
4826
- "Value": "Winter",
4827
- "Visible": true
4828
- },
4829
- {
4830
- "Accessory": "",
4831
- "AdditionalValue": "",
4832
- "ApiName": "ItemTSAPackaging",
4833
- "BackgroundColor": "",
4834
- "Enabled": false,
4835
- "EventsData": null,
4836
- "FieldType": 1,
4837
- "FormattedValue": "A",
4838
- "GroupFields": null,
4839
- "Highlighted": false,
4840
- "NotificationInfo": "",
4841
- "OptionalValues": [],
4842
- "ReferenceObjectInternalType": "",
4843
- "ReferenceObjectSubType": "",
4844
- "ReferenceObjectType": 0,
4845
- "TextColor": "",
4846
- "UiPageKey": "",
4847
- "Value": "A",
4848
- "Visible": true
4849
- }
4850
- ],
4851
- "IsEditable": false,
4852
- "IsSelectableForActions": false,
4853
- "MainAction": null,
4854
- "Profile": null,
4855
- "Type": 0,
4856
- "UID": "27bfe67d-13f4-4982-b5d0-3ebf5d753e0f"
4857
- },
4858
- {
4859
- "AdditionalData": null,
4860
- "BackgroundColor": "",
4861
- "Fields": [
4862
- {
4863
- "Accessory": "",
4864
- "AdditionalValue": "",
4865
- "ApiName": "ItemTSAType",
4866
- "BackgroundColor": "",
4867
- "Enabled": false,
4868
- "EventsData": null,
4869
- "FieldType": 1,
4870
- "FormattedValue": "Accessories",
4871
- "GroupFields": null,
4872
- "Highlighted": false,
4873
- "NotificationInfo": "",
4874
- "OptionalValues": [],
4875
- "ReferenceObjectInternalType": "",
4876
- "ReferenceObjectSubType": "",
4877
- "ReferenceObjectType": 0,
4878
- "TextColor": "",
4879
- "UiPageKey": "",
4880
- "Value": "Accessories",
4881
- "Visible": true
4882
- },
4883
- {
4884
- "Accessory": "",
4885
- "AdditionalValue": "",
4886
- "ApiName": "ObjectMenu",
4887
- "BackgroundColor": "",
4888
- "Enabled": true,
4889
- "EventsData": null,
4890
- "FieldType": 17,
4891
- "FormattedValue": "",
4892
- "GroupFields": null,
4893
- "Highlighted": false,
4894
- "NotificationInfo": "",
4895
- "OptionalValues": [],
4896
- "ReferenceObjectInternalType": "",
4897
- "ReferenceObjectSubType": "",
4898
- "ReferenceObjectType": 0,
4899
- "TextColor": "",
4900
- "UiPageKey": "",
4901
- "Value": "",
4902
- "Visible": true
4903
- },
4904
- {
4905
- "Accessory": "",
4906
- "AdditionalValue": "",
4907
- "ApiName": "TSARelteadItems",
4908
- "BackgroundColor": "",
4909
- "Enabled": true,
4910
- "EventsData": null,
4911
- "FieldType": 1,
4912
- "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\"]",
4913
- "GroupFields": null,
4914
- "Highlighted": false,
4915
- "NotificationInfo": "",
4916
- "OptionalValues": [],
4917
- "ReferenceObjectInternalType": "",
4918
- "ReferenceObjectSubType": "",
4919
- "ReferenceObjectType": 0,
4920
- "TextColor": "",
4921
- "UiPageKey": "",
4922
- "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\"]",
4923
- "Visible": true
4924
- },
4925
- {
4926
- "Accessory": "",
4927
- "AdditionalValue": "",
4928
- "ApiName": "Image",
4929
- "BackgroundColor": "",
4930
- "Enabled": false,
4931
- "EventsData": null,
4932
- "FieldType": 27,
4933
- "FormattedValue": "https://cdn.pepperi.com/WrntyImages/30013636/PortfolioItems/4/65147324_1.jpg?ft=1",
4934
- "GroupFields": null,
4935
- "Highlighted": false,
4936
- "NotificationInfo": "",
4937
- "OptionalValues": [],
4938
- "ReferenceObjectInternalType": "",
4939
- "ReferenceObjectSubType": "",
4940
- "ReferenceObjectType": 0,
4941
- "TextColor": "",
4942
- "UiPageKey": "",
4943
- "Value": "https://cdn.pepperi.com/WrntyImages/30013636/PortfolioItems/4/65147324_1.jpg?ft=1",
4944
- "Visible": true
4945
- },
4946
- {
4947
- "Accessory": "",
4948
- "AdditionalValue": "",
4949
- "ApiName": "ItemName",
4950
- "BackgroundColor": "",
4951
- "Enabled": false,
4952
- "EventsData": null,
4953
- "FieldType": 1,
4954
- "FormattedValue": "Sport Hat",
4955
- "GroupFields": null,
4956
- "Highlighted": false,
4957
- "NotificationInfo": "",
4958
- "OptionalValues": [],
4959
- "ReferenceObjectInternalType": "",
4960
- "ReferenceObjectSubType": "",
4961
- "ReferenceObjectType": 3473458,
4962
- "TextColor": "",
4963
- "UiPageKey": "",
4964
- "Value": "Sport Hat",
4965
- "Visible": true
4966
- },
4967
- {
4968
- "Accessory": "",
4969
- "AdditionalValue": "",
4970
- "ApiName": "ItemExternalID",
4971
- "BackgroundColor": "",
4972
- "Enabled": false,
4973
- "EventsData": null,
4974
- "FieldType": 1,
4975
- "FormattedValue": "HT3010",
4976
- "GroupFields": null,
4977
- "Highlighted": false,
4978
- "NotificationInfo": "",
4979
- "OptionalValues": [],
4980
- "ReferenceObjectInternalType": "",
4981
- "ReferenceObjectSubType": "",
4982
- "ReferenceObjectType": 0,
4983
- "TextColor": "",
4984
- "UiPageKey": "",
4985
- "Value": "HT3010",
4986
- "Visible": true
4987
- },
4988
- {
4989
- "Accessory": "$",
4990
- "AdditionalValue": "",
4991
- "ApiName": "ItemPrice",
4992
- "BackgroundColor": "",
4993
- "Enabled": false,
4994
- "EventsData": null,
4995
- "FieldType": 9,
4996
- "FormattedValue": "$24.00",
4997
- "GroupFields": null,
4998
- "Highlighted": false,
4999
- "NotificationInfo": "",
5000
- "OptionalValues": [],
5001
- "ReferenceObjectInternalType": "",
5002
- "ReferenceObjectSubType": "",
5003
- "ReferenceObjectType": 0,
5004
- "TextColor": "",
5005
- "UiPageKey": "",
5006
- "Value": "24.0000",
5007
- "Visible": true
5008
- },
5009
- {
5010
- "Accessory": "",
5011
- "AdditionalValue": "",
5012
- "ApiName": "UnitsQuantity",
5013
- "BackgroundColor": "",
5014
- "Enabled": true,
5015
- "EventsData": null,
5016
- "FieldType": 28,
5017
- "FormattedValue": "0",
5018
- "GroupFields": null,
5019
- "Highlighted": false,
5020
- "NotificationInfo": "",
5021
- "OptionalValues": [],
5022
- "ReferenceObjectInternalType": "",
5023
- "ReferenceObjectSubType": "",
5024
- "ReferenceObjectType": 0,
5025
- "TextColor": "",
5026
- "UiPageKey": "",
5027
- "Value": "0.0000",
5028
- "Visible": true
5029
- },
5030
- {
5031
- "Accessory": "",
5032
- "AdditionalValue": "",
5033
- "ApiName": "ItemTSASeason",
5034
- "BackgroundColor": "",
5035
- "Enabled": false,
5036
- "EventsData": null,
5037
- "FieldType": 1,
5038
- "FormattedValue": "Winter",
5039
- "GroupFields": null,
5040
- "Highlighted": false,
5041
- "NotificationInfo": "",
5042
- "OptionalValues": [],
5043
- "ReferenceObjectInternalType": "",
5044
- "ReferenceObjectSubType": "",
5045
- "ReferenceObjectType": 0,
5046
- "TextColor": "",
5047
- "UiPageKey": "",
5048
- "Value": "Winter",
5049
- "Visible": true
5050
- },
5051
- {
5052
- "Accessory": "",
5053
- "AdditionalValue": "",
5054
- "ApiName": "ItemTSAPackaging",
5055
- "BackgroundColor": "",
5056
- "Enabled": false,
5057
- "EventsData": null,
5058
- "FieldType": 1,
5059
- "FormattedValue": "A",
5060
- "GroupFields": null,
5061
- "Highlighted": false,
5062
- "NotificationInfo": "",
5063
- "OptionalValues": [],
5064
- "ReferenceObjectInternalType": "",
5065
- "ReferenceObjectSubType": "",
5066
- "ReferenceObjectType": 0,
5067
- "TextColor": "",
5068
- "UiPageKey": "",
5069
- "Value": "A",
5070
- "Visible": true
5071
- }
5072
- ],
5073
- "IsEditable": false,
5074
- "IsSelectableForActions": false,
5075
- "MainAction": null,
5076
- "Profile": null,
5077
- "Type": 0,
5078
- "UID": "f04e0fd3-7832-432d-ae27-1820ba9a9c85"
5079
- },
5080
- {
5081
- "AdditionalData": null,
5082
- "BackgroundColor": "",
5083
- "Fields": [
5084
- {
5085
- "Accessory": "",
5086
- "AdditionalValue": "",
5087
- "ApiName": "ItemTSAType",
5088
- "BackgroundColor": "",
5089
- "Enabled": false,
5090
- "EventsData": null,
5091
- "FieldType": 1,
5092
- "FormattedValue": "Accessories",
5093
- "GroupFields": null,
5094
- "Highlighted": false,
5095
- "NotificationInfo": "",
5096
- "OptionalValues": [],
5097
- "ReferenceObjectInternalType": "",
5098
- "ReferenceObjectSubType": "",
5099
- "ReferenceObjectType": 2106973712,
5100
- "TextColor": "",
5101
- "UiPageKey": "",
5102
- "Value": "Accessories",
5103
- "Visible": true
5104
- },
5105
- {
5106
- "Accessory": "",
5107
- "AdditionalValue": "",
5108
- "ApiName": "ObjectMenu",
5109
- "BackgroundColor": "",
5110
- "Enabled": true,
5111
- "EventsData": null,
5112
- "FieldType": 17,
5113
- "FormattedValue": "",
5114
- "GroupFields": null,
5115
- "Highlighted": false,
5116
- "NotificationInfo": "",
5117
- "OptionalValues": [],
5118
- "ReferenceObjectInternalType": "",
5119
- "ReferenceObjectSubType": "",
5120
- "ReferenceObjectType": 0,
5121
- "TextColor": "",
5122
- "UiPageKey": "",
5123
- "Value": "",
5124
- "Visible": true
5125
- },
5126
- {
5127
- "Accessory": "",
5128
- "AdditionalValue": "",
5129
- "ApiName": "TSARelteadItems",
5130
- "BackgroundColor": "",
5131
- "Enabled": true,
5132
- "EventsData": null,
5133
- "FieldType": 1,
5134
- "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\"]",
5135
- "GroupFields": null,
5136
- "Highlighted": false,
5137
- "NotificationInfo": "",
5138
- "OptionalValues": [],
5139
- "ReferenceObjectInternalType": "",
5140
- "ReferenceObjectSubType": "",
5141
- "ReferenceObjectType": 13,
5142
- "TextColor": "",
5143
- "UiPageKey": "",
5144
- "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\"]",
5145
- "Visible": true
5146
- },
5147
- {
5148
- "Accessory": "",
5149
- "AdditionalValue": "",
5150
- "ApiName": "Image",
5151
- "BackgroundColor": "",
5152
- "Enabled": false,
5153
- "EventsData": null,
5154
- "FieldType": 27,
5155
- "FormattedValue": "https://cdn.pepperi.com/WrntyImages/30013636/PortfolioItems/5/65147315_1.jpg?ft=1",
5156
- "GroupFields": null,
5157
- "Highlighted": false,
5158
- "NotificationInfo": "",
5159
- "OptionalValues": [],
5160
- "ReferenceObjectInternalType": "",
5161
- "ReferenceObjectSubType": "",
5162
- "ReferenceObjectType": 0,
5163
- "TextColor": "",
5164
- "UiPageKey": "",
5165
- "Value": "https://cdn.pepperi.com/WrntyImages/30013636/PortfolioItems/5/65147315_1.jpg?ft=1",
5166
- "Visible": true
5167
- },
5168
- {
5169
- "Accessory": "",
5170
- "AdditionalValue": "",
5171
- "ApiName": "ItemName",
5172
- "BackgroundColor": "",
5173
- "Enabled": false,
5174
- "EventsData": null,
5175
- "FieldType": 1,
5176
- "FormattedValue": "Wool Hat",
5177
- "GroupFields": null,
5178
- "Highlighted": false,
5179
- "NotificationInfo": "",
5180
- "OptionalValues": [],
5181
- "ReferenceObjectInternalType": "",
5182
- "ReferenceObjectSubType": "",
5183
- "ReferenceObjectType": 0,
5184
- "TextColor": "",
5185
- "UiPageKey": "",
5186
- "Value": "Wool Hat",
5187
- "Visible": true
5188
- },
5189
- {
5190
- "Accessory": "",
5191
- "AdditionalValue": "",
5192
- "ApiName": "ItemExternalID",
5193
- "BackgroundColor": "",
5194
- "Enabled": false,
5195
- "EventsData": null,
5196
- "FieldType": 1,
5197
- "FormattedValue": "HT3001",
5198
- "GroupFields": null,
5199
- "Highlighted": false,
5200
- "NotificationInfo": "",
5201
- "OptionalValues": [],
5202
- "ReferenceObjectInternalType": "",
5203
- "ReferenceObjectSubType": "",
5204
- "ReferenceObjectType": 0,
5205
- "TextColor": "",
5206
- "UiPageKey": "",
5207
- "Value": "HT3001",
5208
- "Visible": true
5209
- },
5210
- {
5211
- "Accessory": "$",
5212
- "AdditionalValue": "",
5213
- "ApiName": "ItemPrice",
5214
- "BackgroundColor": "",
5215
- "Enabled": false,
5216
- "EventsData": null,
5217
- "FieldType": 9,
5218
- "FormattedValue": "$23.00",
5219
- "GroupFields": null,
5220
- "Highlighted": false,
5221
- "NotificationInfo": "",
5222
- "OptionalValues": [],
5223
- "ReferenceObjectInternalType": "",
5224
- "ReferenceObjectSubType": "",
5225
- "ReferenceObjectType": 4980834,
5226
- "TextColor": "",
5227
- "UiPageKey": "",
5228
- "Value": "23.0000",
5229
- "Visible": true
5230
- },
5231
- {
5232
- "Accessory": "",
5233
- "AdditionalValue": "",
5234
- "ApiName": "UnitsQuantity",
5235
- "BackgroundColor": "",
5236
- "Enabled": true,
5237
- "EventsData": null,
5238
- "FieldType": 28,
5239
- "FormattedValue": "1",
5240
- "GroupFields": null,
5241
- "Highlighted": false,
5242
- "NotificationInfo": "",
5243
- "OptionalValues": [],
5244
- "ReferenceObjectInternalType": "",
5245
- "ReferenceObjectSubType": "",
5246
- "ReferenceObjectType": 0,
5247
- "TextColor": "#FF0000",
5248
- "UiPageKey": "",
5249
- "Value": "1.0000",
5250
- "Visible": true
5251
- },
5252
- {
5253
- "Accessory": "",
5254
- "AdditionalValue": "",
5255
- "ApiName": "ItemTSASeason",
5256
- "BackgroundColor": "",
5257
- "Enabled": false,
5258
- "EventsData": null,
5259
- "FieldType": 1,
5260
- "FormattedValue": "Fall",
5261
- "GroupFields": null,
5262
- "Highlighted": false,
5263
- "NotificationInfo": "",
5264
- "OptionalValues": [],
5265
- "ReferenceObjectInternalType": "",
5266
- "ReferenceObjectSubType": "",
5267
- "ReferenceObjectType": 0,
5268
- "TextColor": "",
5269
- "UiPageKey": "",
5270
- "Value": "Fall",
5271
- "Visible": true
5272
- },
5273
- {
5274
- "Accessory": "",
5275
- "AdditionalValue": "",
5276
- "ApiName": "ItemTSAPackaging",
5277
- "BackgroundColor": "",
5278
- "Enabled": false,
5279
- "EventsData": null,
5280
- "FieldType": 1,
5281
- "FormattedValue": "A",
5282
- "GroupFields": null,
5283
- "Highlighted": false,
5284
- "NotificationInfo": "",
5285
- "OptionalValues": [],
5286
- "ReferenceObjectInternalType": "",
5287
- "ReferenceObjectSubType": "",
5288
- "ReferenceObjectType": 0,
5289
- "TextColor": "",
5290
- "UiPageKey": "",
5291
- "Value": "A",
5292
- "Visible": true
5293
- }
5294
- ],
5295
- "IsEditable": false,
5296
- "IsSelectableForActions": false,
5297
- "MainAction": null,
5298
- "Profile": null,
5299
- "Type": 0,
5300
- "UID": "040f35a5-c35f-4099-9ddf-717d346194b0"
5301
- },
5302
- {
5303
- "AdditionalData": null,
5304
- "BackgroundColor": "",
5305
- "Fields": [
5306
- {
5307
- "Accessory": "",
5308
- "AdditionalValue": "",
5309
- "ApiName": "ItemTSAType",
5310
- "BackgroundColor": "",
5311
- "Enabled": false,
5312
- "EventsData": null,
5313
- "FieldType": 1,
5314
- "FormattedValue": "Bottoms",
5315
- "GroupFields": null,
5316
- "Highlighted": false,
5317
- "NotificationInfo": "",
5318
- "OptionalValues": [],
5319
- "ReferenceObjectInternalType": "",
5320
- "ReferenceObjectSubType": "",
5321
- "ReferenceObjectType": 7012437,
5322
- "TextColor": "",
5323
- "UiPageKey": "",
5324
- "Value": "Bottoms",
5325
- "Visible": true
5326
- },
5327
- {
5328
- "Accessory": "",
5329
- "AdditionalValue": "",
5330
- "ApiName": "ObjectMenu",
5331
- "BackgroundColor": "",
5332
- "Enabled": true,
5333
- "EventsData": null,
5334
- "FieldType": 17,
5335
- "FormattedValue": "",
5336
- "GroupFields": null,
5337
- "Highlighted": false,
5338
- "NotificationInfo": "",
5339
- "OptionalValues": [],
5340
- "ReferenceObjectInternalType": "",
5341
- "ReferenceObjectSubType": "",
5342
- "ReferenceObjectType": 0,
5343
- "TextColor": "",
5344
- "UiPageKey": "",
5345
- "Value": "",
5346
- "Visible": true
5347
- },
5348
- {
5349
- "Accessory": "",
5350
- "AdditionalValue": "",
5351
- "ApiName": "TSARelteadItems",
5352
- "BackgroundColor": "",
5353
- "Enabled": true,
5354
- "EventsData": null,
5355
- "FieldType": 1,
5356
- "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\"]",
5357
- "GroupFields": null,
5358
- "Highlighted": false,
5359
- "NotificationInfo": "",
5360
- "OptionalValues": [],
5361
- "ReferenceObjectInternalType": "",
5362
- "ReferenceObjectSubType": "",
5363
- "ReferenceObjectType": 3604586,
5364
- "TextColor": "",
5365
- "UiPageKey": "",
5366
- "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\"]",
5367
- "Visible": true
5368
- },
5369
- {
5370
- "Accessory": "",
5371
- "AdditionalValue": "",
5372
- "ApiName": "Image",
5373
- "BackgroundColor": "",
5374
- "Enabled": false,
5375
- "EventsData": null,
5376
- "FieldType": 27,
5377
- "FormattedValue": "",
5378
- "GroupFields": null,
5379
- "Highlighted": false,
5380
- "NotificationInfo": "",
5381
- "OptionalValues": [],
5382
- "ReferenceObjectInternalType": "",
5383
- "ReferenceObjectSubType": "",
5384
- "ReferenceObjectType": 0,
5385
- "TextColor": "",
5386
- "UiPageKey": "",
5387
- "Value": "",
5388
- "Visible": true
5389
- },
5390
- {
5391
- "Accessory": "",
5392
- "AdditionalValue": "",
5393
- "ApiName": "ItemName",
5394
- "BackgroundColor": "",
5395
- "Enabled": false,
5396
- "EventsData": null,
5397
- "FieldType": 1,
5398
- "FormattedValue": "Loose fit",
5399
- "GroupFields": null,
5400
- "Highlighted": false,
5401
- "NotificationInfo": "",
5402
- "OptionalValues": [],
5403
- "ReferenceObjectInternalType": "",
5404
- "ReferenceObjectSubType": "",
5405
- "ReferenceObjectType": 0,
5406
- "TextColor": "",
5407
- "UiPageKey": "",
5408
- "Value": "Loose fit",
5409
- "Visible": true
5410
- },
5411
- {
5412
- "Accessory": "",
5413
- "AdditionalValue": "",
5414
- "ApiName": "ItemExternalID",
5415
- "BackgroundColor": "",
5416
- "Enabled": false,
5417
- "EventsData": null,
5418
- "FieldType": 1,
5419
- "FormattedValue": "WJS32",
5420
- "GroupFields": null,
5421
- "Highlighted": false,
5422
- "NotificationInfo": "",
5423
- "OptionalValues": [],
5424
- "ReferenceObjectInternalType": "",
5425
- "ReferenceObjectSubType": "",
5426
- "ReferenceObjectType": 0,
5427
- "TextColor": "",
5428
- "UiPageKey": "",
5429
- "Value": "WJS32",
5430
- "Visible": true
5431
- },
5432
- {
5433
- "Accessory": "$",
5434
- "AdditionalValue": "",
5435
- "ApiName": "ItemPrice",
5436
- "BackgroundColor": "",
5437
- "Enabled": false,
5438
- "EventsData": null,
5439
- "FieldType": 9,
5440
- "FormattedValue": "$123.00",
5441
- "GroupFields": null,
5442
- "Highlighted": false,
5443
- "NotificationInfo": "",
5444
- "OptionalValues": [],
5445
- "ReferenceObjectInternalType": "",
5446
- "ReferenceObjectSubType": "",
5447
- "ReferenceObjectType": 0,
5448
- "TextColor": "",
5449
- "UiPageKey": "",
5450
- "Value": "123.0000",
5451
- "Visible": true
5452
- },
5453
- {
5454
- "Accessory": "",
5455
- "AdditionalValue": "",
5456
- "ApiName": "UnitsQuantity",
5457
- "BackgroundColor": "",
5458
- "Enabled": true,
5459
- "EventsData": null,
5460
- "FieldType": 17,
5461
- "FormattedValue": "0",
5462
- "GroupFields": null,
5463
- "Highlighted": false,
5464
- "NotificationInfo": "",
5465
- "OptionalValues": [],
5466
- "ReferenceObjectInternalType": "",
5467
- "ReferenceObjectSubType": "",
5468
- "ReferenceObjectType": 0,
5469
- "TextColor": "",
5470
- "UiPageKey": "",
5471
- "Value": "0.0000",
5472
- "Visible": true
5473
- },
5474
- {
5475
- "Accessory": "",
5476
- "AdditionalValue": "",
5477
- "ApiName": "ItemTSASeason",
5478
- "BackgroundColor": "",
5479
- "Enabled": false,
5480
- "EventsData": null,
5481
- "FieldType": 1,
5482
- "FormattedValue": "Summer",
5483
- "GroupFields": null,
5484
- "Highlighted": false,
5485
- "NotificationInfo": "",
5486
- "OptionalValues": [],
5487
- "ReferenceObjectInternalType": "",
5488
- "ReferenceObjectSubType": "",
5489
- "ReferenceObjectType": 0,
5490
- "TextColor": "",
5491
- "UiPageKey": "",
5492
- "Value": "Summer",
5493
- "Visible": true
5494
- },
5495
- {
5496
- "Accessory": "",
5497
- "AdditionalValue": "",
5498
- "ApiName": "ItemTSAPackaging",
5499
- "BackgroundColor": "",
5500
- "Enabled": false,
5501
- "EventsData": null,
5502
- "FieldType": 1,
5503
- "FormattedValue": "D",
5504
- "GroupFields": null,
5505
- "Highlighted": false,
5506
- "NotificationInfo": "",
5507
- "OptionalValues": [],
5508
- "ReferenceObjectInternalType": "",
5509
- "ReferenceObjectSubType": "",
5510
- "ReferenceObjectType": 2123301536,
5511
- "TextColor": "",
5512
- "UiPageKey": "",
5513
- "Value": "D",
5514
- "Visible": true
5515
- }
5516
- ],
5517
- "IsEditable": false,
5518
- "IsSelectableForActions": false,
5519
- "MainAction": null,
5520
- "Profile": null,
5521
- "Type": 0,
5522
- "UID": "777aecb5-6fed-4fa4-890f-71d9dd77205c"
5523
- },
5524
- {
5525
- "AdditionalData": null,
5526
- "BackgroundColor": "",
5527
- "Fields": [
5528
- {
5529
- "Accessory": "",
5530
- "AdditionalValue": "",
5531
- "ApiName": "ItemTSAType",
5532
- "BackgroundColor": "",
5533
- "Enabled": false,
5534
- "EventsData": null,
5535
- "FieldType": 1,
5536
- "FormattedValue": "Bottoms",
5537
- "GroupFields": null,
5538
- "Highlighted": false,
5539
- "NotificationInfo": "",
5540
- "OptionalValues": [],
5541
- "ReferenceObjectInternalType": "",
5542
- "ReferenceObjectSubType": "",
5543
- "ReferenceObjectType": 2123301536,
5544
- "TextColor": "",
5545
- "UiPageKey": "",
5546
- "Value": "Bottoms",
5547
- "Visible": true
5548
- },
5549
- {
5550
- "Accessory": "",
5551
- "AdditionalValue": "",
5552
- "ApiName": "ObjectMenu",
5553
- "BackgroundColor": "",
5554
- "Enabled": true,
5555
- "EventsData": null,
5556
- "FieldType": 17,
5557
- "FormattedValue": "",
5558
- "GroupFields": null,
5559
- "Highlighted": false,
5560
- "NotificationInfo": "",
5561
- "OptionalValues": [],
5562
- "ReferenceObjectInternalType": "",
5563
- "ReferenceObjectSubType": "",
5564
- "ReferenceObjectType": 0,
5565
- "TextColor": "",
5566
- "UiPageKey": "",
5567
- "Value": "",
5568
- "Visible": true
5569
- },
5570
- {
5571
- "Accessory": "",
5572
- "AdditionalValue": "",
5573
- "ApiName": "TSARelteadItems",
5574
- "BackgroundColor": "",
5575
- "Enabled": true,
5576
- "EventsData": null,
5577
- "FieldType": 1,
5578
- "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\"]",
5579
- "GroupFields": null,
5580
- "Highlighted": false,
5581
- "NotificationInfo": "",
5582
- "OptionalValues": [],
5583
- "ReferenceObjectInternalType": "",
5584
- "ReferenceObjectSubType": "",
5585
- "ReferenceObjectType": 168635513,
5586
- "TextColor": "",
5587
- "UiPageKey": "",
5588
- "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\"]",
5589
- "Visible": true
5590
- },
5591
- {
5592
- "Accessory": "",
5593
- "AdditionalValue": "",
5594
- "ApiName": "Image",
5595
- "BackgroundColor": "",
5596
- "Enabled": false,
5597
- "EventsData": null,
5598
- "FieldType": 27,
5599
- "FormattedValue": "",
5600
- "GroupFields": null,
5601
- "Highlighted": false,
5602
- "NotificationInfo": "",
5603
- "OptionalValues": [],
5604
- "ReferenceObjectInternalType": "",
5605
- "ReferenceObjectSubType": "",
5606
- "ReferenceObjectType": 602522121,
5607
- "TextColor": "",
5608
- "UiPageKey": "",
5609
- "Value": "",
5610
- "Visible": true
5611
- },
5612
- {
5613
- "Accessory": "",
5614
- "AdditionalValue": "",
5615
- "ApiName": "ItemName",
5616
- "BackgroundColor": "",
5617
- "Enabled": false,
5618
- "EventsData": null,
5619
- "FieldType": 1,
5620
- "FormattedValue": "Skinny jeans",
5621
- "GroupFields": null,
5622
- "Highlighted": false,
5623
- "NotificationInfo": "",
5624
- "OptionalValues": [],
5625
- "ReferenceObjectInternalType": "",
5626
- "ReferenceObjectSubType": "",
5627
- "ReferenceObjectType": 0,
5628
- "TextColor": "",
5629
- "UiPageKey": "",
5630
- "Value": "Skinny jeans",
5631
- "Visible": true
5632
- },
5633
- {
5634
- "Accessory": "",
5635
- "AdditionalValue": "",
5636
- "ApiName": "ItemExternalID",
5637
- "BackgroundColor": "",
5638
- "Enabled": false,
5639
- "EventsData": null,
5640
- "FieldType": 1,
5641
- "FormattedValue": "WJS33",
5642
- "GroupFields": null,
5643
- "Highlighted": false,
5644
- "NotificationInfo": "",
5645
- "OptionalValues": [],
5646
- "ReferenceObjectInternalType": "",
5647
- "ReferenceObjectSubType": "",
5648
- "ReferenceObjectType": 0,
5649
- "TextColor": "",
5650
- "UiPageKey": "",
5651
- "Value": "WJS33",
5652
- "Visible": true
5653
- },
5654
- {
5655
- "Accessory": "$",
5656
- "AdditionalValue": "",
5657
- "ApiName": "ItemPrice",
5658
- "BackgroundColor": "",
5659
- "Enabled": false,
5660
- "EventsData": null,
5661
- "FieldType": 9,
5662
- "FormattedValue": "$56.00",
5663
- "GroupFields": null,
5664
- "Highlighted": false,
5665
- "NotificationInfo": "",
5666
- "OptionalValues": [],
5667
- "ReferenceObjectInternalType": "",
5668
- "ReferenceObjectSubType": "",
5669
- "ReferenceObjectType": 0,
5670
- "TextColor": "",
5671
- "UiPageKey": "",
5672
- "Value": "56.0000",
5673
- "Visible": true
5674
- },
5675
- {
5676
- "Accessory": "",
5677
- "AdditionalValue": "",
5678
- "ApiName": "UnitsQuantity",
5679
- "BackgroundColor": "",
5680
- "Enabled": true,
5681
- "EventsData": null,
5682
- "FieldType": 17,
5683
- "FormattedValue": "0",
5684
- "GroupFields": null,
5685
- "Highlighted": false,
5686
- "NotificationInfo": "",
5687
- "OptionalValues": [],
5688
- "ReferenceObjectInternalType": "",
5689
- "ReferenceObjectSubType": "",
5690
- "ReferenceObjectType": 0,
5691
- "TextColor": "",
5692
- "UiPageKey": "",
5693
- "Value": "0.0000",
5694
- "Visible": true
5695
- },
5696
- {
5697
- "Accessory": "",
5698
- "AdditionalValue": "",
5699
- "ApiName": "ItemTSASeason",
5700
- "BackgroundColor": "",
5701
- "Enabled": false,
5702
- "EventsData": null,
5703
- "FieldType": 1,
5704
- "FormattedValue": "Winter",
5705
- "GroupFields": null,
5706
- "Highlighted": false,
5707
- "NotificationInfo": "",
5708
- "OptionalValues": [],
5709
- "ReferenceObjectInternalType": "",
5710
- "ReferenceObjectSubType": "",
5711
- "ReferenceObjectType": 2123302832,
5712
- "TextColor": "",
5713
- "UiPageKey": "",
5714
- "Value": "Winter",
5715
- "Visible": true
5716
- },
5717
- {
5718
- "Accessory": "",
5719
- "AdditionalValue": "",
5720
- "ApiName": "ItemTSAPackaging",
5721
- "BackgroundColor": "",
5722
- "Enabled": false,
5723
- "EventsData": null,
5724
- "FieldType": 1,
5725
- "FormattedValue": "B",
5726
- "GroupFields": null,
5727
- "Highlighted": false,
5728
- "NotificationInfo": "",
5729
- "OptionalValues": [],
5730
- "ReferenceObjectInternalType": "",
5731
- "ReferenceObjectSubType": "",
5732
- "ReferenceObjectType": 2123302832,
5733
- "TextColor": "",
5734
- "UiPageKey": "",
5735
- "Value": "B",
5736
- "Visible": true
5737
- }
5738
- ],
5739
- "IsEditable": false,
5740
- "IsSelectableForActions": false,
5741
- "MainAction": null,
5742
- "Profile": null,
5743
- "Type": 0,
5744
- "UID": "7fac686e-3ec5-4b95-ba70-c109c8778b63"
5745
- },
5746
- {
5747
- "AdditionalData": null,
5748
- "BackgroundColor": "",
5749
- "Fields": [
5750
- {
5751
- "Accessory": "",
5752
- "AdditionalValue": "",
5753
- "ApiName": "ItemTSAType",
5754
- "BackgroundColor": "",
5755
- "Enabled": false,
5756
- "EventsData": null,
5757
- "FieldType": 1,
5758
- "FormattedValue": "Bottoms",
5759
- "GroupFields": null,
5760
- "Highlighted": false,
5761
- "NotificationInfo": "",
5762
- "OptionalValues": [],
5763
- "ReferenceObjectInternalType": "",
5764
- "ReferenceObjectSubType": "",
5765
- "ReferenceObjectType": -1225808615,
5766
- "TextColor": "",
5767
- "UiPageKey": "",
5768
- "Value": "Bottoms",
5769
- "Visible": true
5770
- },
5771
- {
5772
- "Accessory": "",
5773
- "AdditionalValue": "",
5774
- "ApiName": "ObjectMenu",
5775
- "BackgroundColor": "",
5776
- "Enabled": true,
5777
- "EventsData": null,
5778
- "FieldType": 17,
5779
- "FormattedValue": "",
5780
- "GroupFields": null,
5781
- "Highlighted": false,
5782
- "NotificationInfo": "",
5783
- "OptionalValues": [],
5784
- "ReferenceObjectInternalType": "",
5785
- "ReferenceObjectSubType": "",
5786
- "ReferenceObjectType": 602519433,
5787
- "TextColor": "",
5788
- "UiPageKey": "",
5789
- "Value": "",
5790
- "Visible": true
5791
- },
5792
- {
5793
- "Accessory": "",
5794
- "AdditionalValue": "",
5795
- "ApiName": "TSARelteadItems",
5796
- "BackgroundColor": "",
5797
- "Enabled": true,
5798
- "EventsData": null,
5799
- "FieldType": 1,
5800
- "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\"]",
5801
- "GroupFields": null,
5802
- "Highlighted": false,
5803
- "NotificationInfo": "",
5804
- "OptionalValues": [],
5805
- "ReferenceObjectInternalType": "",
5806
- "ReferenceObjectSubType": "",
5807
- "ReferenceObjectType": 602528137,
5808
- "TextColor": "",
5809
- "UiPageKey": "",
5810
- "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\"]",
5811
- "Visible": true
5812
- },
5813
- {
5814
- "Accessory": "",
5815
- "AdditionalValue": "",
5816
- "ApiName": "Image",
5817
- "BackgroundColor": "",
5818
- "Enabled": false,
5819
- "EventsData": null,
5820
- "FieldType": 27,
5821
- "FormattedValue": "",
5822
- "GroupFields": null,
5823
- "Highlighted": false,
5824
- "NotificationInfo": "",
5825
- "OptionalValues": [],
5826
- "ReferenceObjectInternalType": "",
5827
- "ReferenceObjectSubType": "",
5828
- "ReferenceObjectType": 2123301536,
5829
- "TextColor": "",
5830
- "UiPageKey": "",
5831
- "Value": "",
5832
- "Visible": true
5833
- },
5834
- {
5835
- "Accessory": "",
5836
- "AdditionalValue": "",
5837
- "ApiName": "ItemName",
5838
- "BackgroundColor": "",
5839
- "Enabled": false,
5840
- "EventsData": null,
5841
- "FieldType": 1,
5842
- "FormattedValue": "Skinny jeans",
5843
- "GroupFields": null,
5844
- "Highlighted": false,
5845
- "NotificationInfo": "",
5846
- "OptionalValues": [],
5847
- "ReferenceObjectInternalType": "",
5848
- "ReferenceObjectSubType": "",
5849
- "ReferenceObjectType": 2123302832,
5850
- "TextColor": "",
5851
- "UiPageKey": "",
5852
- "Value": "Skinny jeans",
5853
- "Visible": true
5854
- },
5855
- {
5856
- "Accessory": "",
5857
- "AdditionalValue": "",
5858
- "ApiName": "ItemExternalID",
5859
- "BackgroundColor": "",
5860
- "Enabled": false,
5861
- "EventsData": null,
5862
- "FieldType": 1,
5863
- "FormattedValue": "WJS31",
5864
- "GroupFields": null,
5865
- "Highlighted": false,
5866
- "NotificationInfo": "",
5867
- "OptionalValues": [],
5868
- "ReferenceObjectInternalType": "",
5869
- "ReferenceObjectSubType": "",
5870
- "ReferenceObjectType": 0,
5871
- "TextColor": "",
5872
- "UiPageKey": "",
5873
- "Value": "WJS31",
5874
- "Visible": true
5875
- },
5876
- {
5877
- "Accessory": "$",
5878
- "AdditionalValue": "",
5879
- "ApiName": "ItemPrice",
5880
- "BackgroundColor": "",
5881
- "Enabled": false,
5882
- "EventsData": null,
5883
- "FieldType": 9,
5884
- "FormattedValue": "$118.00",
5885
- "GroupFields": null,
5886
- "Highlighted": false,
5887
- "NotificationInfo": "",
5888
- "OptionalValues": [],
5889
- "ReferenceObjectInternalType": "",
5890
- "ReferenceObjectSubType": "",
5891
- "ReferenceObjectType": 0,
5892
- "TextColor": "",
5893
- "UiPageKey": "",
5894
- "Value": "118.0000",
5895
- "Visible": true
5896
- },
5897
- {
5898
- "Accessory": "",
5899
- "AdditionalValue": "",
5900
- "ApiName": "UnitsQuantity",
5901
- "BackgroundColor": "",
5902
- "Enabled": true,
5903
- "EventsData": null,
5904
- "FieldType": 17,
5905
- "FormattedValue": "0",
5906
- "GroupFields": null,
5907
- "Highlighted": false,
5908
- "NotificationInfo": "",
5909
- "OptionalValues": [],
5910
- "ReferenceObjectInternalType": "",
5911
- "ReferenceObjectSubType": "",
5912
- "ReferenceObjectType": 2123302832,
5913
- "TextColor": "",
5914
- "UiPageKey": "",
5915
- "Value": "0.0000",
5916
- "Visible": true
5917
- },
5918
- {
5919
- "Accessory": "",
5920
- "AdditionalValue": "",
5921
- "ApiName": "ItemTSASeason",
5922
- "BackgroundColor": "",
5923
- "Enabled": false,
5924
- "EventsData": null,
5925
- "FieldType": 1,
5926
- "FormattedValue": "Summer",
5927
- "GroupFields": null,
5928
- "Highlighted": false,
5929
- "NotificationInfo": "",
5930
- "OptionalValues": [],
5931
- "ReferenceObjectInternalType": "",
5932
- "ReferenceObjectSubType": "",
5933
- "ReferenceObjectType": 2123302832,
5934
- "TextColor": "",
5935
- "UiPageKey": "",
5936
- "Value": "Summer",
5937
- "Visible": true
5938
- },
5939
- {
5940
- "Accessory": "",
5941
- "AdditionalValue": "",
5942
- "ApiName": "ItemTSAPackaging",
5943
- "BackgroundColor": "",
5944
- "Enabled": false,
5945
- "EventsData": null,
5946
- "FieldType": 1,
5947
- "FormattedValue": "A",
5948
- "GroupFields": null,
5949
- "Highlighted": false,
5950
- "NotificationInfo": "",
5951
- "OptionalValues": [],
5952
- "ReferenceObjectInternalType": "",
5953
- "ReferenceObjectSubType": "",
5954
- "ReferenceObjectType": 2123302832,
5955
- "TextColor": "",
5956
- "UiPageKey": "",
5957
- "Value": "A",
5958
- "Visible": true
5959
- }
5960
- ],
5961
- "IsEditable": false,
5962
- "IsSelectableForActions": false,
5963
- "MainAction": null,
5964
- "Profile": null,
5965
- "Type": 0,
5966
- "UID": "10ef7ace-0086-4151-b075-f009fd20a01c"
5967
- }
5968
- ],
5969
- "UIControl": {
5970
- "ObjectID": "",
5971
- "Type": "",
5972
- "DisplayName": "",
5973
- "Columns": 10,
5974
- "ControlFields": [
5975
- {
5976
- "ApiName": "ItemTSAType",
5977
- "ColumnWidth": 10,
5978
- "ColumnWidthType": 0,
5979
- "FieldName": "Item Type",
5980
- "FieldType": 1,
5981
- "Layout": {
5982
- "Height": 1,
5983
- "LineNumber": 0,
5984
- "Width": 1,
5985
- "X": 0,
5986
- "XAlignment": 1,
5987
- "Y": 0,
5988
- "YAlignment": 3
5989
- },
5990
- "Mandatory": false,
5991
- "MaxFieldCharacters": 0,
5992
- "MaxFieldLines": 0,
5993
- "MaxValue": 1000000000,
5994
- "MinValue": -1000000000,
5995
- "ReadOnly": true,
5996
- "Title": "Item Type"
5997
- },
5998
- {
5999
- "ApiName": "ObjectMenu",
6000
- "ColumnWidth": 10,
6001
- "ColumnWidthType": 0,
6002
- "FieldName": "",
6003
- "FieldType": 17,
6004
- "Layout": {
6005
- "Height": 2,
6006
- "LineNumber": 1,
6007
- "Width": 2,
6008
- "X": 8,
6009
- "XAlignment": 1,
6010
- "Y": 0,
6011
- "YAlignment": 3
6012
- },
6013
- "Mandatory": false,
6014
- "MaxFieldCharacters": 0,
6015
- "MaxFieldLines": 0,
6016
- "MaxValue": 1000000000,
6017
- "MinValue": -1000000000,
6018
- "ReadOnly": false,
6019
- "Title": ""
6020
- },
6021
- {
6022
- "ApiName": "TSARelteadItems",
6023
- "ColumnWidth": 10,
6024
- "ColumnWidthType": 0,
6025
- "FieldName": "RelteadItems",
6026
- "FieldType": 1,
6027
- "Layout": {
6028
- "Height": 8,
6029
- "LineNumber": 2,
6030
- "Width": 10,
6031
- "X": 0,
6032
- "XAlignment": 1,
6033
- "Y": 2,
6034
- "YAlignment": 3
6035
- },
6036
- "Mandatory": false,
6037
- "MaxFieldCharacters": 0,
6038
- "MaxFieldLines": 0,
6039
- "MaxValue": 1000000000,
6040
- "MinValue": -1000000000,
6041
- "ReadOnly": false,
6042
- "Title": "RelteadItems"
6043
- },
6044
- {
6045
- "ApiName": "Image",
6046
- "ColumnWidth": 10,
6047
- "ColumnWidthType": 0,
6048
- "FieldName": "",
6049
- "FieldType": 20,
6050
- "Layout": {
6051
- "Height": 8,
6052
- "LineNumber": 3,
6053
- "Width": 10,
6054
- "X": 0,
6055
- "XAlignment": 3,
6056
- "Y": 10,
6057
- "YAlignment": 3
6058
- },
6059
- "Mandatory": false,
6060
- "MaxFieldCharacters": 0,
6061
- "MaxFieldLines": 0,
6062
- "MaxValue": 1000000000,
6063
- "MinValue": -1000000000,
6064
- "ReadOnly": true,
6065
- "Title": ""
6066
- },
6067
- {
6068
- "ApiName": "ItemName",
6069
- "ColumnWidth": 10,
6070
- "ColumnWidthType": 0,
6071
- "FieldName": "",
6072
- "FieldType": 1,
6073
- "Layout": {
6074
- "Height": 1,
6075
- "LineNumber": 4,
6076
- "Width": 10,
6077
- "X": 0,
6078
- "XAlignment": 3,
6079
- "Y": 18,
6080
- "YAlignment": 3
6081
- },
6082
- "Mandatory": false,
6083
- "MaxFieldCharacters": 0,
6084
- "MaxFieldLines": 0,
6085
- "MaxValue": 1000000000,
6086
- "MinValue": -1000000000,
6087
- "ReadOnly": true,
6088
- "Title": ""
6089
- },
6090
- {
6091
- "ApiName": "ItemExternalID",
6092
- "ColumnWidth": 10,
6093
- "ColumnWidthType": 0,
6094
- "FieldName": "",
6095
- "FieldType": 1,
6096
- "Layout": {
6097
- "Height": 1,
6098
- "LineNumber": 5,
6099
- "Width": 10,
6100
- "X": 0,
6101
- "XAlignment": 3,
6102
- "Y": 19,
6103
- "YAlignment": 3
6104
- },
6105
- "Mandatory": false,
6106
- "MaxFieldCharacters": 0,
6107
- "MaxFieldLines": 0,
6108
- "MaxValue": 1000000000,
6109
- "MinValue": -1000000000,
6110
- "ReadOnly": true,
6111
- "Title": ""
6112
- },
6113
- {
6114
- "ApiName": "ItemPrice",
6115
- "ColumnWidth": 10,
6116
- "ColumnWidthType": 0,
6117
- "FieldName": "",
6118
- "FieldType": 9,
6119
- "Layout": {
6120
- "Height": 1,
6121
- "LineNumber": 6,
6122
- "Width": 10,
6123
- "X": 0,
6124
- "XAlignment": 3,
6125
- "Y": 20,
6126
- "YAlignment": 3
6127
- },
6128
- "Mandatory": false,
6129
- "MaxFieldCharacters": 0,
6130
- "MaxFieldLines": 0,
6131
- "MaxValue": 1000000000,
6132
- "MinValue": -1000000000,
6133
- "ReadOnly": true,
6134
- "Title": ""
6135
- },
6136
- {
6137
- "ApiName": "UnitsQuantity",
6138
- "ColumnWidth": 10,
6139
- "ColumnWidthType": 0,
6140
- "FieldName": "",
6141
- "FieldType": 8,
6142
- "Layout": {
6143
- "Height": 2,
6144
- "LineNumber": 7,
6145
- "Width": 10,
6146
- "X": 0,
6147
- "XAlignment": 3,
6148
- "Y": 21,
6149
- "YAlignment": 3
6150
- },
6151
- "Mandatory": false,
6152
- "MaxFieldCharacters": 0,
6153
- "MaxFieldLines": 0,
6154
- "MaxValue": 1000000000,
6155
- "MinValue": -1000000000,
6156
- "ReadOnly": false,
6157
- "Title": ""
6158
- },
6159
- {
6160
- "ApiName": "ItemTSASeason",
6161
- "ColumnWidth": 10,
6162
- "ColumnWidthType": 0,
6163
- "FieldName": "Item Season",
6164
- "FieldType": 1,
6165
- "Layout": {
6166
- "Height": 1,
6167
- "LineNumber": 8,
6168
- "Width": 1,
6169
- "X": 0,
6170
- "XAlignment": 1,
6171
- "Y": 23,
6172
- "YAlignment": 3
6173
- },
6174
- "Mandatory": false,
6175
- "MaxFieldCharacters": 0,
6176
- "MaxFieldLines": 0,
6177
- "MaxValue": 1000000000,
6178
- "MinValue": -1000000000,
6179
- "ReadOnly": true,
6180
- "Title": "Item Season"
6181
- },
6182
- {
6183
- "ApiName": "ItemTSAPackaging",
6184
- "ColumnWidth": 10,
6185
- "ColumnWidthType": 0,
6186
- "FieldName": "Item Packaging",
6187
- "FieldType": 1,
6188
- "Layout": {
6189
- "Height": 1,
6190
- "LineNumber": 9,
6191
- "Width": 1,
6192
- "X": 0,
6193
- "XAlignment": 1,
6194
- "Y": 24,
6195
- "YAlignment": 3
6196
- },
6197
- "Mandatory": false,
6198
- "MaxFieldCharacters": 0,
6199
- "MaxFieldLines": 0,
6200
- "MaxValue": 1000000000,
6201
- "MinValue": -1000000000,
6202
- "ReadOnly": true,
6203
- "Title": "Item Packaging"
6204
- }
6205
- ]
6206
- }
6207
- };
6208
-
6209
- // type PepListCarouselSizeType = 'xs' | 'sm' | 'md';
6210
3068
  var PepInternalCaruselComponent = /** @class */ (function () {
6211
- function PepInternalCaruselComponent(fb, layoutService, internalCaruselService, customizationService, elementRef, changeDetectorRef) {
3069
+ function PepInternalCaruselComponent(fb, layoutService, internalCaruselService) {
6212
3070
  this.fb = fb;
6213
3071
  this.layoutService = layoutService;
6214
3072
  this.internalCaruselService = internalCaruselService;
6215
- this.customizationService = customizationService;
6216
- this.elementRef = elementRef;
6217
- this.changeDetectorRef = changeDetectorRef;
6218
- this.controlType = 'internalCarusel';
6219
3073
  this.layoutType = 'form';
6220
- this.formValueChange = new core.EventEmitter();
6221
- this.formFieldClick = new core.EventEmitter();
3074
+ this.internalFormFieldChange = new core.EventEmitter();
3075
+ this.internalFormFieldClick = new core.EventEmitter();
6222
3076
  this._items = null;
6223
- this.duration = 1000;
6224
3077
  this.layout = null;
3078
+ this.duration = 1000;
6225
3079
  this.itemsToMove = 3;
6226
- this.lockItemInnerEvents = true;
6227
- this.hideArrowsInSmallScreen = true;
6228
3080
  this.prevDisabled = false;
6229
3081
  this.nextDisabled = false;
6230
3082
  this.PepScreenSizeType = ngxLib.PepScreenSizeType;
6231
- this.defaultRowSpan = -1;
6232
3083
  }
3084
+ Object.defineProperty(PepInternalCaruselComponent.prototype, "field", {
3085
+ get: function () {
3086
+ return this._field;
3087
+ },
3088
+ set: function (value) {
3089
+ this._field = value;
3090
+ var caruselField = this._field;
3091
+ if (caruselField && caruselField.pageInfo) {
3092
+ this.layout = caruselField.pageInfo.UIControl;
3093
+ this.items = caruselField.pageInfo.Rows;
3094
+ }
3095
+ },
3096
+ enumerable: false,
3097
+ configurable: true
3098
+ });
6233
3099
  Object.defineProperty(PepInternalCaruselComponent.prototype, "items", {
6234
3100
  get: function () {
6235
3101
  return this._items;
6236
3102
  },
6237
3103
  set: function (value) {
6238
3104
  this._items = value;
6239
- this.moveTo(0);
3105
+ // this.moveTo(0);
6240
3106
  },
6241
3107
  enumerable: false,
6242
3108
  configurable: true
6243
3109
  });
6244
- PepInternalCaruselComponent.prototype.fillData = function () {
6245
- var _this = this;
6246
- setTimeout(function () {
6247
- // const childrenCount = this.items
6248
- // ? this.items.length
6249
- // : 0;
6250
- // convert rem to pixel
6251
- var formRowHeight = _this.customizationService.calculateFormFieldHeight() * 16;
6252
- // Set the default only if not set yet.
6253
- if (_this.defaultRowSpan === -1) {
6254
- _this.defaultRowSpan = _this.field.rowSpan;
6255
- }
6256
- var maxRow = Math.max.apply(Math, __spreadArray([], __read(_this.layout.ControlFields.map(function (f) {
6257
- return f.Layout.Y + f.Layout.Height;
6258
- }))));
6259
- // * 16 convert rem to pixel
6260
- var cardRowsHeight = _this.customizationService.calculateCardRowsHeight(maxRow) * 16;
6261
- // + 16 is the 1rem margin outside card.
6262
- var rowSpanToAdd = (cardRowsHeight + 16);
6263
- _this.field.rowSpan = rowSpanToAdd;
6264
- }, 0);
6265
- this.changeDetectorRef.markForCheck();
6266
- };
6267
3110
  PepInternalCaruselComponent.prototype.ngOnInit = function () {
6268
- // this.internalCaruselService.initCarusel(
6269
- // this.field.objectId,
6270
- // this.field.searchCode,
6271
- // (caruselItems: any) => {
6272
- this.layout = TempRelatedItems.UIControl;
6273
- this.items = TempRelatedItems.Rows;
6274
- // this.fillData();
6275
- // }
6276
- // );
6277
3111
  };
6278
3112
  PepInternalCaruselComponent.prototype.ngAfterViewInit = function () {
6279
3113
  var _this = this;
@@ -6281,78 +3115,39 @@
6281
3115
  _this.screenSize = size;
6282
3116
  });
6283
3117
  };
6284
- PepInternalCaruselComponent.prototype.ngOnDestroy = function () {
6285
- //
6286
- };
6287
- // updateChanges(elementToUpdate: any): void {
6288
- // // Update memory data
6289
- // for (let index = 0; index < this.caruselData.Rows.length; index++) {
6290
- // if (this.caruselData.Rows[index].UID === elementToUpdate.UID) {
6291
- // this.caruselData.Rows[index] = elementToUpdate;
6292
- // }
6293
- // }
6294
- // }
6295
- // setValueCallback(id: any, res: any): void {
6296
- // if (res.Rows.length === 1) {
6297
- // const field = res.Rows[0].Fields.find((f) => f.ApiName === 'ObjectMenu');
6298
- // if (field) {
6299
- // // HACK : Until "Enabled" returns from the server, we set PepMenu to be
6300
- // // Disabled in cart on regular items and not campign items.
6301
- // field.Enabled = true;
6302
- // }
6303
- // this.updateChanges(res.Rows[0]);
6304
- // }
6305
- // this.valueChange.emit(res);
6306
- // this.changeDetectorRef.markForCheck();
6307
- // }
6308
3118
  PepInternalCaruselComponent.prototype.onCustomizeObjectChanged = function (customizeObjectChangedData) {
6309
- // this.internalCaruselService.childValueChanged(
6310
- // customizeObjectChangedData.id,
6311
- // customizeObjectChangedData.key,
6312
- // customizeObjectChangedData.value,
6313
- // (res: any) => {
6314
- // this.setValueCallback(customizeObjectChangedData.id, res);
6315
- // }
6316
- // );
6317
- this.formValueChange.emit(customizeObjectChangedData);
3119
+ var _this = this;
3120
+ this.internalCaruselService.emitEvent(customizeObjectChangedData.uiObjectKey, customizeObjectChangedData.key, customizeObjectChangedData.value, 'SetFieldValue', function () {
3121
+ _this.internalFormFieldChange.emit(customizeObjectChangedData);
3122
+ });
6318
3123
  };
6319
3124
  PepInternalCaruselComponent.prototype.onCustomizeFieldClick = function (fieldClickEvent) {
3125
+ var _this = this;
6320
3126
  var handledEvent = false;
6321
- // // For the new custom form, the plus and minus events transform in the IPepFormFieldValueChangeEvent
6322
- // if (fieldClickEvent.controlType === 'qs') {
6323
- // if (fieldClickEvent.value === PepQuantitySelectorComponent.PLUS) {
6324
- // handledEvent = true;
6325
- // this.internalCaruselService.childPlusClick(
6326
- // fieldClickEvent.id,
6327
- // fieldClickEvent.key,
6328
- // (res: any) => {
6329
- // this.setValueCallback(fieldClickEvent.id, res);
6330
- // }
6331
- // );
6332
- // } else if (
6333
- // fieldClickEvent.value === PepQuantitySelectorComponent.MINUS
6334
- // ) {
6335
- // handledEvent = true;
6336
- // this.internalCaruselService.childMinusClick(
6337
- // fieldClickEvent.id,
6338
- // fieldClickEvent.key,
6339
- // (res: any) => {
6340
- // this.setValueCallback(fieldClickEvent.id, res);
6341
- // }
6342
- // );
6343
- // }
6344
- // }
3127
+ // For the new custom form, the plus and minus events transform in the IPepFormFieldValueChangeEvent
3128
+ if (fieldClickEvent.controlType === 'qs') {
3129
+ if (fieldClickEvent.value === quantitySelector.PepQuantitySelectorComponent.PLUS) {
3130
+ handledEvent = true;
3131
+ this.internalCaruselService.emitEvent(fieldClickEvent.uiObjectKey, fieldClickEvent.key, '', 'IncrementFieldValue', function () {
3132
+ _this.internalFormFieldChange.emit({});
3133
+ });
3134
+ }
3135
+ else if (fieldClickEvent.value === quantitySelector.PepQuantitySelectorComponent.MINUS) {
3136
+ handledEvent = true;
3137
+ this.internalCaruselService.emitEvent(fieldClickEvent.uiObjectKey, fieldClickEvent.key, '', 'DecrementFieldValue', function () {
3138
+ _this.internalFormFieldChange.emit({});
3139
+ });
3140
+ }
3141
+ }
6345
3142
  if (!handledEvent) {
6346
- this.formFieldClick.emit(fieldClickEvent);
3143
+ this.internalFormFieldClick.emit(fieldClickEvent);
6347
3144
  }
6348
3145
  };
6349
3146
  PepInternalCaruselComponent.prototype.moveLeft = function () {
6350
- // this.carousel.moveLeft();
6351
3147
  var indexToMove = Math.max(this.carousel.currIndex - this.itemsToMove, 0);
6352
3148
  this.moveTo(indexToMove);
6353
3149
  };
6354
3150
  PepInternalCaruselComponent.prototype.moveRight = function () {
6355
- // this.carousel.moveRight();
6356
3151
  var indexToMove = Math.min(this.carousel.currIndex + this.itemsToMove, this.items.length);
6357
3152
  this.moveTo(indexToMove);
6358
3153
  };
@@ -6372,26 +3167,23 @@
6372
3167
  PepInternalCaruselComponent.decorators = [
6373
3168
  { type: core.Component, args: [{
6374
3169
  selector: 'pep-internal-carusel',
6375
- template: "<div class=\"carousel-container\">\n <ng-container *ngIf=\"items?.length > 0; then carouselBlock; else emptyBlock\"></ng-container>\n <ng-template #emptyBlock>\n <!-- No items -->\n </ng-template>\n <ng-template #carouselBlock>\n <pep-button *ngIf=\"!(hideArrowsInSmallScreen && screenSize > PepScreenSizeType.SM)\"\n [iconName]=\"'arrow_left_alt'\" [styleType]=\"'regular'\" [disabled]=\"prevDisabled\" (click)=\"moveLeft()\"\n class=\"carousel-arrow start-arrow\">\n </pep-button>\n <pep-carousel #carousel [xWheelEnabled]=\"false\" [snapDuration]=\"duration\"\n (reachesLeftBound)=\"onReachesLeftBound($event)\" (reachesRightBound)=\"onReachesRightBound($event)\">\n <ng-container *ngFor=\"let item of items\">\n <pep-form pepCarouselItem [layout]=\"layout\" [data]=\"item\" [layoutType]=\"'card'\" class=\"card-view \"\n (valueChange)=\"onCustomizeObjectChanged($event)\" (fieldClick)=\"onCustomizeFieldClick($event)\">\n </pep-form>\n </ng-container>\n </pep-carousel>\n <pep-button *ngIf=\"!(hideArrowsInSmallScreen && screenSize > PepScreenSizeType.SM)\"\n [iconName]=\"'arrow_right_alt'\" [styleType]=\"'regular'\" [disabled]=\"nextDisabled\" (click)=\"moveRight()\"\n class=\"carousel-arrow end-arrow\">\n </pep-button>\n </ng-template>\n</div>",
3170
+ template: "<div class=\"carousel-container\">\n <ng-container *ngIf=\"items?.length > 0; then carouselBlock; else emptyBlock\"></ng-container>\n <ng-template #emptyBlock>\n <!-- No items -->\n </ng-template>\n <ng-template #carouselBlock>\n <pep-button *ngIf=\"screenSize <= PepScreenSizeType.SM\" [iconName]=\"'arrow_left_alt'\" [styleType]=\"'regular'\"\n [disabled]=\"prevDisabled\" (click)=\"moveLeft()\" class=\"carousel-arrow start-arrow\">\n </pep-button>\n <pep-carousel #carousel [xWheelEnabled]=\"false\" [snapDuration]=\"duration\"\n (reachesLeftBound)=\"onReachesLeftBound($event)\" (reachesRightBound)=\"onReachesRightBound($event)\">\n <ng-container *ngFor=\"let item of items\">\n <pep-form pepCarouselItem [layout]=\"layout\" [data]=\"item\" [layoutType]=\"'card'\" class=\"card-view \"\n (valueChange)=\"onCustomizeObjectChanged($event)\" (fieldClick)=\"onCustomizeFieldClick($event)\">\n </pep-form>\n </ng-container>\n </pep-carousel>\n <pep-button *ngIf=\"screenSize <= PepScreenSizeType.SM\" [iconName]=\"'arrow_right_alt'\" [styleType]=\"'regular'\"\n [disabled]=\"nextDisabled\" (click)=\"moveRight()\" class=\"carousel-arrow end-arrow\">\n </pep-button>\n </ng-template>\n</div>",
6376
3171
  providers: [PepInternalCaruselService],
6377
3172
  changeDetection: core.ChangeDetectionStrategy.OnPush,
6378
- styles: [".carousel-container{position:relative;margin:0 calc(.5rem * -1);margin:0 calc(var(--pep-spacing-sm, .5rem) * -1);display:grid}.carousel-container .carousel-arrow{position:absolute;top:50%;transform:translateY(-50%);z-index:1}.carousel-container .carousel-arrow.start-arrow{left:0}.carousel-container .carousel-arrow.end-arrow{right:0}.carousel-container ::ng-deep.carousel-content .card-view{padding:.5rem 0!important;padding:var(--pep-spacing-sm,.5rem) 0!important}.carousel-container ::ng-deep.carousel-content .card-view:first-child{-webkit-padding-start:.5rem!important;padding-inline-start:.5rem!important;-webkit-padding-start:var(--pep-spacing-sm,.5rem)!important;padding-inline-start:var(--pep-spacing-sm,.5rem)!important}.carousel-container ::ng-deep.carousel-content .card-view:last-child{-webkit-padding-end:.5rem!important;padding-inline-end:.5rem!important;-webkit-padding-end:var(--pep-spacing-sm,.5rem)!important;padding-inline-end:var(--pep-spacing-sm,.5rem)!important}"]
3173
+ styles: [".carousel-container{position:relative;margin:0;display:grid}.carousel-container .carousel-arrow{position:absolute;top:50%;transform:translateY(-50%);z-index:1}.carousel-container .carousel-arrow.start-arrow{left:0}.carousel-container .carousel-arrow.end-arrow{right:0}.carousel-container ::ng-deep.carousel-content .card-view{padding:.5rem 0!important;padding:var(--pep-spacing-sm,.5rem) 0!important}.carousel-container ::ng-deep.carousel-content .card-view:first-child{-webkit-padding-start:.5rem!important;padding-inline-start:.5rem!important;-webkit-padding-start:var(--pep-spacing-sm,.5rem)!important;padding-inline-start:var(--pep-spacing-sm,.5rem)!important}.carousel-container ::ng-deep.carousel-content .card-view:last-child{-webkit-padding-end:.5rem!important;padding-inline-end:.5rem!important;-webkit-padding-end:var(--pep-spacing-sm,.5rem)!important;padding-inline-end:var(--pep-spacing-sm,.5rem)!important}"]
6379
3174
  },] }
6380
3175
  ];
6381
3176
  PepInternalCaruselComponent.ctorParameters = function () { return [
6382
3177
  { type: forms.FormBuilder },
6383
3178
  { type: ngxLib.PepLayoutService },
6384
- { type: PepInternalCaruselService },
6385
- { type: ngxLib.PepCustomizationService },
6386
- { type: core.ElementRef },
6387
- { type: core.ChangeDetectorRef }
3179
+ { type: PepInternalCaruselService }
6388
3180
  ]; };
6389
3181
  PepInternalCaruselComponent.propDecorators = {
3182
+ carousel: [{ type: core.ViewChild, args: ['carousel', { read: carousel.PepCarouselComponent },] }],
6390
3183
  field: [{ type: core.Input }],
6391
3184
  layoutType: [{ type: core.Input }],
6392
- formValueChange: [{ type: core.Output }],
6393
- formFieldClick: [{ type: core.Output }],
6394
- carousel: [{ type: core.ViewChild, args: ['carousel', { read: carousel.PepCarouselComponent },] }]
3185
+ internalFormFieldChange: [{ type: core.Output }],
3186
+ internalFormFieldClick: [{ type: core.Output }]
6395
3187
  };
6396
3188
 
6397
3189
  var pepComponentsModules = [