@ardimedia/angular-portal-azure 0.2.265 → 0.2.267
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 -0
- package/apn.js +10 -36
- package/package.json +24 -24
package/apn.d.ts
CHANGED
|
@@ -132,6 +132,8 @@ declare namespace angularportalazure {
|
|
|
132
132
|
/** close blade. */
|
|
133
133
|
close(): void;
|
|
134
134
|
clearStatusBar(): void;
|
|
135
|
+
setStatusBar(text?: string, style?: string): void;
|
|
136
|
+
setStatusBarCopyData(): void;
|
|
135
137
|
setStatusBarLoadData(): void;
|
|
136
138
|
setStatusBarSaveData(): void;
|
|
137
139
|
setStatusBarDeleteData(): void;
|
package/apn.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
/// <reference types="angular" />
|
|
2
1
|
"use strict";
|
|
2
|
+
/// <reference types="angular" />
|
|
3
3
|
var angularportalazure;
|
|
4
4
|
(function (angularportalazure) {
|
|
5
5
|
/** Define Angular module and its dependencies */
|
|
@@ -31,16 +31,13 @@ var angularportalazure;
|
|
|
31
31
|
while (cookie.charAt(0) === ' ') {
|
|
32
32
|
cookie = cookie.substring(1, cookie.length);
|
|
33
33
|
}
|
|
34
|
-
;
|
|
35
34
|
if (cookie.indexOf(cookieNameEQ) === 0) {
|
|
36
35
|
return cookie.substring(cookieNameEQ.length, cookie.length);
|
|
37
36
|
}
|
|
38
|
-
;
|
|
39
37
|
}
|
|
40
38
|
return null;
|
|
41
39
|
}
|
|
42
40
|
})(angularportalazure || (angularportalazure = {}));
|
|
43
|
-
"use strict";
|
|
44
41
|
var angularportalazure;
|
|
45
42
|
(function (angularportalazure) {
|
|
46
43
|
var UserAccount = (function () {
|
|
@@ -89,7 +86,6 @@ var angularportalazure;
|
|
|
89
86
|
angularportalazure.UserAccount = UserAccount;
|
|
90
87
|
})(angularportalazure || (angularportalazure = {}));
|
|
91
88
|
/// <reference path="portalservice.ts" />
|
|
92
|
-
"use strict";
|
|
93
89
|
var angularportalazure;
|
|
94
90
|
(function (angularportalazure) {
|
|
95
91
|
var UserControlBase = (function () {
|
|
@@ -137,8 +133,6 @@ var angularportalazure;
|
|
|
137
133
|
}());
|
|
138
134
|
angularportalazure.UserControlBase = UserControlBase;
|
|
139
135
|
})(angularportalazure || (angularportalazure = {}));
|
|
140
|
-
"use strict";
|
|
141
|
-
"use strict";
|
|
142
136
|
var __extends = (this && this.__extends) || (function () {
|
|
143
137
|
var extendStatics = Object.setPrototypeOf ||
|
|
144
138
|
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
@@ -285,7 +279,6 @@ var angularportalazure;
|
|
|
285
279
|
});
|
|
286
280
|
// #endregion
|
|
287
281
|
// #region Methods
|
|
288
|
-
// #region Methods
|
|
289
282
|
Blade.prototype.activate = function () {
|
|
290
283
|
this.onActivate();
|
|
291
284
|
this.onActivated();
|
|
@@ -331,6 +324,14 @@ var angularportalazure;
|
|
|
331
324
|
this.statusBar = '';
|
|
332
325
|
this.statusBarClass = '';
|
|
333
326
|
};
|
|
327
|
+
Blade.prototype.setStatusBar = function (text, style) {
|
|
328
|
+
this.statusBar = text ? text : '';
|
|
329
|
+
this.statusBarClass = style ? style : '';
|
|
330
|
+
};
|
|
331
|
+
Blade.prototype.setStatusBarCopyData = function () {
|
|
332
|
+
this.statusBar = 'Daten kopieren...';
|
|
333
|
+
this.statusBarClass = 'apa-statusbar-info';
|
|
334
|
+
};
|
|
334
335
|
Blade.prototype.setStatusBarLoadData = function () {
|
|
335
336
|
this.statusBar = 'Daten laden...';
|
|
336
337
|
this.statusBarClass = 'apa-statusbar-info';
|
|
@@ -364,7 +365,6 @@ var angularportalazure;
|
|
|
364
365
|
this.statusBarClass = 'apa-statusbar-error';
|
|
365
366
|
};
|
|
366
367
|
// #endregion
|
|
367
|
-
// #endregion
|
|
368
368
|
// #region Commands
|
|
369
369
|
Blade.prototype.onCommandBrowse = function () {
|
|
370
370
|
throw new Error('[angularportalazure.Blade] \'onCommandBrowse\' is an abstract function. Define one in the derived class.');
|
|
@@ -421,6 +421,7 @@ var angularportalazure;
|
|
|
421
421
|
throw new Error('[angularportalazure.Blade] \'onCommandExcel\' is an abstract function. Define one in the derived class.');
|
|
422
422
|
};
|
|
423
423
|
// #endregion
|
|
424
|
+
//#endregion
|
|
424
425
|
/** Change title, as soon as watchExpression changes. watchExpression is either a variable ore an expression, e.g. [name1 + name2] */
|
|
425
426
|
Blade.prototype.setTitle = function (watchExpression, func) {
|
|
426
427
|
var _this = this;
|
|
@@ -451,7 +452,6 @@ var angularportalazure;
|
|
|
451
452
|
/// <reference path="usercontrolbase.ts" />
|
|
452
453
|
/// <reference path="portalservice.ts" />
|
|
453
454
|
/// <reference path="iaddbladeeventargs.ts" />
|
|
454
|
-
"use strict";
|
|
455
455
|
var angularportalazure;
|
|
456
456
|
(function (angularportalazure) {
|
|
457
457
|
var AreaBlades = (function (_super) {
|
|
@@ -524,7 +524,6 @@ var angularportalazure;
|
|
|
524
524
|
if (blade.comparePaths(blade.path, path)) {
|
|
525
525
|
throw new Error('[angularportalazure.AreaBlades] path: \'' + path + '\' will not be added. It is already added.');
|
|
526
526
|
}
|
|
527
|
-
;
|
|
528
527
|
});
|
|
529
528
|
// #endregion
|
|
530
529
|
// #region Show the blade
|
|
@@ -650,7 +649,6 @@ var angularportalazure;
|
|
|
650
649
|
})(angularportalazure || (angularportalazure = {}));
|
|
651
650
|
/// <reference path="areablades.ts" />
|
|
652
651
|
/// <reference path="portalservice.ts" />
|
|
653
|
-
"use strict";
|
|
654
652
|
var angularportalazure;
|
|
655
653
|
(function (angularportalazure) {
|
|
656
654
|
var BladeData = (function (_super) {
|
|
@@ -685,7 +683,6 @@ var angularportalazure;
|
|
|
685
683
|
/// <reference path="bladedata.ts" />
|
|
686
684
|
/// <reference path="bladenavitem.ts" />
|
|
687
685
|
/// <reference path="portalservice.ts" />
|
|
688
|
-
"use strict";
|
|
689
686
|
var angularportalazure;
|
|
690
687
|
(function (angularportalazure) {
|
|
691
688
|
var BladeNav = (function (_super) {
|
|
@@ -716,7 +713,6 @@ var angularportalazure;
|
|
|
716
713
|
angularportalazure.BladeNav = BladeNav;
|
|
717
714
|
})(angularportalazure || (angularportalazure = {}));
|
|
718
715
|
/// <reference path="bladenav.ts" />
|
|
719
|
-
"use strict";
|
|
720
716
|
var angularportalazure;
|
|
721
717
|
(function (angularportalazure) {
|
|
722
718
|
var BladeNavItem = (function () {
|
|
@@ -753,7 +749,6 @@ var angularportalazure;
|
|
|
753
749
|
/// <reference path="bladedata.ts" />
|
|
754
750
|
/// <reference path="bladenavitem.ts" />
|
|
755
751
|
/// <reference path="portalservice.ts" />
|
|
756
|
-
"use strict";
|
|
757
752
|
var angularportalazure;
|
|
758
753
|
(function (angularportalazure) {
|
|
759
754
|
var AreaNotification = (function (_super) {
|
|
@@ -826,11 +821,9 @@ var angularportalazure;
|
|
|
826
821
|
}(angularportalazure.UserControlBase));
|
|
827
822
|
angularportalazure.AreaNotification = AreaNotification;
|
|
828
823
|
})(angularportalazure || (angularportalazure = {}));
|
|
829
|
-
"use strict";
|
|
830
824
|
/// <reference path="portalservice.ts" />
|
|
831
825
|
/// <reference path="useraccount.ts" />
|
|
832
826
|
/// <reference path="usercontrolbase.ts" />
|
|
833
|
-
"use strict";
|
|
834
827
|
var angularportalazure;
|
|
835
828
|
(function (angularportalazure) {
|
|
836
829
|
var AvatarMenu = (function (_super) {
|
|
@@ -843,7 +836,6 @@ var angularportalazure;
|
|
|
843
836
|
}(angularportalazure.UserControlBase));
|
|
844
837
|
angularportalazure.AvatarMenu = AvatarMenu;
|
|
845
838
|
})(angularportalazure || (angularportalazure = {}));
|
|
846
|
-
"use strict";
|
|
847
839
|
var angularportalazure;
|
|
848
840
|
(function (angularportalazure) {
|
|
849
841
|
/** The names are used in CSS for layouting, e.g. style='mini' */
|
|
@@ -856,7 +848,6 @@ var angularportalazure;
|
|
|
856
848
|
})(TileSizes = angularportalazure.TileSizes || (angularportalazure.TileSizes = {}));
|
|
857
849
|
})(angularportalazure || (angularportalazure = {}));
|
|
858
850
|
/// <reference path="tilesizes.ts" />
|
|
859
|
-
"use strict";
|
|
860
851
|
var angularportalazure;
|
|
861
852
|
(function (angularportalazure) {
|
|
862
853
|
var TileSize = (function () {
|
|
@@ -883,7 +874,6 @@ var angularportalazure;
|
|
|
883
874
|
/// <reference path="blade.ts" />
|
|
884
875
|
/// <reference path="portalservice.ts" />
|
|
885
876
|
/// <reference path="tilesize.ts" />
|
|
886
|
-
"use strict";
|
|
887
877
|
var angularportalazure;
|
|
888
878
|
(function (angularportalazure) {
|
|
889
879
|
var Tile = (function () {
|
|
@@ -918,7 +908,6 @@ var angularportalazure;
|
|
|
918
908
|
/// <reference path="tile.ts" />
|
|
919
909
|
/// <reference path="tilesize.ts" />
|
|
920
910
|
/// <reference path="tilesizes.ts" />
|
|
921
|
-
"use strict";
|
|
922
911
|
var angularportalazure;
|
|
923
912
|
(function (angularportalazure) {
|
|
924
913
|
var Tiles = (function () {
|
|
@@ -961,7 +950,6 @@ var angularportalazure;
|
|
|
961
950
|
/// <reference path="portalservice.ts" />
|
|
962
951
|
/// <reference path="tiles.ts" />
|
|
963
952
|
/// <reference path="usercontrolbase.ts" />
|
|
964
|
-
"use strict";
|
|
965
953
|
var angularportalazure;
|
|
966
954
|
(function (angularportalazure) {
|
|
967
955
|
var Startboard = (function (_super) {
|
|
@@ -980,7 +968,6 @@ var angularportalazure;
|
|
|
980
968
|
/// <reference path="startboard.ts" />
|
|
981
969
|
/// <reference path="portalservice.ts" />
|
|
982
970
|
/// <reference path="usercontrolbase.ts" />
|
|
983
|
-
"use strict";
|
|
984
971
|
var angularportalazure;
|
|
985
972
|
(function (angularportalazure) {
|
|
986
973
|
var Panorama = (function (_super) {
|
|
@@ -1005,7 +992,6 @@ var angularportalazure;
|
|
|
1005
992
|
/// <reference path="panorama.ts" />
|
|
1006
993
|
/// <reference path="portalservice.ts" />
|
|
1007
994
|
/// <reference path="tiles.ts" />
|
|
1008
|
-
"use strict";
|
|
1009
995
|
var angularportalazure;
|
|
1010
996
|
(function (angularportalazure) {
|
|
1011
997
|
var PortalShell = (function () {
|
|
@@ -1033,7 +1019,6 @@ var angularportalazure;
|
|
|
1033
1019
|
/// <reference path="panorama.ts" />
|
|
1034
1020
|
/// <reference path="portalshell.ts" />
|
|
1035
1021
|
/// <reference types="angulartics" />
|
|
1036
|
-
"use strict";
|
|
1037
1022
|
var angularportalazure;
|
|
1038
1023
|
(function (angularportalazure) {
|
|
1039
1024
|
var PortalService = (function () {
|
|
@@ -1061,7 +1046,6 @@ var angularportalazure;
|
|
|
1061
1046
|
})(angularportalazure || (angularportalazure = {}));
|
|
1062
1047
|
/// <reference types="angular" />
|
|
1063
1048
|
/// <reference path="../../domain/portalservice.ts" />
|
|
1064
|
-
"use strict";
|
|
1065
1049
|
var angularportalazure;
|
|
1066
1050
|
(function (angularportalazure) {
|
|
1067
1051
|
AngularPortalBladeController.$inject = ['angularportalazure.portalService'];
|
|
@@ -1081,7 +1065,6 @@ var angularportalazure;
|
|
|
1081
1065
|
};
|
|
1082
1066
|
angular.module('angularportalazure').component('angularPortalBlade', angularPortalBlade);
|
|
1083
1067
|
})(angularportalazure || (angularportalazure = {}));
|
|
1084
|
-
"use strict";
|
|
1085
1068
|
var angularportalazure;
|
|
1086
1069
|
(function (angularportalazure) {
|
|
1087
1070
|
var angularPortalGrid = {
|
|
@@ -1094,7 +1077,6 @@ var angularportalazure;
|
|
|
1094
1077
|
};
|
|
1095
1078
|
angular.module('angularportalazure').component('angularPortalGrid', angularPortalGrid);
|
|
1096
1079
|
})(angularportalazure || (angularportalazure = {}));
|
|
1097
|
-
"use strict";
|
|
1098
1080
|
var angularportalazure;
|
|
1099
1081
|
(function (angularportalazure) {
|
|
1100
1082
|
AngularPortalHomeController.$inject = ['$scope', 'angularportalazure.portalService'];
|
|
@@ -1113,7 +1095,6 @@ var angularportalazure;
|
|
|
1113
1095
|
};
|
|
1114
1096
|
angular.module('angularportalazure').component('angularPortalHome', angularPortalHome);
|
|
1115
1097
|
})(angularportalazure || (angularportalazure = {}));
|
|
1116
|
-
"use strict";
|
|
1117
1098
|
var angularportalazure;
|
|
1118
1099
|
(function (angularportalazure) {
|
|
1119
1100
|
var angularPortalNav = {
|
|
@@ -1128,7 +1109,6 @@ var angularportalazure;
|
|
|
1128
1109
|
})(angularportalazure || (angularportalazure = {}));
|
|
1129
1110
|
/// <reference path="bladedata.ts" />
|
|
1130
1111
|
/// <reference path="portalservice.ts" />
|
|
1131
|
-
"use strict";
|
|
1132
1112
|
var angularportalazure;
|
|
1133
1113
|
(function (angularportalazure) {
|
|
1134
1114
|
var BladeDetail = (function (_super) {
|
|
@@ -1191,7 +1171,6 @@ var angularportalazure;
|
|
|
1191
1171
|
})(angularportalazure || (angularportalazure = {}));
|
|
1192
1172
|
/// <reference path="bladedata.ts" />
|
|
1193
1173
|
/// <reference path="portalservice.ts" />
|
|
1194
|
-
"use strict";
|
|
1195
1174
|
var angularportalazure;
|
|
1196
1175
|
(function (angularportalazure) {
|
|
1197
1176
|
var BladeGrid = (function (_super) {
|
|
@@ -1298,14 +1277,12 @@ var angularportalazure;
|
|
|
1298
1277
|
else {
|
|
1299
1278
|
return false;
|
|
1300
1279
|
}
|
|
1301
|
-
;
|
|
1302
1280
|
// #endregion
|
|
1303
1281
|
};
|
|
1304
1282
|
return BladeGrid;
|
|
1305
1283
|
}(angularportalazure.BladeData));
|
|
1306
1284
|
angularportalazure.BladeGrid = BladeGrid;
|
|
1307
1285
|
})(angularportalazure || (angularportalazure = {}));
|
|
1308
|
-
"use strict";
|
|
1309
1286
|
var angularportalazure;
|
|
1310
1287
|
(function (angularportalazure) {
|
|
1311
1288
|
var Debug = (function () {
|
|
@@ -1372,7 +1349,6 @@ var angularportalazure;
|
|
|
1372
1349
|
Debug.keys = new Array();
|
|
1373
1350
|
angularportalazure.Debug = Debug;
|
|
1374
1351
|
})(angularportalazure || (angularportalazure = {}));
|
|
1375
|
-
"use strict";
|
|
1376
1352
|
var angularportalazure;
|
|
1377
1353
|
(function (angularportalazure) {
|
|
1378
1354
|
var ExceptionDotNet = (function () {
|
|
@@ -1438,7 +1414,6 @@ var angularportalazure;
|
|
|
1438
1414
|
}(ExceptionDotNet));
|
|
1439
1415
|
angularportalazure.ValidationsExceptionDotNet = ValidationsExceptionDotNet;
|
|
1440
1416
|
})(angularportalazure || (angularportalazure = {}));
|
|
1441
|
-
"use strict";
|
|
1442
1417
|
/// <reference path="exceptiondotnet.ts" />
|
|
1443
1418
|
var angularportalazure;
|
|
1444
1419
|
(function (angularportalazure) {
|
|
@@ -1529,7 +1504,6 @@ var angularportalazure;
|
|
|
1529
1504
|
angularportalazure.Exception = Exception;
|
|
1530
1505
|
})(angularportalazure || (angularportalazure = {}));
|
|
1531
1506
|
/// <reference types="angular" />
|
|
1532
|
-
"use strict";
|
|
1533
1507
|
var angularportalazure;
|
|
1534
1508
|
(function (angularportalazure) {
|
|
1535
1509
|
var DataService = (function () {
|
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.267",
|
|
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.
|
|
9
|
+
"@angular/animations": "^4.1.2",
|
|
10
|
+
"@angular/common": "^4.1.2",
|
|
11
|
+
"@angular/compiler": "^4.1.2",
|
|
12
|
+
"@angular/core": "^4.1.2",
|
|
13
|
+
"@angular/forms": "^4.1.2",
|
|
14
|
+
"@angular/http": "^4.1.2",
|
|
15
|
+
"@angular/platform-browser": "^4.1.2",
|
|
16
|
+
"@angular/platform-browser-dynamic": "^4.1.2",
|
|
17
|
+
"@angular/platform-server": "^4.1.2",
|
|
18
|
+
"@angular/router": "^4.1.2",
|
|
19
|
+
"@angular/upgrade": "^4.1.2",
|
|
20
|
+
"angular": "^1.6.4",
|
|
21
|
+
"angular-resource": "^1.6.4",
|
|
22
22
|
"angular-translate": "^2.15.1",
|
|
23
23
|
"angular-translate-storage-cookie": "^2.15.1",
|
|
24
24
|
"angulartics": "^1.4.0",
|
|
25
25
|
"angulartics-google-analytics": "^0.4.0",
|
|
26
|
-
"bootstrap": "^
|
|
27
|
-
"ng-dialog": "^1.0
|
|
28
|
-
"rxjs": "^5.0
|
|
29
|
-
"zone.js": "^0.8.
|
|
26
|
+
"bootstrap": "^3.3.7",
|
|
27
|
+
"ng-dialog": "^1.1.0",
|
|
28
|
+
"rxjs": "^5.4.0",
|
|
29
|
+
"zone.js": "^0.8.10"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
32
|
-
"@angular/compiler-cli": "^4.
|
|
33
|
-
"@types/angular": "
|
|
32
|
+
"@angular/compiler-cli": "^4.1.2",
|
|
33
|
+
"@types/angular": "https://registry.npmjs.org/@types/angular/-/angular-1.6.17.tgz",
|
|
34
34
|
"@types/angular-resource": "^1.5.8",
|
|
35
|
-
"@types/angular-translate": "^2.
|
|
35
|
+
"@types/angular-translate": "^2.15.0",
|
|
36
36
|
"@types/angulartics": "^1.3.1",
|
|
37
37
|
"@types/ng-dialog": "^0.6.0",
|
|
38
|
-
"@types/node": "^7.0.
|
|
39
|
-
"tslint": "^
|
|
40
|
-
"typescript": "^2.2
|
|
38
|
+
"@types/node": "^7.0.18",
|
|
39
|
+
"tslint": "^5.2.0",
|
|
40
|
+
"typescript": "^2.3.2"
|
|
41
41
|
}
|
|
42
42
|
}
|