@ardimedia/angular-portal-azure 0.2.71 → 0.2.72
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 -1
- package/apn.js +5 -8
- package/package.json +1 -1
package/apn.d.ts
CHANGED
|
@@ -357,9 +357,9 @@ declare namespace angularportalazure {
|
|
|
357
357
|
}
|
|
358
358
|
declare namespace angularportalazure {
|
|
359
359
|
class BladeNav extends angularportalazure.BladeData {
|
|
360
|
+
constructor(portalService: angularportalazure.PortalService, path: string, title?: string, subtitle?: string, width?: number);
|
|
360
361
|
items: Array<angularportalazure.BladeNavItem>;
|
|
361
362
|
isNav: boolean;
|
|
362
|
-
constructor(portalService: angularportalazure.PortalService, path: string, title?: string, subtitle?: string, width?: number);
|
|
363
363
|
}
|
|
364
364
|
}
|
|
365
365
|
declare namespace angularportalazure {
|
package/apn.js
CHANGED
|
@@ -307,8 +307,8 @@ var angularportalazure;
|
|
|
307
307
|
this.onActivate();
|
|
308
308
|
};
|
|
309
309
|
Blade.prototype.onActivate = function () {
|
|
310
|
-
|
|
311
|
-
|
|
310
|
+
//throw new Error('[angularportalazure.Blade] \'onActivate\' is an abstract function. Define one in the derived class.');
|
|
311
|
+
console.log('function call: Blade.onActivate() - we should override this, but does it work?');
|
|
312
312
|
};
|
|
313
313
|
Blade.prototype.navigateTo = function (path) {
|
|
314
314
|
angularportalazure.Debug.write('[angularportalazure-debug] \'Blade.navigateTo\' called. You should not override this, use onNavigateTo instead.', [this, path]);
|
|
@@ -1143,9 +1143,7 @@ var angularportalazure;
|
|
|
1143
1143
|
function BladeData(portalService, path, title, subtitle, width) {
|
|
1144
1144
|
if (subtitle === void 0) { subtitle = ''; }
|
|
1145
1145
|
if (width === void 0) { width = 300; }
|
|
1146
|
-
|
|
1147
|
-
angularportalazure.Debug.write('[angularportalazure-debug] \'BladeData\' constructor called.', [_this, portalService, path, title, subtitle, width]);
|
|
1148
|
-
return _this;
|
|
1146
|
+
return _super.call(this, portalService, path, title, subtitle, width) || this;
|
|
1149
1147
|
}
|
|
1150
1148
|
return BladeData;
|
|
1151
1149
|
}(angularportalazure.Blade));
|
|
@@ -1424,19 +1422,18 @@ var angularportalazure;
|
|
|
1424
1422
|
(function (angularportalazure) {
|
|
1425
1423
|
var BladeNav = (function (_super) {
|
|
1426
1424
|
__extends(BladeNav, _super);
|
|
1427
|
-
//#endregion
|
|
1428
1425
|
//#region Constructor
|
|
1429
1426
|
function BladeNav(portalService, path, title, subtitle, width) {
|
|
1430
1427
|
if (title === void 0) { title = ''; }
|
|
1431
1428
|
if (subtitle === void 0) { subtitle = ''; }
|
|
1432
1429
|
if (width === void 0) { width = 200; }
|
|
1433
1430
|
var _this = _super.call(this, portalService, path, title, subtitle, width) || this;
|
|
1431
|
+
//#endregion
|
|
1434
1432
|
//#region Properties
|
|
1435
1433
|
_this.items = new Array();
|
|
1436
1434
|
_this.isNav = true;
|
|
1437
|
-
angularportalazure.Debug.write('[angularportalazure-debug] \'BladeNav\' constructor called.', [_this, portalService, path, title, subtitle, width]);
|
|
1438
|
-
_super.prototype.navigateTo = _this.navigateTo;
|
|
1439
1435
|
return _this;
|
|
1436
|
+
//super.navigateTo = this.navigateTo;
|
|
1440
1437
|
}
|
|
1441
1438
|
return BladeNav;
|
|
1442
1439
|
}(angularportalazure.BladeData));
|
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.72",
|
|
6
6
|
"main": "index.js",
|
|
7
7
|
"typings": "apn.d.ts",
|
|
8
8
|
"dependencies": {
|