@pepperi-addons/ngx-lib 0.4.2-beta.76 → 0.4.2-beta.77
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/list/list.component.mjs +11 -5
- package/fesm2015/pepperi-addons-ngx-lib-list.mjs +10 -4
- package/fesm2015/pepperi-addons-ngx-lib-list.mjs.map +1 -1
- package/fesm2020/pepperi-addons-ngx-lib-list.mjs +10 -4
- package/fesm2020/pepperi-addons-ngx-lib-list.mjs.map +1 -1
- package/list/list.component.d.ts +3 -1
- package/package.json +1 -1
- package/src/core/style/components/general.scss +4 -0
package/list/list.component.d.ts
CHANGED
|
@@ -22,6 +22,7 @@ export declare class PepListComponent implements OnInit, OnChanges, OnDestroy {
|
|
|
22
22
|
static SORT_BY_STATE_KEY: string;
|
|
23
23
|
static ASCENDING_STATE_KEY: string;
|
|
24
24
|
static MINIMUM_COLUMN_WIDTH: number;
|
|
25
|
+
cachedItemsNumber: number;
|
|
25
26
|
noDataFoundMsg: string;
|
|
26
27
|
selectionTypeForActions: PepListSelectionType;
|
|
27
28
|
showCardSelection: boolean;
|
|
@@ -105,6 +106,7 @@ export declare class PepListComponent implements OnInit, OnChanges, OnDestroy {
|
|
|
105
106
|
ngOnInit(): void;
|
|
106
107
|
ngOnChanges(changes: any): void;
|
|
107
108
|
ngOnDestroy(): void;
|
|
109
|
+
getCachedItemsNumber(): number;
|
|
108
110
|
private getScrollingElement;
|
|
109
111
|
private scrollToTop;
|
|
110
112
|
private getSelectionCheckBoxWidth;
|
|
@@ -167,5 +169,5 @@ export declare class PepListComponent implements OnInit, OnChanges, OnDestroy {
|
|
|
167
169
|
onValueChanged(valueChange: IPepFormFieldValueChangeEvent): void;
|
|
168
170
|
onCustomizeFieldClick(customizeFieldClickedData: IPepFormFieldClickEvent): void;
|
|
169
171
|
static ɵfac: i0.ɵɵFactoryDeclaration<PepListComponent, never>;
|
|
170
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PepListComponent, "pep-list", never, { "noDataFoundMsg": "noDataFoundMsg"; "selectionTypeForActions": "selectionTypeForActions"; "showCardSelection": "showCardSelection"; "hideAllSelectionInMulti": "hideAllSelectionInMulti"; "cardSize": "cardSize"; "tableViewType": "tableViewType"; "viewType": "viewType"; "firstFieldAsLink": "firstFieldAsLink"; "supportSorting": "supportSorting"; "supportResizing": "supportResizing"; "parentScroll": "parentScroll"; "disabled": "disabled"; "lockEvents": "lockEvents"; "lockItemInnerEvents": "lockItemInnerEvents"; "printMode": "printMode"; "isReport": "isReport"; "zebraStripes": "zebraStripes"; "totalsRow": "totalsRow"; "pagerType": "pagerType"; "pageSize": "pageSize"; "pageIndex": "pageIndex"; "bufferAmount": "bufferAmount"; "scrollAnimationTime": "scrollAnimationTime"; "scrollDebounceTime": "scrollDebounceTime"; "scrollThrottlingTime": "scrollThrottlingTime"; "useAsWebComponent": "useAsWebComponent"; }, { "itemClick": "itemClick"; "fieldClick": "fieldClick"; "valueChange": "valueChange"; "sortingChange": "sortingChange"; "selectedItemsChange": "selectedItemsChange"; "selectedItemChange": "selectedItemChange"; "selectAllClick": "selectAllClick"; "listLoad": "listLoad"; "loadItems": "loadItems"; "loadPage": "loadPage"; "startIndexChange": "startIndexChange"; }, never, never, false>;
|
|
172
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PepListComponent, "pep-list", never, { "cachedItemsNumber": "cachedItemsNumber"; "noDataFoundMsg": "noDataFoundMsg"; "selectionTypeForActions": "selectionTypeForActions"; "showCardSelection": "showCardSelection"; "hideAllSelectionInMulti": "hideAllSelectionInMulti"; "cardSize": "cardSize"; "tableViewType": "tableViewType"; "viewType": "viewType"; "firstFieldAsLink": "firstFieldAsLink"; "supportSorting": "supportSorting"; "supportResizing": "supportResizing"; "parentScroll": "parentScroll"; "disabled": "disabled"; "lockEvents": "lockEvents"; "lockItemInnerEvents": "lockItemInnerEvents"; "printMode": "printMode"; "isReport": "isReport"; "zebraStripes": "zebraStripes"; "totalsRow": "totalsRow"; "pagerType": "pagerType"; "pageSize": "pageSize"; "pageIndex": "pageIndex"; "bufferAmount": "bufferAmount"; "scrollAnimationTime": "scrollAnimationTime"; "scrollDebounceTime": "scrollDebounceTime"; "scrollThrottlingTime": "scrollThrottlingTime"; "useAsWebComponent": "useAsWebComponent"; }, { "itemClick": "itemClick"; "fieldClick": "fieldClick"; "valueChange": "valueChange"; "sortingChange": "sortingChange"; "selectedItemsChange": "selectedItemsChange"; "selectedItemChange": "selectedItemChange"; "selectAllClick": "selectAllClick"; "listLoad": "listLoad"; "loadItems": "loadItems"; "loadPage": "loadPage"; "startIndexChange": "startIndexChange"; }, never, never, false>;
|
|
171
173
|
}
|
package/package.json
CHANGED