@ardimedia/angular-portal-azure 0.2.111 → 0.2.113
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/apn.d.ts +2 -2
- package/apn.js +4 -3
- package/package.json +1 -1
package/apn.d.ts
CHANGED
|
@@ -373,7 +373,7 @@ declare namespace angularportalazure {
|
|
|
373
373
|
ClassName: string;
|
|
374
374
|
Data: Object;
|
|
375
375
|
Type: string;
|
|
376
|
-
Messages
|
|
376
|
+
Messages: string[];
|
|
377
377
|
Message: string;
|
|
378
378
|
MessageDetail: string;
|
|
379
379
|
Status: number;
|
|
@@ -390,7 +390,7 @@ declare namespace angularportalazure {
|
|
|
390
390
|
Data: Object;
|
|
391
391
|
Type: string;
|
|
392
392
|
Message: string;
|
|
393
|
-
Messages
|
|
393
|
+
Messages: string[];
|
|
394
394
|
}
|
|
395
395
|
}
|
|
396
396
|
declare namespace angularportalazure {
|
package/apn.js
CHANGED
|
@@ -369,9 +369,10 @@ var angularportalazure;
|
|
|
369
369
|
}
|
|
370
370
|
else {
|
|
371
371
|
that.statusBar = 'FEHLER: ' + exception.Message;
|
|
372
|
-
|
|
372
|
+
}
|
|
373
|
+
if (exception.Messages != undefined) {
|
|
373
374
|
exception.Messages.forEach(function (item) {
|
|
374
|
-
that.statusBar +=
|
|
375
|
+
that.statusBar += ' - ' + item;
|
|
375
376
|
});
|
|
376
377
|
}
|
|
377
378
|
that.statusBarClass = 'message-error message-off';
|
|
@@ -1209,7 +1210,7 @@ var angularportalazure;
|
|
|
1209
1210
|
//#endregion
|
|
1210
1211
|
//#region Properties
|
|
1211
1212
|
_this.items = [];
|
|
1212
|
-
|
|
1213
|
+
//this.isCommandNew = true;
|
|
1213
1214
|
_this.commandNewText = 'neu';
|
|
1214
1215
|
return _this;
|
|
1215
1216
|
}
|
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.113",
|
|
6
6
|
"main": "index.js",
|
|
7
7
|
"typings": "apn.d.ts",
|
|
8
8
|
"dependencies": {
|