@ardimedia/angular-portal-azure 0.2.75 → 0.2.76
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 +2 -2
- package/apn.js +3 -2
- package/package.json +1 -1
package/apn.d.ts
CHANGED
|
@@ -213,7 +213,6 @@ declare namespace angularportalazure {
|
|
|
213
213
|
portalService: angularportalazure.PortalService;
|
|
214
214
|
title: string;
|
|
215
215
|
subTitle: string;
|
|
216
|
-
cssClass: string;
|
|
217
216
|
bladePath: string;
|
|
218
217
|
private _bladePath;
|
|
219
218
|
tileSize: angularportalazure.TileSizes;
|
|
@@ -350,7 +349,8 @@ declare namespace angularportalazure {
|
|
|
350
349
|
isVisible: boolean;
|
|
351
350
|
callback: () => any;
|
|
352
351
|
bladeNav: angularportalazure.BladeNav;
|
|
353
|
-
|
|
352
|
+
cssClass: string;
|
|
353
|
+
constructor(title?: string, bladePath?: string, hrefPath?: string, roles?: string, isVisible?: boolean, callback?: () => any, bladeNav?: angularportalazure.BladeNav, cssClass?: string);
|
|
354
354
|
onNavItemClick(): void;
|
|
355
355
|
}
|
|
356
356
|
}
|
package/apn.js
CHANGED
|
@@ -729,7 +729,6 @@ var angularportalazure;
|
|
|
729
729
|
var Tile = (function () {
|
|
730
730
|
//#region Constructor
|
|
731
731
|
function Tile(title, bladePath, portalService) {
|
|
732
|
-
this.cssClass = "fa fa-bars";
|
|
733
732
|
angularportalazure.Debug.write('[angularportalazure-debug] \'Tile\' constructor called.', [this, title, bladePath, portalService]);
|
|
734
733
|
this.portalService = portalService;
|
|
735
734
|
this.title = title;
|
|
@@ -1400,7 +1399,7 @@ var angularportalazure;
|
|
|
1400
1399
|
(function (angularportalazure) {
|
|
1401
1400
|
var BladeNavItem = (function () {
|
|
1402
1401
|
//#region Constructor
|
|
1403
|
-
function BladeNavItem(title, bladePath, hrefPath, roles, isVisible, callback, bladeNav) {
|
|
1402
|
+
function BladeNavItem(title, bladePath, hrefPath, roles, isVisible, callback, bladeNav, cssClass) {
|
|
1404
1403
|
if (title === void 0) { title = ''; }
|
|
1405
1404
|
if (bladePath === void 0) { bladePath = ''; }
|
|
1406
1405
|
if (hrefPath === void 0) { hrefPath = ""; }
|
|
@@ -1408,6 +1407,7 @@ var angularportalazure;
|
|
|
1408
1407
|
if (isVisible === void 0) { isVisible = true; }
|
|
1409
1408
|
if (callback === void 0) { callback = null; }
|
|
1410
1409
|
if (bladeNav === void 0) { bladeNav = null; }
|
|
1410
|
+
if (cssClass === void 0) { cssClass = "fa fa-bars"; }
|
|
1411
1411
|
this.title = title;
|
|
1412
1412
|
this.bladePath = bladePath;
|
|
1413
1413
|
this.hrefPath = hrefPath;
|
|
@@ -1415,6 +1415,7 @@ var angularportalazure;
|
|
|
1415
1415
|
this.isVisible = isVisible;
|
|
1416
1416
|
this.callback = callback;
|
|
1417
1417
|
this.bladeNav = bladeNav;
|
|
1418
|
+
this.cssClass = cssClass;
|
|
1418
1419
|
angularportalazure.Debug.write('[angularportalazure-debug] \'BladeNavItem\' constructor called.', [this, title, bladePath, hrefPath, roles, isVisible]);
|
|
1419
1420
|
}
|
|
1420
1421
|
//#endregion
|
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.76",
|
|
6
6
|
"main": "index.js",
|
|
7
7
|
"typings": "apn.d.ts",
|
|
8
8
|
"dependencies": {
|