@ardimedia/angular-portal-azure 0.2.255 → 0.2.257
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 +5 -0
- package/apn.js +20 -0
- package/package.json +1 -1
package/apn.d.ts
CHANGED
|
@@ -134,6 +134,11 @@ declare namespace angularportalazure {
|
|
|
134
134
|
clearStatusBar(): void;
|
|
135
135
|
setStatusBarLoadData(): void;
|
|
136
136
|
setStatusBarSaveData(): void;
|
|
137
|
+
setStatusBarDeleteData(): void;
|
|
138
|
+
setStatusBarDeleteDataCanceled(): void;
|
|
139
|
+
setStatusBarInfo(text: string): void;
|
|
140
|
+
setStatusBarError(text: string): void;
|
|
141
|
+
setStatusBarNoDataFound(): void;
|
|
137
142
|
setStatusBarException(exception: angularportalazure.Exception): void;
|
|
138
143
|
onCommandBrowse(): void;
|
|
139
144
|
onCommandCancel(): void;
|
package/apn.js
CHANGED
|
@@ -334,6 +334,26 @@ var angularportalazure;
|
|
|
334
334
|
this.statusBar = 'Daten speichern...';
|
|
335
335
|
this.statusBarClass = 'apa-statusbar-info';
|
|
336
336
|
};
|
|
337
|
+
Blade.prototype.setStatusBarDeleteData = function () {
|
|
338
|
+
this.statusBar = 'Daten löschen...';
|
|
339
|
+
this.statusBarClass = 'apa-statusbar-info';
|
|
340
|
+
};
|
|
341
|
+
Blade.prototype.setStatusBarDeleteDataCanceled = function () {
|
|
342
|
+
this.statusBar = 'Löschen abgebrochen.';
|
|
343
|
+
this.statusBarClass = 'apa-statusbar-info';
|
|
344
|
+
};
|
|
345
|
+
Blade.prototype.setStatusBarInfo = function (text) {
|
|
346
|
+
this.statusBar = text;
|
|
347
|
+
this.statusBarClass = 'apa-statusbar-info';
|
|
348
|
+
};
|
|
349
|
+
Blade.prototype.setStatusBarError = function (text) {
|
|
350
|
+
this.statusBar = text;
|
|
351
|
+
this.statusBarClass = 'apa-statusbar-error';
|
|
352
|
+
};
|
|
353
|
+
Blade.prototype.setStatusBarNoDataFound = function () {
|
|
354
|
+
this.statusBar = 'Keine Daten gefunden!';
|
|
355
|
+
this.statusBarClass = 'apa-statusbar-error';
|
|
356
|
+
};
|
|
337
357
|
Blade.prototype.setStatusBarException = function (exception) {
|
|
338
358
|
this.statusBar = angularportalazure.Exception.getOneLineMessage(exception);
|
|
339
359
|
this.statusBarClass = 'apa-statusbar-error';
|
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.257",
|
|
6
6
|
"main": "index.js",
|
|
7
7
|
"typings": "apn.d.ts",
|
|
8
8
|
"dependencies": {
|