@ardimedia/angular-portal-azure 0.2.78 → 0.2.79
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/apn.d.ts +1 -0
- package/apn.js +8 -1
- package/package.json +1 -1
package/apn.d.ts
CHANGED
|
@@ -359,6 +359,7 @@ declare namespace angularportalazure {
|
|
|
359
359
|
constructor(portalService: angularportalazure.PortalService, path: string, title?: string, subtitle?: string, width?: number);
|
|
360
360
|
items: Array<angularportalazure.BladeNavItem>;
|
|
361
361
|
isNav: boolean;
|
|
362
|
+
onNavigateTo(path: string): void;
|
|
362
363
|
}
|
|
363
364
|
}
|
|
364
365
|
declare namespace angularportalazure {
|
package/apn.js
CHANGED
|
@@ -1449,8 +1449,15 @@ var angularportalazure;
|
|
|
1449
1449
|
_this.items = new Array();
|
|
1450
1450
|
_this.isNav = true;
|
|
1451
1451
|
return _this;
|
|
1452
|
-
//super.navigateTo = this.navigateTo;
|
|
1453
1452
|
}
|
|
1453
|
+
//#endregion
|
|
1454
|
+
//#region Methods
|
|
1455
|
+
BladeNav.prototype.onNavigateTo = function (path) {
|
|
1456
|
+
if (path === '') {
|
|
1457
|
+
return;
|
|
1458
|
+
}
|
|
1459
|
+
this.portalService.bladeArea.raiseAddBladeEvent({ path: path, pathSender: this.blade.path });
|
|
1460
|
+
};
|
|
1454
1461
|
return BladeNav;
|
|
1455
1462
|
}(angularportalazure.BladeData));
|
|
1456
1463
|
angularportalazure.BladeNav = BladeNav;
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@ardimedia/angular-portal-azure",
|
|
3
3
|
"description": "Angular Portal Azure - GUI Framework.",
|
|
4
4
|
"author": "Ardimedia Anstalt <info@ardimedia.com> (http://www.ardimedia.com)",
|
|
5
|
-
"version": "0.2.
|
|
5
|
+
"version": "0.2.79",
|
|
6
6
|
"main": "index.js",
|
|
7
7
|
"typings": "apn.d.ts",
|
|
8
8
|
"dependencies": {
|