@ardimedia/angular-portal-azure 0.2.292 → 0.2.293

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.
Files changed (2) hide show
  1. package/apn.js +24 -24
  2. package/package.json +27 -27
package/apn.js CHANGED
@@ -40,7 +40,7 @@ var angularportalazure;
40
40
  })(angularportalazure || (angularportalazure = {}));
41
41
  var angularportalazure;
42
42
  (function (angularportalazure) {
43
- var UserAccount = (function () {
43
+ var UserAccount = /** @class */ (function () {
44
44
  // #region Constructor
45
45
  function UserAccount(username, firstName, lastName) {
46
46
  if (firstName === void 0) { firstName = ''; }
@@ -91,7 +91,7 @@ var angularportalazure;
91
91
  // #endregion
92
92
  var angularportalazure;
93
93
  (function (angularportalazure) {
94
- var UserControlBase = (function () {
94
+ var UserControlBase = /** @class */ (function () {
95
95
  // #region Constructor
96
96
  function UserControlBase($scope, portalService) {
97
97
  this.$scope = $scope;
@@ -130,7 +130,7 @@ var angularportalazure;
130
130
  };
131
131
  UserControlBase.prototype.getRandomString = function (length) {
132
132
  if (length === void 0) { length = 20; }
133
- return Math.round((Math.pow(36, length + 1) - Math.random() * Math.pow(36, length))).toString(36).replace('.', '').replace('(e+', '').replace(')', '').slice(1);
133
+ return 'a' + Math.round((Math.pow(36, length + 1) - Math.random() * Math.pow(36, length))).toString(36).replace('.', '').replace('(e+', '').replace(')', '').slice(1);
134
134
  };
135
135
  return UserControlBase;
136
136
  }());
@@ -155,7 +155,7 @@ var __extends = (this && this.__extends) || (function () {
155
155
  // #endregion
156
156
  var angularportalazure;
157
157
  (function (angularportalazure) {
158
- var Blade = (function (_super) {
158
+ var Blade = /** @class */ (function (_super) {
159
159
  __extends(Blade, _super);
160
160
  // #region Constructor
161
161
  function Blade($scope, portalService, path, title, subtitle, width) {
@@ -473,7 +473,7 @@ var angularportalazure;
473
473
  // #endregion
474
474
  var angularportalazure;
475
475
  (function (angularportalazure) {
476
- var AreaBlades = (function (_super) {
476
+ var AreaBlades = /** @class */ (function (_super) {
477
477
  __extends(AreaBlades, _super);
478
478
  function AreaBlades($scope, portalService) {
479
479
  var _this = _super.call(this, $scope, portalService) || this;
@@ -673,7 +673,7 @@ var angularportalazure;
673
673
  // #endregion
674
674
  var angularportalazure;
675
675
  (function (angularportalazure) {
676
- var BladeData = (function (_super) {
676
+ var BladeData = /** @class */ (function (_super) {
677
677
  __extends(BladeData, _super);
678
678
  // #region Constructor
679
679
  function BladeData($scope, portalService, path, title, subtitle, width) {
@@ -709,7 +709,7 @@ var angularportalazure;
709
709
  // #endregion
710
710
  var angularportalazure;
711
711
  (function (angularportalazure) {
712
- var BladeNav = (function (_super) {
712
+ var BladeNav = /** @class */ (function (_super) {
713
713
  __extends(BladeNav, _super);
714
714
  // #region Constructor
715
715
  function BladeNav($scope, portalService, path, title, subtitle, width) {
@@ -741,7 +741,7 @@ var angularportalazure;
741
741
  // #endregion
742
742
  var angularportalazure;
743
743
  (function (angularportalazure) {
744
- var BladeNavItem = (function () {
744
+ var BladeNavItem = /** @class */ (function () {
745
745
  // #region Constructor
746
746
  function BladeNavItem(title, cssClass, bladePath, hrefPath, roles, isVisible, callback, bladeNav) {
747
747
  if (title === void 0) { title = ''; }
@@ -781,7 +781,7 @@ var angularportalazure;
781
781
  // #endregion
782
782
  var angularportalazure;
783
783
  (function (angularportalazure) {
784
- var AreaNotification = (function (_super) {
784
+ var AreaNotification = /** @class */ (function (_super) {
785
785
  __extends(AreaNotification, _super);
786
786
  // #region Constructor
787
787
  function AreaNotification($scope, portalService) {
@@ -875,7 +875,7 @@ var angularportalazure;
875
875
  // #endregion
876
876
  var angularportalazure;
877
877
  (function (angularportalazure) {
878
- var AvatarMenu = (function (_super) {
878
+ var AvatarMenu = /** @class */ (function (_super) {
879
879
  __extends(AvatarMenu, _super);
880
880
  // #region Constructor
881
881
  function AvatarMenu($scope, portalService) {
@@ -901,7 +901,7 @@ var angularportalazure;
901
901
  // #endregion
902
902
  var angularportalazure;
903
903
  (function (angularportalazure) {
904
- var TileSize = (function () {
904
+ var TileSize = /** @class */ (function () {
905
905
  // #region Constructor
906
906
  function TileSize(tileSizes, width, height) {
907
907
  this.tileSizes = tileSizes;
@@ -929,7 +929,7 @@ var angularportalazure;
929
929
  // #endregion
930
930
  var angularportalazure;
931
931
  (function (angularportalazure) {
932
- var Tile = (function () {
932
+ var Tile = /** @class */ (function () {
933
933
  // #region Constructor
934
934
  function Tile(title, bladePath, portalService) {
935
935
  this.portalService = portalService;
@@ -965,7 +965,7 @@ var angularportalazure;
965
965
  // #endregion
966
966
  var angularportalazure;
967
967
  (function (angularportalazure) {
968
- var Tiles = (function () {
968
+ var Tiles = /** @class */ (function () {
969
969
  function Tiles() {
970
970
  // #region Properties
971
971
  this.showTiles = true;
@@ -1009,7 +1009,7 @@ var angularportalazure;
1009
1009
  // #endregion
1010
1010
  var angularportalazure;
1011
1011
  (function (angularportalazure) {
1012
- var Startboard = (function (_super) {
1012
+ var Startboard = /** @class */ (function (_super) {
1013
1013
  __extends(Startboard, _super);
1014
1014
  // #region Constructor
1015
1015
  function Startboard($scope, portalService) {
@@ -1029,7 +1029,7 @@ var angularportalazure;
1029
1029
  // #endregion
1030
1030
  var angularportalazure;
1031
1031
  (function (angularportalazure) {
1032
- var Panorama = (function (_super) {
1032
+ var Panorama = /** @class */ (function (_super) {
1033
1033
  __extends(Panorama, _super);
1034
1034
  // #endregion
1035
1035
  // #region Constructor
@@ -1055,7 +1055,7 @@ var angularportalazure;
1055
1055
  // #endregion
1056
1056
  var angularportalazure;
1057
1057
  (function (angularportalazure) {
1058
- var PortalShell = (function () {
1058
+ var PortalShell = /** @class */ (function () {
1059
1059
  // #region Constructor
1060
1060
  function PortalShell(portalService, title) {
1061
1061
  if (title === void 0) { title = null; }
@@ -1085,7 +1085,7 @@ var angularportalazure;
1085
1085
  // #endregion
1086
1086
  var angularportalazure;
1087
1087
  (function (angularportalazure) {
1088
- var PortalService = (function () {
1088
+ var PortalService = /** @class */ (function () {
1089
1089
  function PortalService($injector) {
1090
1090
  // #endregion
1091
1091
  // #region Properties
@@ -1177,7 +1177,7 @@ var angularportalazure;
1177
1177
  // #endregion
1178
1178
  var angularportalazure;
1179
1179
  (function (angularportalazure) {
1180
- var BladeDetail = (function (_super) {
1180
+ var BladeDetail = /** @class */ (function (_super) {
1181
1181
  __extends(BladeDetail, _super);
1182
1182
  // #region Constructor
1183
1183
  function BladeDetail($scope, portalService, path, title, subtitle, width) {
@@ -1314,7 +1314,7 @@ var angularportalazure;
1314
1314
  // #endregion
1315
1315
  var angularportalazure;
1316
1316
  (function (angularportalazure) {
1317
- var BladeGrid = (function (_super) {
1317
+ var BladeGrid = /** @class */ (function (_super) {
1318
1318
  __extends(BladeGrid, _super);
1319
1319
  // #region Constructor
1320
1320
  function BladeGrid($scope, portalService, path, title, subtitle, width) {
@@ -1426,7 +1426,7 @@ var angularportalazure;
1426
1426
  })(angularportalazure || (angularportalazure = {}));
1427
1427
  var angularportalazure;
1428
1428
  (function (angularportalazure) {
1429
- var Debug = (function () {
1429
+ var Debug = /** @class */ (function () {
1430
1430
  // #region Constructor
1431
1431
  function Debug() {
1432
1432
  }
@@ -1492,19 +1492,19 @@ var angularportalazure;
1492
1492
  })(angularportalazure || (angularportalazure = {}));
1493
1493
  var angularportalazure;
1494
1494
  (function (angularportalazure) {
1495
- var ExceptionDotNet = (function () {
1495
+ var ExceptionDotNet = /** @class */ (function () {
1496
1496
  function ExceptionDotNet() {
1497
1497
  }
1498
1498
  return ExceptionDotNet;
1499
1499
  }());
1500
1500
  angularportalazure.ExceptionDotNet = ExceptionDotNet;
1501
- var ValidationResultDotNet = (function () {
1501
+ var ValidationResultDotNet = /** @class */ (function () {
1502
1502
  function ValidationResultDotNet() {
1503
1503
  }
1504
1504
  return ValidationResultDotNet;
1505
1505
  }());
1506
1506
  angularportalazure.ValidationResultDotNet = ValidationResultDotNet;
1507
- var ValidationsExceptionDotNet = (function (_super) {
1507
+ var ValidationsExceptionDotNet = /** @class */ (function (_super) {
1508
1508
  __extends(ValidationsExceptionDotNet, _super);
1509
1509
  function ValidationsExceptionDotNet() {
1510
1510
  return _super !== null && _super.apply(this, arguments) || this;
@@ -1560,7 +1560,7 @@ var angularportalazure;
1560
1560
  // #endregion
1561
1561
  var angularportalazure;
1562
1562
  (function (angularportalazure) {
1563
- var Exception = (function (_super) {
1563
+ var Exception = /** @class */ (function (_super) {
1564
1564
  __extends(Exception, _super);
1565
1565
  function Exception() {
1566
1566
  return _super !== null && _super.apply(this, arguments) || this;
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.292",
5
+ "version": "0.2.293",
6
6
  "main": "index.js",
7
7
  "typings": "apn.d.ts",
8
8
  "dependencies": {
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
- "angulartics": "^1.4.0",
9
+ "@angular/animations": "^5.2.5",
10
+ "@angular/common": "^5.2.5",
11
+ "@angular/compiler": "^5.2.5",
12
+ "@angular/core": "^5.2.5",
13
+ "@angular/forms": "^5.2.5",
14
+ "@angular/http": "^5.2.5",
15
+ "@angular/platform-browser": "^5.2.5",
16
+ "@angular/platform-browser-dynamic": "^5.2.5",
17
+ "@angular/platform-server": "^5.2.5",
18
+ "@angular/router": "^5.2.5",
19
+ "@angular/upgrade": "^5.2.5",
20
+ "angular": "^1.6.9",
21
+ "angular-resource": "^1.6.9",
22
+ "angular-translate": "^2.17.0",
23
+ "angular-translate-storage-cookie": "^2.17.0",
24
+ "angulartics": "^1.5.0",
25
25
  "angulartics-google-analytics": "^0.4.0",
26
- "bootstrap": "^3.3.7",
27
- "ng-dialog": "^1.3.0",
28
- "rxjs": "^5.4.2",
29
- "zone.js": "^0.8.12"
26
+ "bootstrap": "^4.0.0",
27
+ "ng-dialog": "^1.4.0",
28
+ "rxjs": "^5.5.6",
29
+ "zone.js": "^0.8.20"
30
30
  },
31
31
  "devDependencies": {
32
- "@angular/compiler-cli": "^4.2.5",
32
+ "@angular/compiler-cli": "^5.2.5",
33
33
  "@types/angular": "https://registry.npmjs.org/@types/angular/-/angular-1.6.17.tgz",
34
- "@types/angular-resource": "^1.5.9",
34
+ "@types/angular-resource": "^1.5.14",
35
35
  "@types/angular-translate": "^2.15.1",
36
- "@types/angulartics": "^1.3.2",
36
+ "@types/angulartics": "^1.4.1",
37
37
  "@types/ng-dialog": "^0.6.2",
38
- "@types/node": "^8.0.7",
39
- "tslint": "^5.4.3",
40
- "typescript": "^2.4.1"
38
+ "@types/node": "^9.4.6",
39
+ "tslint": "^5.9.1",
40
+ "typescript": "^2.7.2"
41
41
  }
42
42
  }