@pepperi-addons/ngx-lib 0.2.51-beta.6 → 0.2.51

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