@onecx/angular-accelerator 8.4.2 → 8.5.0

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.
@@ -981,7 +981,7 @@ class PageHeaderComponent {
981
981
  }
982
982
  const breadcrumbItems = breadcrumbHost.querySelectorAll(`.p-breadcrumb-item .p-breadcrumb-item-link`);
983
983
  breadcrumbItems.forEach((item, index) => {
984
- const text = item.innerText.trim();
984
+ const text = item?.innerText?.trim();
985
985
  if (!text)
986
986
  return;
987
987
  this.translateService.get('OCX_PAGE_HEADER.BREADCRUMB_ARIA_LABEL', { breadcrumb: text }).subscribe((ariaLabel) => {
@@ -5776,7 +5776,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.1", ngImpor
5776
5776
  }] });
5777
5777
 
5778
5778
  const LIB_NAME = '@onecx/angular-accelerator';
5779
- const LIB_VERSION = '8.4.2';
5779
+ const LIB_VERSION = '8.5.0';
5780
5780
 
5781
5781
  class AngularAcceleratorMissingTranslationHandler extends MultiLanguageMissingTranslationHandler {
5782
5782
  }