@ardimedia/angular-portal-azure 0.2.32 → 0.2.33
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 -2
- package/apn.js +4 -2
- package/directives/blade/blade.html +1 -1
- package/package.json +1 -1
package/apn.d.ts
CHANGED
|
@@ -113,7 +113,6 @@ declare namespace angularportalazure {
|
|
|
113
113
|
/** Obsolete */
|
|
114
114
|
blade: Blade;
|
|
115
115
|
/** Obsolete */
|
|
116
|
-
isNavGrid: boolean;
|
|
117
116
|
/** Obsolete */
|
|
118
117
|
navGrid: {
|
|
119
118
|
portalService: any;
|
|
@@ -362,7 +361,7 @@ declare namespace angularportalazure {
|
|
|
362
361
|
declare namespace angularportalazure {
|
|
363
362
|
class BladeNav extends angularportalazure.BladeData {
|
|
364
363
|
navItems: Array<angularportalazure.BladeNavItem>;
|
|
365
|
-
|
|
364
|
+
isNavGrid: boolean;
|
|
366
365
|
constructor(portalService: angularportalazure.PortalService, path: string, title?: string, subtitle?: string, width?: number);
|
|
367
366
|
}
|
|
368
367
|
}
|
package/apn.js
CHANGED
|
@@ -232,6 +232,8 @@ var angularportalazure;
|
|
|
232
232
|
this.commandSwap = function () { this.onCommandSwap(); };
|
|
233
233
|
this.commandSwapText = '';
|
|
234
234
|
/** Obsolete */
|
|
235
|
+
//isNavGrid: boolean;
|
|
236
|
+
/** Obsolete */
|
|
235
237
|
this.navGrid = {
|
|
236
238
|
portalService: null,
|
|
237
239
|
items: [],
|
|
@@ -1281,7 +1283,6 @@ var angularportalazure;
|
|
|
1281
1283
|
if (this.items.length !== 0) {
|
|
1282
1284
|
this.blade.navGrid.items = this.items; //--> needed, otherwise nav html pages will no longer work.
|
|
1283
1285
|
}
|
|
1284
|
-
this.blade.isNavGrid = this.isNavGrid;
|
|
1285
1286
|
_super.prototype.setObsoleteLayoutProperites.call(this);
|
|
1286
1287
|
};
|
|
1287
1288
|
return BladeList;
|
|
@@ -1340,9 +1341,10 @@ var angularportalazure;
|
|
|
1340
1341
|
_super.call(this, portalService, path, title, subtitle, width);
|
|
1341
1342
|
//#region Properties
|
|
1342
1343
|
this.navItems = new Array();
|
|
1343
|
-
this.
|
|
1344
|
+
this.isNavGrid = true;
|
|
1344
1345
|
angularportalazure.Debug.write('[angularportalazure-debug] \'BladeNav\' constructor called.', [this, portalService, path, title, subtitle, width]);
|
|
1345
1346
|
_super.prototype.onNavigateTo = this.navigateTo;
|
|
1347
|
+
this.isNavGrid = true;
|
|
1346
1348
|
}
|
|
1347
1349
|
return BladeNav;
|
|
1348
1350
|
}(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.33",
|
|
6
6
|
"main": "index.js",
|
|
7
7
|
"typings": "apn.d.ts",
|
|
8
8
|
"dependencies": {
|