@esfaenza/es-table 15.2.12 → 15.2.13

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.
@@ -83,6 +83,12 @@ export declare class AppSearch<T> {
83
83
  * @param {AppSearch<any>} aps AppSearch da resettare
84
84
  */
85
85
  static reset(aps: AppSearch<any>): void;
86
+ /**
87
+ * Partendo da un appsearch con filtri impostati permette di crearne la stessa versione solo con la ricerca impostata a "tutto"
88
+ *
89
+ * @param {AppSearch<any>} aps AppSearch da cui partire
90
+ */
91
+ static toSelectAll(aps: AppSearch<any>): any;
86
92
  /**
87
93
  * Permette di ottenere un nuovo riferimento all'AppSearch passata come parametro.
88
94
  * Internamente utilizza il JSON.parse(JSON.stringify(X)) con la differenza che prima stacca il riferimento agli items per evitare di
@@ -90,5 +96,5 @@ export declare class AppSearch<T> {
90
96
  *
91
97
  * @param {AppSearch<any>} aps AppSearch di cui estrarre un nuovo riferimento equivalente
92
98
  */
93
- static newref(aps: AppSearch<any>): any;
99
+ static newref(aps: AppSearch<any>, retainItems?: boolean): any;
94
100
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@esfaenza/es-table",
3
- "version": "15.2.12",
3
+ "version": "15.2.13",
4
4
  "dependencies": {
5
5
  "tslib": "^2.0.0"
6
6
  },