@pepperi-addons/ngx-lib 0.4.2-beta.320 → 0.4.2-beta.321
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/core/customization/customization.service.d.ts +3 -1
- package/esm2020/core/common/services/utilities.service.mjs +13 -8
- package/esm2020/core/customization/customization.service.mjs +13 -2
- package/esm2020/list/list.component.mjs +8 -1
- package/esm2020/top-bar/top-bar.component.mjs +16 -13
- package/fesm2015/pepperi-addons-ngx-lib-list.mjs +7 -0
- package/fesm2015/pepperi-addons-ngx-lib-list.mjs.map +1 -1
- package/fesm2015/pepperi-addons-ngx-lib-top-bar.mjs +16 -13
- package/fesm2015/pepperi-addons-ngx-lib-top-bar.mjs.map +1 -1
- package/fesm2015/pepperi-addons-ngx-lib.mjs +24 -8
- package/fesm2015/pepperi-addons-ngx-lib.mjs.map +1 -1
- package/fesm2020/pepperi-addons-ngx-lib-list.mjs +7 -0
- package/fesm2020/pepperi-addons-ngx-lib-list.mjs.map +1 -1
- package/fesm2020/pepperi-addons-ngx-lib-top-bar.mjs +15 -12
- package/fesm2020/pepperi-addons-ngx-lib-top-bar.mjs.map +1 -1
- package/fesm2020/pepperi-addons-ngx-lib.mjs +24 -8
- package/fesm2020/pepperi-addons-ngx-lib.mjs.map +1 -1
- package/package.json +1 -1
- package/src/core/style/abstracts/mixins.scss +244 -99
- package/src/core/style/components/general.scss +57 -29
- package/top-bar/top-bar.component.d.ts +2 -2
|
@@ -1917,6 +1917,13 @@ class PepListComponent {
|
|
|
1917
1917
|
this.hostElement.nativeElement.updateItems = this.updateItems.bind(this);
|
|
1918
1918
|
this.hostElement.nativeElement.updatePage = this.updatePage.bind(this);
|
|
1919
1919
|
this.hostElement.nativeElement.updateItem = this.updateItem.bind(this);
|
|
1920
|
+
// Extended for React/GenericList consumers — needed for selection and navigation.
|
|
1921
|
+
this.hostElement.nativeElement.scrollToIndex = this.scrollToIndex.bind(this);
|
|
1922
|
+
this.hostElement.nativeElement.getSelectedItemsData = this.getSelectedItemsData.bind(this);
|
|
1923
|
+
this.hostElement.nativeElement.getIsItemEditable = this.getIsItemEditable.bind(this);
|
|
1924
|
+
this.hostElement.nativeElement.getItemDataByID = this.getItemDataByID.bind(this);
|
|
1925
|
+
this.hostElement.nativeElement.setSelectedIds = this.setSelectedIds.bind(this);
|
|
1926
|
+
this.hostElement.nativeElement.setIsAllSelected = this.setIsAllSelected.bind(this);
|
|
1920
1927
|
}
|
|
1921
1928
|
// For refresh the UI when change the is selectable for action on item.
|
|
1922
1929
|
getisItemDisabled(item) {
|