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

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