@messaia/cdk 19.0.1-rc01 → 19.0.1

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.
@@ -1469,7 +1469,8 @@ var Salutation;
1469
1469
  Salutation[Salutation["Unknown"] = 0] = "Unknown";
1470
1470
  Salutation[Salutation["Female"] = 1] = "Female";
1471
1471
  Salutation[Salutation["Male"] = 2] = "Male";
1472
- Salutation[Salutation["Others"] = 3] = "Others";
1472
+ Salutation[Salutation["Company"] = 3] = "Company";
1473
+ Salutation[Salutation["Others"] = 4] = "Others";
1473
1474
  })(Salutation || (Salutation = {}));
1474
1475
 
1475
1476
  /**
@@ -2151,7 +2152,7 @@ function Column(args) {
2151
2152
  case 'number':
2152
2153
  tableColumn.inputType ||= 'number';
2153
2154
  tableColumn.type ||= TableColumnType.Number;
2154
- tableColumn.filterOperator ||= FilterOperator.Contains;
2155
+ tableColumn.filterOperator = tableColumn.filterOperator != undefined ? tableColumn.filterOperator : FilterOperator.Contains;
2155
2156
  break;
2156
2157
  case 'date':
2157
2158
  tableColumn.inputType ||= 'date';