@pega/angular-sdk-components 0.25.3 → 0.25.4
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.
|
@@ -19,6 +19,8 @@ export declare class DateTimeComponent extends FieldBase implements OnInit, OnDe
|
|
|
19
19
|
};
|
|
20
20
|
timezone: string | undefined;
|
|
21
21
|
placeholder: string;
|
|
22
|
+
private sso;
|
|
23
|
+
scrollStrategy: import("@angular/cdk/overlay.d-BdoMy0hX").R;
|
|
22
24
|
ngOnInit(): void;
|
|
23
25
|
/**
|
|
24
26
|
* Updates the component when there are changes in the state.
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { OnInit, OnDestroy } from '@angular/core';
|
|
2
|
+
import { SelectionModel } from '@angular/cdk/collections';
|
|
2
3
|
import { MatPaginator } from '@angular/material/paginator';
|
|
3
4
|
import { MatSort } from '@angular/material/sort';
|
|
4
5
|
import { MatTableDataSource } from '@angular/material/table';
|
|
@@ -42,6 +43,7 @@ export declare class ListViewComponent implements OnInit, OnDestroy {
|
|
|
42
43
|
bInForm$: boolean;
|
|
43
44
|
payload: any;
|
|
44
45
|
repeatList$: MatTableDataSource<any>;
|
|
46
|
+
selection: SelectionModel<any>;
|
|
45
47
|
fields$: any[];
|
|
46
48
|
displayedColumns$: any[];
|
|
47
49
|
groupByColumns$: string[];
|
|
@@ -119,9 +121,10 @@ export declare class ListViewComponent implements OnInit, OnDestroy {
|
|
|
119
121
|
drop(event: CdkDragDrop<string[]>): void;
|
|
120
122
|
updateFields(arFields: any[], arColumns: any, fields: any): any[];
|
|
121
123
|
applySearch(event: Event): void;
|
|
122
|
-
isChecked(rowIn: any): any;
|
|
123
124
|
fieldOnChange(row: any): void;
|
|
124
|
-
onCheckboxClick(row: any
|
|
125
|
+
onCheckboxClick(row: any): void;
|
|
126
|
+
isAllSelected(): boolean;
|
|
127
|
+
toggleAllRows(): void;
|
|
125
128
|
_getIconStyle(level: any): string;
|
|
126
129
|
_getGroupName(fieldName: any): any;
|
|
127
130
|
_showButton(name: any, row: any): boolean;
|
|
@@ -168,6 +171,7 @@ export declare class ListViewComponent implements OnInit, OnDestroy {
|
|
|
168
171
|
getField(fieldDefs: any, columnId: any): any;
|
|
169
172
|
getFieldsMap(fieldDefs: any): Map<any, any>;
|
|
170
173
|
addItemKeyInSelect(fieldDefs: any, itemKey: any, select: any, compositeKeys: any): any;
|
|
174
|
+
private getSelectedValue;
|
|
171
175
|
private updateFiltersFromData;
|
|
172
176
|
private buildFilterPayload;
|
|
173
177
|
static ɵfac: i0.ɵɵFactoryDeclaration<ListViewComponent, never>;
|