@ardimedia/angular-portal-azure 0.2.256 → 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 +4 -0
- package/apn.js +16 -0
- package/package.json +1 -1
package/apn.d.ts
CHANGED
|
@@ -134,6 +134,10 @@ 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;
|
|
137
141
|
setStatusBarNoDataFound(): void;
|
|
138
142
|
setStatusBarException(exception: angularportalazure.Exception): void;
|
|
139
143
|
onCommandBrowse(): void;
|
package/apn.js
CHANGED
|
@@ -334,6 +334,22 @@ 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
|
+
};
|
|
337
353
|
Blade.prototype.setStatusBarNoDataFound = function () {
|
|
338
354
|
this.statusBar = 'Keine Daten gefunden!';
|
|
339
355
|
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": {
|