cat-qw-lib 2.6.6 → 2.6.7

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.
@@ -496,12 +496,12 @@ const queuePriorityOrder = ["All Applications", "Assigned To Me", "Unassigned"];
496
496
  const QUEUE_RECORD_TABLE_COLUMN_WIDTH_LIST = {
497
497
  brokerName: 'w-3',
498
498
  securityAddress: 'w-3',
499
- applicants: 'w-3',
500
- finance: 'w-3',
499
+ applicants: 'w-4',
500
+ finance: 'w-2',
501
501
  valuationStatus: 'w-2',
502
502
  sla: 'w-3',
503
- referredDate: 'w-3',
504
- appId: 'w-2',
503
+ referredDate: 'w-2',
504
+ appId: 'w-3',
505
505
  tasks: 'w-2'
506
506
  };
507
507
  const FIELD_DISPLAY_NAMES = {
@@ -2356,10 +2356,11 @@ var columnStyles = {
2356
2356
  },
2357
2357
  applicants: {
2358
2358
  containerNgClass: "rowData.isSeperateBubble ? 'border-round-full bg-blue-400 text-white' : rowData.isCustomerVulnerable === 'true' ? 'border-round-full applicant-vulnerable-customer-wrapper text-white' : rowData.riskRating === 'Low' ? 'border-round-full applicant-success-badge-wrapper text-white' : rowData.riskRating === 'Medium' ? 'border-round-full applicant-amber-badge-wrapper text-white' : rowData.riskRating === 'High' ? 'border-round-full applicant-red-badge-wrapper text-white' : 'border-round-full bg-gray-200 text-white'",
2359
- containerNgStyle: "{ width: '32px', height: '32px', display: 'flex', alignItems: 'center', justifyContent: 'center' }",
2360
- textNgClass: "text-white text-md"
2359
+ containerNgStyle: "{ minWidth: 'fit-content', maxWidth: '200px', minHeight: '32px', display: 'inline-flex', alignItems: 'center', justifyContent: 'center', padding: '6px 14px', whiteSpace: 'normal', wordBreak: 'break-word', lineHeight: '1.4' }",
2360
+ textNgClass: "text-white text-sm"
2361
2361
  },
2362
2362
  securityAddress: {
2363
+ containerNgStyle: "{ maxWidth: '100%', wordBreak: 'break-word', whiteSpace: 'normal' }",
2363
2364
  line1NgClass: "security-text-wrapper",
2364
2365
  line2NgClass: "text-gray-500 font-semibold security-text-wrapper"
2365
2366
  }
@@ -6858,14 +6859,14 @@ class QueueRecordTableBuilderService extends TableBuilder {
6858
6859
  // If we have both company and applicants, show only company name
6859
6860
  if (companyName && value.length > 0) {
6860
6861
  bubbles.push({
6861
- fullName: this.truncateText(companyName),
6862
+ fullName: companyName,
6862
6863
  isCompany: true
6863
6864
  });
6864
6865
  }
6865
6866
  else if (companyName) {
6866
6867
  // Only company, no applicants
6867
6868
  bubbles.push({
6868
- fullName: this.truncateText(companyName),
6869
+ fullName: companyName,
6869
6870
  isCompany: true
6870
6871
  });
6871
6872
  }
@@ -6874,7 +6875,7 @@ class QueueRecordTableBuilderService extends TableBuilder {
6874
6875
  value.forEach((applicant) => {
6875
6876
  if (applicant.fullName) {
6876
6877
  bubbles.push({
6877
- fullName: this.truncateText(applicant.fullName),
6878
+ fullName: applicant.fullName,
6878
6879
  isCompany: false,
6879
6880
  riskRating: applicant.riskRating,
6880
6881
  isCustomerVulnerable: applicant.isCustomerVulnerable
@@ -6937,7 +6938,7 @@ class QueueRecordTableBuilderService extends TableBuilder {
6937
6938
  else if (field === SHARED.SECURITY_ADDRESS && value) {
6938
6939
  const line1 = value.addressLine1 || '';
6939
6940
  cellValue = {
6940
- addressLine1: this.truncateText(line1),
6941
+ addressLine1: line1,
6941
6942
  postCode: value.postCode || ''
6942
6943
  };
6943
6944
  }