@esfaenza/es-table 11.2.76 → 11.2.79

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.
@@ -179,6 +179,8 @@ export declare class EsTableComponent implements ControlValueAccessor, OnChanges
179
179
  ColumnsPinnable: boolean;
180
180
  /** Indica se dev'essere disponibile il sistema di aggiornamento automatico */
181
181
  AutoUpdate: boolean;
182
+ /** Indica se dev'essere l'estable a gestire la ricerca, anche la prima */
183
+ EsTableHandledSearch: boolean;
182
184
  /**
183
185
  * Decide se utilizzare o meno le CustomCells. Impostandolo a **true** l'es-table diventa in grado di gestire nativamente:
184
186
  *
@@ -51,6 +51,8 @@ export declare class AppSearch<T> {
51
51
  savedstate: boolean;
52
52
  /** Indica se bisogna ancora effettuare la prima ricerca */
53
53
  firstsearch: boolean;
54
+ /** Indica se sto effettuando la ricerca post bind */
55
+ selfsearch: boolean;
54
56
  /**
55
57
  * Oggetto che indica la selezione corrente.
56
58
  *
@@ -77,6 +79,16 @@ export declare class AppSearch<T> {
77
79
  /**
78
80
  * Permette di resettare un AppSearch ai valori di default.
79
81
  * Reso statico perché fra una deserializzazione e l'altra si potrebbe perdere il prototype del costruttore
82
+ *
83
+ * @param {AppSearch<any>} aps AppSearch da resettare
80
84
  */
81
85
  static reset(aps: AppSearch<any>): void;
86
+ /**
87
+ * Permette di ottenere un nuovo riferimento all'AppSearch passata come parametro.
88
+ * Internamente utilizza il JSON.parse(JSON.stringify(X)) con la differenza che prima stacca il riferimento agli items per evitare di
89
+ * reserializzare potenzialmente centinaia di elementi. Il riferimento viene poi ricollegato alla nuova appsearch generata
90
+ *
91
+ * @param {AppSearch<any>} aps AppSearch di cui estrarre un nuovo riferimento equivalente
92
+ */
93
+ static newref(aps: AppSearch<any>): any;
82
94
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@esfaenza/es-table",
3
- "version": "11.2.76",
3
+ "version": "11.2.79",
4
4
  "dependencies": {
5
5
  "tslib": "^2.0.0"
6
6
  },