@ardimedia/angular-portal-azure 0.2.271 → 0.2.273
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 +3 -0
- package/apn.js +34 -9
- package/package.json +27 -27
package/apn.d.ts
CHANGED
package/apn.js
CHANGED
|
@@ -133,6 +133,7 @@ var angularportalazure;
|
|
|
133
133
|
}());
|
|
134
134
|
angularportalazure.UserControlBase = UserControlBase;
|
|
135
135
|
})(angularportalazure || (angularportalazure = {}));
|
|
136
|
+
// #region Declarations
|
|
136
137
|
var __extends = (this && this.__extends) || (function () {
|
|
137
138
|
var extendStatics = Object.setPrototypeOf ||
|
|
138
139
|
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
@@ -147,6 +148,7 @@ var __extends = (this && this.__extends) || (function () {
|
|
|
147
148
|
/// <reference path="portalservice.ts" />
|
|
148
149
|
/// <reference path="usercontrolbase.ts" />
|
|
149
150
|
/// <reference path="iaddbladeeventargs.ts" />
|
|
151
|
+
// #endregion
|
|
150
152
|
var angularportalazure;
|
|
151
153
|
(function (angularportalazure) {
|
|
152
154
|
var Blade = (function (_super) {
|
|
@@ -648,15 +650,19 @@ var angularportalazure;
|
|
|
648
650
|
_this.addBlade(args.path, args.pathSender);
|
|
649
651
|
});
|
|
650
652
|
};
|
|
653
|
+
// #region Constructor
|
|
654
|
+
AreaBlades.$inject = ['$scope', 'angularportalazure.portalService'];
|
|
651
655
|
return AreaBlades;
|
|
652
656
|
}(angularportalazure.UserControlBase));
|
|
653
|
-
// #region Constructor
|
|
654
|
-
AreaBlades.$inject = ['$scope', 'angularportalazure.portalService'];
|
|
655
657
|
angularportalazure.AreaBlades = AreaBlades;
|
|
656
658
|
angular.module('angularportalazure').service('angularportalazure.areaBlades', AreaBlades);
|
|
657
659
|
})(angularportalazure || (angularportalazure = {}));
|
|
660
|
+
// #region Declarations
|
|
661
|
+
/// <reference path="blade.ts" />
|
|
658
662
|
/// <reference path="areablades.ts" />
|
|
659
663
|
/// <reference path="portalservice.ts" />
|
|
664
|
+
/// <reference path="usercontrolbase.ts" />
|
|
665
|
+
// #endregion
|
|
660
666
|
var angularportalazure;
|
|
661
667
|
(function (angularportalazure) {
|
|
662
668
|
var BladeData = (function (_super) {
|
|
@@ -754,9 +760,12 @@ var angularportalazure;
|
|
|
754
760
|
}());
|
|
755
761
|
angularportalazure.BladeNavItem = BladeNavItem;
|
|
756
762
|
})(angularportalazure || (angularportalazure = {}));
|
|
763
|
+
// #region Declarations
|
|
757
764
|
/// <reference path="bladedata.ts" />
|
|
758
765
|
/// <reference path="bladenavitem.ts" />
|
|
759
766
|
/// <reference path="portalservice.ts" />
|
|
767
|
+
/// <reference path="usercontrolbase.ts" />
|
|
768
|
+
// #endregion
|
|
760
769
|
var angularportalazure;
|
|
761
770
|
(function (angularportalazure) {
|
|
762
771
|
var AreaNotification = (function (_super) {
|
|
@@ -800,6 +809,10 @@ var angularportalazure;
|
|
|
800
809
|
// #endregion
|
|
801
810
|
// #region Methods
|
|
802
811
|
AreaNotification.prototype.hide = function () {
|
|
812
|
+
// Do not hide on false
|
|
813
|
+
if (!this.onHide) {
|
|
814
|
+
return;
|
|
815
|
+
}
|
|
803
816
|
this.path = '';
|
|
804
817
|
this.widthAreaUsed = 0;
|
|
805
818
|
this.areaNotification.style.display = 'none';
|
|
@@ -807,11 +820,23 @@ var angularportalazure;
|
|
|
807
820
|
};
|
|
808
821
|
AreaNotification.prototype.show = function (width) {
|
|
809
822
|
if (width === void 0) { width = 250; }
|
|
823
|
+
this.onShow();
|
|
810
824
|
this.width = width;
|
|
811
825
|
this.widthAreaUsed = 1; // Indicate to the calcualteCssStyles function, that we need to set this value
|
|
812
826
|
this.calcualteCssStyles();
|
|
813
827
|
this.areaNotification.style.display = 'inline-block';
|
|
814
828
|
this.portalService.$rootScope.$broadcast('AreaNotification.Show');
|
|
829
|
+
this.onShowed();
|
|
830
|
+
};
|
|
831
|
+
/* Override */
|
|
832
|
+
AreaNotification.prototype.onHide = function () {
|
|
833
|
+
return true;
|
|
834
|
+
};
|
|
835
|
+
/* Override */
|
|
836
|
+
AreaNotification.prototype.onShow = function () {
|
|
837
|
+
};
|
|
838
|
+
/* Override */
|
|
839
|
+
AreaNotification.prototype.onShowed = function () {
|
|
815
840
|
};
|
|
816
841
|
AreaNotification.prototype.calcualteCssStyles = function () {
|
|
817
842
|
this.areaNotification.style.position = 'absolute';
|
|
@@ -1045,10 +1070,10 @@ var angularportalazure;
|
|
|
1045
1070
|
this.$translate = $injector.get('$translate');
|
|
1046
1071
|
this.ngDialog = $injector.get('ngDialog');
|
|
1047
1072
|
}
|
|
1073
|
+
// #region Constructor
|
|
1074
|
+
PortalService.$inject = ['$injector'];
|
|
1048
1075
|
return PortalService;
|
|
1049
1076
|
}());
|
|
1050
|
-
// #region Constructor
|
|
1051
|
-
PortalService.$inject = ['$injector'];
|
|
1052
1077
|
angularportalazure.PortalService = PortalService;
|
|
1053
1078
|
angular.module('angularportalazure').service('angularportalazure.portalService', PortalService);
|
|
1054
1079
|
})(angularportalazure || (angularportalazure = {}));
|
|
@@ -1348,13 +1373,13 @@ var angularportalazure;
|
|
|
1348
1373
|
}
|
|
1349
1374
|
return false;
|
|
1350
1375
|
};
|
|
1376
|
+
// #endregion
|
|
1377
|
+
// #region Properties
|
|
1378
|
+
Debug.isEnabled = false;
|
|
1379
|
+
Debug.isWithObjects = false;
|
|
1380
|
+
Debug.keys = new Array();
|
|
1351
1381
|
return Debug;
|
|
1352
1382
|
}());
|
|
1353
|
-
// #endregion
|
|
1354
|
-
// #region Properties
|
|
1355
|
-
Debug.isEnabled = false;
|
|
1356
|
-
Debug.isWithObjects = false;
|
|
1357
|
-
Debug.keys = new Array();
|
|
1358
1383
|
angularportalazure.Debug = Debug;
|
|
1359
1384
|
})(angularportalazure || (angularportalazure = {}));
|
|
1360
1385
|
var angularportalazure;
|
package/package.json
CHANGED
|
@@ -2,41 +2,41 @@
|
|
|
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.273",
|
|
6
6
|
"main": "index.js",
|
|
7
7
|
"typings": "apn.d.ts",
|
|
8
8
|
"dependencies": {
|
|
9
|
-
"@angular/animations": "^4.
|
|
10
|
-
"@angular/common": "^4.
|
|
11
|
-
"@angular/compiler": "^4.
|
|
12
|
-
"@angular/core": "^4.
|
|
13
|
-
"@angular/forms": "^4.
|
|
14
|
-
"@angular/http": "^4.
|
|
15
|
-
"@angular/platform-browser": "^4.
|
|
16
|
-
"@angular/platform-browser-dynamic": "^4.
|
|
17
|
-
"@angular/platform-server": "^4.
|
|
18
|
-
"@angular/router": "^4.
|
|
19
|
-
"@angular/upgrade": "^4.
|
|
20
|
-
"angular": "^1.6.
|
|
21
|
-
"angular-resource": "^1.6.
|
|
22
|
-
"angular-translate": "^2.15.
|
|
23
|
-
"angular-translate-storage-cookie": "^2.15.
|
|
9
|
+
"@angular/animations": "^4.2.5",
|
|
10
|
+
"@angular/common": "^4.2.5",
|
|
11
|
+
"@angular/compiler": "^4.2.5",
|
|
12
|
+
"@angular/core": "^4.2.5",
|
|
13
|
+
"@angular/forms": "^4.2.5",
|
|
14
|
+
"@angular/http": "^4.2.5",
|
|
15
|
+
"@angular/platform-browser": "^4.2.5",
|
|
16
|
+
"@angular/platform-browser-dynamic": "^4.2.5",
|
|
17
|
+
"@angular/platform-server": "^4.2.5",
|
|
18
|
+
"@angular/router": "^4.2.5",
|
|
19
|
+
"@angular/upgrade": "^4.2.5",
|
|
20
|
+
"angular": "^1.6.5",
|
|
21
|
+
"angular-resource": "^1.6.5",
|
|
22
|
+
"angular-translate": "^2.15.2",
|
|
23
|
+
"angular-translate-storage-cookie": "^2.15.2",
|
|
24
24
|
"angulartics": "^1.4.0",
|
|
25
25
|
"angulartics-google-analytics": "^0.4.0",
|
|
26
26
|
"bootstrap": "^3.3.7",
|
|
27
|
-
"ng-dialog": "^1.
|
|
28
|
-
"rxjs": "^5.4.
|
|
29
|
-
"zone.js": "^0.8.
|
|
27
|
+
"ng-dialog": "^1.3.0",
|
|
28
|
+
"rxjs": "^5.4.2",
|
|
29
|
+
"zone.js": "^0.8.12"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
32
|
-
"@angular/compiler-cli": "^4.
|
|
32
|
+
"@angular/compiler-cli": "^4.2.5",
|
|
33
33
|
"@types/angular": "https://registry.npmjs.org/@types/angular/-/angular-1.6.17.tgz",
|
|
34
|
-
"@types/angular-resource": "^1.5.
|
|
35
|
-
"@types/angular-translate": "^2.15.
|
|
36
|
-
"@types/angulartics": "^1.3.
|
|
37
|
-
"@types/ng-dialog": "^0.6.
|
|
38
|
-
"@types/node": "^
|
|
39
|
-
"tslint": "^5.
|
|
40
|
-
"typescript": "^2.
|
|
34
|
+
"@types/angular-resource": "^1.5.9",
|
|
35
|
+
"@types/angular-translate": "^2.15.1",
|
|
36
|
+
"@types/angulartics": "^1.3.2",
|
|
37
|
+
"@types/ng-dialog": "^0.6.2",
|
|
38
|
+
"@types/node": "^8.0.7",
|
|
39
|
+
"tslint": "^5.4.3",
|
|
40
|
+
"typescript": "^2.4.1"
|
|
41
41
|
}
|
|
42
42
|
}
|