@ardimedia/angular-portal-azure 0.2.188 → 0.2.190
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 -5
- package/apn.js +18 -15
- package/directives/home/home.html +1 -1
- package/package.json +1 -1
package/apn.d.ts
CHANGED
|
@@ -47,6 +47,7 @@ declare namespace angularportalazure {
|
|
|
47
47
|
We don't know how to provide [this] to the directive.
|
|
48
48
|
So we came up with this [vm] property.*/
|
|
49
49
|
vm: any;
|
|
50
|
+
visibility: string;
|
|
50
51
|
private watcherTitle;
|
|
51
52
|
bladeContentHeight: number;
|
|
52
53
|
bladeContentHeightInner: number;
|
|
@@ -183,6 +184,10 @@ declare namespace angularportalazure {
|
|
|
183
184
|
declare namespace angularportalazure {
|
|
184
185
|
class BladeData extends angularportalazure.Blade {
|
|
185
186
|
constructor($scope: angular.IScope, portalService: angularportalazure.PortalService, path: string, title: string, subtitle?: string, width?: number);
|
|
187
|
+
onLoadItem(): void;
|
|
188
|
+
onLoadItems(): void;
|
|
189
|
+
onLoadedItem(): void;
|
|
190
|
+
onLoadedItems(): void;
|
|
186
191
|
}
|
|
187
192
|
}
|
|
188
193
|
declare namespace angularportalazure {
|
|
@@ -351,10 +356,7 @@ declare namespace angularportalazure {
|
|
|
351
356
|
class BladeDetail<T> extends angularportalazure.BladeData {
|
|
352
357
|
constructor($scope: angular.IScope, portalService: angularportalazure.PortalService, path: string, title: string, subtitle?: string, width?: number);
|
|
353
358
|
item: T;
|
|
354
|
-
visibility: string;
|
|
355
359
|
loadItem(func: () => angular.IPromise<any>): void;
|
|
356
|
-
onLoadItem(): void;
|
|
357
|
-
onLoadedItem(): void;
|
|
358
360
|
saveItem(func: () => any): void;
|
|
359
361
|
onSaveItem(): void;
|
|
360
362
|
onSavedItem(): void;
|
|
@@ -366,8 +368,6 @@ declare namespace angularportalazure {
|
|
|
366
368
|
constructor($scope: angular.IScope, portalService: angularportalazure.PortalService, path: string, title: string, subtitle?: string, width?: number);
|
|
367
369
|
items: any[];
|
|
368
370
|
loadItems(func: () => angular.IPromise<any>): void;
|
|
369
|
-
onLoadItems(): void;
|
|
370
|
-
onLoadedItems(): void;
|
|
371
371
|
onFilter(actual: Object, expected: string): boolean;
|
|
372
372
|
}
|
|
373
373
|
}
|
package/apn.js
CHANGED
|
@@ -152,6 +152,7 @@ var angularportalazure;
|
|
|
152
152
|
We don't know how to provide [this] to the directive.
|
|
153
153
|
So we came up with this [vm] property.*/
|
|
154
154
|
_this.vm = {};
|
|
155
|
+
_this.visibility = 'collapse';
|
|
155
156
|
_this.title = '';
|
|
156
157
|
_this.subTitle = '';
|
|
157
158
|
_this.width = { 'width': '0' };
|
|
@@ -632,6 +633,23 @@ var angularportalazure;
|
|
|
632
633
|
if (width === void 0) { width = 300; }
|
|
633
634
|
return _super.call(this, $scope, portalService, path, title, subtitle, width) || this;
|
|
634
635
|
}
|
|
636
|
+
//#endregion
|
|
637
|
+
BladeData.prototype.onLoadItem = function () {
|
|
638
|
+
this.visibility = 'collapse';
|
|
639
|
+
this.setStatusBarLoadData();
|
|
640
|
+
};
|
|
641
|
+
BladeData.prototype.onLoadItems = function () {
|
|
642
|
+
this.visibility = 'collapse';
|
|
643
|
+
this.setStatusBarLoadData();
|
|
644
|
+
};
|
|
645
|
+
BladeData.prototype.onLoadedItem = function () {
|
|
646
|
+
this.visibility = 'visible';
|
|
647
|
+
this.clearStatusBar();
|
|
648
|
+
};
|
|
649
|
+
BladeData.prototype.onLoadedItems = function () {
|
|
650
|
+
this.visibility = 'visible';
|
|
651
|
+
this.clearStatusBar();
|
|
652
|
+
};
|
|
635
653
|
return BladeData;
|
|
636
654
|
}(angularportalazure.Blade));
|
|
637
655
|
angularportalazure.BladeData = BladeData;
|
|
@@ -1087,7 +1105,6 @@ var angularportalazure;
|
|
|
1087
1105
|
//#endregion
|
|
1088
1106
|
//#region Properties
|
|
1089
1107
|
_this.item = {};
|
|
1090
|
-
_this.visibility = 'collapse';
|
|
1091
1108
|
_this.commandNewText = 'neu';
|
|
1092
1109
|
_this.commandSaveText = 'speichern';
|
|
1093
1110
|
_this.commandDeleteText = 'löschen';
|
|
@@ -1106,14 +1123,6 @@ var angularportalazure;
|
|
|
1106
1123
|
_this.setStatusBarException(exception);
|
|
1107
1124
|
});
|
|
1108
1125
|
};
|
|
1109
|
-
BladeDetail.prototype.onLoadItem = function () {
|
|
1110
|
-
this.visibility = 'collapse';
|
|
1111
|
-
this.setStatusBarLoadData();
|
|
1112
|
-
};
|
|
1113
|
-
BladeDetail.prototype.onLoadedItem = function () {
|
|
1114
|
-
this.visibility = 'visible';
|
|
1115
|
-
this.clearStatusBar();
|
|
1116
|
-
};
|
|
1117
1126
|
BladeDetail.prototype.saveItem = function (func) {
|
|
1118
1127
|
var _this = this;
|
|
1119
1128
|
this.onSaveItem();
|
|
@@ -1173,12 +1182,6 @@ var angularportalazure;
|
|
|
1173
1182
|
_this.setStatusBarException(exception);
|
|
1174
1183
|
});
|
|
1175
1184
|
};
|
|
1176
|
-
BladeGrid.prototype.onLoadItems = function () {
|
|
1177
|
-
this.setStatusBarLoadData();
|
|
1178
|
-
};
|
|
1179
|
-
BladeGrid.prototype.onLoadedItems = function () {
|
|
1180
|
-
this.clearStatusBar();
|
|
1181
|
-
};
|
|
1182
1185
|
//#region Filter
|
|
1183
1186
|
BladeGrid.prototype.onFilter = function (actual, expected) {
|
|
1184
1187
|
//#region Documentation
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<div class="fxs-portal fxs-theme-blue">
|
|
2
2
|
<!-- fxs-topbar -->
|
|
3
3
|
<div class="fxs-topbar container-fluid row">
|
|
4
|
-
<div class="col-xs-6">
|
|
4
|
+
<div class="col-xs-6" style="padding-left: 25px;">
|
|
5
5
|
<a href="#" class="fxs-topbar-home fxs-has-hover">{{$ctrl.vm.portalService.panorama.title}}</a>
|
|
6
6
|
</div>
|
|
7
7
|
<div class="col-xs-6 fxs-avatarmenu-tenant-container">
|
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.190",
|
|
6
6
|
"main": "index.js",
|
|
7
7
|
"typings": "apn.d.ts",
|
|
8
8
|
"dependencies": {
|