@esfaenza/es-table 13.3.2 → 14.2.0
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.
- package/esm2020/lib/components/es-table/es_table.component.loc.mjs +7 -5
- package/esm2020/lib/components/es-table/es_table.component.mjs +309 -76
- package/esm2020/lib/components/es-table-template/es_table_template.component.mjs +21 -0
- package/esm2020/lib/components/es-td/es_td.component.mjs +21 -9
- package/esm2020/lib/components/es-th/es_th.component.mjs +4 -4
- package/esm2020/lib/components/pager/table_pager.component.loc.mjs +4 -4
- package/esm2020/lib/components/pager/table_pager.component.mjs +9 -9
- package/esm2020/lib/core/CopyPasteDetector.mjs +25 -0
- package/esm2020/lib/core/handlers/ColumnMetadataHandler.mjs +34 -15
- package/esm2020/lib/core/handlers/ExportHandler.mjs +12 -3
- package/esm2020/lib/core/handlers/ItemsHandler.mjs +13 -5
- package/esm2020/lib/core/handlers/ReportModeHandler.mjs +10 -1
- package/esm2020/lib/core/handlers/SelectionHandler.mjs +263 -1
- package/esm2020/lib/core/handlers/UtilitiesHandler.mjs +6 -4
- package/esm2020/lib/directives/es_td.directive.mjs +10 -6
- package/esm2020/lib/directives/es_td_editor.directive.mjs +24 -0
- package/esm2020/lib/directives/es_th.directive.mjs +19 -9
- package/esm2020/lib/domain/externals/EsTableColumnsDefinition.mjs +34 -22
- package/esm2020/lib/domain/externals/EsTableModelChange.mjs +19 -0
- package/esm2020/lib/domain/externals/ItemPropEditableReference.mjs +4 -0
- package/esm2020/lib/domain/externals/appsearch/AppSearch.mjs +32 -14
- package/esm2020/lib/domain/internals/EsTableColumn.mjs +2 -1
- package/esm2020/lib/domain/internals/GroupPager.mjs +4 -3
- package/esm2020/lib/domain/internals/TdElement.mjs +1 -1
- package/esm2020/lib/domain/internals/ThElement.mjs +1 -1
- package/esm2020/lib/domain/types.mjs +2 -0
- package/esm2020/lib/es-table.module.mjs +27 -21
- package/esm2020/public-api.mjs +6 -1
- package/fesm2015/esfaenza-es-table.mjs +892 -193
- package/fesm2015/esfaenza-es-table.mjs.map +1 -1
- package/fesm2020/esfaenza-es-table.mjs +878 -192
- package/fesm2020/esfaenza-es-table.mjs.map +1 -1
- package/{esfaenza-es-table.d.ts → index.d.ts} +0 -0
- package/lib/components/es-table/es_table.component.d.ts +103 -30
- package/lib/components/es-table-template/es_table_template.component.d.ts +18 -0
- package/lib/components/es-td/es_td.component.d.ts +12 -4
- package/lib/components/es-th/es_th.component.d.ts +1 -1
- package/lib/components/pager/table_pager.component.d.ts +1 -1
- package/lib/core/CopyPasteDetector.d.ts +13 -0
- package/lib/core/handlers/ColumnMetadataHandler.d.ts +7 -0
- package/lib/core/handlers/ItemsHandler.d.ts +1 -1
- package/lib/core/handlers/ReportModeHandler.d.ts +9 -0
- package/lib/core/handlers/SelectionHandler.d.ts +77 -0
- package/lib/directives/es_td.directive.d.ts +4 -2
- package/lib/directives/es_td_editor.directive.d.ts +14 -0
- package/lib/directives/es_th.directive.d.ts +12 -11
- package/lib/domain/externals/EsTableColumnsDefinition.d.ts +43 -21
- package/lib/domain/externals/EsTableModelChange.d.ts +17 -0
- package/lib/domain/externals/ItemPropEditableReference.d.ts +30 -0
- package/lib/domain/externals/appsearch/AppSearch.d.ts +15 -2
- package/lib/domain/internals/EsTableColumn.d.ts +1 -0
- package/lib/domain/internals/GroupPager.d.ts +3 -2
- package/lib/domain/internals/TdElement.d.ts +10 -5
- package/lib/domain/internals/ThElement.d.ts +5 -0
- package/lib/domain/types.d.ts +2 -0
- package/lib/es-table.module.d.ts +17 -14
- package/package.json +14 -14
- package/public-api.d.ts +5 -0
|
@@ -1,31 +1,53 @@
|
|
|
1
|
+
import { InputType } from "../types";
|
|
1
2
|
/** Classe che identifica una colonna. Utilizzata in modalità "Colonne dinamiche" */
|
|
2
3
|
export declare class EsTableColumnsDefinition {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
4
|
+
Description: string;
|
|
5
|
+
PropertyName: string;
|
|
6
|
+
RoutePath: string;
|
|
7
|
+
RouteParameterProperties: string[];
|
|
8
|
+
DataOrder: 'ASC' | 'DESC';
|
|
9
|
+
ColumnOrder: number;
|
|
10
|
+
Visible: boolean;
|
|
11
|
+
Clss: string;
|
|
12
|
+
Orderable: boolean;
|
|
13
|
+
HeaderWraps: boolean;
|
|
14
|
+
PropertyType: InputType | string;
|
|
15
|
+
PropertySource: {
|
|
16
|
+
id: string;
|
|
17
|
+
description: string;
|
|
18
|
+
}[];
|
|
19
|
+
EditorName: string;
|
|
20
|
+
RendererName: string;
|
|
21
|
+
edits: {
|
|
22
|
+
[index: string]: {
|
|
23
|
+
_editing: boolean;
|
|
24
|
+
old_value: string;
|
|
25
|
+
};
|
|
26
|
+
};
|
|
13
27
|
/**
|
|
14
28
|
* Costruttore
|
|
15
29
|
*
|
|
16
|
-
* @param {string}
|
|
17
|
-
* @param {string}
|
|
18
|
-
* @param {string}
|
|
19
|
-
* @param {string[]}
|
|
30
|
+
* @param {string} Description Descrizione della colonna
|
|
31
|
+
* @param {string} PropertyName Nome della proprietà del modello in cui sono contenuti i dati da visualizzare per questa colonna
|
|
32
|
+
* @param {string} RoutePath Route di navigazione. Es. "['/pages/mod/mod_detail', { 'idItem': '{0}', 'idItem2' : '{1}' }]"
|
|
33
|
+
* @param {string[]} RouteParameterProperties Proprietà da bindare a **routePath** per generare la route completa.
|
|
20
34
|
* L'indice scritto in **routePath** è l'indice di accesso a questo array. Es. ["iditem", "iditem2"]
|
|
21
|
-
* @param {'ASC' | 'DESC' }
|
|
22
|
-
* @param {number}
|
|
23
|
-
* @param {boolean}
|
|
24
|
-
* @param {string}
|
|
25
|
-
* @param {boolean}
|
|
26
|
-
* @param {boolean}
|
|
35
|
+
* @param {'ASC' | 'DESC' } DataOrder Ordinamento dei dati presentati in questa colonna
|
|
36
|
+
* @param {number} ColumnOrder Ordinamento di questa colonna
|
|
37
|
+
* @param {boolean} Visible Visibilità o meno della colonna
|
|
38
|
+
* @param {string} Clss Classe da applicare sia ai TD che ai TH relativi a questa colonna
|
|
39
|
+
* @param {boolean} Orderable Indica se la colonna è ordinabile o no (nel senso ASC / DESC / NONE)
|
|
40
|
+
* @param {boolean} HeaderWraps Indica se il testo dell'header dev'essere wrappato all'interno del th. Di default no.
|
|
41
|
+
* @param {InputType | string} PropertyType Indica il tipo della proprietà identificata da **propertyName**.
|
|
42
|
+
* @param {{id: string, description: string}[]} PropertySource Sorgente dati su cui autocompletare/scegliere il valore per la proprietà **propertyName**, ha senso solo per **propType** enum o autocomplete.
|
|
43
|
+
* @param {string} EditorName Nome dell'editor da utilizzare per la modifica di questo campo
|
|
44
|
+
* @param {string} RendererName Nome del renderer da utilizzare per visualizzare questo campo
|
|
27
45
|
*/
|
|
28
|
-
constructor(
|
|
46
|
+
constructor(Description: string, PropertyName: string, RoutePath?: string, RouteParameterProperties?: string[], DataOrder?: 'ASC' | 'DESC', ColumnOrder?: number, Visible?: boolean, Clss?: string, Orderable?: boolean, HeaderWraps?: boolean, PropertyType?: InputType | string, PropertySource?: {
|
|
47
|
+
id: string;
|
|
48
|
+
description: string;
|
|
49
|
+
}[], EditorName?: string, RendererName?: string);
|
|
50
|
+
static build(parsObj: any): EsTableColumnsDefinition;
|
|
29
51
|
/** Routerlink che verrà generato a runtime basandosi sulle informazioni di **routePath** e **routeParameterProperties** */
|
|
30
52
|
routerLink: any;
|
|
31
53
|
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/** Classe che rappresenta la modifica ad un singolo oggetto in una singola proprietà */
|
|
2
|
+
export declare class EsTableModelChange {
|
|
3
|
+
item: any;
|
|
4
|
+
header: string;
|
|
5
|
+
property: string;
|
|
6
|
+
old_value: string;
|
|
7
|
+
new_value: string;
|
|
8
|
+
/**
|
|
9
|
+
* Costruttore
|
|
10
|
+
* @param {any} item Oggetto modificato
|
|
11
|
+
* @param {string} header Nome dell'Header che è stato modificato
|
|
12
|
+
* @param {string} property Nome della proprietà modificata
|
|
13
|
+
* @param {string} old_value Vecchio valore della proprietà **property** dell'oggetto **item**
|
|
14
|
+
* @param {string} new_value Nuovo valore della proprietà **property** dell'oggetto **item**
|
|
15
|
+
*/
|
|
16
|
+
constructor(item: any, header: string, property: string, old_value: string, new_value: string);
|
|
17
|
+
}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { InputType } from "../types";
|
|
2
|
+
/** Classe che rappresenta il riferimento ad una proprietà di un oggetto bindato sulla tabella */
|
|
3
|
+
export declare class ItemPropEditableReference {
|
|
4
|
+
/** Stato di selezione della cella relativa */
|
|
5
|
+
selected: boolean;
|
|
6
|
+
/** Oggetto relativo su cui si modificano le proprietà */
|
|
7
|
+
item: any;
|
|
8
|
+
/** ID dell'header in modifica (riferimento al TH relativo) */
|
|
9
|
+
header: string;
|
|
10
|
+
/** Proprietà Javascript effettivamente in modifica */
|
|
11
|
+
property: string;
|
|
12
|
+
/** Tipo dell'input */
|
|
13
|
+
type: InputType | string;
|
|
14
|
+
/** Valore attuale della proprietà **property** dell'oggetto **item** */
|
|
15
|
+
value: string;
|
|
16
|
+
/** Indica se la cella deve avere il bordino a sinistra */
|
|
17
|
+
lborder?: boolean;
|
|
18
|
+
/** Indica se la cella deve avere il bordino in alto */
|
|
19
|
+
tborder?: boolean;
|
|
20
|
+
/** Indica se la cella deve avere il bordino a destra */
|
|
21
|
+
rborder?: boolean;
|
|
22
|
+
/** Indica se la cella deve avere il bordino in basso */
|
|
23
|
+
bborder?: boolean;
|
|
24
|
+
/** Indica se il bordo a sinistra overlappa su un bordo di selezione destro della cella precedente */
|
|
25
|
+
loverlaps?: boolean;
|
|
26
|
+
/** Indica se il bordo a destra overlappa su un bordo di selezione sinistro della cella successiva */
|
|
27
|
+
roverlaps?: boolean;
|
|
28
|
+
/** Funzione che imposta il nuovo valore della proprietà **property** dell'oggetto **item** ed aggiorna il **value** di questo oggetto */
|
|
29
|
+
val_setter?: (value: string) => any;
|
|
30
|
+
}
|
|
@@ -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
|
*
|
|
@@ -75,7 +77,18 @@ export declare class AppSearch<T> {
|
|
|
75
77
|
*/
|
|
76
78
|
requestedgroups: GroupFilter[];
|
|
77
79
|
/**
|
|
78
|
-
* Permette di resettare
|
|
80
|
+
* Permette di resettare un AppSearch ai valori di default.
|
|
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
|
|
84
|
+
*/
|
|
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
|
|
79
92
|
*/
|
|
80
|
-
|
|
93
|
+
static newref(aps: AppSearch<any>): any;
|
|
81
94
|
}
|
|
@@ -22,6 +22,7 @@ export declare class EsTableColumn {
|
|
|
22
22
|
* @param {string} description Descrizione (Header)
|
|
23
23
|
* @param {boolean} visible Indica se di default mostrarla o meno
|
|
24
24
|
* @param {boolean} fixed Indica se è una colonna fixed
|
|
25
|
+
* @param {boolean} pinnable Indica se una colonna può essere pinnata
|
|
25
26
|
* @param {boolean} pinned Indica se è una colonna pinnata
|
|
26
27
|
* @param {number} pinnedWidth Indica la dimensione da assegnare a questa colonna quando è pinnata
|
|
27
28
|
* @param {TemplateRef<any>} template Indica il template da usare per mostrare il testo dell'Header
|
|
@@ -10,8 +10,9 @@ export declare class GroupPager {
|
|
|
10
10
|
/**
|
|
11
11
|
* Costruttore
|
|
12
12
|
*
|
|
13
|
-
* @param {number}
|
|
14
|
-
* @param {string}
|
|
13
|
+
* @param {number} _grouplevel Livello del gruppo a cui questo separatore fa riferimento
|
|
14
|
+
* @param {string} _thisRoute Route che identifica la gerarchia del gruppo e chi sono i parent
|
|
15
|
+
* @param {string} _parent Chiave del gruppo parent se esiste
|
|
15
16
|
* @param {AppSearch<any>} view Vista di ricerca collegata a questo elemento
|
|
16
17
|
* @param {'groups' | 'items'} searches Indica che cosa cerca questo separatore, se sottogruppi o oggetti
|
|
17
18
|
*/
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { SafeHtml } from "@angular/platform-browser";
|
|
2
|
+
/** Interfaccia di passaggio fra i dati che arrivano come direttiva / configurazione alla struttura interna su cui vengono generati i componenti es-td */
|
|
2
3
|
export interface TdElement {
|
|
3
4
|
/** Id della cella, dev'essere lo stesso della colonna **EsTh** relativa */
|
|
4
5
|
ID: string;
|
|
@@ -32,11 +33,15 @@ export interface TdElement {
|
|
|
32
33
|
Visible?: boolean;
|
|
33
34
|
/** Indica se la cella deve wrappare o no il contenuto */
|
|
34
35
|
Wraps?: boolean;
|
|
35
|
-
/**
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
36
|
+
/** Nome della proprietà JS che questa cella mostra */
|
|
37
|
+
PropertyName?: string;
|
|
38
|
+
/** Tipo della proprietà **PropertyName** */
|
|
39
|
+
PropertyType?: string;
|
|
40
|
+
/** Sorgente dati per la valorizzazione della proprietà **PropertyName** */
|
|
41
|
+
PropertySource?: {
|
|
42
|
+
id: string;
|
|
43
|
+
description: string;
|
|
44
|
+
}[];
|
|
40
45
|
/** Indica che l'oggetto di bindare per questo td è l'elemento all'indice Y della proprietà Z dove Y e Z vengono prese dall'**ID** scritto come Z_Y */
|
|
41
46
|
Multi?: true;
|
|
42
47
|
/** Indica l'eventuale proprietà a cui accedere nel caso sia **Content** che **Template** siano vuoti */
|
|
@@ -1,4 +1,9 @@
|
|
|
1
1
|
import { TemplateRef } from "@angular/core";
|
|
2
|
+
/**
|
|
3
|
+
* @ignore Interfaccia di passaggio fra i dati che arrivano come direttiva / configurazione alla struttura interna su cui vengono generati i componenti es-th
|
|
4
|
+
*
|
|
5
|
+
* Per informazioni sulle singole proprietà fare riferimento alla direttiva **EsThDirective**
|
|
6
|
+
*/
|
|
2
7
|
export interface ThElement {
|
|
3
8
|
Pinned: boolean;
|
|
4
9
|
Fixed: boolean;
|
package/lib/es-table.module.d.ts
CHANGED
|
@@ -6,22 +6,25 @@ import * as i2 from "./components/es-td/es_td.component";
|
|
|
6
6
|
import * as i3 from "./components/es-table/es_table.component";
|
|
7
7
|
import * as i4 from "./directives/es_td.directive";
|
|
8
8
|
import * as i5 from "./directives/es_th.directive";
|
|
9
|
-
import * as i6 from "./
|
|
10
|
-
import * as i7 from "
|
|
11
|
-
import * as i8 from "
|
|
12
|
-
import * as i9 from "@angular/
|
|
13
|
-
import * as i10 from "@
|
|
14
|
-
import * as i11 from "
|
|
15
|
-
import * as i12 from "
|
|
16
|
-
import * as i13 from "
|
|
17
|
-
import * as i14 from "
|
|
18
|
-
import * as i15 from "@
|
|
19
|
-
import * as i16 from "@
|
|
20
|
-
import * as i17 from "@angular/
|
|
21
|
-
import * as i18 from "@
|
|
9
|
+
import * as i6 from "./directives/es_td_editor.directive";
|
|
10
|
+
import * as i7 from "./components/pager/table_pager.component";
|
|
11
|
+
import * as i8 from "./components/es-table-template/es_table_template.component";
|
|
12
|
+
import * as i9 from "@angular/common";
|
|
13
|
+
import * as i10 from "@angular/forms";
|
|
14
|
+
import * as i11 from "@angular/router";
|
|
15
|
+
import * as i12 from "@esfaenza/localizations";
|
|
16
|
+
import * as i13 from "ngx-bootstrap/modal";
|
|
17
|
+
import * as i14 from "ngx-bootstrap/dropdown";
|
|
18
|
+
import * as i15 from "@ctrl/ngx-csv";
|
|
19
|
+
import * as i16 from "@esfaenza/ngx-contextmenu";
|
|
20
|
+
import * as i17 from "@angular/material/select";
|
|
21
|
+
import * as i18 from "@angular/material/input";
|
|
22
|
+
import * as i19 from "@angular/material/tooltip";
|
|
23
|
+
import * as i20 from "@angular/cdk/drag-drop";
|
|
24
|
+
import * as i21 from "@esfaenza/forms-and-validations";
|
|
22
25
|
export declare class EsTableModule {
|
|
23
26
|
static forRoot(config?: EsTableModuleConfig): ModuleWithProviders<EsTableModule>;
|
|
24
27
|
static ɵfac: i0.ɵɵFactoryDeclaration<EsTableModule, never>;
|
|
25
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<EsTableModule, [typeof i1.EsTh, typeof i2.EsTd, typeof i3.EsTableComponent, typeof i4.EsTdDirective, typeof i5.EsThDirective, typeof i6.TablePagerComponent], [typeof
|
|
28
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<EsTableModule, [typeof i1.EsTh, typeof i2.EsTd, typeof i3.EsTableComponent, typeof i4.EsTdDirective, typeof i5.EsThDirective, typeof i6.EsTdEditorDirective, typeof i7.TablePagerComponent, typeof i8.EsTableTemplate], [typeof i9.CommonModule, typeof i10.FormsModule, typeof i11.RouterModule, typeof i12.LocalizationModule, typeof i13.ModalModule, typeof i14.BsDropdownModule, typeof i15.CsvModule, typeof i16.ContextMenuModule, typeof i17.MatSelectModule, typeof i18.MatInputModule, typeof i19.MatTooltipModule, typeof i20.DragDropModule, typeof i21.FormsAndValidationsModule], [typeof i3.EsTableComponent, typeof i4.EsTdDirective, typeof i5.EsThDirective, typeof i6.EsTdEditorDirective, typeof i7.TablePagerComponent, typeof i8.EsTableTemplate]>;
|
|
26
29
|
static ɵinj: i0.ɵɵInjectorDeclaration<EsTableModule>;
|
|
27
30
|
}
|
package/package.json
CHANGED
|
@@ -1,21 +1,21 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@esfaenza/es-table",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "14.2.0",
|
|
4
4
|
"dependencies": {
|
|
5
5
|
"tslib": "^2.0.0"
|
|
6
6
|
},
|
|
7
7
|
"peerDependencies": {
|
|
8
|
-
"@angular/common": "~
|
|
9
|
-
"@angular/core": "~
|
|
10
|
-
"@angular/material": "~
|
|
11
|
-
"@esfaenza/extensions": "^
|
|
12
|
-
"@esfaenza/localizations": "^
|
|
13
|
-
"@esfaenza/forms-and-validations": "^
|
|
14
|
-
"@ctrl/ngx-csv": "
|
|
15
|
-
"@esfaenza/ngx-contextmenu": "^
|
|
16
|
-
"@esfaenza/preferences": "^
|
|
17
|
-
"ngx-toastr": "
|
|
18
|
-
"ngx-bootstrap": "
|
|
8
|
+
"@angular/common": "~11.2.14",
|
|
9
|
+
"@angular/core": "~11.2.14",
|
|
10
|
+
"@angular/material": "~11.2.13",
|
|
11
|
+
"@esfaenza/extensions": "^11.2.28",
|
|
12
|
+
"@esfaenza/localizations": "^11.2.6",
|
|
13
|
+
"@esfaenza/forms-and-validations": "^11.2.60",
|
|
14
|
+
"@ctrl/ngx-csv": "4.0.0",
|
|
15
|
+
"@esfaenza/ngx-contextmenu": "^11.2.5",
|
|
16
|
+
"@esfaenza/preferences": "^11.2.18",
|
|
17
|
+
"ngx-toastr": "13.2.1",
|
|
18
|
+
"ngx-bootstrap": "7.0.0",
|
|
19
19
|
"exceljs": "4.3.0",
|
|
20
20
|
"stream": "0.0.2"
|
|
21
21
|
},
|
|
@@ -24,13 +24,13 @@
|
|
|
24
24
|
"esm2020": "esm2020/esfaenza-es-table.mjs",
|
|
25
25
|
"fesm2020": "fesm2020/esfaenza-es-table.mjs",
|
|
26
26
|
"fesm2015": "fesm2015/esfaenza-es-table.mjs",
|
|
27
|
-
"typings": "
|
|
27
|
+
"typings": "index.d.ts",
|
|
28
28
|
"exports": {
|
|
29
29
|
"./package.json": {
|
|
30
30
|
"default": "./package.json"
|
|
31
31
|
},
|
|
32
32
|
".": {
|
|
33
|
-
"types": "./
|
|
33
|
+
"types": "./index.d.ts",
|
|
34
34
|
"esm2020": "./esm2020/esfaenza-es-table.mjs",
|
|
35
35
|
"es2020": "./fesm2020/esfaenza-es-table.mjs",
|
|
36
36
|
"es2015": "./fesm2015/esfaenza-es-table.mjs",
|
package/public-api.d.ts
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
export * from './lib/components/pager/table_pager.component';
|
|
2
2
|
export * from './lib/components/es-table/es_table.component';
|
|
3
|
+
export * from './lib/components/es-table-template/es_table_template.component';
|
|
3
4
|
export * from './lib/directives/es_td.directive';
|
|
5
|
+
export * from './lib/directives/es_td_editor.directive';
|
|
4
6
|
export * from './lib/directives/es_th.directive';
|
|
5
7
|
export * from './lib/domain/configuration/EsTableModuleConfig';
|
|
6
8
|
export * from './lib/domain/configuration/EsTableDefaultable';
|
|
@@ -20,3 +22,6 @@ export * from './lib/domain/externals/appsearch/EsTableMultiValue';
|
|
|
20
22
|
export * from './lib/domain/externals/report/ReportColumn';
|
|
21
23
|
export * from './lib/domain/externals/report/ReportParam';
|
|
22
24
|
export * from './lib/domain/externals/report/ReportRow';
|
|
25
|
+
export * from './lib/domain/externals/EsTableModelChange';
|
|
26
|
+
export * from './lib/domain/externals/ItemPropEditableReference';
|
|
27
|
+
export * from './lib/domain/types';
|