@esfaenza/es-table 11.2.76 → 11.2.77

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.
@@ -3840,6 +3840,8 @@
3840
3840
  this.ColumnsPinnable = null;
3841
3841
  /** Indica se dev'essere disponibile il sistema di aggiornamento automatico */
3842
3842
  this.AutoUpdate = null;
3843
+ /** Indica se dev'essere l'estable a gestire la ricerca, anche la prima */
3844
+ this.EsTableHandledSearch = false;
3843
3845
  /**
3844
3846
  * Decide se utilizzare o meno le CustomCells. Impostandolo a **true** l'es-table diventa in grado di gestire nativamente:
3845
3847
  *
@@ -4270,6 +4272,15 @@
4270
4272
  case 10:
4271
4273
  this.finalizeContext();
4272
4274
  this.postBoundSourceCalculation();
4275
+ if (this.View && !this.View.selfsearch && this.EsTableHandledSearch) {
4276
+ this.View.selfsearch = true;
4277
+ this.changed();
4278
+ this.onSearchRequest.emit(false);
4279
+ }
4280
+ else if (this.View && this.View.selfsearch && this.EsTableHandledSearch) {
4281
+ this.View.selfsearch = false;
4282
+ this.changed();
4283
+ }
4273
4284
  return [2 /*return*/];
4274
4285
  }
4275
4286
  });
@@ -5122,6 +5133,7 @@
5122
5133
  ColumnsResizable: [{ type: i0.Input }],
5123
5134
  ColumnsPinnable: [{ type: i0.Input }],
5124
5135
  AutoUpdate: [{ type: i0.Input }],
5136
+ EsTableHandledSearch: [{ type: i0.Input }],
5125
5137
  UseCustomCells: [{ type: i0.Input }],
5126
5138
  MaxHeight: [{ type: i0.Input }],
5127
5139
  ContainerClass: [{ type: i0.Input }],