@esfaenza/es-table 13.1.12 → 13.1.15
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.mjs +102 -21
- package/esm2020/lib/core/handlers/ColumnMetadataHandler.mjs +777 -0
- package/esm2020/lib/core/handlers/DynamicModeHandler.mjs +63 -0
- package/esm2020/lib/core/handlers/ExportHandler.mjs +103 -0
- package/esm2020/lib/core/handlers/HierarchyModeHandler.mjs +136 -0
- package/esm2020/lib/core/handlers/ItemsHandler.mjs +111 -0
- package/esm2020/lib/core/handlers/ReportModeHandler.mjs +70 -0
- package/esm2020/lib/core/handlers/RowGroupingHandler.mjs +480 -0
- package/esm2020/lib/core/handlers/SelectionHandler.mjs +524 -0
- package/esm2020/lib/core/handlers/UtilitiesHandler.mjs +152 -0
- package/esm2020/lib/directives/es_td.directive.mjs +3 -1
- package/esm2020/lib/directives/es_th.directive.mjs +17 -5
- package/esm2020/lib/domain/configuration/EsTableDefaultable.mjs +1 -1
- package/esm2020/lib/domain/configuration/EsTableModuleConfig.mjs +1 -1
- package/esm2020/lib/domain/externals/CornerMenuOption.mjs +4 -0
- package/esm2020/lib/domain/externals/EsTableColumnsDefinition.mjs +31 -0
- package/esm2020/lib/domain/externals/EsTableOperationDefinition.mjs +22 -0
- package/esm2020/lib/domain/externals/appsearch/AppOrdering.mjs +16 -0
- package/esm2020/lib/domain/externals/appsearch/AppSearch.mjs +35 -0
- package/esm2020/lib/domain/externals/appsearch/EsTableMultiValue.mjs +25 -0
- package/esm2020/lib/domain/externals/appsearch/GenericItem.mjs +11 -0
- package/esm2020/lib/domain/externals/appsearch/Group.mjs +17 -0
- package/esm2020/lib/domain/externals/appsearch/GroupAggregation.mjs +16 -0
- package/esm2020/lib/domain/externals/appsearch/GroupFilter.mjs +14 -0
- package/esm2020/lib/domain/externals/appsearch/GroupOrAggregation.mjs +16 -0
- package/esm2020/lib/domain/externals/appsearch/ItemsSelection.mjs +23 -0
- package/esm2020/lib/domain/externals/report/ReportColumn.mjs +4 -0
- package/esm2020/lib/domain/externals/report/ReportDefinition.mjs +4 -0
- package/esm2020/lib/domain/externals/report/ReportOrder.mjs +4 -0
- package/esm2020/lib/domain/externals/report/ReportParam.mjs +4 -0
- package/esm2020/lib/domain/externals/report/ReportResult.mjs +4 -0
- package/esm2020/lib/domain/externals/report/ReportRow.mjs +4 -0
- package/esm2020/lib/domain/internals/CacheTriptic.mjs +16 -0
- package/esm2020/lib/domain/internals/EsTableColumn.mjs +31 -0
- package/esm2020/lib/domain/internals/GroupPager.mjs +22 -0
- package/esm2020/lib/domain/internals/GroupRouteFragment.mjs +17 -0
- package/esm2020/lib/domain/internals/TdElement.mjs +2 -0
- package/esm2020/lib/domain/internals/ThAggregation.mjs +16 -0
- package/esm2020/lib/domain/internals/ThElement.mjs +2 -0
- package/esm2020/lib/es-table.module.mjs +11 -6
- package/esm2020/public-api.mjs +19 -5
- package/fesm2015/esfaenza-es-table.mjs +687 -484
- package/fesm2015/esfaenza-es-table.mjs.map +1 -1
- package/fesm2020/esfaenza-es-table.mjs +670 -467
- package/fesm2020/esfaenza-es-table.mjs.map +1 -1
- package/lib/components/es-table/es_table.component.d.ts +38 -6
- package/lib/core/handlers/{classes/ColumnMetadataHandler.d.ts → ColumnMetadataHandler.d.ts} +18 -11
- package/lib/core/handlers/{classes/DynamicModeHandler.d.ts → DynamicModeHandler.d.ts} +2 -2
- package/lib/core/handlers/{classes/ExportHandler.d.ts → ExportHandler.d.ts} +1 -1
- package/lib/core/handlers/{classes/HierarchyModeHandler.d.ts → HierarchyModeHandler.d.ts} +1 -1
- package/lib/core/handlers/{classes/ItemsHandler.d.ts → ItemsHandler.d.ts} +1 -1
- package/lib/core/handlers/{classes/ReportModeHandler.d.ts → ReportModeHandler.d.ts} +2 -2
- package/lib/core/handlers/{classes/RowGroupingHandler.d.ts → RowGroupingHandler.d.ts} +8 -3
- package/lib/core/handlers/{classes/SelectionHandler.d.ts → SelectionHandler.d.ts} +3 -3
- package/lib/core/handlers/{classes/UtilitiesHandler.d.ts → UtilitiesHandler.d.ts} +0 -0
- package/lib/directives/es_td.directive.d.ts +2 -0
- package/lib/directives/es_th.directive.d.ts +20 -6
- package/lib/domain/configuration/EsTableDefaultable.d.ts +1 -0
- package/lib/domain/configuration/EsTableModuleConfig.d.ts +1 -1
- package/lib/domain/externals/{classes/CornerMenuOption.d.ts → CornerMenuOption.d.ts} +0 -0
- package/lib/domain/externals/{classes/EsTableColumnsDefinition.d.ts → EsTableColumnsDefinition.d.ts} +0 -0
- package/lib/domain/externals/{classes/EsTableOperationDefinition.d.ts → EsTableOperationDefinition.d.ts} +0 -0
- package/lib/domain/externals/{classes/appsearch → appsearch}/AppOrdering.d.ts +0 -0
- package/lib/domain/externals/{classes/appsearch → appsearch}/AppSearch.d.ts +0 -0
- package/lib/domain/externals/appsearch/EsTableMultiValue.d.ts +22 -0
- package/lib/domain/externals/{classes/appsearch → appsearch}/GenericItem.d.ts +0 -0
- package/lib/domain/externals/{classes/appsearch → appsearch}/Group.d.ts +0 -0
- package/lib/domain/externals/{classes/appsearch → appsearch}/GroupAggregation.d.ts +0 -0
- package/lib/domain/externals/{classes/appsearch → appsearch}/GroupFilter.d.ts +0 -0
- package/lib/domain/externals/{classes/appsearch → appsearch}/GroupOrAggregation.d.ts +0 -0
- package/lib/domain/externals/{classes/appsearch → appsearch}/ItemsSelection.d.ts +1 -1
- package/lib/domain/externals/{classes/report → report}/ReportColumn.d.ts +0 -0
- package/lib/domain/externals/{classes/report → report}/ReportDefinition.d.ts +3 -1
- package/lib/domain/externals/{classes/report → report}/ReportOrder.d.ts +0 -0
- package/lib/domain/externals/{classes/report → report}/ReportParam.d.ts +0 -0
- package/lib/domain/externals/{classes/report → report}/ReportResult.d.ts +2 -1
- package/lib/domain/externals/{classes/report → report}/ReportRow.d.ts +0 -0
- package/lib/domain/internals/{classes/CacheTriptic.d.ts → CacheTriptic.d.ts} +0 -0
- package/lib/domain/internals/{classes/EsTableColumn.d.ts → EsTableColumn.d.ts} +14 -3
- package/lib/domain/internals/{classes/GroupPager.d.ts → GroupPager.d.ts} +2 -1
- package/lib/domain/internals/{classes/GroupRouteFragment.d.ts → GroupRouteFragment.d.ts} +0 -0
- package/lib/domain/internals/TdElement.d.ts +42 -0
- package/lib/domain/internals/{classes/ThAggregation.d.ts → ThAggregation.d.ts} +0 -0
- package/lib/domain/internals/{classes/ThElement.d.ts → ThElement.d.ts} +0 -0
- package/lib/es-table.module.d.ts +2 -1
- package/package.json +2 -1
- package/public-api.d.ts +18 -1
- package/esm2020/lib/core/handlers/classes/ColumnMetadataHandler.mjs +0 -667
- package/esm2020/lib/core/handlers/classes/DynamicModeHandler.mjs +0 -64
- package/esm2020/lib/core/handlers/classes/ExportHandler.mjs +0 -103
- package/esm2020/lib/core/handlers/classes/HierarchyModeHandler.mjs +0 -136
- package/esm2020/lib/core/handlers/classes/ItemsHandler.mjs +0 -111
- package/esm2020/lib/core/handlers/classes/ReportModeHandler.mjs +0 -70
- package/esm2020/lib/core/handlers/classes/RowGroupingHandler.mjs +0 -477
- package/esm2020/lib/core/handlers/classes/SelectionHandler.mjs +0 -525
- package/esm2020/lib/core/handlers/classes/UtilitiesHandler.mjs +0 -152
- package/esm2020/lib/core/handlers/index.mjs +0 -10
- package/esm2020/lib/domain/externals/classes/CornerMenuOption.mjs +0 -4
- package/esm2020/lib/domain/externals/classes/EsTableColumnsDefinition.mjs +0 -31
- package/esm2020/lib/domain/externals/classes/EsTableOperationDefinition.mjs +0 -22
- package/esm2020/lib/domain/externals/classes/appsearch/AppOrdering.mjs +0 -16
- package/esm2020/lib/domain/externals/classes/appsearch/AppSearch.mjs +0 -35
- package/esm2020/lib/domain/externals/classes/appsearch/GenericItem.mjs +0 -11
- package/esm2020/lib/domain/externals/classes/appsearch/Group.mjs +0 -17
- package/esm2020/lib/domain/externals/classes/appsearch/GroupAggregation.mjs +0 -16
- package/esm2020/lib/domain/externals/classes/appsearch/GroupFilter.mjs +0 -14
- package/esm2020/lib/domain/externals/classes/appsearch/GroupOrAggregation.mjs +0 -16
- package/esm2020/lib/domain/externals/classes/appsearch/ItemsSelection.mjs +0 -23
- package/esm2020/lib/domain/externals/classes/report/ReportColumn.mjs +0 -4
- package/esm2020/lib/domain/externals/classes/report/ReportDefinition.mjs +0 -4
- package/esm2020/lib/domain/externals/classes/report/ReportOrder.mjs +0 -4
- package/esm2020/lib/domain/externals/classes/report/ReportParam.mjs +0 -4
- package/esm2020/lib/domain/externals/classes/report/ReportResult.mjs +0 -4
- package/esm2020/lib/domain/externals/classes/report/ReportRow.mjs +0 -4
- package/esm2020/lib/domain/externals/index.mjs +0 -18
- package/esm2020/lib/domain/index.mjs +0 -3
- package/esm2020/lib/domain/internals/classes/CacheTriptic.mjs +0 -16
- package/esm2020/lib/domain/internals/classes/EsTableColumn.mjs +0 -26
- package/esm2020/lib/domain/internals/classes/GroupPager.mjs +0 -22
- package/esm2020/lib/domain/internals/classes/GroupRouteFragment.mjs +0 -17
- package/esm2020/lib/domain/internals/classes/TdElement.mjs +0 -2
- package/esm2020/lib/domain/internals/classes/ThAggregation.mjs +0 -16
- package/esm2020/lib/domain/internals/classes/ThElement.mjs +0 -2
- package/esm2020/lib/domain/internals/index.mjs +0 -8
- package/lib/core/handlers/index.d.ts +0 -9
- package/lib/domain/externals/index.d.ts +0 -17
- package/lib/domain/index.d.ts +0 -2
- package/lib/domain/internals/classes/TdElement.d.ts +0 -19
- package/lib/domain/internals/index.d.ts +0 -7
|
@@ -4,13 +4,31 @@ import { UtilityService, ExportService, MessageService, DateService, CsvHeaders
|
|
|
4
4
|
import { LocalizationService } from '@esfaenza/localizations';
|
|
5
5
|
import { PreferencesService } from '@esfaenza/preferences';
|
|
6
6
|
import { ContextMenuComponent } from '@esfaenza/ngx-contextmenu';
|
|
7
|
-
import { AppSearch
|
|
7
|
+
import { AppSearch } from "../../domain/externals/appsearch/AppSearch";
|
|
8
|
+
import { AppOrdering } from "../../domain/externals/appsearch/AppOrdering";
|
|
9
|
+
import { EsTableColumnsDefinition } from "../../domain/externals/EsTableColumnsDefinition";
|
|
10
|
+
import { CornerMenuOption } from "../../domain/externals/CornerMenuOption";
|
|
11
|
+
import { ReportResult } from "../../domain/externals/report/ReportResult";
|
|
12
|
+
import { EsTableOperationDefinition } from "../../domain/externals/EsTableOperationDefinition";
|
|
13
|
+
import { EsTableColumn } from "../../domain/internals/EsTableColumn";
|
|
14
|
+
import { GroupPager } from "../../domain/internals/GroupPager";
|
|
15
|
+
import { GroupRouteFragment } from "../../domain/internals/GroupRouteFragment";
|
|
16
|
+
import { ThElement } from "../../domain/internals/ThElement";
|
|
17
|
+
import { TdElement } from "../../domain/internals/TdElement";
|
|
18
|
+
import { ItemsSelection } from '../../domain/externals/appsearch/ItemsSelection';
|
|
19
|
+
import { Group } from "../../domain/externals/appsearch/Group";
|
|
20
|
+
import { EsTableDefaultable } from '../../domain/configuration/EsTableDefaultable';
|
|
8
21
|
import { EsTdDirective } from '../../directives/es_td.directive';
|
|
9
22
|
import { EsThDirective } from '../../directives/es_th.directive';
|
|
10
|
-
import {
|
|
11
|
-
import {
|
|
12
|
-
import {
|
|
13
|
-
import {
|
|
23
|
+
import { ExportHandler } from "../../core/handlers/ExportHandler";
|
|
24
|
+
import { ColumnMetadataHandler } from "../../core/handlers/ColumnMetadataHandler";
|
|
25
|
+
import { DynamicModeHandler } from "../../core/handlers/DynamicModeHandler";
|
|
26
|
+
import { HierarchyModeHandler } from "../../core/handlers/HierarchyModeHandler";
|
|
27
|
+
import { ItemsHandler } from "../../core/handlers/ItemsHandler";
|
|
28
|
+
import { ReportModeHandler } from "../../core/handlers/ReportModeHandler";
|
|
29
|
+
import { RowGroupingHandler } from "../../core/handlers/RowGroupingHandler";
|
|
30
|
+
import { SelectionHandler } from "../../core/handlers/SelectionHandler";
|
|
31
|
+
import { UtilitiesHandler } from "../../core/handlers/UtilitiesHandler";
|
|
14
32
|
import * as i0 from "@angular/core";
|
|
15
33
|
/** Componente che permette di rappresentare una griglia di valori */
|
|
16
34
|
export declare class EsTableComponent implements ControlValueAccessor, OnChanges {
|
|
@@ -142,6 +160,8 @@ export declare class EsTableComponent implements ControlValueAccessor, OnChanges
|
|
|
142
160
|
CornerMenuOptions: CornerMenuOption[];
|
|
143
161
|
/** Indica se dev'essere possibile effettuare il resize delle colonne */
|
|
144
162
|
ColumnsResizable: boolean;
|
|
163
|
+
/** Indica se dev'essere possibile effettuare il pinning delle colonne */
|
|
164
|
+
ColumnsPinnable: boolean;
|
|
145
165
|
/** Indica se dev'essere disponibile il sistema di aggiornamento automatico */
|
|
146
166
|
AutoUpdate: boolean;
|
|
147
167
|
/**
|
|
@@ -272,6 +292,8 @@ export declare class EsTableComponent implements ControlValueAccessor, OnChanges
|
|
|
272
292
|
UseSelectionCache: any;
|
|
273
293
|
/** Permette di decidere se, in modalità raggruppamento, mostrare o meno il valore delle colonne di gruppo negli oggetti finali. Di default sono nascosti */
|
|
274
294
|
ShowItemGroupsColumns: any;
|
|
295
|
+
/** Indica che tutti i campi che definiscono le modalità di modifica campo possono essere modificati in base alle impostazioni */
|
|
296
|
+
UserEdits: boolean;
|
|
275
297
|
/** Evento che viene richiamato al cambio di oridnamento di una colonna */
|
|
276
298
|
onOrderChanged: EventEmitter<AppOrdering>;
|
|
277
299
|
/**
|
|
@@ -574,6 +596,16 @@ export declare class EsTableComponent implements ControlValueAccessor, OnChanges
|
|
|
574
596
|
* Metodo eventualmente richiamabile anche dal componente esterno che permette di forzare un refresh della tabella
|
|
575
597
|
*/
|
|
576
598
|
forceRefresh(): void;
|
|
599
|
+
rowDbClickTimer: any;
|
|
600
|
+
cellDbClickTimer: any;
|
|
601
|
+
doubleClickBufferMs: number;
|
|
602
|
+
ensureNoDbClickAndSelect($event: any, item: any, selection: boolean): void;
|
|
603
|
+
private clearRowClickTimer;
|
|
604
|
+
ensureDbClickAndSetupEdit(rowItem: TdElement): void;
|
|
605
|
+
private clearCellClickTimer;
|
|
606
|
+
private handleRowClick;
|
|
607
|
+
setupUserEdit(rowItem: TdElement): void;
|
|
608
|
+
finalizeUserEdit(rowItem: TdElement, item: any): void;
|
|
577
609
|
static ɵfac: i0.ɵɵFactoryDeclaration<EsTableComponent, [{ optional: true; self: true; }, { optional: true; }, { optional: true; }, { optional: true; }, null, null, null, null, null, null, null]>;
|
|
578
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<EsTableComponent, "es-table", never, { "CornerMenuOptions": "CornerMenuOptions"; "ColumnsResizable": "ColumnsResizable"; "AutoUpdate": "AutoUpdate"; "UseCustomCells": "UseCustomCells"; "MaxHeight": "MaxHeight"; "ContainerClass": "ContainerClass"; "XLSXExport": "XLSXExport"; "CSVExport": "CSVExport"; "AllSearch": "AllSearch"; "HighCellDensity": "HighCellDensity"; "Selection": "Selection"; "ShowLoadingOnBootstrap": "ShowLoadingOnBootstrap"; "Removal": "Removal"; "RemovalCondition": "RemovalCondition"; "Export": "Export"; "ShiftClick": "ShiftClick"; "CountLabel": "CountLabel"; "HidePaging": "HidePaging"; "HidePagingCount": "HidePagingCount"; "HidePagingButtons": "HidePagingButtons"; "ContextMenu": "ContextMenu"; "ExportFileName": "ExportFileName"; "TableClass": "TableClass"; "ExportFunction": "ExportFunction"; "HasHeaderGroup": "HasHeaderGroup"; "HasSecondaryHeaderGroup": "HasSecondaryHeaderGroup"; "HeaderHidden": "HeaderHidden"; "BodyHidden": "BodyHidden"; "SelectionDisabled": "SelectionDisabled"; "SingleSelection": "SingleSelection"; "RowClassAssigner": "RowClassAssigner"; "OrderByColumn": "OrderByColumn"; "MultipleOrderingDirectives": "MultipleOrderingDirectives"; "HiddenColumns": "HiddenColumns"; "ColumnsOrdering": "ColumnsOrdering"; "SearchView": "SearchView"; "SelectAll": "SelectAll"; "UseArrayModePaging": "UseArrayModePaging"; "DynamicRowColumnsDefinition": "DynamicRowColumnsDefinition"; "DynamicOperations": "DynamicOperations"; "Hierarchy": "Hierarchy"; "ParentKey": "ParentKey"; "OwnKey": "OwnKey"; "StartsExpanded": "StartsExpanded"; "SavePreferences": "SavePreferences"; "PagingStyle": "PagingStyle"; "RowGroupingPagingStyle": "RowGroupingPagingStyle"; "SecondarySource": "SecondarySource"; "TertiarySource": "TertiarySource"; "UseSelectionCache": "UseSelectionCache"; "ShowItemGroupsColumns": "ShowItemGroupsColumns"; "ArraymodeItemsPerPage": "ArraymodeItemsPerPage"; }, { "onOrderChanged": "onOrderChanged"; "onSearchRequest": "onSearchRequest"; "onSelectionChanged": "onSelectionChanged"; "onRemoval": "onRemoval"; "onAbortRemoval": "onAbortRemoval"; "onCornerAction": "onCornerAction"; "onDynamicOperation": "onDynamicOperation"; }, ["bodyRef", "headerRef", "headerGroupRef", "secondaryHeaderGroupRef", "EsTdsDirective", "EsThsDirective"], never>;
|
|
610
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<EsTableComponent, "es-table", never, { "CornerMenuOptions": "CornerMenuOptions"; "ColumnsResizable": "ColumnsResizable"; "ColumnsPinnable": "ColumnsPinnable"; "AutoUpdate": "AutoUpdate"; "UseCustomCells": "UseCustomCells"; "MaxHeight": "MaxHeight"; "ContainerClass": "ContainerClass"; "XLSXExport": "XLSXExport"; "CSVExport": "CSVExport"; "AllSearch": "AllSearch"; "HighCellDensity": "HighCellDensity"; "Selection": "Selection"; "ShowLoadingOnBootstrap": "ShowLoadingOnBootstrap"; "Removal": "Removal"; "RemovalCondition": "RemovalCondition"; "Export": "Export"; "ShiftClick": "ShiftClick"; "CountLabel": "CountLabel"; "HidePaging": "HidePaging"; "HidePagingCount": "HidePagingCount"; "HidePagingButtons": "HidePagingButtons"; "ContextMenu": "ContextMenu"; "ExportFileName": "ExportFileName"; "TableClass": "TableClass"; "ExportFunction": "ExportFunction"; "HasHeaderGroup": "HasHeaderGroup"; "HasSecondaryHeaderGroup": "HasSecondaryHeaderGroup"; "HeaderHidden": "HeaderHidden"; "BodyHidden": "BodyHidden"; "SelectionDisabled": "SelectionDisabled"; "SingleSelection": "SingleSelection"; "RowClassAssigner": "RowClassAssigner"; "OrderByColumn": "OrderByColumn"; "MultipleOrderingDirectives": "MultipleOrderingDirectives"; "HiddenColumns": "HiddenColumns"; "ColumnsOrdering": "ColumnsOrdering"; "SearchView": "SearchView"; "SelectAll": "SelectAll"; "UseArrayModePaging": "UseArrayModePaging"; "DynamicRowColumnsDefinition": "DynamicRowColumnsDefinition"; "DynamicOperations": "DynamicOperations"; "Hierarchy": "Hierarchy"; "ParentKey": "ParentKey"; "OwnKey": "OwnKey"; "StartsExpanded": "StartsExpanded"; "SavePreferences": "SavePreferences"; "PagingStyle": "PagingStyle"; "RowGroupingPagingStyle": "RowGroupingPagingStyle"; "SecondarySource": "SecondarySource"; "TertiarySource": "TertiarySource"; "UseSelectionCache": "UseSelectionCache"; "ShowItemGroupsColumns": "ShowItemGroupsColumns"; "UserEdits": "UserEdits"; "ArraymodeItemsPerPage": "ArraymodeItemsPerPage"; }, { "onOrderChanged": "onOrderChanged"; "onSearchRequest": "onSearchRequest"; "onSelectionChanged": "onSelectionChanged"; "onRemoval": "onRemoval"; "onAbortRemoval": "onAbortRemoval"; "onCornerAction": "onCornerAction"; "onDynamicOperation": "onDynamicOperation"; }, ["bodyRef", "headerRef", "headerGroupRef", "secondaryHeaderGroupRef", "EsTdsDirective", "EsThsDirective"], never>;
|
|
579
611
|
}
|
|
@@ -1,12 +1,13 @@
|
|
|
1
|
+
import { CdkDrag, CdkDragDrop } from "@angular/cdk/drag-drop";
|
|
1
2
|
import { UtilityService } from "@esfaenza/extensions";
|
|
2
3
|
import { PreferencesService } from "@esfaenza/preferences";
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
7
|
-
import {
|
|
8
|
-
import { AppSearch
|
|
9
|
-
import {
|
|
4
|
+
import { EsTableComponent } from "../../components/es-table/es_table.component";
|
|
5
|
+
import { EsTdDirective } from "../../directives/es_td.directive";
|
|
6
|
+
import { EsThDirective } from "../../directives/es_th.directive";
|
|
7
|
+
import { UtilitiesHandler } from "./UtilitiesHandler";
|
|
8
|
+
import { RowGroupingHandler } from "./RowGroupingHandler";
|
|
9
|
+
import { AppSearch } from "../../domain/externals/appsearch/AppSearch";
|
|
10
|
+
import { EsTableColumn } from "../../domain/internals/EsTableColumn";
|
|
10
11
|
/** Classe che gestisce tutte le informaizoni relative alle colonne: visibilità, posizione, stato di pin/unpin, ecc ecc... */
|
|
11
12
|
export declare class ColumnMetadataHandler {
|
|
12
13
|
private est;
|
|
@@ -31,10 +32,14 @@ export declare class ColumnMetadataHandler {
|
|
|
31
32
|
* @param {EsThDirective[]} ths Colonne della tabella
|
|
32
33
|
*/
|
|
33
34
|
reviewColumnsList(ths: EsThDirective[]): void;
|
|
35
|
+
expandMultiThsAndTds(ths: EsThDirective[], tds: EsTdDirective[], items: any[]): {
|
|
36
|
+
expThs: EsThDirective[];
|
|
37
|
+
expTds: EsTdDirective[];
|
|
38
|
+
};
|
|
34
39
|
/**
|
|
35
40
|
* Prende i th e i td in modalità diretive e li ordina in base a se ci sono colonne fixed o meno
|
|
36
41
|
*/
|
|
37
|
-
moveFixedColumnsAtTheBeginning(ths: EsThDirective[], tds:
|
|
42
|
+
moveFixedColumnsAtTheBeginning(ths: EsThDirective[], tds: EsTdDirective[]): void;
|
|
38
43
|
/** In base alla configurazione delle colonne calcola le dimenioni delle colonne pinnate */
|
|
39
44
|
evaluatePinnedColumnsWidth(): void;
|
|
40
45
|
/**
|
|
@@ -45,9 +50,9 @@ export declare class ColumnMetadataHandler {
|
|
|
45
50
|
*/
|
|
46
51
|
alignColumnsIfLoadedView(view: AppSearch<any>): void;
|
|
47
52
|
/**
|
|
48
|
-
* In base alla visibilità registrata nelle **ColumnsList** questo metodo si occupa di prendere tutti i **
|
|
53
|
+
* In base alla visibilità registrata nelle **ColumnsList** questo metodo si occupa di prendere tutti i **EsThDirective** ed **EsTdDirective** relativi e nasonderli/mostrarli
|
|
49
54
|
*
|
|
50
|
-
* Costo: 1 scan ColumnsList, 1 scan
|
|
55
|
+
* Costo: 1 scan ColumnsList, 1 scan EsThDirectives, 1 scan EsTdDirectives
|
|
51
56
|
*
|
|
52
57
|
* @param {EsThDirective[]} ths Header della tabella
|
|
53
58
|
* @param {EsTdDirective[]} tds Celle della tabella
|
|
@@ -84,7 +89,9 @@ export declare class ColumnMetadataHandler {
|
|
|
84
89
|
leafs: EsThDirective[];
|
|
85
90
|
groupingLevel: number;
|
|
86
91
|
parentsCache: any;
|
|
87
|
-
thsCache:
|
|
92
|
+
thsCache: {
|
|
93
|
+
[index: string]: EsThDirective;
|
|
94
|
+
};
|
|
88
95
|
}): void;
|
|
89
96
|
/**
|
|
90
97
|
* Calcola il numero di salti da un header foglia all'ultimo parent della catena
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { EsTableComponent } from "
|
|
2
|
-
import { GenericItem } from "
|
|
1
|
+
import { EsTableComponent } from "../../components/es-table/es_table.component";
|
|
2
|
+
import { GenericItem } from "../../domain/externals/appsearch/GenericItem";
|
|
3
3
|
/** Classe contenente le gestioni particolari della modalità dinamica dell'es-table */
|
|
4
4
|
export declare class DynamicModeHandler {
|
|
5
5
|
private est;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { DateService, ExportService, MessageService, UtilityService } from "@esfaenza/extensions";
|
|
2
|
-
import { EsTableComponent } from "
|
|
2
|
+
import { EsTableComponent } from "../../components/es-table/es_table.component";
|
|
3
3
|
/** Classe contenente la gestione delle importazioni */
|
|
4
4
|
export declare class ExportHandler {
|
|
5
5
|
private est;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { EsTableComponent } from "
|
|
1
|
+
import { EsTableComponent } from "../../components/es-table/es_table.component";
|
|
2
2
|
/** Classe contenente la gestione della modalità gerarchica */
|
|
3
3
|
export declare class HierarchyModeHandler {
|
|
4
4
|
private est;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { EsTableComponent } from "
|
|
1
|
+
import { EsTableComponent } from "../../components/es-table/es_table.component";
|
|
2
2
|
import { UtilitiesHandler } from "./UtilitiesHandler";
|
|
3
3
|
/** Classe che si occupa della gestione del recupero degli oggetti, paginazione e tutto ciò in cui gli elementi caricati vengono manipolati direttamente */
|
|
4
4
|
export declare class ItemsHandler {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { UtilitiesHandler } from "./UtilitiesHandler";
|
|
2
|
-
import { EsTableComponent } from "
|
|
3
|
-
import { ReportColumn } from "
|
|
2
|
+
import { EsTableComponent } from "../../components/es-table/es_table.component";
|
|
3
|
+
import { ReportColumn } from "../../domain/externals/report/ReportColumn";
|
|
4
4
|
/** Classe che gestisce la modalità Report dell'es-table utilizzata nel Metering */
|
|
5
5
|
export declare class ReportModeHandler {
|
|
6
6
|
private est;
|
|
@@ -1,7 +1,12 @@
|
|
|
1
1
|
import { DateService } from "@esfaenza/extensions";
|
|
2
|
-
import { EsThDirective } from "
|
|
3
|
-
import { EsTableComponent } from "
|
|
4
|
-
import { AppOrdering
|
|
2
|
+
import { EsThDirective } from "../../directives/es_th.directive";
|
|
3
|
+
import { EsTableComponent } from "../../components/es-table/es_table.component";
|
|
4
|
+
import { AppOrdering } from "../../domain/externals/appsearch/AppOrdering";
|
|
5
|
+
import { AppSearch } from "../../domain/externals/appsearch/AppSearch";
|
|
6
|
+
import { Group } from "../../domain/externals/appsearch/Group";
|
|
7
|
+
import { GroupOrAggregation } from "../../domain/externals/appsearch/GroupOrAggregation";
|
|
8
|
+
import { GroupPager } from "../../domain/internals/GroupPager";
|
|
9
|
+
import { GroupRouteFragment } from "../../domain/internals/GroupRouteFragment";
|
|
5
10
|
import { UtilitiesHandler } from "./UtilitiesHandler";
|
|
6
11
|
/** Classe che gestisce la modalità Row Grouping dell'es-table */
|
|
7
12
|
export declare class RowGroupingHandler {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { ItemsSelection } from "
|
|
2
|
-
import { EsTableComponent } from "
|
|
3
|
-
import { RowGroupingHandler } from "
|
|
1
|
+
import { ItemsSelection } from "../../domain/externals/appsearch/ItemsSelection";
|
|
2
|
+
import { EsTableComponent } from "../../components/es-table/es_table.component";
|
|
3
|
+
import { RowGroupingHandler } from "./RowGroupingHandler";
|
|
4
4
|
/** Classe che gestisce le selezioni degli oggetti */
|
|
5
5
|
export declare class SelectionHandler {
|
|
6
6
|
private est;
|
|
File without changes
|
|
@@ -5,6 +5,8 @@ export declare class EsTdDirective {
|
|
|
5
5
|
Template: TemplateRef<any>;
|
|
6
6
|
/** Variabile interna che indica il fatto che questo componente è una direttiva. Serve per disambigualrlo dell'EsTdComponent */
|
|
7
7
|
_directive: boolean;
|
|
8
|
+
/** Variabile interna che indica il fatto che questo template si riferisce a una proprietà multipla */
|
|
9
|
+
_multi: boolean;
|
|
8
10
|
/** Indica se la cella è visibile o meno di default */
|
|
9
11
|
tdVisible: boolean;
|
|
10
12
|
/** Id della colonna, fa riferimento al **th** padre */
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { TemplateRef } from "@angular/core";
|
|
2
|
-
import { ThAggregation } from "../domain";
|
|
2
|
+
import { ThAggregation } from "../domain/internals/ThAggregation";
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
/** Direttiva per la dichiarazione snella di un EsTh da emettere come header */
|
|
5
5
|
export declare class EsThDirective {
|
|
@@ -7,15 +7,24 @@ export declare class EsThDirective {
|
|
|
7
7
|
/** Variabile interna all'interno della quale viene raccolta la cache delle aggregazioni specificate in thAggregation */
|
|
8
8
|
_thAggregations: ThAggregation[];
|
|
9
9
|
/** Variabile interna contenente in maniera ordinata i template dei padri */
|
|
10
|
-
_thParents:
|
|
10
|
+
_thParents: {
|
|
11
|
+
tmpl?: TemplateRef<any>;
|
|
12
|
+
content?: string;
|
|
13
|
+
}[];
|
|
11
14
|
/** Variabile interna che indica il fatto che questo componente è una direttiva. Serve per disambigualrlo dell'EsThComponent */
|
|
12
15
|
_directive: boolean;
|
|
13
16
|
/** Variabile interna impostata dall'**EsTable**, per controllare che ci sia almeno un TD che utilizzi quest'header */
|
|
14
17
|
_referenced: boolean;
|
|
18
|
+
/** Variabile interna che indica il fatto che questo template si riferisce a una proprietà multipla */
|
|
19
|
+
_multi: boolean;
|
|
20
|
+
/** Variabile interna che indica il contenuto dell'header in caso di multi */
|
|
21
|
+
_multi_content: string;
|
|
15
22
|
/** Id della colonna, dev'essere lo stesso per tutti i **td** relativi */
|
|
16
23
|
th: string;
|
|
17
24
|
/** Indica se la colonna è pinnata o no */
|
|
18
25
|
thPinned: boolean;
|
|
26
|
+
/** Indica se la colonna è pinnabile o no */
|
|
27
|
+
thPinnable: boolean;
|
|
19
28
|
/** Indica le dimensioni che deve avere questa colonna quando viene pinnata, senza questo tutte le colonne mi collasserebbero l'una sull'altra */
|
|
20
29
|
thPinnedWidth: number;
|
|
21
30
|
/** Indicazione sulla visibilità della colonna */
|
|
@@ -44,10 +53,15 @@ export declare class EsThDirective {
|
|
|
44
53
|
thGroup: boolean;
|
|
45
54
|
/** Indica che bisogna fare una aggregazione su questa colonna, a fronte di almeno un altra con un raggruppamento */
|
|
46
55
|
thAggregation: string;
|
|
47
|
-
/**
|
|
48
|
-
|
|
49
|
-
|
|
56
|
+
/** Impostazioni per la modifica inline di questo campo: la **Property** di riferimento e il **Type** (a scelta fra quelli supportati dal form-adaptive) */
|
|
57
|
+
thUserEdits: {
|
|
58
|
+
Property: string;
|
|
59
|
+
Type: 'string' | 'float' | 'date' | 'number' | 'int' | 'boolean' | 'enum' | 'autocomplete' | 'datetime' | 'time' | 'file' | 'currency';
|
|
60
|
+
};
|
|
61
|
+
/** Indica che questo header deve essere emesso una volta per ogni valore presente nella lista di **EsTableMultiValue** alla proprietà **th** dell'oggetto corrente */
|
|
62
|
+
thMulti: boolean;
|
|
63
|
+
/** @ignore */
|
|
50
64
|
constructor(Template: TemplateRef<any>);
|
|
51
65
|
static ɵfac: i0.ɵɵFactoryDeclaration<EsThDirective, never>;
|
|
52
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<EsThDirective, "[th]", never, { "th": "th"; "thPinned": "thPinned"; "thPinnedWidth": "thPinnedWidth"; "thVisible": "thVisible"; "thFixed": "thFixed"; "thParent": "thParent"; "thOrder": "thOrder"; "thOrderable": "thOrderable"; "thWrap": "thWrap"; "thResizable": "thResizable"; "thClass": "thClass"; "thGroupClass": "thGroupClass"; "thIf": "thIf"; "thEmpty": "thEmpty"; "thGroup": "thGroup"; "thAggregation": "thAggregation"; }, {}, never>;
|
|
66
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<EsThDirective, "[th]", never, { "th": "th"; "thPinned": "thPinned"; "thPinnable": "thPinnable"; "thPinnedWidth": "thPinnedWidth"; "thVisible": "thVisible"; "thFixed": "thFixed"; "thParent": "thParent"; "thOrder": "thOrder"; "thOrderable": "thOrderable"; "thWrap": "thWrap"; "thResizable": "thResizable"; "thClass": "thClass"; "thGroupClass": "thGroupClass"; "thIf": "thIf"; "thEmpty": "thEmpty"; "thGroup": "thGroup"; "thAggregation": "thAggregation"; "thUserEdits": "thUserEdits"; "thMulti": "thMulti"; }, {}, never>;
|
|
53
67
|
}
|
|
@@ -16,4 +16,5 @@ export declare class EsTableDefaultable {
|
|
|
16
16
|
/** @ignore Vedi **EsTableComponent** */ UseSelectionCache?: boolean;
|
|
17
17
|
/** @ignore Vedi **EsTableComponent** */ ShowItemGroupsColumns?: boolean;
|
|
18
18
|
/** @ignore Vedi **EsTableComponent** */ ArraymodeItemsPerPage?: number;
|
|
19
|
+
/** @ignore Vedi **EsTableComponent** */ ColumnsPinnable?: boolean;
|
|
19
20
|
}
|
|
File without changes
|
package/lib/domain/externals/{classes/EsTableColumnsDefinition.d.ts → EsTableColumnsDefinition.d.ts}
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
/** Classe che definisce un multi-elemento, cioè una proprietà particolare di un oggetto da visualizzare in es-table che genera dinamicamente gruppi di Header e valori sottostanti */
|
|
2
|
+
export declare class EsTableMultiValue {
|
|
3
|
+
value: any;
|
|
4
|
+
header: string;
|
|
5
|
+
header_group: string;
|
|
6
|
+
/**
|
|
7
|
+
* Costruttore
|
|
8
|
+
*
|
|
9
|
+
* @param {string} value Valore di questo elemento
|
|
10
|
+
* @param {string} header Nome di questo header
|
|
11
|
+
* @param {string} header_group Gruppo dell'header, in caso di multipli gruppi innestati usare la sintassi "G1 > G2 > G3" ecc...
|
|
12
|
+
* @param {boolean} exports Indica se questo header con questo valore dev'essere esportato
|
|
13
|
+
* @param {string} export_format Qualora **export** fosse **true** indica il formato per l'esportazione
|
|
14
|
+
*/
|
|
15
|
+
constructor(value: any, header: string, header_group: string, exports?: boolean, export_format?: string);
|
|
16
|
+
/** Indica se questo header con questo valore dev'essere esportato */
|
|
17
|
+
exports?: boolean;
|
|
18
|
+
/** Qualora **export** fosse **true** indica il formato per l'esportazione */
|
|
19
|
+
export_format?: string;
|
|
20
|
+
/** Generato automaticamente da **header_group** se passato da costruttore, altrimenti generato da es-table. Contiene la lista di gerarchie degli header groups (cioè **header_group** splittato su ">" e trimmato) */
|
|
21
|
+
_headersHierarchy?: string[];
|
|
22
|
+
}
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
@@ -1,4 +1,6 @@
|
|
|
1
|
-
import { ReportParam
|
|
1
|
+
import { ReportParam } from "./ReportParam";
|
|
2
|
+
import { ReportOrder } from "./ReportOrder";
|
|
3
|
+
import { ReportResult } from "./ReportResult";
|
|
2
4
|
/** Definizione generica di un report che può o no disporre di paginazione/export e la cui richiesta è basata su uno o più parametri */
|
|
3
5
|
export declare class ReportDefinition {
|
|
4
6
|
/** Codice report */
|
|
File without changes
|
|
File without changes
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import { ReportColumn
|
|
1
|
+
import { ReportColumn } from "./ReportColumn";
|
|
2
|
+
import { ReportRow } from "./ReportRow";
|
|
2
3
|
/** Classe che rappresenta una lista di oggetti generati da un report */
|
|
3
4
|
export declare class ReportResult {
|
|
4
5
|
/** Numero di oggetti generati */
|
|
File without changes
|
|
File without changes
|
|
@@ -6,9 +6,15 @@ export declare class EsTableColumn {
|
|
|
6
6
|
visible?: boolean;
|
|
7
7
|
fixed?: boolean;
|
|
8
8
|
pinned?: boolean;
|
|
9
|
+
pinnable?: boolean;
|
|
9
10
|
pinnedWidth?: number;
|
|
10
11
|
template?: TemplateRef<any>;
|
|
11
|
-
parentTemplates?:
|
|
12
|
+
parentTemplates?: {
|
|
13
|
+
tmpl?: TemplateRef<any>;
|
|
14
|
+
content?: string;
|
|
15
|
+
}[];
|
|
16
|
+
multi?: boolean;
|
|
17
|
+
multiContent?: string;
|
|
12
18
|
/**
|
|
13
19
|
* Costruttore
|
|
14
20
|
*
|
|
@@ -19,9 +25,14 @@ export declare class EsTableColumn {
|
|
|
19
25
|
* @param {boolean} pinned Indica se è una colonna pinnata
|
|
20
26
|
* @param {number} pinnedWidth Indica la dimensione da assegnare a questa colonna quando è pinnata
|
|
21
27
|
* @param {TemplateRef<any>} template Indica il template da usare per mostrare il testo dell'Header
|
|
22
|
-
* @param {TemplateRef<any
|
|
28
|
+
* @param {{ tmpl: TemplateRef<any>, content: string }[]} parentTemplates Indica la lista di template padri collegata a questo header, rappresentati come Template o come stringa qualora fosse generato automaticamente (caso **Multi**)
|
|
29
|
+
* @param {boolean} multi Indica che la colonna deriva da una direttiva **Multi**
|
|
30
|
+
* @param {string} multiContent Indica il contenuto della direttiva **Multi** per questa colonna
|
|
23
31
|
*/
|
|
24
|
-
constructor(id: string, description: string, visible?: boolean, fixed?: boolean, pinned?: boolean, pinnedWidth?: number, template?: TemplateRef<any>, parentTemplates?:
|
|
32
|
+
constructor(id: string, description: string, visible?: boolean, fixed?: boolean, pinned?: boolean, pinnable?: boolean, pinnedWidth?: number, template?: TemplateRef<any>, parentTemplates?: {
|
|
33
|
+
tmpl?: TemplateRef<any>;
|
|
34
|
+
content?: string;
|
|
35
|
+
}[], multi?: boolean, multiContent?: string);
|
|
25
36
|
/** Indice precedente in cui si trovava questa colonna in modo da poterla spinnare in maniera super sexy */
|
|
26
37
|
prev_index: number;
|
|
27
38
|
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import { AppSearch
|
|
1
|
+
import { AppSearch } from "../externals/appsearch/AppSearch";
|
|
2
|
+
import { GroupRouteFragment } from "./GroupRouteFragment";
|
|
2
3
|
/** Classe che rappresenta un separatore da inserire fra gli oggetti dell'es-table per le operazioni di paginazione dei raggruppamenti per riga */
|
|
3
4
|
export declare class GroupPager {
|
|
4
5
|
_grouplevel: number;
|
|
File without changes
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { SafeHtml } from "@angular/platform-browser";
|
|
2
|
+
export interface TdElement {
|
|
3
|
+
/** Id della cella, dev'essere lo stesso della colonna **EsTh** relativa */
|
|
4
|
+
ID: string;
|
|
5
|
+
/** Indica se è una cella interna (rigenerata programmaticamente) o no */
|
|
6
|
+
Internal?: boolean;
|
|
7
|
+
/** RouterLink qualora il click su questa cella debba navigare da qualche parte */
|
|
8
|
+
RouterLink?: any;
|
|
9
|
+
/** Valore da mostrare all'interno della cella. Se omesso verrà proiettato il contenuto dal template in cui è stata usata */
|
|
10
|
+
Display?: string;
|
|
11
|
+
/** Template Angular da istanziare per questo TD */
|
|
12
|
+
Template?: any;
|
|
13
|
+
/** Classi da applicare alla cella */
|
|
14
|
+
Class?: string;
|
|
15
|
+
/** Contenuto da mostrare proiettato dal componente padre */
|
|
16
|
+
Content?: SafeHtml;
|
|
17
|
+
/** Contesto dell'oggetto a cui si riferisce il dato visualizzato. Contiene l'hash dell'oggetto in questione */
|
|
18
|
+
Context?: string;
|
|
19
|
+
/** Indica se aggiungere un bordino a sinistra della cella */
|
|
20
|
+
LeftBorder?: boolean;
|
|
21
|
+
/** Indica se aggiungere un bordino a destra della cella */
|
|
22
|
+
RightBorder?: boolean;
|
|
23
|
+
/** Indica se è una cella pinnata */
|
|
24
|
+
Pinned?: boolean;
|
|
25
|
+
/** Indica la larghezza della cella qualora fosse pinnata */
|
|
26
|
+
PinnedWidth?: number;
|
|
27
|
+
/** Indica se la cella è l'header di un gruppo */
|
|
28
|
+
GroupHeader?: boolean;
|
|
29
|
+
/** Indica se la cella è un'aggregazione di un gruppo */
|
|
30
|
+
GroupAggregation?: boolean;
|
|
31
|
+
/** Indica se la cella è visibile, ereditata dalla controparte es_th */
|
|
32
|
+
Visible?: boolean;
|
|
33
|
+
/** Indica se la cella deve wrappare o no il contenuto */
|
|
34
|
+
Wraps?: boolean;
|
|
35
|
+
/** Impostazioni per la modifica inline di questo campo: la **Property** di riferimento e il **Type** (a scelta fra quelli supportati dal form-adaptive) */
|
|
36
|
+
UserEdits?: {
|
|
37
|
+
Property: string;
|
|
38
|
+
Type: string;
|
|
39
|
+
};
|
|
40
|
+
/** 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
|
+
Multi?: true;
|
|
42
|
+
}
|
|
File without changes
|
|
File without changes
|
package/lib/es-table.module.d.ts
CHANGED
|
@@ -18,9 +18,10 @@ import * as i14 from "@esfaenza/ngx-contextmenu";
|
|
|
18
18
|
import * as i15 from "@angular/material/select";
|
|
19
19
|
import * as i16 from "@angular/material/input";
|
|
20
20
|
import * as i17 from "@angular/cdk/drag-drop";
|
|
21
|
+
import * as i18 from "@esfaenza/forms-and-validations";
|
|
21
22
|
export declare class EsTableModule {
|
|
22
23
|
static forRoot(config?: EsTableModuleConfig): ModuleWithProviders<EsTableModule>;
|
|
23
24
|
static ɵfac: i0.ɵɵFactoryDeclaration<EsTableModule, never>;
|
|
24
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<EsTableModule, [typeof i1.EsTh, typeof i2.EsTd, typeof i3.EsTableComponent, typeof i4.EsTdDirective, typeof i5.EsThDirective, typeof i6.TablePagerComponent], [typeof i7.CommonModule, typeof i8.FormsModule, typeof i9.RouterModule, typeof i10.LocalizationModule, typeof i11.ModalModule, typeof i12.BsDropdownModule, typeof i13.CsvModule, typeof i14.ContextMenuModule, typeof i15.MatSelectModule, typeof i16.MatInputModule, typeof i17.DragDropModule], [typeof i3.EsTableComponent, typeof i4.EsTdDirective, typeof i5.EsThDirective, typeof i6.TablePagerComponent]>;
|
|
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 i7.CommonModule, typeof i8.FormsModule, typeof i9.RouterModule, typeof i10.LocalizationModule, typeof i11.ModalModule, typeof i12.BsDropdownModule, typeof i13.CsvModule, typeof i14.ContextMenuModule, typeof i15.MatSelectModule, typeof i16.MatInputModule, typeof i17.DragDropModule, typeof i18.FormsAndValidationsModule], [typeof i3.EsTableComponent, typeof i4.EsTdDirective, typeof i5.EsThDirective, typeof i6.TablePagerComponent]>;
|
|
25
26
|
static ɵinj: i0.ɵɵInjectorDeclaration<EsTableModule>;
|
|
26
27
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@esfaenza/es-table",
|
|
3
|
-
"version": "13.1.
|
|
3
|
+
"version": "13.1.15",
|
|
4
4
|
"dependencies": {
|
|
5
5
|
"tslib": "^2.0.0"
|
|
6
6
|
},
|
|
@@ -10,6 +10,7 @@
|
|
|
10
10
|
"@angular/material": "~13.1.1",
|
|
11
11
|
"@esfaenza/extensions": "^13.1.3",
|
|
12
12
|
"@esfaenza/localizations": "^13.1.3",
|
|
13
|
+
"@esfaenza/forms-and-validations": "^13.1.3",
|
|
13
14
|
"@ctrl/ngx-csv": "5.0.0",
|
|
14
15
|
"@esfaenza/ngx-contextmenu": "^13.1.3",
|
|
15
16
|
"@esfaenza/preferences": "^13.1.6",
|
package/public-api.d.ts
CHANGED
|
@@ -5,4 +5,21 @@ export * from './lib/directives/es_th.directive';
|
|
|
5
5
|
export * from './lib/domain/configuration/EsTableModuleConfig';
|
|
6
6
|
export * from './lib/domain/configuration/EsTableDefaultable';
|
|
7
7
|
export * from './lib/es-table.module';
|
|
8
|
-
export * from './lib/domain/externals';
|
|
8
|
+
export * from './lib/domain/externals/CornerMenuOption';
|
|
9
|
+
export * from './lib/domain/externals/EsTableColumnsDefinition';
|
|
10
|
+
export * from './lib/domain/externals/EsTableOperationDefinition';
|
|
11
|
+
export * from './lib/domain/externals/appsearch/AppOrdering';
|
|
12
|
+
export * from './lib/domain/externals/appsearch/AppSearch';
|
|
13
|
+
export * from './lib/domain/externals/appsearch/GenericItem';
|
|
14
|
+
export * from './lib/domain/externals/appsearch/Group';
|
|
15
|
+
export * from './lib/domain/externals/appsearch/GroupAggregation';
|
|
16
|
+
export * from './lib/domain/externals/appsearch/GroupFilter';
|
|
17
|
+
export * from './lib/domain/externals/appsearch/GroupOrAggregation';
|
|
18
|
+
export * from './lib/domain/externals/appsearch/ItemsSelection';
|
|
19
|
+
export * from './lib/domain/externals/appsearch/EsTableMultiValue';
|
|
20
|
+
export * from './lib/domain/externals/report/ReportColumn';
|
|
21
|
+
export * from './lib/domain/externals/report/ReportDefinition';
|
|
22
|
+
export * from './lib/domain/externals/report/ReportOrder';
|
|
23
|
+
export * from './lib/domain/externals/report/ReportParam';
|
|
24
|
+
export * from './lib/domain/externals/report/ReportResult';
|
|
25
|
+
export * from './lib/domain/externals/report/ReportRow';
|