ng-ipa-library 0.4.1 → 0.4.2

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.
@@ -1632,6 +1632,12 @@
1632
1632
  var BreadcrumbsService = /** @class */ (function () {
1633
1633
  function BreadcrumbsService() {
1634
1634
  }
1635
+ BreadcrumbsService.prototype.setPageTitle = function (text) {
1636
+ var titleEl = document.querySelector('.sub-section-title');
1637
+ if (titleEl) {
1638
+ titleEl.textContent = text;
1639
+ }
1640
+ };
1635
1641
  BreadcrumbsService.prototype.addBreadcrumb = function (nodeName, spanClasses, linkClasses) {
1636
1642
  var _g;
1637
1643
  if (spanClasses === void 0) { spanClasses = 'bc-current'; }