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.
- package/bundles/ng-ipa-library.umd.js +6 -0
- package/bundles/ng-ipa-library.umd.js.map +1 -1
- package/esm2015/lib/services/breadcrumbs.service.js +7 -1
- package/fesm2015/ng-ipa-library.js +6 -0
- package/fesm2015/ng-ipa-library.js.map +1 -1
- package/lib/services/breadcrumbs.service.d.ts +1 -0
- package/package.json +1 -1
|
@@ -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'; }
|