@ardimedia/angular-portal-azure 0.2.186 → 0.2.187
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 +1 -0
- package/apn.js +3 -0
- package/package.json +1 -1
package/apn.d.ts
CHANGED
|
@@ -351,6 +351,7 @@ declare namespace angularportalazure {
|
|
|
351
351
|
class BladeDetail<T> extends angularportalazure.BladeData {
|
|
352
352
|
constructor($scope: angular.IScope, portalService: angularportalazure.PortalService, path: string, title: string, subtitle?: string, width?: number);
|
|
353
353
|
item: T;
|
|
354
|
+
visibility: string;
|
|
354
355
|
loadItem(func: () => angular.IPromise<any>): void;
|
|
355
356
|
onLoadItem(): void;
|
|
356
357
|
onLoadedItem(): void;
|
package/apn.js
CHANGED
|
@@ -1079,6 +1079,7 @@ var angularportalazure;
|
|
|
1079
1079
|
//#endregion
|
|
1080
1080
|
//#region Properties
|
|
1081
1081
|
_this.item = {};
|
|
1082
|
+
_this.visibility = 'collapse';
|
|
1082
1083
|
_this.commandNewText = 'neu';
|
|
1083
1084
|
_this.commandSaveText = 'speichern';
|
|
1084
1085
|
_this.commandDeleteText = 'löschen';
|
|
@@ -1098,9 +1099,11 @@ var angularportalazure;
|
|
|
1098
1099
|
});
|
|
1099
1100
|
};
|
|
1100
1101
|
BladeDetail.prototype.onLoadItem = function () {
|
|
1102
|
+
this.visibility = 'collapse';
|
|
1101
1103
|
this.setStatusBarLoadData();
|
|
1102
1104
|
};
|
|
1103
1105
|
BladeDetail.prototype.onLoadedItem = function () {
|
|
1106
|
+
this.visibility = 'visible';
|
|
1104
1107
|
this.clearStatusBar();
|
|
1105
1108
|
};
|
|
1106
1109
|
BladeDetail.prototype.saveItem = function (func) {
|
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.187",
|
|
6
6
|
"main": "index.js",
|
|
7
7
|
"typings": "apn.d.ts",
|
|
8
8
|
"dependencies": {
|