@ardimedia/angular-portal-azure 0.2.176 → 0.2.178
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.js +6 -4
- package/directives/blade/blade.html +2 -2
- package/directives/home/home.html +5 -4
- package/package.json +1 -1
package/apn.js
CHANGED
|
@@ -315,25 +315,27 @@ var angularportalazure;
|
|
|
315
315
|
};
|
|
316
316
|
Blade.prototype.setStatusBarLoadData = function () {
|
|
317
317
|
this.statusBar = 'Daten laden...';
|
|
318
|
-
this.statusBarClass = '';
|
|
318
|
+
this.statusBarClass = 'apa-statusbar-info';
|
|
319
319
|
};
|
|
320
320
|
Blade.prototype.setStatusBarSaveData = function () {
|
|
321
321
|
this.statusBar = 'Daten speichern...';
|
|
322
|
-
this.statusBarClass = '';
|
|
322
|
+
this.statusBarClass = 'apa-statusbar-info';
|
|
323
323
|
};
|
|
324
324
|
Blade.prototype.setStatusBarException = function (exception) {
|
|
325
325
|
if (exception.Message === undefined) {
|
|
326
326
|
this.statusBar = 'FEHLER: ' + exception;
|
|
327
|
+
this.statusBarClass = 'apa-statusbar-error';
|
|
327
328
|
}
|
|
328
329
|
else {
|
|
329
330
|
this.statusBar = 'FEHLER: ' + exception.Message;
|
|
331
|
+
this.statusBarClass = 'apa-statusbar-error';
|
|
330
332
|
}
|
|
331
333
|
if (exception.Messages !== undefined) {
|
|
332
334
|
exception.Messages.forEach(function (item) {
|
|
333
335
|
this.statusBar += ' - ' + item;
|
|
336
|
+
this.statusBarClass = 'apa-statusbar-error';
|
|
334
337
|
});
|
|
335
338
|
}
|
|
336
|
-
this.statusBarClass = 'message-error message-off';
|
|
337
339
|
};
|
|
338
340
|
//#endregion
|
|
339
341
|
//#endregion
|
|
@@ -1107,7 +1109,7 @@ var angularportalazure;
|
|
|
1107
1109
|
// Is form valid
|
|
1108
1110
|
if (!that.formblade.$valid) {
|
|
1109
1111
|
that.statusBar = 'Speichern nicht möglich!';
|
|
1110
|
-
that.statusBarClass = '
|
|
1112
|
+
that.statusBarClass = 'apa-statusbar-error';
|
|
1111
1113
|
console.log(that.formblade);
|
|
1112
1114
|
return;
|
|
1113
1115
|
}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
<section data-ng-form="$ctrl.vm.formblade" class="fxs-blade-locked fxs-blade fx-rightClick fxs-bladesize-small" ng-style="$ctrl.vm.width">
|
|
2
2
|
<header class="fxs-blade-header">
|
|
3
3
|
<div class="fxs-blade-statusbar-wrapper">
|
|
4
|
-
<div class="fxs-blade-statusbar">
|
|
5
|
-
<span
|
|
4
|
+
<div class="fxs-blade-statusbar" ng-class="$ctrl.vm.statusBarClass">
|
|
5
|
+
<span>{{$ctrl.vm.statusBar}}</span>
|
|
6
6
|
</div>
|
|
7
7
|
</div>
|
|
8
8
|
<div class="fxs-blade-actions">
|
|
@@ -15,13 +15,14 @@
|
|
|
15
15
|
<!-- fxs-panorama-homearea -->
|
|
16
16
|
<div class="fxs-panorama-homearea" ng-class="{collapsed: !$ctrl.vm.portalService.panorama.startboard.tiles.showTiles}" ng-show="$ctrl.vm.portalService.panorama.isVisible" style="padding-top:45px;">
|
|
17
17
|
<div class="fxs-startboard-target fxs-startboard fx-rightClick" ng-class="{collapsed: !$ctrl.vm.portalService.panorama.startboard.tiles.showTiles}">
|
|
18
|
-
<div class="xfxs-part fxs-part-clickable" ng-click="tile.clicked();" style="background-color:#293644; padding:25px; height:
|
|
18
|
+
<div class="xfxs-part fxs-part-clickable" ng-click="tile.clicked();" style="background-color:#293644; padding:25px; height:240px;width: 535px;">
|
|
19
19
|
<header class="xfxs-part-title" style="color:white">
|
|
20
20
|
<h3 class="xmsportalfx-tooltip-overflow">Redesign</h3>
|
|
21
21
|
<p class="xmsportalfx-tooltip-overflow">
|
|
22
|
-
Zur Zeit stehen nicht alle Applikation in PREVIEW zur Verfügung. <b>Falls Ihre Applikation unten nicht aufgelistet wird,
|
|
23
|
-
entfernen sie in der URL [.preview]
|
|
24
|
-
|
|
22
|
+
Zur Zeit stehen nicht alle Applikation in der PREVIEW-Umgebung zur Verfügung. <b>Falls Ihre Applikation unten nicht aufgelistet wird,
|
|
23
|
+
entfernen sie in der URL den Teil mit [.preview] und navigieren Sie somit zur STANDARD-Umgebung.
|
|
24
|
+
In der STANDARD-Umgebung können Sie wie gewohnt weiterarbeiten.</b>
|
|
25
|
+
Im Januar und Februar 2017 werden alle Applikationen auf das neue Layout angepasst.
|
|
25
26
|
<br /><br />Bei Fragen stehen wir gerne zur Verfügung.
|
|
26
27
|
<br />Ihr Ardimedia Team
|
|
27
28
|
</p>
|
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.178",
|
|
6
6
|
"main": "index.js",
|
|
7
7
|
"typings": "apn.d.ts",
|
|
8
8
|
"dependencies": {
|