@ardimedia/angular-portal-azure 0.2.256 → 0.2.258
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 +6 -2
- 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;
|
|
@@ -361,7 +365,7 @@ declare namespace angularportalazure {
|
|
|
361
365
|
class BladeDetail<T> extends angularportalazure.BladeData {
|
|
362
366
|
constructor($scope: angular.IScope, portalService: angularportalazure.PortalService, path: string, title: string, subtitle?: string, width?: number);
|
|
363
367
|
item: T;
|
|
364
|
-
loadItem(func: () =>
|
|
368
|
+
loadItem(func: () => Promise<any>): void;
|
|
365
369
|
saveItem(func: () => any): void;
|
|
366
370
|
onSaveItem(): void;
|
|
367
371
|
onSavedItem(): void;
|
|
@@ -372,7 +376,7 @@ declare namespace angularportalazure {
|
|
|
372
376
|
class BladeGrid extends angularportalazure.BladeData {
|
|
373
377
|
constructor($scope: angular.IScope, portalService: angularportalazure.PortalService, path: string, title: string, subtitle?: string, width?: number);
|
|
374
378
|
items: any[];
|
|
375
|
-
loadItems(func: () =>
|
|
379
|
+
loadItems(func: () => Promise<any>): void;
|
|
376
380
|
onFilter(actual: Object, expected: string): boolean;
|
|
377
381
|
}
|
|
378
382
|
}
|
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.258",
|
|
6
6
|
"main": "index.js",
|
|
7
7
|
"typings": "apn.d.ts",
|
|
8
8
|
"dependencies": {
|