@ardimedia/angular-portal-azure 0.2.143 → 0.2.144
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 +0 -4
- package/apn.js +59 -61
- package/directives/blade/angular-portal-blade-grid.ts +25 -25
- package/directives/blade/angular-portal-blade-nav.ts +25 -25
- package/directives/blade/angular-portal-blade.ts +2 -2
- package/directives/blade/blade.html +2 -2
- package/directives/grid/{grid.ts → angular-portal-grid.ts} +3 -3
- package/directives/nav/{nav.ts → angular-portal-nav.ts} +2 -2
- package/package.json +1 -1
- /package/directives/home/{home.ts → angular-portal-home.ts} +0 -0
package/apn.d.ts
CHANGED
|
@@ -350,10 +350,6 @@ declare namespace angularportalazure {
|
|
|
350
350
|
}
|
|
351
351
|
declare namespace angularportalazure {
|
|
352
352
|
}
|
|
353
|
-
declare namespace angularportalazure {
|
|
354
|
-
}
|
|
355
|
-
declare namespace angularportalazure {
|
|
356
|
-
}
|
|
357
353
|
declare namespace angularportalazure {
|
|
358
354
|
class BladeDetail<T> extends angularportalazure.BladeData {
|
|
359
355
|
item: T | null;
|
package/apn.js
CHANGED
|
@@ -44,6 +44,58 @@ var angularportalazure;
|
|
|
44
44
|
return null;
|
|
45
45
|
}
|
|
46
46
|
})(angularportalazure || (angularportalazure = {}));
|
|
47
|
+
///// <reference types="angular" />
|
|
48
|
+
///// <reference path="../../domain/debug.ts" />
|
|
49
|
+
///// <reference path="../../domain/portalservice.ts" />
|
|
50
|
+
"use strict";
|
|
51
|
+
//namespace angularportalazure {
|
|
52
|
+
// angularPortalBladeGrid.$inject = ['angularportalazure.portalService'];
|
|
53
|
+
// function angularPortalBladeGrid(portalService: angularportalazure.PortalService) {
|
|
54
|
+
// return {
|
|
55
|
+
// restrict: 'E',
|
|
56
|
+
// transclude: true,
|
|
57
|
+
// scope: {},
|
|
58
|
+
// bindToController: { vm: '=' },
|
|
59
|
+
// templateUrl: '/node_modules/@ardimedia/angular-portal-azure/directives/blade/blade.html',
|
|
60
|
+
// link: function (scope: angular.IScope, element, attrs, controller) { },
|
|
61
|
+
// controller: function () {
|
|
62
|
+
// this.$onInit = function () {
|
|
63
|
+
// this.close = function () {
|
|
64
|
+
// //portalService.areaBlades.clearLastLevel();
|
|
65
|
+
// };
|
|
66
|
+
// };
|
|
67
|
+
// },
|
|
68
|
+
// controllerAs: '$ctrl'
|
|
69
|
+
// };
|
|
70
|
+
// }
|
|
71
|
+
// angular.module('angularportalazure').directive('angularPortalBladeGrid', angularPortalBladeGrid);
|
|
72
|
+
//}
|
|
73
|
+
///// <reference types="angular" />
|
|
74
|
+
///// <reference path="../../domain/debug.ts" />
|
|
75
|
+
///// <reference path="../../domain/portalservice.ts" />
|
|
76
|
+
"use strict";
|
|
77
|
+
//namespace angularportalazure {
|
|
78
|
+
// angularPortalBladeNav.$inject = ['angularportalazure.portalService'];
|
|
79
|
+
// function angularPortalBladeNav(portalService: angularportalazure.PortalService) {
|
|
80
|
+
// return {
|
|
81
|
+
// restrict: 'E',
|
|
82
|
+
// transclude: true,
|
|
83
|
+
// scope: {},
|
|
84
|
+
// bindToController: { vm: '=' },
|
|
85
|
+
// templateUrl: '/node_modules/@ardimedia/angular-portal-azure/directives/blade/blade.html',
|
|
86
|
+
// link: function (scope:angular.IScope, element, attrs, controller) { },
|
|
87
|
+
// controller: function () {
|
|
88
|
+
// this.$onInit = function () {
|
|
89
|
+
// this.close = function () {
|
|
90
|
+
// //portalService.areaBlades.clearLastLevel();
|
|
91
|
+
// };
|
|
92
|
+
// };
|
|
93
|
+
// },
|
|
94
|
+
// controllerAs: '$ctrl'
|
|
95
|
+
// };
|
|
96
|
+
// }
|
|
97
|
+
// angular.module('angularportalazure').directive('angularPortalBladeNav', angularPortalBladeNav);
|
|
98
|
+
//}
|
|
47
99
|
//#region Make sure console.log is working in any case, even IE9
|
|
48
100
|
"use strict";
|
|
49
101
|
//if ($('html').hasClass('k-ie9')) {
|
|
@@ -1124,60 +1176,6 @@ var angularportalazure;
|
|
|
1124
1176
|
/// <reference path="../../domain/portalservice.ts" />
|
|
1125
1177
|
"use strict";
|
|
1126
1178
|
var angularportalazure;
|
|
1127
|
-
(function (angularportalazure) {
|
|
1128
|
-
angularPortalBladeGrid.$inject = ['angularportalazure.portalService'];
|
|
1129
|
-
function angularPortalBladeGrid(portalService) {
|
|
1130
|
-
return {
|
|
1131
|
-
restrict: 'E',
|
|
1132
|
-
transclude: true,
|
|
1133
|
-
scope: {},
|
|
1134
|
-
bindToController: { vm: '=' },
|
|
1135
|
-
templateUrl: '/node_modules/@ardimedia/angular-portal-azure/directives/blade/blade.html',
|
|
1136
|
-
link: function (scope, element, attrs, controller) { },
|
|
1137
|
-
controller: function () {
|
|
1138
|
-
this.$onInit = function () {
|
|
1139
|
-
this.close = function () {
|
|
1140
|
-
//portalService.areaBlades.clearLastLevel();
|
|
1141
|
-
};
|
|
1142
|
-
};
|
|
1143
|
-
},
|
|
1144
|
-
controllerAs: '$ctrl'
|
|
1145
|
-
};
|
|
1146
|
-
}
|
|
1147
|
-
angular.module('angularportalazure').directive('angularPortalBladeGrid', angularPortalBladeGrid);
|
|
1148
|
-
})(angularportalazure || (angularportalazure = {}));
|
|
1149
|
-
/// <reference types="angular" />
|
|
1150
|
-
/// <reference path="../../domain/debug.ts" />
|
|
1151
|
-
/// <reference path="../../domain/portalservice.ts" />
|
|
1152
|
-
"use strict";
|
|
1153
|
-
var angularportalazure;
|
|
1154
|
-
(function (angularportalazure) {
|
|
1155
|
-
angularPortalBladeNav.$inject = ['angularportalazure.portalService'];
|
|
1156
|
-
function angularPortalBladeNav(portalService) {
|
|
1157
|
-
return {
|
|
1158
|
-
restrict: 'E',
|
|
1159
|
-
transclude: true,
|
|
1160
|
-
scope: {},
|
|
1161
|
-
bindToController: { vm: '=' },
|
|
1162
|
-
templateUrl: '/node_modules/@ardimedia/angular-portal-azure/directives/blade/blade.html',
|
|
1163
|
-
link: function (scope, element, attrs, controller) { },
|
|
1164
|
-
controller: function () {
|
|
1165
|
-
this.$onInit = function () {
|
|
1166
|
-
this.close = function () {
|
|
1167
|
-
//portalService.areaBlades.clearLastLevel();
|
|
1168
|
-
};
|
|
1169
|
-
};
|
|
1170
|
-
},
|
|
1171
|
-
controllerAs: '$ctrl'
|
|
1172
|
-
};
|
|
1173
|
-
}
|
|
1174
|
-
angular.module('angularportalazure').directive('angularPortalBladeNav', angularPortalBladeNav);
|
|
1175
|
-
})(angularportalazure || (angularportalazure = {}));
|
|
1176
|
-
/// <reference types="angular" />
|
|
1177
|
-
/// <reference path="../../domain/debug.ts" />
|
|
1178
|
-
/// <reference path="../../domain/portalservice.ts" />
|
|
1179
|
-
"use strict";
|
|
1180
|
-
var angularportalazure;
|
|
1181
1179
|
(function (angularportalazure) {
|
|
1182
1180
|
//angularPortalBlade.$inject = ['angularportalazure.portalService'];
|
|
1183
1181
|
//function angularPortalBlade(portalService: angularportalazure.PortalService) {
|
|
@@ -1206,10 +1204,10 @@ var angularportalazure;
|
|
|
1206
1204
|
AngularPortalBladeController.$inject = ['angularportalazure.portalService'];
|
|
1207
1205
|
function AngularPortalBladeController(portalService) {
|
|
1208
1206
|
this.$onInit = function () {
|
|
1209
|
-
portalService.areaNotification.show();
|
|
1207
|
+
//portalService.areaNotification.show();
|
|
1210
1208
|
this.close = function () {
|
|
1211
1209
|
//portalService.areaBlades.clearLastLevel();
|
|
1212
|
-
portalService.areaNotification.hide();
|
|
1210
|
+
//portalService.areaNotification.hide();
|
|
1213
1211
|
};
|
|
1214
1212
|
};
|
|
1215
1213
|
}
|
|
@@ -1246,15 +1244,15 @@ var angularportalazure;
|
|
|
1246
1244
|
// };
|
|
1247
1245
|
//}
|
|
1248
1246
|
//angular.module('angularportalazure').directive('grid', grid);
|
|
1249
|
-
var
|
|
1247
|
+
var angularPortalGrid = {
|
|
1250
1248
|
transclude: true,
|
|
1251
|
-
templateUrl: '/node_modules/@ardimedia/angular-portal-azure/directives/
|
|
1249
|
+
templateUrl: '/node_modules/@ardimedia/angular-portal-azure/directives/bladegrid/bladegrid.html',
|
|
1252
1250
|
controller: function () { },
|
|
1253
1251
|
bindings: {
|
|
1254
1252
|
vm: '='
|
|
1255
1253
|
}
|
|
1256
1254
|
};
|
|
1257
|
-
angular.module('angularportalazure').component('
|
|
1255
|
+
angular.module('angularportalazure').component('angularPortalGrid', angularPortalGrid);
|
|
1258
1256
|
})(angularportalazure || (angularportalazure = {}));
|
|
1259
1257
|
"use strict";
|
|
1260
1258
|
var angularportalazure;
|
|
@@ -1317,7 +1315,7 @@ var angularportalazure;
|
|
|
1317
1315
|
// };
|
|
1318
1316
|
//}
|
|
1319
1317
|
//angular.module('angularportalazure').directive('nav', nav);
|
|
1320
|
-
var
|
|
1318
|
+
var angularPortalNav = {
|
|
1321
1319
|
transclude: true,
|
|
1322
1320
|
templateUrl: '/node_modules/@ardimedia/angular-portal-azure/directives/nav/nav.html',
|
|
1323
1321
|
controller: function () { },
|
|
@@ -1325,7 +1323,7 @@ var angularportalazure;
|
|
|
1325
1323
|
vm: '='
|
|
1326
1324
|
}
|
|
1327
1325
|
};
|
|
1328
|
-
angular.module('angularportalazure').component('
|
|
1326
|
+
angular.module('angularportalazure').component('angularPortalNav', angularPortalNav);
|
|
1329
1327
|
})(angularportalazure || (angularportalazure = {}));
|
|
1330
1328
|
/// <reference path="bladedata.ts" />
|
|
1331
1329
|
/// <reference path="debug.ts" />
|
|
@@ -1,27 +1,27 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
1
|
+
///// <reference types="angular" />
|
|
2
|
+
///// <reference path="../../domain/debug.ts" />
|
|
3
|
+
///// <reference path="../../domain/portalservice.ts" />
|
|
4
4
|
|
|
5
|
-
namespace angularportalazure {
|
|
6
|
-
angularPortalBladeGrid.$inject = ['angularportalazure.portalService'];
|
|
7
|
-
function angularPortalBladeGrid(portalService: angularportalazure.PortalService) {
|
|
8
|
-
return {
|
|
9
|
-
restrict: 'E',
|
|
10
|
-
transclude: true,
|
|
11
|
-
scope: {},
|
|
12
|
-
bindToController: { vm: '=' },
|
|
13
|
-
templateUrl: '/node_modules/@ardimedia/angular-portal-azure/directives/blade/blade.html',
|
|
14
|
-
link: function (scope: angular.IScope, element, attrs, controller) { },
|
|
15
|
-
controller: function () {
|
|
16
|
-
this.$onInit = function () {
|
|
17
|
-
this.close = function () {
|
|
18
|
-
//portalService.areaBlades.clearLastLevel();
|
|
19
|
-
};
|
|
20
|
-
};
|
|
21
|
-
},
|
|
22
|
-
controllerAs: '$ctrl'
|
|
23
|
-
};
|
|
24
|
-
}
|
|
5
|
+
//namespace angularportalazure {
|
|
6
|
+
// angularPortalBladeGrid.$inject = ['angularportalazure.portalService'];
|
|
7
|
+
// function angularPortalBladeGrid(portalService: angularportalazure.PortalService) {
|
|
8
|
+
// return {
|
|
9
|
+
// restrict: 'E',
|
|
10
|
+
// transclude: true,
|
|
11
|
+
// scope: {},
|
|
12
|
+
// bindToController: { vm: '=' },
|
|
13
|
+
// templateUrl: '/node_modules/@ardimedia/angular-portal-azure/directives/blade/blade.html',
|
|
14
|
+
// link: function (scope: angular.IScope, element, attrs, controller) { },
|
|
15
|
+
// controller: function () {
|
|
16
|
+
// this.$onInit = function () {
|
|
17
|
+
// this.close = function () {
|
|
18
|
+
// //portalService.areaBlades.clearLastLevel();
|
|
19
|
+
// };
|
|
20
|
+
// };
|
|
21
|
+
// },
|
|
22
|
+
// controllerAs: '$ctrl'
|
|
23
|
+
// };
|
|
24
|
+
// }
|
|
25
25
|
|
|
26
|
-
angular.module('angularportalazure').directive('angularPortalBladeGrid', angularPortalBladeGrid);
|
|
27
|
-
}
|
|
26
|
+
// angular.module('angularportalazure').directive('angularPortalBladeGrid', angularPortalBladeGrid);
|
|
27
|
+
//}
|
|
@@ -1,27 +1,27 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
1
|
+
///// <reference types="angular" />
|
|
2
|
+
///// <reference path="../../domain/debug.ts" />
|
|
3
|
+
///// <reference path="../../domain/portalservice.ts" />
|
|
4
4
|
|
|
5
|
-
namespace angularportalazure {
|
|
6
|
-
angularPortalBladeNav.$inject = ['angularportalazure.portalService'];
|
|
7
|
-
function angularPortalBladeNav(portalService: angularportalazure.PortalService) {
|
|
8
|
-
return {
|
|
9
|
-
restrict: 'E',
|
|
10
|
-
transclude: true,
|
|
11
|
-
scope: {},
|
|
12
|
-
bindToController: { vm: '=' },
|
|
13
|
-
templateUrl: '/node_modules/@ardimedia/angular-portal-azure/directives/blade/blade.html',
|
|
14
|
-
link: function (scope:angular.IScope, element, attrs, controller) { },
|
|
15
|
-
controller: function () {
|
|
16
|
-
this.$onInit = function () {
|
|
17
|
-
this.close = function () {
|
|
18
|
-
//portalService.areaBlades.clearLastLevel();
|
|
19
|
-
};
|
|
20
|
-
};
|
|
21
|
-
},
|
|
22
|
-
controllerAs: '$ctrl'
|
|
23
|
-
};
|
|
24
|
-
}
|
|
5
|
+
//namespace angularportalazure {
|
|
6
|
+
// angularPortalBladeNav.$inject = ['angularportalazure.portalService'];
|
|
7
|
+
// function angularPortalBladeNav(portalService: angularportalazure.PortalService) {
|
|
8
|
+
// return {
|
|
9
|
+
// restrict: 'E',
|
|
10
|
+
// transclude: true,
|
|
11
|
+
// scope: {},
|
|
12
|
+
// bindToController: { vm: '=' },
|
|
13
|
+
// templateUrl: '/node_modules/@ardimedia/angular-portal-azure/directives/blade/blade.html',
|
|
14
|
+
// link: function (scope:angular.IScope, element, attrs, controller) { },
|
|
15
|
+
// controller: function () {
|
|
16
|
+
// this.$onInit = function () {
|
|
17
|
+
// this.close = function () {
|
|
18
|
+
// //portalService.areaBlades.clearLastLevel();
|
|
19
|
+
// };
|
|
20
|
+
// };
|
|
21
|
+
// },
|
|
22
|
+
// controllerAs: '$ctrl'
|
|
23
|
+
// };
|
|
24
|
+
// }
|
|
25
25
|
|
|
26
|
-
angular.module('angularportalazure').directive('angularPortalBladeNav', angularPortalBladeNav);
|
|
27
|
-
}
|
|
26
|
+
// angular.module('angularportalazure').directive('angularPortalBladeNav', angularPortalBladeNav);
|
|
27
|
+
//}
|
|
@@ -32,10 +32,10 @@ namespace angularportalazure {
|
|
|
32
32
|
AngularPortalBladeController.$inject = ['angularportalazure.portalService'];
|
|
33
33
|
function AngularPortalBladeController(portalService: angularportalazure.PortalService) {
|
|
34
34
|
this.$onInit = function () {
|
|
35
|
-
portalService.areaNotification.show();
|
|
35
|
+
//portalService.areaNotification.show();
|
|
36
36
|
this.close = function () {
|
|
37
37
|
//portalService.areaBlades.clearLastLevel();
|
|
38
|
-
portalService.areaNotification.hide();
|
|
38
|
+
//portalService.areaNotification.hide();
|
|
39
39
|
};
|
|
40
40
|
};
|
|
41
41
|
}
|
|
@@ -244,10 +244,10 @@
|
|
|
244
244
|
</div>
|
|
245
245
|
|
|
246
246
|
<!-- nav -->
|
|
247
|
-
<nav data-ng-if="$ctrl.vm.isNav" vm="$ctrl.vm"></nav>
|
|
247
|
+
<angular-portal-nav data-ng-if="$ctrl.vm.isNav" vm="$ctrl.vm"></angular-portal-nav>
|
|
248
248
|
|
|
249
249
|
<!-- grid -->
|
|
250
|
-
<grid data-ng-if="$ctrl.vm.isNavGrid" vm="$ctrl.vm"></grid>
|
|
250
|
+
<angular-portal-grid data-ng-if="$ctrl.vm.isNavGrid" vm="$ctrl.vm"></angular-portal-grid>
|
|
251
251
|
|
|
252
252
|
<!--</div>-->
|
|
253
253
|
</div>
|
|
@@ -21,14 +21,14 @@
|
|
|
21
21
|
|
|
22
22
|
//angular.module('angularportalazure').directive('grid', grid);
|
|
23
23
|
|
|
24
|
-
var
|
|
24
|
+
var angularPortalGrid = {
|
|
25
25
|
transclude: true,
|
|
26
|
-
templateUrl: '/node_modules/@ardimedia/angular-portal-azure/directives/
|
|
26
|
+
templateUrl: '/node_modules/@ardimedia/angular-portal-azure/directives/bladegrid/bladegrid.html',
|
|
27
27
|
controller: function () { },
|
|
28
28
|
bindings: {
|
|
29
29
|
vm: '='
|
|
30
30
|
}
|
|
31
31
|
};
|
|
32
32
|
|
|
33
|
-
angular.module('angularportalazure').component('
|
|
33
|
+
angular.module('angularportalazure').component('angularPortalGrid', angularPortalGrid);
|
|
34
34
|
}
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
|
|
29
29
|
//angular.module('angularportalazure').directive('nav', nav);
|
|
30
30
|
|
|
31
|
-
var
|
|
31
|
+
var angularPortalNav = {
|
|
32
32
|
transclude: true,
|
|
33
33
|
templateUrl: '/node_modules/@ardimedia/angular-portal-azure/directives/nav/nav.html',
|
|
34
34
|
controller: function () { },
|
|
@@ -37,5 +37,5 @@
|
|
|
37
37
|
}
|
|
38
38
|
};
|
|
39
39
|
|
|
40
|
-
angular.module('angularportalazure').component('
|
|
40
|
+
angular.module('angularportalazure').component('angularPortalNav', angularPortalNav);
|
|
41
41
|
}
|
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.144",
|
|
6
6
|
"main": "index.js",
|
|
7
7
|
"typings": "apn.d.ts",
|
|
8
8
|
"dependencies": {
|
|
File without changes
|