@esfaenza/es-table 19.2.3 → 19.2.5
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.
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import { ChangeDetectorRef, EventEmitter
|
|
1
|
+
import { ChangeDetectorRef, EventEmitter } from "@angular/core";
|
|
2
|
+
import { Signal, WritableSignal } from "@angular/core";
|
|
2
3
|
import { LocalizationService } from "@esfaenza/localizations";
|
|
3
4
|
import { MessageService } from "@esfaenza/extensions";
|
|
4
5
|
import * as i0 from "@angular/core";
|
|
@@ -8,41 +9,41 @@ export declare class TablePagerComponent {
|
|
|
8
9
|
lc: LocalizationService;
|
|
9
10
|
cdr: ChangeDetectorRef;
|
|
10
11
|
/** Dimensione di pagina attuale */
|
|
11
|
-
CurrentPageSize:
|
|
12
|
+
CurrentPageSize: import("@angular/core").InputSignal<number>;
|
|
12
13
|
/** View gestita, che può essere un IAppSearch o una ReportView */
|
|
13
|
-
View: any
|
|
14
|
+
View: import("@angular/core").InputSignal<any>;
|
|
14
15
|
/** Indica se deve mostrare un warning quando si cercano di solezionare come elementi da visualizzare "Tutti" */
|
|
15
|
-
WarnOnAll: boolean
|
|
16
|
+
WarnOnAll: import("@angular/core").InputSignal<boolean>;
|
|
16
17
|
/** Indica se dare la possibilità o meno di selezionare "Tutti" nelle opzioni di paginazione */
|
|
17
|
-
AllSearch: boolean
|
|
18
|
+
AllSearch: import("@angular/core").InputSignal<boolean>;
|
|
18
19
|
/** Placeholder che identifica il "Tutti" */
|
|
19
|
-
DefaultAll: number
|
|
20
|
+
DefaultAll: import("@angular/core").InputSignal<number>;
|
|
20
21
|
/** Indica se attivare la modalità gruppo con stili più snelli per apparire sotto ai raggruppamenti */
|
|
21
|
-
GroupMode: boolean
|
|
22
|
+
GroupMode: import("@angular/core").InputSignal<boolean>;
|
|
22
23
|
/** Indica se utilizzare il conteggio dei gruppi o degli oggetti */
|
|
23
|
-
GroupCount: boolean
|
|
24
|
+
GroupCount: import("@angular/core").InputSignal<boolean>;
|
|
24
25
|
/** Indica il testo che va a sostituire "Oggetti Visualizzati" in caso si stia facendo qualcosa di custom, Ignorato in caso di gruppi */
|
|
25
|
-
CountLabel: string
|
|
26
|
+
CountLabel: import("@angular/core").InputSignal<string>;
|
|
26
27
|
/** Indica se visualizzare il numero totale di oggeti presenti */
|
|
27
|
-
ShowCount: boolean
|
|
28
|
+
ShowCount: import("@angular/core").InputSignal<boolean>;
|
|
28
29
|
/** Indica se visualizzare il numero totale di oggeti presenti */
|
|
29
|
-
ShowPaging: boolean
|
|
30
|
+
ShowPaging: import("@angular/core").InputSignal<boolean>;
|
|
30
31
|
/** Indica il numero totale di oggeti presenti */
|
|
31
|
-
PagerCount: number
|
|
32
|
+
PagerCount: import("@angular/core").InputSignal<number>;
|
|
32
33
|
/** Indica se mostrare o meno il contenuto @deprecated usata solo da MatrixValuesComponent nella lib relativa */
|
|
33
|
-
Hidden: boolean
|
|
34
|
+
Hidden: import("@angular/core").InputSignal<boolean>;
|
|
34
35
|
/** Output invocato quando il numero di elementi per pagina viene modificato da un click utente */
|
|
35
36
|
pagingSelected: EventEmitter<number>;
|
|
36
37
|
/** @ignore */
|
|
37
38
|
constructor(msgExts: MessageService, lc: LocalizationService, cdr: ChangeDetectorRef);
|
|
38
39
|
/** Modello su cui la select effettua operazioni di selezione */
|
|
39
|
-
Model: number
|
|
40
|
+
Model: WritableSignal<number>;
|
|
40
41
|
/** Opzioni di paginazione */
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
42
|
+
private _pagingOptions;
|
|
43
|
+
PagingOptionsForSelect: Signal<{
|
|
44
|
+
id: number;
|
|
45
|
+
description: string;
|
|
46
|
+
}[]>;
|
|
46
47
|
/**
|
|
47
48
|
* Funzione richiamata dal template quando un utente clicca su un numero di paginazione.
|
|
48
49
|
*
|
|
@@ -52,5 +53,5 @@ export declare class TablePagerComponent {
|
|
|
52
53
|
*/
|
|
53
54
|
choice(pageSize: number): void;
|
|
54
55
|
static ɵfac: i0.ɵɵFactoryDeclaration<TablePagerComponent, never>;
|
|
55
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TablePagerComponent, "app-paging", never, { "CurrentPageSize": { "alias": "CurrentPageSize"; "required": false; }; "View": { "alias": "View"; "required": false; }; "WarnOnAll": { "alias": "WarnOnAll"; "required": false; }; "AllSearch": { "alias": "AllSearch"; "required": false; }; "DefaultAll": { "alias": "DefaultAll"; "required": false; }; "GroupMode": { "alias": "GroupMode"; "required": false; }; "GroupCount": { "alias": "GroupCount"; "required": false; }; "CountLabel": { "alias": "CountLabel"; "required": false; }; "ShowCount": { "alias": "ShowCount"; "required": false; }; "ShowPaging": { "alias": "ShowPaging"; "required": false; }; "PagerCount": { "alias": "PagerCount"; "required": false; }; "Hidden": { "alias": "Hidden"; "required": false; }; }, { "pagingSelected": "pagingSelected"; }, never, never, false, never>;
|
|
56
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TablePagerComponent, "app-paging", never, { "CurrentPageSize": { "alias": "CurrentPageSize"; "required": false; "isSignal": true; }; "View": { "alias": "View"; "required": false; "isSignal": true; }; "WarnOnAll": { "alias": "WarnOnAll"; "required": false; "isSignal": true; }; "AllSearch": { "alias": "AllSearch"; "required": false; "isSignal": true; }; "DefaultAll": { "alias": "DefaultAll"; "required": false; "isSignal": true; }; "GroupMode": { "alias": "GroupMode"; "required": false; "isSignal": true; }; "GroupCount": { "alias": "GroupCount"; "required": false; "isSignal": true; }; "CountLabel": { "alias": "CountLabel"; "required": false; "isSignal": true; }; "ShowCount": { "alias": "ShowCount"; "required": false; "isSignal": true; }; "ShowPaging": { "alias": "ShowPaging"; "required": false; "isSignal": true; }; "PagerCount": { "alias": "PagerCount"; "required": false; "isSignal": true; }; "Hidden": { "alias": "Hidden"; "required": false; "isSignal": true; }; }, { "pagingSelected": "pagingSelected"; }, never, never, false, never>;
|
|
56
57
|
}
|
package/lib/es-table.module.d.ts
CHANGED
|
@@ -27,9 +27,10 @@ import * as i23 from "@angular/material/input";
|
|
|
27
27
|
import * as i24 from "@angular/material/tooltip";
|
|
28
28
|
import * as i25 from "@angular/cdk/drag-drop";
|
|
29
29
|
import * as i26 from "@esfaenza/forms-and-validations";
|
|
30
|
+
import * as i27 from "primeng/select";
|
|
30
31
|
export declare class EsTableModule {
|
|
31
32
|
static forRoot(config?: EsTableModuleConfig): ModuleWithProviders<EsTableModule>;
|
|
32
33
|
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.TablePagerComponent, 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.MatSelectModule, typeof i23.MatInputModule, typeof i24.MatTooltipModule, typeof i25.DragDropModule, typeof i26.FormsAndValidationsModule], [typeof i1.EsTdDirective, typeof i2.EsThDirective, typeof i3.EsTdEditorDirective, typeof i4.EsTableComponent, typeof i5.TablePagerComponent, typeof i6.ThTdProvider]>;
|
|
34
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<EsTableModule, [typeof i1.EsTdDirective, typeof i2.EsThDirective, typeof i3.EsTdEditorDirective, typeof i4.EsTableComponent, typeof i5.TablePagerComponent, 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.MatSelectModule, typeof i23.MatInputModule, typeof i24.MatTooltipModule, typeof i25.DragDropModule, typeof i26.FormsAndValidationsModule, typeof i27.SelectModule], [typeof i1.EsTdDirective, typeof i2.EsThDirective, typeof i3.EsTdEditorDirective, typeof i4.EsTableComponent, typeof i5.TablePagerComponent, typeof i6.ThTdProvider]>;
|
|
34
35
|
static ɵinj: i0.ɵɵInjectorDeclaration<EsTableModule>;
|
|
35
36
|
}
|