@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.
@@ -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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pepperi-addons/ngx-lib",
3
- "version": "0.4.2-beta.76",
3
+ "version": "0.4.2-beta.77",
4
4
  "peerDependencies": {
5
5
  "@angular/animations": ">= 14.0.2",
6
6
  "@angular/cdk": ">= 14.0.2",
@@ -140,6 +140,10 @@
140
140
  .mat-form-field-label-wrapper {
141
141
  display: none;
142
142
  }
143
+
144
+ .mat-select-placeholder {
145
+ @include mixins.ellipsis();
146
+ }
143
147
  }
144
148
  }
145
149