@ardimedia/angular-portal-azure 0.2.151 → 0.2.153
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/README.md +6 -1
- package/apn.d.ts +19 -23
- package/apn.js +78 -258
- package/css/apn.css +1 -1
- package/css/apn.min.css +1 -1
- package/directives/blade/angular-portal-blade.ts +1 -31
- package/directives/grid/angular-portal-grid.ts +1 -23
- package/directives/home/angular-portal-home.ts +1 -15
- package/directives/nav/angular-portal-nav.ts +1 -30
- package/package.json +1 -1
package/README.md
CHANGED
package/apn.d.ts
CHANGED
|
@@ -5,21 +5,6 @@
|
|
|
5
5
|
/// <reference types="angular-translate" />
|
|
6
6
|
declare namespace angularportalazure {
|
|
7
7
|
}
|
|
8
|
-
declare namespace angularportalazure {
|
|
9
|
-
class Debug {
|
|
10
|
-
constructor();
|
|
11
|
-
static isEnabled: boolean;
|
|
12
|
-
static isWithObjects: boolean;
|
|
13
|
-
static keys: Array<string>;
|
|
14
|
-
static enable(key?: string): void;
|
|
15
|
-
static disable(key?: string): void;
|
|
16
|
-
static write(debugLine: string, objects?: Array<any>): boolean;
|
|
17
|
-
/** Extract the key (e.g. [azureportal] from a string */
|
|
18
|
-
static extractKey(text: string): string;
|
|
19
|
-
/** Extract the key (e.g. [azureportal] from a string */
|
|
20
|
-
static isInKeys(debugLine: string): boolean;
|
|
21
|
-
}
|
|
22
|
-
}
|
|
23
8
|
declare namespace angularportalazure {
|
|
24
9
|
class UserAccount {
|
|
25
10
|
constructor(username: string, firstName?: string, lastName?: string);
|
|
@@ -36,6 +21,7 @@ declare namespace angularportalazure {
|
|
|
36
21
|
declare namespace angularportalazure {
|
|
37
22
|
class UserControlBase {
|
|
38
23
|
constructor($scope: angular.IScope, portalService: angularportalazure.PortalService);
|
|
24
|
+
$scope: angular.IScope;
|
|
39
25
|
portalService: angularportalazure.PortalService;
|
|
40
26
|
setupWindowResizeListener(callback: () => void): void;
|
|
41
27
|
}
|
|
@@ -53,8 +39,6 @@ declare namespace angularportalazure {
|
|
|
53
39
|
private watcherTitle;
|
|
54
40
|
bladeContentHeight: number;
|
|
55
41
|
bladeContentHeightInner: number;
|
|
56
|
-
private _path;
|
|
57
|
-
path: string;
|
|
58
42
|
title: string;
|
|
59
43
|
subTitle: string;
|
|
60
44
|
width: {
|
|
@@ -67,6 +51,8 @@ declare namespace angularportalazure {
|
|
|
67
51
|
statusBar: string;
|
|
68
52
|
statusBarClass: string;
|
|
69
53
|
formblade: any;
|
|
54
|
+
private _path;
|
|
55
|
+
path: string;
|
|
70
56
|
isCommandBrowse: boolean;
|
|
71
57
|
commandBrowse: () => void;
|
|
72
58
|
commandBrowseText: string;
|
|
@@ -118,10 +104,8 @@ declare namespace angularportalazure {
|
|
|
118
104
|
isCommandSwap: boolean;
|
|
119
105
|
commandSwap: () => void;
|
|
120
106
|
commandSwapText: string;
|
|
121
|
-
/** Obsolete */
|
|
122
|
-
/** Obsolete */
|
|
123
|
-
/** Obsolete */
|
|
124
107
|
activate(): void;
|
|
108
|
+
/** Override */
|
|
125
109
|
onActivate(): void;
|
|
126
110
|
onActivated(): void;
|
|
127
111
|
navigateTo(path: any): void;
|
|
@@ -150,7 +134,6 @@ declare namespace angularportalazure {
|
|
|
150
134
|
onCommandStart(): void;
|
|
151
135
|
onCommandStop(): void;
|
|
152
136
|
onCommandSwap(): void;
|
|
153
|
-
/** Obsolete */
|
|
154
137
|
setTitle(watchExpression: string, func: () => void): void;
|
|
155
138
|
private setBladeHeights();
|
|
156
139
|
}
|
|
@@ -330,8 +313,6 @@ declare namespace angularportalazure {
|
|
|
330
313
|
areaBlades: angularportalazure.AreaBlades;
|
|
331
314
|
areaNotification: angularportalazure.AreaNotification;
|
|
332
315
|
ngDialog: any;
|
|
333
|
-
/** obsolete - $scope is different in any view. do have one instance in a shared service is not the right approach. */
|
|
334
|
-
$scope: angular.IScope;
|
|
335
316
|
$injector: angular.auto.IInjectorService;
|
|
336
317
|
$http: angular.IHttpService;
|
|
337
318
|
$httpBackend: angular.IHttpBackendService;
|
|
@@ -373,6 +354,21 @@ declare namespace angularportalazure {
|
|
|
373
354
|
onFilter(actual: Object, expected: string): boolean;
|
|
374
355
|
}
|
|
375
356
|
}
|
|
357
|
+
declare namespace angularportalazure {
|
|
358
|
+
class Debug {
|
|
359
|
+
constructor();
|
|
360
|
+
static isEnabled: boolean;
|
|
361
|
+
static isWithObjects: boolean;
|
|
362
|
+
static keys: Array<string>;
|
|
363
|
+
static enable(key?: string): void;
|
|
364
|
+
static disable(key?: string): void;
|
|
365
|
+
static write(debugLine: string, objects?: Array<any>): boolean;
|
|
366
|
+
/** Extract the key (e.g. [azureportal] from a string */
|
|
367
|
+
static extractKey(text: string): string;
|
|
368
|
+
/** Extract the key (e.g. [azureportal] from a string */
|
|
369
|
+
static isInKeys(debugLine: string): boolean;
|
|
370
|
+
}
|
|
371
|
+
}
|
|
376
372
|
declare namespace angularportalazure {
|
|
377
373
|
class Exception implements angularportalazure.IExceptionDotNet {
|
|
378
374
|
ExceptionType: string;
|
package/apn.js
CHANGED
|
@@ -15,7 +15,6 @@ var angularportalazure;
|
|
|
15
15
|
angularModule.config(['$translateProvider',
|
|
16
16
|
function ($translateProvider) {
|
|
17
17
|
$translateProvider.useSanitizeValueStrategy('escape');
|
|
18
|
-
//$translateProvider.useUrlLoader('/api/translation/get');
|
|
19
18
|
$translateProvider.fallbackLanguage('de');
|
|
20
19
|
$translateProvider.use(readCookie('SAMPLE_TRANSLATE_LANG_KEY'));
|
|
21
20
|
}]);
|
|
@@ -41,80 +40,6 @@ var angularportalazure;
|
|
|
41
40
|
return null;
|
|
42
41
|
}
|
|
43
42
|
})(angularportalazure || (angularportalazure = {}));
|
|
44
|
-
//#region Make sure console.log is working in any case, even IE9
|
|
45
|
-
"use strict";
|
|
46
|
-
//if ($('html').hasClass('k-ie9')) {
|
|
47
|
-
// if (typeof console !== 'object') window.console = <any>{};
|
|
48
|
-
// if (typeof console.log !== 'object') window.console.log = function () { };
|
|
49
|
-
//}
|
|
50
|
-
//#endregion
|
|
51
|
-
var angularportalazure;
|
|
52
|
-
(function (angularportalazure) {
|
|
53
|
-
var Debug = (function () {
|
|
54
|
-
//#region Constructor
|
|
55
|
-
function Debug() {
|
|
56
|
-
}
|
|
57
|
-
//#endregion
|
|
58
|
-
//#region Methods
|
|
59
|
-
Debug.enable = function (key) {
|
|
60
|
-
Debug.isEnabled = true;
|
|
61
|
-
if (key) {
|
|
62
|
-
Debug.keys.push(key);
|
|
63
|
-
}
|
|
64
|
-
};
|
|
65
|
-
Debug.disable = function (key) {
|
|
66
|
-
if (key) {
|
|
67
|
-
var indexToDelete = Debug.keys.indexOf(key);
|
|
68
|
-
Debug.keys.splice(indexToDelete, 1);
|
|
69
|
-
}
|
|
70
|
-
if (Debug.keys.length === 0) {
|
|
71
|
-
Debug.isEnabled = false;
|
|
72
|
-
}
|
|
73
|
-
};
|
|
74
|
-
Debug.write = function (debugLine, objects) {
|
|
75
|
-
if ((Debug.isEnabled && Debug.keys.length === 0)
|
|
76
|
-
|| (Debug.isEnabled && Debug.isInKeys(debugLine))) {
|
|
77
|
-
console.log(debugLine);
|
|
78
|
-
if (objects !== undefined && Debug.isWithObjects) {
|
|
79
|
-
objects.forEach(function (item) {
|
|
80
|
-
console.log(item);
|
|
81
|
-
});
|
|
82
|
-
}
|
|
83
|
-
return true;
|
|
84
|
-
}
|
|
85
|
-
return false;
|
|
86
|
-
};
|
|
87
|
-
/** Extract the key (e.g. [azureportal] from a string */
|
|
88
|
-
Debug.extractKey = function (text) {
|
|
89
|
-
var extractKey = '';
|
|
90
|
-
var firstCharacter = text.substring(0, 1);
|
|
91
|
-
if (firstCharacter === '[') {
|
|
92
|
-
// Find closing bracket
|
|
93
|
-
var closingPos = text.indexOf(']');
|
|
94
|
-
if (closingPos > 0) {
|
|
95
|
-
extractKey = text.substring(0, closingPos + 1);
|
|
96
|
-
}
|
|
97
|
-
}
|
|
98
|
-
return extractKey;
|
|
99
|
-
};
|
|
100
|
-
/** Extract the key (e.g. [azureportal] from a string */
|
|
101
|
-
Debug.isInKeys = function (debugLine) {
|
|
102
|
-
var key = Debug.extractKey(debugLine);
|
|
103
|
-
if (Debug.keys.indexOf(key) !== -1) {
|
|
104
|
-
return true;
|
|
105
|
-
}
|
|
106
|
-
return false;
|
|
107
|
-
};
|
|
108
|
-
return Debug;
|
|
109
|
-
}());
|
|
110
|
-
//#endregion
|
|
111
|
-
//#region Properties
|
|
112
|
-
Debug.isEnabled = false;
|
|
113
|
-
Debug.isWithObjects = false;
|
|
114
|
-
Debug.keys = new Array();
|
|
115
|
-
angularportalazure.Debug = Debug;
|
|
116
|
-
})(angularportalazure || (angularportalazure = {}));
|
|
117
|
-
/// <reference path="debug.ts" />
|
|
118
43
|
"use strict";
|
|
119
44
|
var angularportalazure;
|
|
120
45
|
(function (angularportalazure) {
|
|
@@ -155,7 +80,6 @@ var angularportalazure;
|
|
|
155
80
|
},
|
|
156
81
|
set: function (value) {
|
|
157
82
|
throw new Error('[angularportalazure.UserAccount] \'name\' is a calculated value from \'firsName\' and \'lastName\'. Assignment not allowed.');
|
|
158
|
-
//this._name = value;
|
|
159
83
|
},
|
|
160
84
|
enumerable: true,
|
|
161
85
|
configurable: true
|
|
@@ -164,7 +88,6 @@ var angularportalazure;
|
|
|
164
88
|
}());
|
|
165
89
|
angularportalazure.UserAccount = UserAccount;
|
|
166
90
|
})(angularportalazure || (angularportalazure = {}));
|
|
167
|
-
/// <reference path="debug.ts" />
|
|
168
91
|
/// <reference path="portalservice.ts" />
|
|
169
92
|
"use strict";
|
|
170
93
|
var angularportalazure;
|
|
@@ -172,9 +95,8 @@ var angularportalazure;
|
|
|
172
95
|
var UserControlBase = (function () {
|
|
173
96
|
//#region Constructor
|
|
174
97
|
function UserControlBase($scope, portalService) {
|
|
175
|
-
|
|
98
|
+
this.$scope = $scope;
|
|
176
99
|
this.portalService = portalService;
|
|
177
|
-
this.portalService.$scope = $scope;
|
|
178
100
|
}
|
|
179
101
|
//#endregion
|
|
180
102
|
//#region Methods
|
|
@@ -199,7 +121,6 @@ var __extends = (this && this.__extends) || function (d, b) {
|
|
|
199
121
|
function __() { this.constructor = d; }
|
|
200
122
|
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
201
123
|
};
|
|
202
|
-
/// <reference path="debug.ts" />
|
|
203
124
|
/// <reference path="useraccount.ts" />
|
|
204
125
|
/// <reference path="portalservice.ts" />
|
|
205
126
|
/// <reference path="usercontrolbase.ts" />
|
|
@@ -213,7 +134,6 @@ var angularportalazure;
|
|
|
213
134
|
if (subtitle === void 0) { subtitle = ''; }
|
|
214
135
|
if (width === void 0) { width = 200; }
|
|
215
136
|
var _this = _super.call(this, $scope, portalService) || this;
|
|
216
|
-
//#endregion
|
|
217
137
|
_this.title = '';
|
|
218
138
|
_this.subTitle = '';
|
|
219
139
|
_this.width = { 'width': '0' };
|
|
@@ -222,6 +142,7 @@ var angularportalazure;
|
|
|
222
142
|
_this.statusBar = '';
|
|
223
143
|
_this.statusBarClass = '';
|
|
224
144
|
//#endregion
|
|
145
|
+
//#endregion
|
|
225
146
|
//#region Commands
|
|
226
147
|
_this.isCommandBrowse = false;
|
|
227
148
|
_this.commandBrowse = function () { this.onCommandBrowse(); };
|
|
@@ -280,7 +201,6 @@ var angularportalazure;
|
|
|
280
201
|
_this.subTitle = subtitle;
|
|
281
202
|
_this.width.width = width + 'px';
|
|
282
203
|
_this.widthStackLayout.width = width - 50 + 'px'; // 50 = padding (left and right)
|
|
283
|
-
//this.navGrid.portalService = portalService;
|
|
284
204
|
if (!portalService) {
|
|
285
205
|
throw new Error('[angularportalazure.Blade] constructor parameter \'portalService\' must be provided.');
|
|
286
206
|
}
|
|
@@ -299,21 +219,6 @@ var angularportalazure;
|
|
|
299
219
|
if (width < 50) {
|
|
300
220
|
throw new Error('[angularportalazure.Blade] constructor parameter \'width\' must be at least 50.');
|
|
301
221
|
}
|
|
302
|
-
//#region Add AreaBlades.AddBlade event listener
|
|
303
|
-
/** OBSOLETE: remove when all OBSOLETE code has been removed */
|
|
304
|
-
//if (portalService instanceof angularportalazure.PortalService == false) {
|
|
305
|
-
// console.log('Blade.constructor: This code cannot be removed yet.')
|
|
306
|
-
// return;
|
|
307
|
-
//}
|
|
308
|
-
/** OBSOLETE: end */
|
|
309
|
-
//// Register listener1
|
|
310
|
-
//this.listener1 = that.portalService.$rootScope.$on('AreaBlades.AddBlade', function (event, args: angularportalazure.IAddBladeEventArgs) {
|
|
311
|
-
// if (that.comparePaths(args.path, that.path)) {
|
|
312
|
-
// console.log('listener1-AreaBlades.AddBlade - function call: that.activate() will probably not work since this/that is not pointing to the right object. - deactivated');
|
|
313
|
-
// //that.activate();
|
|
314
|
-
// }
|
|
315
|
-
//});
|
|
316
|
-
//#endregion
|
|
317
222
|
// Set 'this.portalService.areaBlades.blades[index]' to 'this'
|
|
318
223
|
// 'this.portalService.areaBlades.blades[index]' was generated during AddBlade
|
|
319
224
|
_this.portalService.areaBlades.blades.forEach(function (blade, index) {
|
|
@@ -340,27 +245,14 @@ var angularportalazure;
|
|
|
340
245
|
configurable: true
|
|
341
246
|
});
|
|
342
247
|
//#endregion
|
|
343
|
-
//#region OBSOLETE
|
|
344
|
-
/** Obsolete */
|
|
345
|
-
//blade: Blade;
|
|
346
|
-
/** Obsolete */
|
|
347
|
-
//isNavGrid: boolean;
|
|
348
|
-
/** Obsolete */
|
|
349
|
-
//navGrid = {
|
|
350
|
-
// portalService: <angularportalazure.PortalService | null>null,
|
|
351
|
-
// items: [],
|
|
352
|
-
// navigateTo: function (path: string) { }
|
|
353
|
-
//};
|
|
354
|
-
//#endregion
|
|
355
|
-
//#endregion
|
|
356
248
|
//#region Methods
|
|
357
249
|
//#region Methods
|
|
358
250
|
Blade.prototype.activate = function () {
|
|
359
251
|
this.onActivate();
|
|
360
252
|
this.onActivated();
|
|
361
253
|
};
|
|
254
|
+
/** Override */
|
|
362
255
|
Blade.prototype.onActivate = function () {
|
|
363
|
-
//throw new Error('[angularportalazure.Blade] \'onActivate\' is an abstract function. Define one in the derived class.');
|
|
364
256
|
};
|
|
365
257
|
Blade.prototype.onActivated = function () {
|
|
366
258
|
};
|
|
@@ -387,7 +279,6 @@ var angularportalazure;
|
|
|
387
279
|
};
|
|
388
280
|
/** close blade. */
|
|
389
281
|
Blade.prototype.close = function () {
|
|
390
|
-
//this.listener1(); // Unregister listener1
|
|
391
282
|
if (this.portalService.areaBlades !== undefined) {
|
|
392
283
|
this.portalService.areaBlades.clearPath(this.path);
|
|
393
284
|
}
|
|
@@ -478,18 +369,11 @@ var angularportalazure;
|
|
|
478
369
|
throw new Error('[angularportalazure.Blade] \'onCommandSwap\' is an abstract function. Define one in the derived class.');
|
|
479
370
|
};
|
|
480
371
|
//#endregion
|
|
481
|
-
//#region OBSOLETE
|
|
482
|
-
/** Obsolete */
|
|
483
|
-
//bladeClose() {
|
|
484
|
-
// this.close();
|
|
485
|
-
//}
|
|
486
|
-
//#endregion
|
|
487
|
-
//#endregion
|
|
488
372
|
Blade.prototype.setTitle = function (watchExpression, func) {
|
|
489
373
|
var _this = this;
|
|
490
374
|
if (this.watcherTitle === undefined) {
|
|
491
|
-
this.watcherTitle = this
|
|
492
|
-
this
|
|
375
|
+
this.watcherTitle = this.$scope.$watch(watchExpression, function () { func(); });
|
|
376
|
+
this.$scope.$on('$destroy', function () { _this.watcherTitle(); });
|
|
493
377
|
}
|
|
494
378
|
};
|
|
495
379
|
Blade.prototype.setBladeHeights = function () {
|
|
@@ -498,22 +382,12 @@ var angularportalazure;
|
|
|
498
382
|
_this.bladeContentHeight = _this.portalService.$window.innerHeight - 125; // 125 = header
|
|
499
383
|
_this.bladeContentHeightInner = _this.bladeContentHeight - 50 - 3; // 50 = padding (top and bottom), somehow we miss 3px
|
|
500
384
|
}, 50);
|
|
501
|
-
//// http://stackoverflow.com/questions/4298612/jquery-how-to-call-resize-event-only-once-its-finished-resizing
|
|
502
|
-
//var id: NodeJS.Timer;
|
|
503
|
-
//$(window).resize(function () {
|
|
504
|
-
// clearTimeout(id);
|
|
505
|
-
// id = setTimeout(() => {
|
|
506
|
-
// that.bladeContentHeight = $('.fxs-blade-content').height();
|
|
507
|
-
// that.bladeContentInnerHeight = that.bladeContentHeight - 20;
|
|
508
|
-
// }, 500);
|
|
509
|
-
//});
|
|
510
385
|
};
|
|
511
386
|
return Blade;
|
|
512
387
|
}(angularportalazure.UserControlBase));
|
|
513
388
|
angularportalazure.Blade = Blade;
|
|
514
389
|
})(angularportalazure || (angularportalazure = {}));
|
|
515
390
|
/// <reference types="angular" />
|
|
516
|
-
/// <reference path="debug.ts" />
|
|
517
391
|
/// <reference path="blade.ts" />
|
|
518
392
|
/// <reference path="usercontrolbase.ts" />
|
|
519
393
|
/// <reference path="portalservice.ts" />
|
|
@@ -529,17 +403,6 @@ var angularportalazure;
|
|
|
529
403
|
var that = _this;
|
|
530
404
|
_this.areaBlades = _this.portalService.$window.document.getElementById('apa-blade-area');
|
|
531
405
|
_this.portalScroll = _this.portalService.$window.document.getElementById('apa-portal-scroll');
|
|
532
|
-
// Set dependencies
|
|
533
|
-
_this.portalService = portalService;
|
|
534
|
-
//this.portalService.areaBlades = this;
|
|
535
|
-
//#region Add AreaBlades.AddBlade event listener
|
|
536
|
-
/** OBSOLETE: remove when all OBSOLETE code has been removed */
|
|
537
|
-
//if (portalService instanceof angularportalazure.PortalService == false) {
|
|
538
|
-
// console.log('AreaBlades.constructor: This code cannot be removed yet.')
|
|
539
|
-
// return;
|
|
540
|
-
//}
|
|
541
|
-
/** OBSOLETE: end */
|
|
542
|
-
//#endregion
|
|
543
406
|
_this.setupAddBladeListener();
|
|
544
407
|
_this.setupShowHideNotificationAreaListener();
|
|
545
408
|
_this.setupWindowResizeListener(function () { _this.setPortalScrollCss(); });
|
|
@@ -607,7 +470,7 @@ var angularportalazure;
|
|
|
607
470
|
});
|
|
608
471
|
//#endregion
|
|
609
472
|
//#region Show the blade
|
|
610
|
-
var blade = new angularportalazure.Blade(
|
|
473
|
+
var blade = new angularportalazure.Blade(this.$scope, that.portalService, path, '');
|
|
611
474
|
that.blades.push(blade);
|
|
612
475
|
//#endregion
|
|
613
476
|
//#region Position the blade
|
|
@@ -647,6 +510,7 @@ var angularportalazure;
|
|
|
647
510
|
};
|
|
648
511
|
AreaBlades.prototype.clearLevel = function (level) {
|
|
649
512
|
if (this.blades.length < level) {
|
|
513
|
+
throw new Error('[angularportalazure.AreaBlades] level: \'' + level + '\' could not be cleard, since only \'' + this.blades.length + '\' available.');
|
|
650
514
|
}
|
|
651
515
|
if (level === 0) {
|
|
652
516
|
level = 1;
|
|
@@ -723,7 +587,6 @@ var angularportalazure;
|
|
|
723
587
|
angular.module('angularportalazure').service('angularportalazure.areaBlades', AreaBlades);
|
|
724
588
|
})(angularportalazure || (angularportalazure = {}));
|
|
725
589
|
/// <reference path="areablades.ts" />
|
|
726
|
-
/// <reference path="debug.ts" />
|
|
727
590
|
/// <reference path="portalservice.ts" />
|
|
728
591
|
"use strict";
|
|
729
592
|
var angularportalazure;
|
|
@@ -741,7 +604,6 @@ var angularportalazure;
|
|
|
741
604
|
angularportalazure.BladeData = BladeData;
|
|
742
605
|
})(angularportalazure || (angularportalazure = {}));
|
|
743
606
|
/// <reference path="bladedata.ts" />
|
|
744
|
-
/// <reference path="debug.ts" />
|
|
745
607
|
/// <reference path="bladenavitem.ts" />
|
|
746
608
|
/// <reference path="portalservice.ts" />
|
|
747
609
|
"use strict";
|
|
@@ -774,7 +636,6 @@ var angularportalazure;
|
|
|
774
636
|
}(angularportalazure.BladeData));
|
|
775
637
|
angularportalazure.BladeNav = BladeNav;
|
|
776
638
|
})(angularportalazure || (angularportalazure = {}));
|
|
777
|
-
/// <reference path="debug.ts" />
|
|
778
639
|
/// <reference path="bladenav.ts" />
|
|
779
640
|
"use strict";
|
|
780
641
|
var angularportalazure;
|
|
@@ -800,7 +661,7 @@ var angularportalazure;
|
|
|
800
661
|
this.bladeNav = bladeNav;
|
|
801
662
|
}
|
|
802
663
|
//#endregion
|
|
803
|
-
//#region
|
|
664
|
+
//#region Methods
|
|
804
665
|
BladeNavItem.prototype.onNavItemClick = function () {
|
|
805
666
|
if (this.callback != null) {
|
|
806
667
|
this.callback();
|
|
@@ -811,7 +672,6 @@ var angularportalazure;
|
|
|
811
672
|
angularportalazure.BladeNavItem = BladeNavItem;
|
|
812
673
|
})(angularportalazure || (angularportalazure = {}));
|
|
813
674
|
/// <reference path="bladedata.ts" />
|
|
814
|
-
/// <reference path="debug.ts" />
|
|
815
675
|
/// <reference path="bladenavitem.ts" />
|
|
816
676
|
/// <reference path="portalservice.ts" />
|
|
817
677
|
"use strict";
|
|
@@ -882,7 +742,6 @@ var angularportalazure;
|
|
|
882
742
|
angularportalazure.AreaNotification = AreaNotification;
|
|
883
743
|
})(angularportalazure || (angularportalazure = {}));
|
|
884
744
|
"use strict";
|
|
885
|
-
/// <reference path="debug.ts" />
|
|
886
745
|
/// <reference path="portalservice.ts" />
|
|
887
746
|
/// <reference path="useraccount.ts" />
|
|
888
747
|
/// <reference path="usercontrolbase.ts" />
|
|
@@ -911,7 +770,6 @@ var angularportalazure;
|
|
|
911
770
|
TileSizes[TileSizes["herowide"] = 3] = "herowide";
|
|
912
771
|
})(TileSizes = angularportalazure.TileSizes || (angularportalazure.TileSizes = {}));
|
|
913
772
|
})(angularportalazure || (angularportalazure = {}));
|
|
914
|
-
/// <reference path="debug.ts" />
|
|
915
773
|
/// <reference path="tilesizes.ts" />
|
|
916
774
|
"use strict";
|
|
917
775
|
var angularportalazure;
|
|
@@ -938,7 +796,6 @@ var angularportalazure;
|
|
|
938
796
|
angularportalazure.TileSize = TileSize;
|
|
939
797
|
})(angularportalazure || (angularportalazure = {}));
|
|
940
798
|
/// <reference path="blade.ts" />
|
|
941
|
-
/// <reference path="debug.ts" />
|
|
942
799
|
/// <reference path="portalservice.ts" />
|
|
943
800
|
/// <reference path="tilesize.ts" />
|
|
944
801
|
"use strict";
|
|
@@ -973,7 +830,6 @@ var angularportalazure;
|
|
|
973
830
|
}());
|
|
974
831
|
angularportalazure.Tile = Tile;
|
|
975
832
|
})(angularportalazure || (angularportalazure = {}));
|
|
976
|
-
/// <reference path="debug.ts" />
|
|
977
833
|
/// <reference path="tile.ts" />
|
|
978
834
|
/// <reference path="tilesize.ts" />
|
|
979
835
|
/// <reference path="tilesizes.ts" />
|
|
@@ -1015,7 +871,6 @@ var angularportalazure;
|
|
|
1015
871
|
}());
|
|
1016
872
|
angularportalazure.Tiles = Tiles;
|
|
1017
873
|
})(angularportalazure || (angularportalazure = {}));
|
|
1018
|
-
/// <reference path="debug.ts" />
|
|
1019
874
|
/// <reference path="portalservice.ts" />
|
|
1020
875
|
/// <reference path="tiles.ts" />
|
|
1021
876
|
/// <reference path="usercontrolbase.ts" />
|
|
@@ -1035,7 +890,6 @@ var angularportalazure;
|
|
|
1035
890
|
angularportalazure.Startboard = Startboard;
|
|
1036
891
|
})(angularportalazure || (angularportalazure = {}));
|
|
1037
892
|
/// <reference path="avatarmenu.ts" />
|
|
1038
|
-
/// <reference path="debug.ts" />
|
|
1039
893
|
/// <reference path="startboard.ts" />
|
|
1040
894
|
/// <reference path="portalservice.ts" />
|
|
1041
895
|
/// <reference path="usercontrolbase.ts" />
|
|
@@ -1051,8 +905,8 @@ var angularportalazure;
|
|
|
1051
905
|
_this.isVisible = true;
|
|
1052
906
|
_this.title = title;
|
|
1053
907
|
_this.portalService.panorama = _this;
|
|
1054
|
-
_this.avatarMenu = new angularportalazure.AvatarMenu(_this
|
|
1055
|
-
_this.startboard = new angularportalazure.Startboard(_this
|
|
908
|
+
_this.avatarMenu = new angularportalazure.AvatarMenu(_this.$scope, _this.portalService);
|
|
909
|
+
_this.startboard = new angularportalazure.Startboard(_this.$scope, _this.portalService);
|
|
1056
910
|
return _this;
|
|
1057
911
|
}
|
|
1058
912
|
return Panorama;
|
|
@@ -1061,7 +915,6 @@ var angularportalazure;
|
|
|
1061
915
|
})(angularportalazure || (angularportalazure = {}));
|
|
1062
916
|
/// <reference path="areablades.ts" />
|
|
1063
917
|
/// <reference path="usercontrolbase.ts" />
|
|
1064
|
-
/// <reference path="debug.ts" />
|
|
1065
918
|
/// <reference path="panorama.ts" />
|
|
1066
919
|
/// <reference path="portalservice.ts" />
|
|
1067
920
|
/// <reference path="tiles.ts" />
|
|
@@ -1075,11 +928,9 @@ var angularportalazure;
|
|
|
1075
928
|
var _this = _super.call(this, null, portalService) || this;
|
|
1076
929
|
_this.portalService = portalService;
|
|
1077
930
|
_this.portalService.portalShell = _this;
|
|
1078
|
-
_this.portalService.panorama = new angularportalazure.Panorama(_this
|
|
1079
|
-
//this.portalService.areaBlades = new angularportalazure.BladeArea(this.$scope, portalService);
|
|
931
|
+
_this.portalService.panorama = new angularportalazure.Panorama(_this.$scope, title, _this.portalService);
|
|
1080
932
|
_this.portalService.panorama.title = title;
|
|
1081
933
|
return _this;
|
|
1082
|
-
//this.initialize();
|
|
1083
934
|
}
|
|
1084
935
|
return PortalShell;
|
|
1085
936
|
}(angularportalazure.UserControlBase));
|
|
@@ -1088,7 +939,6 @@ var angularportalazure;
|
|
|
1088
939
|
/// <reference types="angular" />
|
|
1089
940
|
/// <reference path="areanotification.ts" />
|
|
1090
941
|
/// <reference path="areablades.ts" />
|
|
1091
|
-
/// <reference path="debug.ts" />
|
|
1092
942
|
/// <reference path="bladeparameter.ts" />
|
|
1093
943
|
/// <reference path="panorama.ts" />
|
|
1094
944
|
/// <reference path="portalshell.ts" />
|
|
@@ -1111,7 +961,6 @@ var angularportalazure;
|
|
|
1111
961
|
this.$timeout = $injector.get('$timeout');
|
|
1112
962
|
this.$translate = $injector.get('$translate');
|
|
1113
963
|
this.ngDialog = $injector.get('ngDialog');
|
|
1114
|
-
//this.ngDialog.openConfirm
|
|
1115
964
|
}
|
|
1116
965
|
return PortalService;
|
|
1117
966
|
}());
|
|
@@ -1121,42 +970,14 @@ var angularportalazure;
|
|
|
1121
970
|
angular.module('angularportalazure').service('angularportalazure.portalService', PortalService);
|
|
1122
971
|
})(angularportalazure || (angularportalazure = {}));
|
|
1123
972
|
/// <reference types="angular" />
|
|
1124
|
-
/// <reference path="../../domain/debug.ts" />
|
|
1125
973
|
/// <reference path="../../domain/portalservice.ts" />
|
|
1126
974
|
"use strict";
|
|
1127
975
|
var angularportalazure;
|
|
1128
976
|
(function (angularportalazure) {
|
|
1129
|
-
//angularPortalBlade.$inject = ['angularportalazure.portalService'];
|
|
1130
|
-
//function angularPortalBlade(portalService: angularportalazure.PortalService) {
|
|
1131
|
-
// return {
|
|
1132
|
-
// restrict: 'E',
|
|
1133
|
-
// transclude: true,
|
|
1134
|
-
// scope: {},
|
|
1135
|
-
// bindToController: { vm: '=' },
|
|
1136
|
-
// templateUrl: '/node_modules/@ardimedia/angular-portal-azure/directives/blade/blade.html',
|
|
1137
|
-
// link: function (scope, element, attrs, controller) {
|
|
1138
|
-
// //controller.close = function () {
|
|
1139
|
-
// // portalService.areaBlades.clearLastLevel();
|
|
1140
|
-
// //};
|
|
1141
|
-
// },
|
|
1142
|
-
// controller: function () {
|
|
1143
|
-
// this.$onInit = function () {
|
|
1144
|
-
// this.close = function () {
|
|
1145
|
-
// portalService.areaBlades.clearLastLevel();
|
|
1146
|
-
// };
|
|
1147
|
-
// };
|
|
1148
|
-
// },
|
|
1149
|
-
// controllerAs: '$ctrl'
|
|
1150
|
-
// };
|
|
1151
|
-
//}
|
|
1152
|
-
//angular.module('angularportalazure').directive('angularPortalBlade', angularPortalBlade);
|
|
1153
977
|
AngularPortalBladeController.$inject = ['angularportalazure.portalService'];
|
|
1154
978
|
function AngularPortalBladeController(portalService) {
|
|
1155
979
|
this.$onInit = function () {
|
|
1156
|
-
//portalService.areaNotification.show();
|
|
1157
980
|
this.close = function () {
|
|
1158
|
-
//portalService.areaBlades.clearLastLevel();
|
|
1159
|
-
//portalService.areaNotification.hide();
|
|
1160
981
|
};
|
|
1161
982
|
};
|
|
1162
983
|
}
|
|
@@ -1173,26 +994,6 @@ var angularportalazure;
|
|
|
1173
994
|
"use strict";
|
|
1174
995
|
var angularportalazure;
|
|
1175
996
|
(function (angularportalazure) {
|
|
1176
|
-
//grid.$inject = ['angularportalazure.portalService'];
|
|
1177
|
-
//function grid(portalService: angularportalazure.PortalService) {
|
|
1178
|
-
// return {
|
|
1179
|
-
// restrict: 'E',
|
|
1180
|
-
// transclude: true,
|
|
1181
|
-
// scope: {},
|
|
1182
|
-
// bindToController: { vm: '=' },
|
|
1183
|
-
// templateUrl: '/node_modules/@ardimedia/angular-portal-azure/directives/grid/grid.html',
|
|
1184
|
-
// link: function (scope, element, attrs, controller) { },
|
|
1185
|
-
// controller: function () {
|
|
1186
|
-
// //this.$onInit = function () {
|
|
1187
|
-
// // this.close = function () {
|
|
1188
|
-
// // portalService.areaBlades.clearLastLevel();
|
|
1189
|
-
// // };
|
|
1190
|
-
// //};
|
|
1191
|
-
// },
|
|
1192
|
-
// controllerAs: '$ctrl'
|
|
1193
|
-
// };
|
|
1194
|
-
//}
|
|
1195
|
-
//angular.module('angularportalazure').directive('grid', grid);
|
|
1196
997
|
var angularPortalGrid = {
|
|
1197
998
|
transclude: true,
|
|
1198
999
|
templateUrl: '/node_modules/@ardimedia/angular-portal-azure/directives/bladegrid/bladegrid.html',
|
|
@@ -1206,18 +1007,6 @@ var angularportalazure;
|
|
|
1206
1007
|
"use strict";
|
|
1207
1008
|
var angularportalazure;
|
|
1208
1009
|
(function (angularportalazure) {
|
|
1209
|
-
//function angularPortalHome() {
|
|
1210
|
-
// return {
|
|
1211
|
-
// restrict: 'E',
|
|
1212
|
-
// scope: {},
|
|
1213
|
-
// bindToController: { vm: '=' },
|
|
1214
|
-
// templateUrl: '/node_modules/@ardimedia/angular-portal-azure/directives/home/home.html',
|
|
1215
|
-
// link: function (scope, element, attrs, controller) { },
|
|
1216
|
-
// controller: function () { },
|
|
1217
|
-
// controllerAs: '$ctrl'
|
|
1218
|
-
// };
|
|
1219
|
-
//}
|
|
1220
|
-
//angular.module('angularportalazure').directive('angularPortalHome', angularPortalHome);
|
|
1221
1010
|
AngularPortalHomeController.$inject = ['$scope', 'angularportalazure.portalService'];
|
|
1222
1011
|
function AngularPortalHomeController($scope, portalService) {
|
|
1223
1012
|
this.$onInit = function () {
|
|
@@ -1237,33 +1026,6 @@ var angularportalazure;
|
|
|
1237
1026
|
"use strict";
|
|
1238
1027
|
var angularportalazure;
|
|
1239
1028
|
(function (angularportalazure) {
|
|
1240
|
-
//nav.$inject = ['angularportalazure.portalService'];
|
|
1241
|
-
//function nav(portalService: angularportalazure.PortalService) {
|
|
1242
|
-
// return {
|
|
1243
|
-
// restrict: 'E',
|
|
1244
|
-
// transclude: true,
|
|
1245
|
-
// scope: {},
|
|
1246
|
-
// bindToController: { vm: '=' },
|
|
1247
|
-
// templateUrl: '/node_modules/@ardimedia/angular-portal-azure/directives/nav/nav.html',
|
|
1248
|
-
// link: function (scope, element, attrs, controller) {
|
|
1249
|
-
// angular.forEach(controller.items, function (item) {
|
|
1250
|
-
// // Set some default values, depending on existing values
|
|
1251
|
-
// if (item.isVisible == undefined) { item.isVisible = true; }
|
|
1252
|
-
// if (item.title == undefined || item.title == '') { item.style = { cursor: 'default' }; }
|
|
1253
|
-
// if (item.bladePath == undefined || item.bladePath == '') { item.style = { cursor: 'default' }; }
|
|
1254
|
-
// });
|
|
1255
|
-
// },
|
|
1256
|
-
// controller: function () {
|
|
1257
|
-
// //this.$onInit = function () {
|
|
1258
|
-
// // this.close = function () {
|
|
1259
|
-
// // portalService.areaBlades.clearLastLevel();
|
|
1260
|
-
// // };
|
|
1261
|
-
// //};
|
|
1262
|
-
// },
|
|
1263
|
-
// controllerAs: '$ctrl'
|
|
1264
|
-
// };
|
|
1265
|
-
//}
|
|
1266
|
-
//angular.module('angularportalazure').directive('nav', nav);
|
|
1267
1029
|
var angularPortalNav = {
|
|
1268
1030
|
transclude: true,
|
|
1269
1031
|
templateUrl: '/node_modules/@ardimedia/angular-portal-azure/directives/nav/nav.html',
|
|
@@ -1275,7 +1037,6 @@ var angularportalazure;
|
|
|
1275
1037
|
angular.module('angularportalazure').component('angularPortalNav', angularPortalNav);
|
|
1276
1038
|
})(angularportalazure || (angularportalazure = {}));
|
|
1277
1039
|
/// <reference path="bladedata.ts" />
|
|
1278
|
-
/// <reference path="debug.ts" />
|
|
1279
1040
|
/// <reference path="portalservice.ts" />
|
|
1280
1041
|
"use strict";
|
|
1281
1042
|
var angularportalazure;
|
|
@@ -1290,13 +1051,9 @@ var angularportalazure;
|
|
|
1290
1051
|
var _this = _super.call(this, $scope, portalService, path, title, subtitle, width) || this;
|
|
1291
1052
|
//#region Properties
|
|
1292
1053
|
_this.item = null;
|
|
1293
|
-
//this.isCommandNew = true;
|
|
1294
1054
|
_this.commandNewText = 'neu';
|
|
1295
|
-
//this.isCommandSave = true;
|
|
1296
1055
|
_this.commandSaveText = 'speichern';
|
|
1297
|
-
//this.isCommandDelete = true;
|
|
1298
1056
|
_this.commandDeleteText = 'löschen';
|
|
1299
|
-
//this.isCommandCancel = true;
|
|
1300
1057
|
_this.commandCancelText = 'abbrechen';
|
|
1301
1058
|
return _this;
|
|
1302
1059
|
}
|
|
@@ -1349,7 +1106,6 @@ var angularportalazure;
|
|
|
1349
1106
|
angularportalazure.BladeDetail = BladeDetail;
|
|
1350
1107
|
})(angularportalazure || (angularportalazure = {}));
|
|
1351
1108
|
/// <reference path="bladedata.ts" />
|
|
1352
|
-
/// <reference path="debug.ts" />
|
|
1353
1109
|
/// <reference path="portalservice.ts" />
|
|
1354
1110
|
"use strict";
|
|
1355
1111
|
var angularportalazure;
|
|
@@ -1364,7 +1120,6 @@ var angularportalazure;
|
|
|
1364
1120
|
//#endregion
|
|
1365
1121
|
//#region Properties
|
|
1366
1122
|
_this.items = [];
|
|
1367
|
-
//this.isCommandNew = true;
|
|
1368
1123
|
_this.commandNewText = 'neu';
|
|
1369
1124
|
return _this;
|
|
1370
1125
|
}
|
|
@@ -1473,7 +1228,73 @@ var angularportalazure;
|
|
|
1473
1228
|
}(angularportalazure.BladeData));
|
|
1474
1229
|
angularportalazure.BladeGrid = BladeGrid;
|
|
1475
1230
|
})(angularportalazure || (angularportalazure = {}));
|
|
1476
|
-
|
|
1231
|
+
"use strict";
|
|
1232
|
+
var angularportalazure;
|
|
1233
|
+
(function (angularportalazure) {
|
|
1234
|
+
var Debug = (function () {
|
|
1235
|
+
//#region Constructor
|
|
1236
|
+
function Debug() {
|
|
1237
|
+
}
|
|
1238
|
+
//#endregion
|
|
1239
|
+
//#region Methods
|
|
1240
|
+
Debug.enable = function (key) {
|
|
1241
|
+
Debug.isEnabled = true;
|
|
1242
|
+
if (key) {
|
|
1243
|
+
Debug.keys.push(key);
|
|
1244
|
+
}
|
|
1245
|
+
};
|
|
1246
|
+
Debug.disable = function (key) {
|
|
1247
|
+
if (key) {
|
|
1248
|
+
var indexToDelete = Debug.keys.indexOf(key);
|
|
1249
|
+
Debug.keys.splice(indexToDelete, 1);
|
|
1250
|
+
}
|
|
1251
|
+
if (Debug.keys.length === 0) {
|
|
1252
|
+
Debug.isEnabled = false;
|
|
1253
|
+
}
|
|
1254
|
+
};
|
|
1255
|
+
Debug.write = function (debugLine, objects) {
|
|
1256
|
+
if ((Debug.isEnabled && Debug.keys.length === 0)
|
|
1257
|
+
|| (Debug.isEnabled && Debug.isInKeys(debugLine))) {
|
|
1258
|
+
console.log(debugLine);
|
|
1259
|
+
if (objects !== undefined && Debug.isWithObjects) {
|
|
1260
|
+
objects.forEach(function (item) {
|
|
1261
|
+
console.log(item);
|
|
1262
|
+
});
|
|
1263
|
+
}
|
|
1264
|
+
return true;
|
|
1265
|
+
}
|
|
1266
|
+
return false;
|
|
1267
|
+
};
|
|
1268
|
+
/** Extract the key (e.g. [azureportal] from a string */
|
|
1269
|
+
Debug.extractKey = function (text) {
|
|
1270
|
+
var extractKey = '';
|
|
1271
|
+
var firstCharacter = text.substring(0, 1);
|
|
1272
|
+
if (firstCharacter === '[') {
|
|
1273
|
+
// Find closing bracket
|
|
1274
|
+
var closingPos = text.indexOf(']');
|
|
1275
|
+
if (closingPos > 0) {
|
|
1276
|
+
extractKey = text.substring(0, closingPos + 1);
|
|
1277
|
+
}
|
|
1278
|
+
}
|
|
1279
|
+
return extractKey;
|
|
1280
|
+
};
|
|
1281
|
+
/** Extract the key (e.g. [azureportal] from a string */
|
|
1282
|
+
Debug.isInKeys = function (debugLine) {
|
|
1283
|
+
var key = Debug.extractKey(debugLine);
|
|
1284
|
+
if (Debug.keys.indexOf(key) !== -1) {
|
|
1285
|
+
return true;
|
|
1286
|
+
}
|
|
1287
|
+
return false;
|
|
1288
|
+
};
|
|
1289
|
+
return Debug;
|
|
1290
|
+
}());
|
|
1291
|
+
//#endregion
|
|
1292
|
+
//#region Properties
|
|
1293
|
+
Debug.isEnabled = false;
|
|
1294
|
+
Debug.isWithObjects = false;
|
|
1295
|
+
Debug.keys = new Array();
|
|
1296
|
+
angularportalazure.Debug = Debug;
|
|
1297
|
+
})(angularportalazure || (angularportalazure = {}));
|
|
1477
1298
|
"use strict";
|
|
1478
1299
|
var angularportalazure;
|
|
1479
1300
|
(function (angularportalazure) {
|
|
@@ -1527,7 +1348,6 @@ var angularportalazure;
|
|
|
1527
1348
|
}());
|
|
1528
1349
|
angularportalazure.Exception = Exception;
|
|
1529
1350
|
})(angularportalazure || (angularportalazure = {}));
|
|
1530
|
-
/// <reference path="debug.ts" />
|
|
1531
1351
|
"use strict";
|
|
1532
1352
|
var angularportalazure;
|
|
1533
1353
|
(function (angularportalazure) {
|
package/css/apn.css
CHANGED
package/css/apn.min.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
@charset "UTF-8";html{box-sizing:border-box;}*,*:before,*:after{box-sizing:inherit;}html,body{height:100%;width:0;margin:0;padding:0;}a{color:#00bcf2;text-decoration:none;}.ng-scope{height:100%;}.fxs-portal{overflow:hidden;position:fixed;top:0;left:0;right:0;bottom:0;}.fxs-portal .fxs-portal-content{height:100%;color:#464f59;overflow-x:auto;overflow-y:hidden;white-space:nowrap;-webkit-transition:margin .2s ease;-moz-transition:margin .2s ease;-o-transition:margin .2s ease;transition:margin .2s ease;}.fxs-portal .fxs-portal-content>*{white-space:normal;}.fxs-panorama{-ms-scroll-chaining:none;}.fxs-panorama-homearea{min-width:600px;}.fxs-panorama .fxs-panorama-homearea{position:relative;padding:0 25px;margin:0 15px 0 25px;}.fxs-panorama .fxs-panorama-homearea,.fxs-panorama .fxs-journey-target{display:inline-block;vertical-align:top;height:100%;}.fxs-panorama .fxs-panorama-homearea>header{margin:20px 0 4px;height:76px;min-width:450px;}.fxs-panorama .fxs-panorama-homearea .fxs-panorama-title{font-family:"Segoe UI Light","Segoe WP Light","Segoe UI","Segoe WP",Tahoma,Arial,sans-serif;font-weight:400;font-size:40px;line-height:54px;color:#fff;padding-top:6px;margin:0;}.fxs-panorama .fxs-panorama-homearea .fxs-avatarmenu-target{position:absolute;top:18px;right:5px;max-width:220px;min-width:190px;}.fxs-avatarmenu{position:relative;padding:12px;text-align:right;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;}.fxs-avatarmenu .fxs-avatarmenu-header{position:relative;font-family:"Segoe UI","Segoe WP",Tahoma,Arial,sans-serif;font-weight:400;height:35px;color:#fff;}.fxs-avatarmenu>a{display:block;white-space:nowrap;overflow:hidden;-ms-text-overflow:ellipsis;-o-text-overflow:ellipsis;text-overflow:ellipsis;text-decoration:none;padding:10px;padding-right:54px;}.fxs-avatarmenu>a img{position:absolute;top:10px;right:10px;height:35px;width:32px;border:0;border-left:3px solid #7fba00;}.fxs-avatarmenu .fxs-avatarmenu-header .fxs-avatarmenu-username{white-space:nowrap;overflow:hidden;-ms-text-overflow:ellipsis;-o-text-overflow:ellipsis;text-overflow:ellipsis;font-size:14px;}.fxs-avatarmenu .fxs-avatarmenu-header .fxs-avatarmenu-emailaddress{white-space:nowrap;overflow:hidden;-ms-text-overflow:ellipsis;-o-text-overflow:ellipsis;text-overflow:ellipsis;font-family:"Segoe UI Semibold","Segoe WP Semibold","Segoe UI","Segoe WP",Tahoma,Arial,sans-serif;font-weight:400;font-size:10px;text-transform:uppercase;opacity:.9;margin-top:4px;}.fxs-avatarmenu .fxs-avatarmenu-dropdown{display:none;width:100%;background-color:#32383f;border-top:1px solid #3c454f;text-align:left;}.fxs-avatarmenu .fxs-avatarmenu-dropdown ul{padding:0;margin:0;list-style-type:none;border-bottom:1px solid #3c454f;}.fxs-avatarmenu .fxs-avatarmenu-dropdown .fxs-avatarmenu-list-system .fxs-avatarmenu-feedback,.fxs-avatarmenu .fxs-avatarmenu-dropdown .fxs-avatarmenu-list-system .fxs-avatarmenu-switchportal,.fxs-avatarmenu .fxs-avatarmenu-dropdown .fxs-avatarmenu-list-system .fxs-avatarmenu-signout{padding-right:35px;position:relative;}.fxs-avatarmenu .fxs-avatarmenu-dropdown ul li a{display:block;font-size:14px;padding:10px 18px 11px;line-height:18px;color:#fff;text-decoration:none;white-space:nowrap;overflow:hidden;-ms-text-overflow:ellipsis;-o-text-overflow:ellipsis;text-overflow:ellipsis;}.fxs-avatarmenu .fxs-avatarmenu-dropdown .fxs-avatarmenu-list-system .fxs-avatarmenu-icon{width:15px;height:15px;display:inline-block;position:absolute;right:18px;margin-top:2px;}.fxs-panorama .fxs-panorama-homearea .fxs-startboard-target{height:-webkit-calc(100% - 100px);height:calc(100% - 100px);}.fxs-startboard .fxs-startboard-layout{height:100%;overflow-y:hidden;overflow-x:hidden;margin:0 -25px;padding:0 25px;}.fxs-stacklayout-child{height:100%;}.fxs-flowlayout>.fxs-flowlayout-childcontainer{position:relative;-webkit-transition:height .25s linear,width .25s linear 0s;-moz-transition:height .25s linear,width .25s linear 0s;-o-transition:height .25s linear,width .25s linear 0s;transition:height .25s linear,width .25s linear 0s;}.fxs-flowlayout>.fxs-flowlayout-childcontainer>.fxs-flowlayout-element{position:absolute;}.fxs-tilesize-herowide.fxs-tile{height:355px;width:535px;}.fxs-tilesize-normal.fxs-tile{height:175px;width:175px;}.fxs-tilesize-mini.fxs-tile{height:85px;width:85px;}.fxs-tile{height:175px;width:175px;-webkit-transition:height .125s linear .125s,width .125s linear 0s;-moz-transition:height .125s linear .125s,width .125s linear 0s;-o-transition:height .125s linear .125s,width .125s linear 0s;transition:height .125s linear .125s,width .125s linear 0s;background-color:#fff;position:relative;}.fxs-part{width:100%;height:100%;position:relative;box-shadow:inset 1px 0 #dcdfe2;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;overflow:hidden;padding:15px 15px 15px 15px;box-shadow:inset 1px 0 #dcdfe2;}.fxs-part .fxs-part-title{position:relative;top:-4px;}.fxs-part .fxs-part-title h2{font-family:"Segoe UI","Segoe WP",Tahoma,Arial,sans-serif;font-weight:400;font-size:14px;line-height:17px;color:#32383f;}.fxs-part .fxs-part-title h3{font-family:"Segoe UI Semibold","Segoe WP Semibold","Segoe UI","Segoe WP",Tahoma,Arial,sans-serif;font-weight:400;font-size:10px;line-height:10px;color:#8f9ca8;text-transform:uppercase;margin-top:3px;}.fxs-part .fxs-part-title h2,.fxs-part .fxs-part-title h3{margin:0;white-space:nowrap;overflow:hidden;-ms-text-overflow:ellipsis;-o-text-overflow:ellipsis;text-overflow:ellipsis;}.fxs-part .fxs-part-content{font-family:"Segoe UI","Segoe WP",Tahoma,Arial,sans-serif;font-weight:400;line-height:18px;color:#464f59;position:relative;width:100%;height:100%;-moz-box-sizing:border-box;box-sizing:border-box;}.fxs-tile div.fxs-tile-overlay{display:none;position:absolute;width:100%;top:0;bottom:0;cursor:pointer;}.fxs-journey{height:100%;}.fxs-journey>.fxs-journey-layout{height:100%;}.fxs-journey>.fxs-journey-layout>.fxs-stacklayout-child{-webkit-transition:padding-top .2s ease,opacity .2s ease;transition:padding-top .2s ease,opacity .2s ease;}.fxs-stacklayout-horizontal.fxs-stacklayout{overflow:hidden;white-space:nowrap;height:100%;}.fxs-stacklayout-horizontal.fxs-stacklayout>.fxs-stacklayout-child{display:inline-block;vertical-align:top;overflow-y:auto;height:100%;white-space:normal;}.fxs-journey>.fxs-journey-layout>.fxs-stacklayout-child>.fxs-blade{box-shadow:-5px 0 0 rgba(31,35,39,.2),5px 0 0 rgba(31,35,39,.2);}.fxs-journey-layout :first-child.fxs-stacklayout-child .fxs-blade{border-left-color:transparent;border-left-width:0;}.fxs-blade-locked.fxs-blade{background-color:#fff;}.fxs-bladesize-small.fxs-blade{width:315px;}.fxs-blade{border-left-color:rgba(143,156,168,.8);width:585px;position:relative;height:100%;background-color:#f1f2f3;overflow:hidden;-webkit-transition:width .2s ease-out;-moz-transition:width .2s ease-out;-o-transition:width .2s ease-out;transition:width .2s ease-out;border-left-style:solid;border-left-width:2px;}.fxs-blade .fxs-blade-header{padding-bottom:8px;background-color:#3e4045;min-height:117px;}.fxs-blade .fxs-blade-statusbar-wrapper{background-color:#32383f;}.fxs-blade .fxs-blade-statusbar::after{content:" ";}.fxs-blade .fxs-blade-statusbar{-webkit-transition:all .5s,color .5s;-moz-transition:all .5s,color .5s;-o-transition:all .5s,color .5s;transition:all .5s,color .5s;}.fxs-blade .fxs-blade-statusbar,.fxs-blade .fxs-blade-loading-status{padding:5px 0 5px 25px;font-family:"Segoe UI Semibold","Segoe WP Semibold","Segoe UI","Segoe WP",Tahoma,Arial,sans-serif;font-weight:400;font-size:10px;line-height:10px;color:#fff;text-transform:uppercase;white-space:nowrap;overflow:hidden;-ms-text-overflow:ellipsis;-o-text-overflow:ellipsis;text-overflow:ellipsis;}.fxs-blade .fxs-blade-header .fxs-blade-actions{-webkit-transition:all .2s ease-out;-moz-transition:all .2s ease-out;-o-transition:all .2s ease-out;transition:all .2s ease-out;float:right;margin-right:22px;height:40px;}.fxs-blade .fxs-blade-header .fxs-blade-actions button{cursor:pointer;border:0;height:21px;width:21px;background-color:transparent;margin-top:4px;margin-left:6px;padding:0;opacity:.6;-webkit-transition:opacity .2s ease-out;-moz-transition:opacity .2s ease-out;-o-transition:opacity .2s ease-out;transition:opacity .2s ease-out;}.fxs-blade .fxs-blade-header .fxs-blade-actions button img,.fxs-blade .fxs-blade-header .fxs-blade-actions button svg{height:21px;width:21px;}.msportal-fx-svg-placeholder{fill:#fff;}.msportalfx-svg-c01{fill:#fff;}.fxs-blade .fxs-blade-header .fxs-blade-title{padding:0 25px 2px 7px;margin-left:18px;}.fxs-blade .fxs-blade-header .fxs-blade-title h2::after,.fxs-blade .fxs-blade-header .fxs-blade-title h3::after{content:" ";}.fxs-blade .fxs-blade-header .fxs-blade-title h2{margin:0;font-family:"Segoe UI Light","Segoe WP Light","Segoe UI","Segoe WP",Tahoma,Arial,sans-serif;font-weight:400;font-size:20px;line-height:28px;color:#fff;white-space:nowrap;overflow:hidden;-ms-text-overflow:ellipsis;-o-text-overflow:ellipsis;text-overflow:ellipsis;}.fxs-blade .fxs-blade-header .fxs-blade-title h3{margin:3px 0 2px 0;font-family:"Segoe UI Semibold","Segoe WP Semibold","Segoe UI","Segoe WP",Tahoma,Arial,sans-serif;font-weight:400;font-size:10px;line-height:10px;color:#758393;text-transform:uppercase;white-space:nowrap;overflow:hidden;-ms-text-overflow:ellipsis;-o-text-overflow:ellipsis;text-overflow:ellipsis;}.fxs-blade .fxs-blade-header .fxs-blade-commandBarContainer{margin:0 20px 0 15px;}.fxs-commandBar{display:none;}.fxs-commandBar-active.fxs-commandBar{display:block;}.fxs-commandBar>ul.fxs-commandBar-itemList{display:block;margin:4px 0 0;padding:0;list-style-type:none;overflow:hidden;height:48px;-webkit-transition:height .175s ease-in;-moz-transition:height .175s ease-in;-o-transition:height .175s ease-in;transition:height .175s ease-in;}.fxs-commandBar>ul.fxs-commandBar-itemList>li{border-right-color:#6c737a;float:left;margin-bottom:5px;border-right:1px solid transparent;}.fxs-commandBar .fxs-commandBar-form{display:block;position:absolute;z-index:200;width:100%;left:0;}.fxs-commandBar .fxs-commandBar-item{font-family:"Segoe UI Semibold","Segoe WP Semibold","Segoe UI","Segoe WP",Tahoma,Arial,sans-serif;font-weight:400;font-size:10px;line-height:10px;color:#fff;text-transform:uppercase;display:block;position:relative;padding:3px 10px 0;width:90px;height:48px;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-transition:background-color .07s ease-in;transition:background-color .07s ease-in;}.fxs-commandBar .fxs-commandBar-item .fxs-commandBar-item-text{height:22px;-webkit-transition:opacity .07s ease-in;transition:opacity .07s ease-in;}.fxs-commandBar .fxs-commandBar-item .fxs-commandBar-item-icon{position:absolute;bottom:2px;}.fxs-commandBar .fxs-commandBar-item .fxs-commandBar-item-icon>svg,.fxs-commandBar .fxs-commandBar-item .fxs-commandBar-item-icon>img{height:18px;width:18px;}.fxs-commandBar .fxs-commandBar-item-expandList.fxs-commandBar-item::after{content:"…";position:absolute;bottom:9px;left:40px;font-size:23px;line-height:23px;}.fxs-commandBar .fxs-commandBar-item:hover{background-color:#1f2327;}.fxs-blade .fxs-blade-content{padding:25px;overflow-x:hidden;overflow-y:auto;-ms-overflow-style:-ms-autohiding-scrollbar;-ms-scrollbar-track-color:#d8d8ea;-ms-scrollbar-arrow-color:#758393;-ms-scrollbar-face-color:#63707e;}.fxs-bladesize-small.fxs-blade .fxs-blade-stacklayout{width:265px;}.fxs-blade .fxs-blade-content>div{height:100%;}.fxs-bladesize-medium.fxs-blade{width:585px;}.fxs-bladesize-medium.fxs-blade .fxs-blade-stacklayout{width:535px;}.fxs-blade .fxs-blade-stacklayout{width:535px;}.fxs-blade .fxs-blade-maximized-content{display:none;}.fxs-stacklayout-vertical.fxs-stacklayout>.fxs-stacklayout-child{display:block;}.fxs-lens{position:relative;height:100%;-moz-box-sizing:border-box;box-sizing:border-box;}.fxs-lens .fxs-lens-title{color:#3d4045;}.fxs-lens>.fxs-lens-title{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;margin:0;font-family:"Segoe UI Light","Segoe WP Light","Segoe UI","Segoe WP",Tahoma,Arial,sans-serif;font-weight:400;font-size:14px;line-height:32px;color:#3d4045;}.fxs-lens>.fxs-lens-layout{height:100%;}:last-child.fxs-tilesize-herowidefitheight.fxs-tile,:last-child.fxs-tilesize-fullwidthfitheight.fxs-tile{margin-bottom:0;}.fxs-tilesize-herowidefitheight.fxs-tile,.fxs-tilesize-fullwidthfitheight.fxs-tile{margin-bottom:5px;}.fxs-tilesize-fullwidthfitheight.fxs-tile{height:100%;width:100%;}.fxs-blade-locked.fxs-blade .fxs-part,.fxs-bladestyle-context.fxs-blade .fxs-part,.fxs-bladestyle-contextaction.fxs-blade .fxs-part,.fxs-bladestyle-help.fxs-blade .fxs-part{box-shadow:none;}.fxs-blade-locked.fxs-blade .fxs-part{padding:0;}.fxs-lens>.fxs-lens-drag-handle{position:absolute;z-index:52;top:-12px;left:-25px;bottom:12px;width:25px;background-color:#e9e9f3;opacity:0;-webkit-transition:opacity .25s ease-out;transition:opacity .25s ease-out;}.fxs-part .fxs-part-title h3{font-family:"Segoe UI Semibold","Segoe WP Semibold","Segoe UI","Segoe WP",Tahoma,Arial,sans-serif;font-weight:400;font-size:10px;line-height:10px;color:#8f9ca8;text-transform:uppercase;margin-top:3px;}.azc-grid{position:relative;}.azc-grid:focus{outline:none !important;}.azc-grid table{width:100%;border:0;background-color:transparent;table-layout:fixed;border-spacing:0;border-collapse:collapse;}.azc-grid .azc-grid-container{overflow-x:auto;overflow-y:visible;}.fxs-part .fxs-part-content{font-family:"Segoe UI","Segoe WP",Tahoma,Arial,sans-serif;font-weight:400;line-height:18px;color:#464f59;line-height:normal;position:relative;width:100%;height:100%;-moz-box-sizing:border-box;box-sizing:border-box;}.azc-control table{border-collapse:collapse;table-layout:fixed;}.azc-grid table caption{display:none;}.azc-grid-headerHidden .azc-grid table thead{display:none;}.azc-grid table thead tr th.azc-grid-unsortablecolumnheader{cursor:default;}.azc-grid table th:first-child{padding-left:0;}.azc-grid table thead tr th{text-transform:uppercase;}.azc-grid table thead tr th>a{padding:1px 0 1px 10px;}.azc-grid table thead tr th a{line-height:38px;display:block;text-decoration:none;color:inherit;position:relative;}a{color:#00bcf2;text-decoration:none;}.azc-grid table thead tr th a span{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;}.azc-grid table thead tr th>a .azc-grid-headerlabel{display:block;}.azc-grid-activateableRow table tbody tr[data-grid-row-activated='true'][aria-selected='true']{background-color:#c6edfa !important;}.azc-grid-selectableRow table tbody tr[aria-selected='true'] td{color:inherit !important;}.azc-grid table tbody:last-child tr:last-child td{border-bottom:1px solid #dcdfe2;}.azc-grid table tbody tr td{color:#3d3d3d;height:33px;border-top:1px solid #dcdfe2;border-bottom:1px solid #dcdfe2;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;}.azc-control svg{overflow:hidden;}.msportalfx-gridcolumn-asseticon img,.msportalfx-gridcolumn-asseticon svg{margin-top:4px;height:21px;width:21px;}.msportalfx-svg-c04{fill:#7a7a7a;}.msportalfx-svg-c20{fill:#68217a;}.msportalfx-svg-c01{fill:#fff;}.k-grid-content table tbody tr{padding:1px 0 1px 10px;}.k-grid td{padding:0 .6em;}body{background-color:#2e80ab;background-image:linear-gradient(to bottom,#2e80ab 0%,#61b7da 100%);background-repeat:no-repeat;font-family:wf_segoe-ui_normal,"Segoe UI","Segoe WP",Tahoma,Arial,sans-serif;font-weight:400;font-size:small;-ms-scrollbar-arrow-color:#758393;-ms-scrollbar-face-color:#63707e;-ms-scrollbar-track-color:#dcdfe2;}a{color:#00bcf2;text-decoration:none;}img,a img,:link img,:visited img{border:0;}input.ng-invalid{border:1px solid #f00;}.collapsed{visibility:collapse;width:0;min-width:0;}
|
|
1
|
+
@charset "UTF-8";html{box-sizing:border-box;}*,*:before,*:after{box-sizing:inherit;}html,body{height:100%;width:0;margin:0;padding:0;}a{color:#00bcf2;text-decoration:none;}.ng-scope{height:100%;}.fxs-portal{overflow:hidden;position:fixed;top:0;left:0;right:0;bottom:0;}.fxs-portal .fxs-portal-content{height:100%;color:#464f59;overflow-x:auto;overflow-y:hidden;white-space:nowrap;-webkit-transition:margin .2s ease;-moz-transition:margin .2s ease;-o-transition:margin .2s ease;transition:margin .2s ease;}.fxs-portal .fxs-portal-content>*{white-space:normal;}.fxs-panorama{-ms-scroll-chaining:none;}.fxs-panorama-homearea{min-width:600px;}.fxs-panorama .fxs-panorama-homearea{position:relative;padding:0 25px;margin:0 15px 0 25px;}.fxs-panorama .fxs-panorama-homearea,.fxs-panorama .fxs-journey-target{display:inline-block;vertical-align:top;height:100%;}.fxs-panorama .fxs-panorama-homearea>header{margin:20px 0 4px;height:76px;min-width:450px;}.fxs-panorama .fxs-panorama-homearea .fxs-panorama-title{font-family:"Segoe UI Light","Segoe WP Light","Segoe UI","Segoe WP",Tahoma,Arial,sans-serif;font-weight:400;font-size:40px;line-height:54px;color:#fff;padding-top:6px;margin:0;}.fxs-panorama .fxs-panorama-homearea .fxs-avatarmenu-target{position:absolute;top:18px;right:5px;max-width:220px;min-width:190px;}.fxs-avatarmenu{position:relative;padding:12px;text-align:right;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;}.fxs-avatarmenu .fxs-avatarmenu-header{position:relative;font-family:"Segoe UI","Segoe WP",Tahoma,Arial,sans-serif;font-weight:400;color:#fff;}.fxs-avatarmenu>a{display:block;white-space:nowrap;overflow:hidden;-ms-text-overflow:ellipsis;-o-text-overflow:ellipsis;text-overflow:ellipsis;text-decoration:none;padding:10px;padding-right:54px;}.fxs-avatarmenu>a img{position:absolute;top:10px;right:10px;height:35px;width:32px;border:0;border-left:3px solid #7fba00;}.fxs-avatarmenu .fxs-avatarmenu-header .fxs-avatarmenu-username{white-space:nowrap;overflow:hidden;-ms-text-overflow:ellipsis;-o-text-overflow:ellipsis;text-overflow:ellipsis;font-size:14px;}.fxs-avatarmenu .fxs-avatarmenu-header .fxs-avatarmenu-emailaddress{white-space:nowrap;overflow:hidden;-ms-text-overflow:ellipsis;-o-text-overflow:ellipsis;text-overflow:ellipsis;font-family:"Segoe UI Semibold","Segoe WP Semibold","Segoe UI","Segoe WP",Tahoma,Arial,sans-serif;font-weight:400;font-size:10px;text-transform:uppercase;opacity:.9;margin-top:4px;}.fxs-avatarmenu .fxs-avatarmenu-dropdown{display:none;width:100%;background-color:#32383f;border-top:1px solid #3c454f;text-align:left;}.fxs-avatarmenu .fxs-avatarmenu-dropdown ul{padding:0;margin:0;list-style-type:none;border-bottom:1px solid #3c454f;}.fxs-avatarmenu .fxs-avatarmenu-dropdown .fxs-avatarmenu-list-system .fxs-avatarmenu-feedback,.fxs-avatarmenu .fxs-avatarmenu-dropdown .fxs-avatarmenu-list-system .fxs-avatarmenu-switchportal,.fxs-avatarmenu .fxs-avatarmenu-dropdown .fxs-avatarmenu-list-system .fxs-avatarmenu-signout{padding-right:35px;position:relative;}.fxs-avatarmenu .fxs-avatarmenu-dropdown ul li a{display:block;font-size:14px;padding:10px 18px 11px;line-height:18px;color:#fff;text-decoration:none;white-space:nowrap;overflow:hidden;-ms-text-overflow:ellipsis;-o-text-overflow:ellipsis;text-overflow:ellipsis;}.fxs-avatarmenu .fxs-avatarmenu-dropdown .fxs-avatarmenu-list-system .fxs-avatarmenu-icon{width:15px;height:15px;display:inline-block;position:absolute;right:18px;margin-top:2px;}.fxs-panorama .fxs-panorama-homearea .fxs-startboard-target{height:-webkit-calc(100% - 100px);height:calc(100% - 100px);}.fxs-startboard .fxs-startboard-layout{height:100%;overflow-y:hidden;overflow-x:hidden;margin:0 -25px;padding:0 25px;}.fxs-stacklayout-child{height:100%;}.fxs-flowlayout>.fxs-flowlayout-childcontainer{position:relative;-webkit-transition:height .25s linear,width .25s linear 0s;-moz-transition:height .25s linear,width .25s linear 0s;-o-transition:height .25s linear,width .25s linear 0s;transition:height .25s linear,width .25s linear 0s;}.fxs-flowlayout>.fxs-flowlayout-childcontainer>.fxs-flowlayout-element{position:absolute;}.fxs-tilesize-herowide.fxs-tile{height:355px;width:535px;}.fxs-tilesize-normal.fxs-tile{height:175px;width:175px;}.fxs-tilesize-mini.fxs-tile{height:85px;width:85px;}.fxs-tile{height:175px;width:175px;-webkit-transition:height .125s linear .125s,width .125s linear 0s;-moz-transition:height .125s linear .125s,width .125s linear 0s;-o-transition:height .125s linear .125s,width .125s linear 0s;transition:height .125s linear .125s,width .125s linear 0s;background-color:#fff;position:relative;}.fxs-part{width:100%;height:100%;position:relative;box-shadow:inset 1px 0 #dcdfe2;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;overflow:hidden;padding:15px 15px 15px 15px;box-shadow:inset 1px 0 #dcdfe2;}.fxs-part .fxs-part-title{position:relative;top:-4px;}.fxs-part .fxs-part-title h2{font-family:"Segoe UI","Segoe WP",Tahoma,Arial,sans-serif;font-weight:400;font-size:14px;line-height:17px;color:#32383f;}.fxs-part .fxs-part-title h3{font-family:"Segoe UI Semibold","Segoe WP Semibold","Segoe UI","Segoe WP",Tahoma,Arial,sans-serif;font-weight:400;font-size:10px;line-height:10px;color:#8f9ca8;text-transform:uppercase;margin-top:3px;}.fxs-part .fxs-part-title h2,.fxs-part .fxs-part-title h3{margin:0;white-space:nowrap;overflow:hidden;-ms-text-overflow:ellipsis;-o-text-overflow:ellipsis;text-overflow:ellipsis;}.fxs-part .fxs-part-content{font-family:"Segoe UI","Segoe WP",Tahoma,Arial,sans-serif;font-weight:400;line-height:18px;color:#464f59;position:relative;width:100%;height:100%;-moz-box-sizing:border-box;box-sizing:border-box;}.fxs-tile div.fxs-tile-overlay{display:none;position:absolute;width:100%;top:0;bottom:0;cursor:pointer;}.fxs-journey{height:100%;}.fxs-journey>.fxs-journey-layout{height:100%;}.fxs-journey>.fxs-journey-layout>.fxs-stacklayout-child{-webkit-transition:padding-top .2s ease,opacity .2s ease;transition:padding-top .2s ease,opacity .2s ease;}.fxs-stacklayout-horizontal.fxs-stacklayout{overflow:hidden;white-space:nowrap;height:100%;}.fxs-stacklayout-horizontal.fxs-stacklayout>.fxs-stacklayout-child{display:inline-block;vertical-align:top;overflow-y:auto;height:100%;white-space:normal;}.fxs-journey>.fxs-journey-layout>.fxs-stacklayout-child>.fxs-blade{box-shadow:-5px 0 0 rgba(31,35,39,.2),5px 0 0 rgba(31,35,39,.2);}.fxs-journey-layout :first-child.fxs-stacklayout-child .fxs-blade{border-left-color:transparent;border-left-width:0;}.fxs-blade-locked.fxs-blade{background-color:#fff;}.fxs-bladesize-small.fxs-blade{width:315px;}.fxs-blade{border-left-color:rgba(143,156,168,.8);width:585px;position:relative;height:100%;background-color:#f1f2f3;overflow:hidden;-webkit-transition:width .2s ease-out;-moz-transition:width .2s ease-out;-o-transition:width .2s ease-out;transition:width .2s ease-out;border-left-style:solid;border-left-width:2px;}.fxs-blade .fxs-blade-header{padding-bottom:8px;background-color:#3e4045;min-height:117px;}.fxs-blade .fxs-blade-statusbar-wrapper{background-color:#32383f;}.fxs-blade .fxs-blade-statusbar::after{content:" ";}.fxs-blade .fxs-blade-statusbar{-webkit-transition:all .5s,color .5s;-moz-transition:all .5s,color .5s;-o-transition:all .5s,color .5s;transition:all .5s,color .5s;}.fxs-blade .fxs-blade-statusbar,.fxs-blade .fxs-blade-loading-status{padding:5px 0 5px 25px;font-family:"Segoe UI Semibold","Segoe WP Semibold","Segoe UI","Segoe WP",Tahoma,Arial,sans-serif;font-weight:400;font-size:10px;line-height:10px;color:#fff;text-transform:uppercase;white-space:nowrap;overflow:hidden;-ms-text-overflow:ellipsis;-o-text-overflow:ellipsis;text-overflow:ellipsis;}.fxs-blade .fxs-blade-header .fxs-blade-actions{-webkit-transition:all .2s ease-out;-moz-transition:all .2s ease-out;-o-transition:all .2s ease-out;transition:all .2s ease-out;float:right;margin-right:22px;height:40px;}.fxs-blade .fxs-blade-header .fxs-blade-actions button{cursor:pointer;border:0;height:21px;width:21px;background-color:transparent;margin-top:4px;margin-left:6px;padding:0;opacity:.6;-webkit-transition:opacity .2s ease-out;-moz-transition:opacity .2s ease-out;-o-transition:opacity .2s ease-out;transition:opacity .2s ease-out;}.fxs-blade .fxs-blade-header .fxs-blade-actions button img,.fxs-blade .fxs-blade-header .fxs-blade-actions button svg{height:21px;width:21px;}.msportal-fx-svg-placeholder{fill:#fff;}.msportalfx-svg-c01{fill:#fff;}.fxs-blade .fxs-blade-header .fxs-blade-title{padding:0 25px 2px 7px;margin-left:18px;}.fxs-blade .fxs-blade-header .fxs-blade-title h2::after,.fxs-blade .fxs-blade-header .fxs-blade-title h3::after{content:" ";}.fxs-blade .fxs-blade-header .fxs-blade-title h2{margin:0;font-family:"Segoe UI Light","Segoe WP Light","Segoe UI","Segoe WP",Tahoma,Arial,sans-serif;font-weight:400;font-size:20px;line-height:28px;color:#fff;white-space:nowrap;overflow:hidden;-ms-text-overflow:ellipsis;-o-text-overflow:ellipsis;text-overflow:ellipsis;}.fxs-blade .fxs-blade-header .fxs-blade-title h3{margin:3px 0 2px 0;font-family:"Segoe UI Semibold","Segoe WP Semibold","Segoe UI","Segoe WP",Tahoma,Arial,sans-serif;font-weight:400;font-size:10px;line-height:10px;color:#758393;text-transform:uppercase;white-space:nowrap;overflow:hidden;-ms-text-overflow:ellipsis;-o-text-overflow:ellipsis;text-overflow:ellipsis;}.fxs-blade .fxs-blade-header .fxs-blade-commandBarContainer{margin:0 20px 0 15px;}.fxs-commandBar{display:none;}.fxs-commandBar-active.fxs-commandBar{display:block;}.fxs-commandBar>ul.fxs-commandBar-itemList{display:block;margin:4px 0 0;padding:0;list-style-type:none;overflow:hidden;height:48px;-webkit-transition:height .175s ease-in;-moz-transition:height .175s ease-in;-o-transition:height .175s ease-in;transition:height .175s ease-in;}.fxs-commandBar>ul.fxs-commandBar-itemList>li{border-right-color:#6c737a;float:left;margin-bottom:5px;border-right:1px solid transparent;}.fxs-commandBar .fxs-commandBar-form{display:block;position:absolute;z-index:200;width:100%;left:0;}.fxs-commandBar .fxs-commandBar-item{font-family:"Segoe UI Semibold","Segoe WP Semibold","Segoe UI","Segoe WP",Tahoma,Arial,sans-serif;font-weight:400;font-size:10px;line-height:10px;color:#fff;text-transform:uppercase;display:block;position:relative;padding:3px 10px 0;width:90px;height:48px;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-transition:background-color .07s ease-in;transition:background-color .07s ease-in;}.fxs-commandBar .fxs-commandBar-item .fxs-commandBar-item-text{height:22px;-webkit-transition:opacity .07s ease-in;transition:opacity .07s ease-in;}.fxs-commandBar .fxs-commandBar-item .fxs-commandBar-item-icon{position:absolute;bottom:2px;}.fxs-commandBar .fxs-commandBar-item .fxs-commandBar-item-icon>svg,.fxs-commandBar .fxs-commandBar-item .fxs-commandBar-item-icon>img{height:18px;width:18px;}.fxs-commandBar .fxs-commandBar-item-expandList.fxs-commandBar-item::after{content:"…";position:absolute;bottom:9px;left:40px;font-size:23px;line-height:23px;}.fxs-commandBar .fxs-commandBar-item:hover{background-color:#1f2327;}.fxs-blade .fxs-blade-content{padding:25px;overflow-x:hidden;overflow-y:auto;-ms-overflow-style:-ms-autohiding-scrollbar;-ms-scrollbar-track-color:#d8d8ea;-ms-scrollbar-arrow-color:#758393;-ms-scrollbar-face-color:#63707e;}.fxs-bladesize-small.fxs-blade .fxs-blade-stacklayout{width:265px;}.fxs-blade .fxs-blade-content>div{height:100%;}.fxs-bladesize-medium.fxs-blade{width:585px;}.fxs-bladesize-medium.fxs-blade .fxs-blade-stacklayout{width:535px;}.fxs-blade .fxs-blade-stacklayout{width:535px;}.fxs-blade .fxs-blade-maximized-content{display:none;}.fxs-stacklayout-vertical.fxs-stacklayout>.fxs-stacklayout-child{display:block;}.fxs-lens{position:relative;height:100%;-moz-box-sizing:border-box;box-sizing:border-box;}.fxs-lens .fxs-lens-title{color:#3d4045;}.fxs-lens>.fxs-lens-title{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;margin:0;font-family:"Segoe UI Light","Segoe WP Light","Segoe UI","Segoe WP",Tahoma,Arial,sans-serif;font-weight:400;font-size:14px;line-height:32px;color:#3d4045;}.fxs-lens>.fxs-lens-layout{height:100%;}:last-child.fxs-tilesize-herowidefitheight.fxs-tile,:last-child.fxs-tilesize-fullwidthfitheight.fxs-tile{margin-bottom:0;}.fxs-tilesize-herowidefitheight.fxs-tile,.fxs-tilesize-fullwidthfitheight.fxs-tile{margin-bottom:5px;}.fxs-tilesize-fullwidthfitheight.fxs-tile{height:100%;width:100%;}.fxs-blade-locked.fxs-blade .fxs-part,.fxs-bladestyle-context.fxs-blade .fxs-part,.fxs-bladestyle-contextaction.fxs-blade .fxs-part,.fxs-bladestyle-help.fxs-blade .fxs-part{box-shadow:none;}.fxs-blade-locked.fxs-blade .fxs-part{padding:0;}.fxs-lens>.fxs-lens-drag-handle{position:absolute;z-index:52;top:-12px;left:-25px;bottom:12px;width:25px;background-color:#e9e9f3;opacity:0;-webkit-transition:opacity .25s ease-out;transition:opacity .25s ease-out;}.fxs-part .fxs-part-title h3{font-family:"Segoe UI Semibold","Segoe WP Semibold","Segoe UI","Segoe WP",Tahoma,Arial,sans-serif;font-weight:400;font-size:10px;line-height:10px;color:#8f9ca8;text-transform:uppercase;margin-top:3px;}.azc-grid{position:relative;}.azc-grid:focus{outline:none !important;}.azc-grid table{width:100%;border:0;background-color:transparent;table-layout:fixed;border-spacing:0;border-collapse:collapse;}.azc-grid .azc-grid-container{overflow-x:auto;overflow-y:visible;}.fxs-part .fxs-part-content{font-family:"Segoe UI","Segoe WP",Tahoma,Arial,sans-serif;font-weight:400;line-height:18px;color:#464f59;line-height:normal;position:relative;width:100%;height:100%;-moz-box-sizing:border-box;box-sizing:border-box;}.azc-control table{border-collapse:collapse;table-layout:fixed;}.azc-grid table caption{display:none;}.azc-grid-headerHidden .azc-grid table thead{display:none;}.azc-grid table thead tr th.azc-grid-unsortablecolumnheader{cursor:default;}.azc-grid table th:first-child{padding-left:0;}.azc-grid table thead tr th{text-transform:uppercase;}.azc-grid table thead tr th>a{padding:1px 0 1px 10px;}.azc-grid table thead tr th a{line-height:38px;display:block;text-decoration:none;color:inherit;position:relative;}a{color:#00bcf2;text-decoration:none;}.azc-grid table thead tr th a span{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;}.azc-grid table thead tr th>a .azc-grid-headerlabel{display:block;}.azc-grid-activateableRow table tbody tr[data-grid-row-activated='true'][aria-selected='true']{background-color:#c6edfa !important;}.azc-grid-selectableRow table tbody tr[aria-selected='true'] td{color:inherit !important;}.azc-grid table tbody:last-child tr:last-child td{border-bottom:1px solid #dcdfe2;}.azc-grid table tbody tr td{color:#3d3d3d;height:33px;border-top:1px solid #dcdfe2;border-bottom:1px solid #dcdfe2;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;}.azc-control svg{overflow:hidden;}.msportalfx-gridcolumn-asseticon img,.msportalfx-gridcolumn-asseticon svg{margin-top:4px;height:21px;width:21px;}.msportalfx-svg-c04{fill:#7a7a7a;}.msportalfx-svg-c20{fill:#68217a;}.msportalfx-svg-c01{fill:#fff;}.k-grid-content table tbody tr{padding:1px 0 1px 10px;}.k-grid td{padding:0 .6em;}body{background-color:#2e80ab;background-image:linear-gradient(to bottom,#2e80ab 0%,#61b7da 100%);background-repeat:no-repeat;font-family:wf_segoe-ui_normal,"Segoe UI","Segoe WP",Tahoma,Arial,sans-serif;font-weight:400;font-size:small;-ms-scrollbar-arrow-color:#758393;-ms-scrollbar-face-color:#63707e;-ms-scrollbar-track-color:#dcdfe2;}a{color:#00bcf2;text-decoration:none;}img,a img,:link img,:visited img{border:0;}input.ng-invalid{border:1px solid #f00;}.collapsed{visibility:collapse;width:0;min-width:0;}
|
|
@@ -1,46 +1,16 @@
|
|
|
1
1
|
/// <reference types="angular" />
|
|
2
|
-
/// <reference path="../../domain/debug.ts" />
|
|
3
2
|
/// <reference path="../../domain/portalservice.ts" />
|
|
4
3
|
|
|
5
4
|
namespace angularportalazure {
|
|
6
|
-
//angularPortalBlade.$inject = ['angularportalazure.portalService'];
|
|
7
|
-
//function angularPortalBlade(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, element, attrs, controller) {
|
|
15
|
-
// //controller.close = function () {
|
|
16
|
-
// // portalService.areaBlades.clearLastLevel();
|
|
17
|
-
// //};
|
|
18
|
-
// },
|
|
19
|
-
// controller: function () {
|
|
20
|
-
// this.$onInit = function () {
|
|
21
|
-
// this.close = function () {
|
|
22
|
-
// portalService.areaBlades.clearLastLevel();
|
|
23
|
-
// };
|
|
24
|
-
// };
|
|
25
|
-
// },
|
|
26
|
-
// controllerAs: '$ctrl'
|
|
27
|
-
// };
|
|
28
|
-
//}
|
|
29
|
-
|
|
30
|
-
//angular.module('angularportalazure').directive('angularPortalBlade', angularPortalBlade);
|
|
31
|
-
|
|
32
5
|
AngularPortalBladeController.$inject = ['angularportalazure.portalService'];
|
|
33
6
|
function AngularPortalBladeController(portalService: angularportalazure.PortalService) {
|
|
34
7
|
this.$onInit = function () {
|
|
35
|
-
//portalService.areaNotification.show();
|
|
36
8
|
this.close = function () {
|
|
37
|
-
//portalService.areaBlades.clearLastLevel();
|
|
38
|
-
//portalService.areaNotification.hide();
|
|
39
9
|
};
|
|
40
10
|
};
|
|
41
11
|
}
|
|
42
12
|
|
|
43
|
-
|
|
13
|
+
let angularPortalBlade = {
|
|
44
14
|
transclude: true,
|
|
45
15
|
templateUrl: '/node_modules/@ardimedia/angular-portal-azure/directives/blade/blade.html',
|
|
46
16
|
controller: AngularPortalBladeController,
|
|
@@ -1,27 +1,5 @@
|
|
|
1
1
|
namespace angularportalazure {
|
|
2
|
-
|
|
3
|
-
//function grid(portalService: angularportalazure.PortalService) {
|
|
4
|
-
// return {
|
|
5
|
-
// restrict: 'E',
|
|
6
|
-
// transclude: true,
|
|
7
|
-
// scope: {},
|
|
8
|
-
// bindToController: { vm: '=' },
|
|
9
|
-
// templateUrl: '/node_modules/@ardimedia/angular-portal-azure/directives/grid/grid.html',
|
|
10
|
-
// link: function (scope, element, attrs, controller) { },
|
|
11
|
-
// controller: function () {
|
|
12
|
-
// //this.$onInit = function () {
|
|
13
|
-
// // this.close = function () {
|
|
14
|
-
// // portalService.areaBlades.clearLastLevel();
|
|
15
|
-
// // };
|
|
16
|
-
// //};
|
|
17
|
-
// },
|
|
18
|
-
// controllerAs: '$ctrl'
|
|
19
|
-
// };
|
|
20
|
-
//}
|
|
21
|
-
|
|
22
|
-
//angular.module('angularportalazure').directive('grid', grid);
|
|
23
|
-
|
|
24
|
-
var angularPortalGrid = {
|
|
2
|
+
let angularPortalGrid = {
|
|
25
3
|
transclude: true,
|
|
26
4
|
templateUrl: '/node_modules/@ardimedia/angular-portal-azure/directives/bladegrid/bladegrid.html',
|
|
27
5
|
controller: function () { },
|
|
@@ -1,18 +1,4 @@
|
|
|
1
1
|
namespace angularportalazure {
|
|
2
|
-
//function angularPortalHome() {
|
|
3
|
-
// return {
|
|
4
|
-
// restrict: 'E',
|
|
5
|
-
// scope: {},
|
|
6
|
-
// bindToController: { vm: '=' },
|
|
7
|
-
// templateUrl: '/node_modules/@ardimedia/angular-portal-azure/directives/home/home.html',
|
|
8
|
-
// link: function (scope, element, attrs, controller) { },
|
|
9
|
-
// controller: function () { },
|
|
10
|
-
// controllerAs: '$ctrl'
|
|
11
|
-
// };
|
|
12
|
-
//}
|
|
13
|
-
|
|
14
|
-
//angular.module('angularportalazure').directive('angularPortalHome', angularPortalHome);
|
|
15
|
-
|
|
16
2
|
AngularPortalHomeController.$inject = ['$scope', 'angularportalazure.portalService'];
|
|
17
3
|
function AngularPortalHomeController($scope: angular.IScope, portalService: angularportalazure.PortalService) {
|
|
18
4
|
this.$onInit = function () {
|
|
@@ -21,7 +7,7 @@
|
|
|
21
7
|
};
|
|
22
8
|
}
|
|
23
9
|
|
|
24
|
-
|
|
10
|
+
let angularPortalHome = {
|
|
25
11
|
templateUrl: '/node_modules/@ardimedia/angular-portal-azure/directives/home/home.html',
|
|
26
12
|
controller: AngularPortalHomeController,
|
|
27
13
|
bindings: {
|
|
@@ -1,34 +1,5 @@
|
|
|
1
1
|
namespace angularportalazure {
|
|
2
|
-
|
|
3
|
-
//function nav(portalService: angularportalazure.PortalService) {
|
|
4
|
-
// return {
|
|
5
|
-
// restrict: 'E',
|
|
6
|
-
// transclude: true,
|
|
7
|
-
// scope: {},
|
|
8
|
-
// bindToController: { vm: '=' },
|
|
9
|
-
// templateUrl: '/node_modules/@ardimedia/angular-portal-azure/directives/nav/nav.html',
|
|
10
|
-
// link: function (scope, element, attrs, controller) {
|
|
11
|
-
// angular.forEach(controller.items, function (item) {
|
|
12
|
-
// // Set some default values, depending on existing values
|
|
13
|
-
// if (item.isVisible == undefined) { item.isVisible = true; }
|
|
14
|
-
// if (item.title == undefined || item.title == '') { item.style = { cursor: 'default' }; }
|
|
15
|
-
// if (item.bladePath == undefined || item.bladePath == '') { item.style = { cursor: 'default' }; }
|
|
16
|
-
// });
|
|
17
|
-
// },
|
|
18
|
-
// controller: function () {
|
|
19
|
-
// //this.$onInit = function () {
|
|
20
|
-
// // this.close = function () {
|
|
21
|
-
// // portalService.areaBlades.clearLastLevel();
|
|
22
|
-
// // };
|
|
23
|
-
// //};
|
|
24
|
-
// },
|
|
25
|
-
// controllerAs: '$ctrl'
|
|
26
|
-
// };
|
|
27
|
-
//}
|
|
28
|
-
|
|
29
|
-
//angular.module('angularportalazure').directive('nav', nav);
|
|
30
|
-
|
|
31
|
-
var angularPortalNav = {
|
|
2
|
+
let angularPortalNav = {
|
|
32
3
|
transclude: true,
|
|
33
4
|
templateUrl: '/node_modules/@ardimedia/angular-portal-azure/directives/nav/nav.html',
|
|
34
5
|
controller: function () { },
|
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.153",
|
|
6
6
|
"main": "index.js",
|
|
7
7
|
"typings": "apn.d.ts",
|
|
8
8
|
"dependencies": {
|