@esfaenza/es-table 19.2.47 → 20.3.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/fesm2022/esfaenza-es-table.mjs +208 -208
- package/fesm2022/esfaenza-es-table.mjs.map +1 -1
- package/index.d.ts +2581 -3
- package/package.json +4 -4
- package/lib/components/es-table/es_table.component.d.ts +0 -774
- package/lib/components/es-table/es_table.component.loc.d.ts +0 -10
- package/lib/components/es-td/es_td.component.d.ts +0 -26
- package/lib/components/es-th/es_th.component.d.ts +0 -94
- package/lib/components/pager/table_pager.component.d.ts +0 -57
- package/lib/components/pager/table_pager.component.loc.d.ts +0 -10
- package/lib/components/pipes/est-format.pipe.d.ts +0 -10
- package/lib/components/pipes/est-lookup.pipe.d.ts +0 -13
- package/lib/components/pipes/est-propinsensitive.pipe.d.ts +0 -7
- package/lib/components/pipes/est-renderer.pipe.d.ts +0 -15
- package/lib/components/pipes/est-routerlink.pipe.d.ts +0 -20
- package/lib/components/pipes/est_editor.pipe.d.ts +0 -15
- package/lib/core/CopyPasteDetector.d.ts +0 -15
- package/lib/core/Logger.d.ts +0 -10
- package/lib/core/handlers/ColumnMetadataHandler.d.ts +0 -188
- package/lib/core/handlers/DynamicModeHandler.d.ts +0 -22
- package/lib/core/handlers/ExportHandler.d.ts +0 -19
- package/lib/core/handlers/HierarchyModeHandler.d.ts +0 -41
- package/lib/core/handlers/ItemsHandler.d.ts +0 -35
- package/lib/core/handlers/ReportModeHandler.d.ts +0 -27
- package/lib/core/handlers/RowGroupingHandler.d.ts +0 -118
- package/lib/core/handlers/SelectionHandler.d.ts +0 -230
- package/lib/core/handlers/UtilitiesHandler.d.ts +0 -57
- package/lib/directives/es_td.directive.d.ts +0 -42
- package/lib/directives/es_td_editor.directive.d.ts +0 -14
- package/lib/directives/es_th.directive.d.ts +0 -106
- package/lib/directives/es_th_td_provider.directive.d.ts +0 -15
- package/lib/domain/configuration/EsTableDefaultable.d.ts +0 -21
- package/lib/domain/configuration/EsTableModuleConfig.d.ts +0 -10
- package/lib/domain/externals/CornerMenuOption.d.ts +0 -7
- package/lib/domain/externals/EsTableColumnsDefinition.d.ts +0 -55
- package/lib/domain/externals/EsTableModelChange.d.ts +0 -17
- package/lib/domain/externals/EsTableOperationDefinition.d.ts +0 -20
- package/lib/domain/externals/ItemPropEditableReference.d.ts +0 -34
- package/lib/domain/externals/appsearch/AppOrdering.d.ts +0 -14
- package/lib/domain/externals/appsearch/AppSearch.d.ts +0 -100
- package/lib/domain/externals/appsearch/EsTableMultiValue.d.ts +0 -22
- package/lib/domain/externals/appsearch/GenericItem.d.ts +0 -13
- package/lib/domain/externals/appsearch/Group.d.ts +0 -17
- package/lib/domain/externals/appsearch/GroupAggregation.d.ts +0 -14
- package/lib/domain/externals/appsearch/GroupFilter.d.ts +0 -12
- package/lib/domain/externals/appsearch/GroupOrAggregation.d.ts +0 -14
- package/lib/domain/externals/appsearch/ItemsSelection.d.ts +0 -22
- package/lib/domain/externals/report/ReportColumn.d.ts +0 -19
- package/lib/domain/externals/report/ReportParam.d.ts +0 -40
- package/lib/domain/externals/report/ReportRow.d.ts +0 -9
- package/lib/domain/internals/CacheTriptic.d.ts +0 -14
- package/lib/domain/internals/EsTableColumn.d.ts +0 -41
- package/lib/domain/internals/GroupPager.d.ts +0 -26
- package/lib/domain/internals/GroupRouteFragment.d.ts +0 -15
- package/lib/domain/internals/PagerInfos.d.ts +0 -13
- package/lib/domain/internals/TdElement.d.ts +0 -59
- package/lib/domain/internals/ThAggregation.d.ts +0 -14
- package/lib/domain/internals/ThElement.d.ts +0 -24
- package/lib/domain/internals/ThGroup.d.ts +0 -10
- package/lib/domain/types.d.ts +0 -2
- package/lib/es-table.module.d.ts +0 -35
- package/lib/tokens.d.ts +0 -8
- package/public-api.d.ts +0 -28
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
/** Classe rappresentante una singola aggregazione effettuata su una colonna */
|
|
2
|
-
export declare class ThAggregation {
|
|
3
|
-
func: 'min' | 'max' | 'sum';
|
|
4
|
-
format: string;
|
|
5
|
-
match: string;
|
|
6
|
-
/**
|
|
7
|
-
* Costruttore
|
|
8
|
-
*
|
|
9
|
-
* @param {'min' | 'max' | 'sum'} func Funzione di aggergazione, può essere **min**, **max** o **sum**
|
|
10
|
-
* @param {string} format Formato richiesto per il valore dell'aggregazione
|
|
11
|
-
* @param {string} match Match intero del pezzo di testo da cui si è estrapolata l'aggregazione, da rimpiazzare col valore calcolato
|
|
12
|
-
*/
|
|
13
|
-
constructor(func: 'min' | 'max' | 'sum', format: string, match: string);
|
|
14
|
-
}
|
|
@@ -1,24 +0,0 @@
|
|
|
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
|
-
*/
|
|
7
|
-
export interface ThElement {
|
|
8
|
-
Pinned: boolean;
|
|
9
|
-
Fixed: boolean;
|
|
10
|
-
PinnedWidth: number;
|
|
11
|
-
ID: string;
|
|
12
|
-
Visible: boolean;
|
|
13
|
-
Class: string;
|
|
14
|
-
Content: string;
|
|
15
|
-
Order: string;
|
|
16
|
-
Orderable: boolean;
|
|
17
|
-
Template: TemplateRef<any>;
|
|
18
|
-
Wrap: boolean;
|
|
19
|
-
LeftBorder: boolean;
|
|
20
|
-
RightBorder: boolean;
|
|
21
|
-
Multi: boolean;
|
|
22
|
-
MultiContent: string;
|
|
23
|
-
Alignment: string;
|
|
24
|
-
}
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import { TemplateRef } from "@angular/core";
|
|
2
|
-
/** Interfaccia che indica un Header rappresentanto un gruppo */
|
|
3
|
-
export interface ThGroup {
|
|
4
|
-
/** Codice autogenerato essenzialmente per gli ngFor - trackBy */
|
|
5
|
-
ID: string;
|
|
6
|
-
/** Span di questo gruppo */
|
|
7
|
-
Span: number;
|
|
8
|
-
/** Template da visualizzare dentro al gruppo */
|
|
9
|
-
Template: TemplateRef<any>;
|
|
10
|
-
}
|
package/lib/domain/types.d.ts
DELETED
package/lib/es-table.module.d.ts
DELETED
|
@@ -1,35 +0,0 @@
|
|
|
1
|
-
import { ModuleWithProviders } from '@angular/core';
|
|
2
|
-
import { EsTableModuleConfig } from './domain/configuration/EsTableModuleConfig';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
import * as i1 from "./directives/es_td.directive";
|
|
5
|
-
import * as i2 from "./directives/es_th.directive";
|
|
6
|
-
import * as i3 from "./directives/es_td_editor.directive";
|
|
7
|
-
import * as i4 from "./components/es-table/es_table.component";
|
|
8
|
-
import * as i5 from "./components/pager/table_pager.component";
|
|
9
|
-
import * as i6 from "./directives/es_th_td_provider.directive";
|
|
10
|
-
import * as i7 from "./components/es-th/es_th.component";
|
|
11
|
-
import * as i8 from "./components/es-td/es_td.component";
|
|
12
|
-
import * as i9 from "./components/pipes/est-format.pipe";
|
|
13
|
-
import * as i10 from "./components/pipes/est-lookup.pipe";
|
|
14
|
-
import * as i11 from "./components/pipes/est-routerlink.pipe";
|
|
15
|
-
import * as i12 from "./components/pipes/est-renderer.pipe";
|
|
16
|
-
import * as i13 from "./components/pipes/est_editor.pipe";
|
|
17
|
-
import * as i14 from "./components/pipes/est-propinsensitive.pipe";
|
|
18
|
-
import * as i15 from "@angular/common";
|
|
19
|
-
import * as i16 from "@angular/forms";
|
|
20
|
-
import * as i17 from "@angular/router";
|
|
21
|
-
import * as i18 from "@esfaenza/localizations";
|
|
22
|
-
import * as i19 from "ngx-bootstrap/modal";
|
|
23
|
-
import * as i20 from "ngx-bootstrap/dropdown";
|
|
24
|
-
import * as i21 from "@esfaenza/ngx-contextmenu";
|
|
25
|
-
import * as i22 from "@angular/cdk/drag-drop";
|
|
26
|
-
import * as i23 from "@esfaenza/forms-and-validations";
|
|
27
|
-
import * as i24 from "primeng/tooltip";
|
|
28
|
-
import * as i25 from "@esfaenza/access-control";
|
|
29
|
-
import * as i26 from "primeng/select";
|
|
30
|
-
export declare class EsTableModule {
|
|
31
|
-
static forRoot(config?: EsTableModuleConfig): ModuleWithProviders<EsTableModule>;
|
|
32
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<EsTableModule, never>;
|
|
33
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<EsTableModule, [typeof i1.EsTdDirective, typeof i2.EsThDirective, typeof i3.EsTdEditorDirective, typeof i4.EsTableComponent, typeof i5.EsTablePagerComponent, typeof i6.ThTdProvider, typeof i7.EsTh, typeof i8.EsTd, typeof i9.EstFormatPipe, typeof i10.EstLookupPipe, typeof i11.EstRouterLinkPipe, typeof i12.EstRendererPipe, typeof i13.EstEditorPipe, typeof i14.EstPropInsensitivePipe], [typeof i15.CommonModule, typeof i16.FormsModule, typeof i17.RouterModule, typeof i18.LocalizationModule, typeof i19.ModalModule, typeof i20.BsDropdownModule, typeof i21.ContextMenuModule, typeof i22.DragDropModule, typeof i23.FormsAndValidationsModule, typeof i24.TooltipModule, typeof i25.AccessControlModule, typeof i26.SelectModule], [typeof i1.EsTdDirective, typeof i2.EsThDirective, typeof i3.EsTdEditorDirective, typeof i4.EsTableComponent, typeof i5.EsTablePagerComponent, typeof i6.ThTdProvider]>;
|
|
34
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<EsTableModule>;
|
|
35
|
-
}
|
package/lib/tokens.d.ts
DELETED
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import { InjectionToken } from '@angular/core';
|
|
2
|
-
import { EsTableDefaultable } from './domain/configuration/EsTableDefaultable';
|
|
3
|
-
/** Token che indica se emettere log a console o meno */
|
|
4
|
-
export declare const EST_DEBUG: InjectionToken<string>;
|
|
5
|
-
/** Token che indica l'espressione ACL da utilizzare (if any) per consentire le operazioni di esportazione */
|
|
6
|
-
export declare const EST_EXPORT_GLOBAL_ACL: InjectionToken<string>;
|
|
7
|
-
/** Token che indica i default da assegnare agli Input */
|
|
8
|
-
export declare const EST_DEFAULTS: InjectionToken<EsTableDefaultable>;
|
package/public-api.d.ts
DELETED
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
export * from './lib/components/pager/table_pager.component';
|
|
2
|
-
export * from './lib/components/es-table/es_table.component';
|
|
3
|
-
export * from './lib/directives/es_td.directive';
|
|
4
|
-
export * from './lib/directives/es_td_editor.directive';
|
|
5
|
-
export * from './lib/directives/es_th_td_provider.directive';
|
|
6
|
-
export * from './lib/directives/es_th.directive';
|
|
7
|
-
export * from './lib/domain/configuration/EsTableModuleConfig';
|
|
8
|
-
export * from './lib/domain/configuration/EsTableDefaultable';
|
|
9
|
-
export * from './lib/es-table.module';
|
|
10
|
-
export * from './lib/domain/externals/CornerMenuOption';
|
|
11
|
-
export * from './lib/domain/externals/EsTableColumnsDefinition';
|
|
12
|
-
export * from './lib/domain/externals/EsTableOperationDefinition';
|
|
13
|
-
export * from './lib/domain/externals/appsearch/AppOrdering';
|
|
14
|
-
export * from './lib/domain/externals/appsearch/AppSearch';
|
|
15
|
-
export * from './lib/domain/externals/appsearch/GenericItem';
|
|
16
|
-
export * from './lib/domain/externals/appsearch/Group';
|
|
17
|
-
export * from './lib/domain/externals/appsearch/GroupAggregation';
|
|
18
|
-
export * from './lib/domain/externals/appsearch/GroupFilter';
|
|
19
|
-
export * from './lib/domain/externals/appsearch/GroupOrAggregation';
|
|
20
|
-
export * from './lib/domain/externals/appsearch/ItemsSelection';
|
|
21
|
-
export * from './lib/domain/externals/appsearch/EsTableMultiValue';
|
|
22
|
-
export * from './lib/domain/externals/report/ReportColumn';
|
|
23
|
-
export * from './lib/domain/externals/report/ReportParam';
|
|
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';
|
|
28
|
-
export * from './lib/tokens';
|