@ardimedia/angular-portal-azure 0.2.123 → 0.2.124
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 +2 -1
- package/apn.js +6 -0
- package/directives/blade/blade.html +1 -1
- package/package.json +1 -1
package/apn.d.ts
CHANGED
|
@@ -47,7 +47,7 @@ declare namespace angularportalazure {
|
|
|
47
47
|
declare namespace angularportalazure {
|
|
48
48
|
class Blade extends angularportalazure.UserControlBase {
|
|
49
49
|
constructor(portalService: angularportalazure.PortalService, path: string, title: string, subtitle?: string, width?: number);
|
|
50
|
-
|
|
50
|
+
bladeContentHeight: number;
|
|
51
51
|
path: string;
|
|
52
52
|
private _path;
|
|
53
53
|
title: string;
|
|
@@ -153,6 +153,7 @@ declare namespace angularportalazure {
|
|
|
153
153
|
onCommandSwap(): void;
|
|
154
154
|
/** Obsolete */
|
|
155
155
|
bladeClose(): void;
|
|
156
|
+
private getGridHeight(blade);
|
|
156
157
|
}
|
|
157
158
|
}
|
|
158
159
|
declare namespace angularportalazure {
|
package/apn.js
CHANGED
|
@@ -433,6 +433,12 @@ var angularportalazure;
|
|
|
433
433
|
Blade.prototype.bladeClose = function () {
|
|
434
434
|
this.close();
|
|
435
435
|
};
|
|
436
|
+
//#endregion
|
|
437
|
+
//#endregion
|
|
438
|
+
Blade.prototype.getGridHeight = function (blade) {
|
|
439
|
+
blade.bladeContentHeight = $('.fxs-blade-content').height();
|
|
440
|
+
return blade.bladeContentHeight - 120;
|
|
441
|
+
};
|
|
436
442
|
return Blade;
|
|
437
443
|
}(angularportalazure.UserControlBase));
|
|
438
444
|
angularportalazure.Blade = Blade;
|
|
@@ -222,7 +222,7 @@
|
|
|
222
222
|
</div>
|
|
223
223
|
</div>
|
|
224
224
|
</header>
|
|
225
|
-
<div class="fxs-blade-content fxs-pannable" style="height:calc(100% -
|
|
225
|
+
<div class="fxs-blade-content fxs-pannable" style="height:calc(100% - 125px);">
|
|
226
226
|
<div class="fxs-blade-stacklayout fxs-stacklayout fxs-stacklayout-vertical" ng-style="$ctrl.vm.widthStackLayout">
|
|
227
227
|
<div class="fxs-stacklayout-child">
|
|
228
228
|
<div class="fxs-lens">
|
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.124",
|
|
6
6
|
"main": "index.js",
|
|
7
7
|
"typings": "apn.d.ts",
|
|
8
8
|
"dependencies": {
|