@ardimedia/angular-portal-azure 0.2.312 → 0.2.313

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.
Files changed (3) hide show
  1. package/apn.d.ts +4 -5
  2. package/apn.js +4 -5
  3. package/package.json +1 -1
package/apn.d.ts CHANGED
@@ -255,7 +255,7 @@ declare namespace angularportalazure {
255
255
  }
256
256
  }
257
257
  declare namespace angularportalazure {
258
- class BladeNav<T> extends angularportalazure.BladeData<T> {
258
+ class BladeNav extends angularportalazure.BladeData<any> {
259
259
  constructor($scope: angular.IScope, portalService: angularportalazure.PortalService, path: string, title?: string, subtitle?: string, width?: number);
260
260
  navItems: Array<angularportalazure.BladeNavItem>;
261
261
  isNav: boolean;
@@ -271,8 +271,8 @@ declare namespace angularportalazure {
271
271
  roles: string;
272
272
  isVisible: boolean;
273
273
  callback: () => any;
274
- bladeNav: angularportalazure.BladeNav<any> | null;
275
- constructor(title?: string, cssClass?: string, bladePath?: string, hrefPath?: string, roles?: string, isVisible?: boolean, callback?: () => any, bladeNav?: angularportalazure.BladeNav<any> | null);
274
+ bladeNav: angularportalazure.BladeNav | null;
275
+ constructor(title?: string, cssClass?: string, bladePath?: string, hrefPath?: string, roles?: string, isVisible?: boolean, callback?: () => any, bladeNav?: angularportalazure.BladeNav | null);
276
276
  onNavItemClick(): void;
277
277
  }
278
278
  }
@@ -413,9 +413,8 @@ declare namespace angularportalazure {
413
413
  }
414
414
  }
415
415
  declare namespace angularportalazure {
416
- class BladeGrid<T> extends angularportalazure.BladeData<T> {
416
+ class BladeGrid extends angularportalazure.BladeData<any> {
417
417
  constructor($scope: angular.IScope, portalService: angularportalazure.PortalService, path: string, title: string, subtitle?: string, width?: number);
418
- items: T[];
419
418
  loadItems(func: () => any | angular.IPromise<any> | Promise<any>): void;
420
419
  onFilter(actual: Object, expected: string): boolean;
421
420
  }
package/apn.js CHANGED
@@ -1400,13 +1400,12 @@ var angularportalazure;
1400
1400
  function BladeGrid($scope, portalService, path, title, subtitle, width) {
1401
1401
  if (subtitle === void 0) { subtitle = ''; }
1402
1402
  if (width === void 0) { width = 200; }
1403
- var _this = _super.call(this, $scope, portalService, path, title, subtitle, width) || this;
1404
- // #endregion
1405
- // #region Properties
1406
- _this.items = [];
1407
- return _this;
1403
+ return _super.call(this, $scope, portalService, path, title, subtitle, width) || this;
1408
1404
  }
1409
1405
  // #endregion
1406
+ // #region Properties
1407
+ //items: T[] = [];
1408
+ // #endregion
1410
1409
  // #region Methods
1411
1410
  BladeGrid.prototype.loadItems = function (func) {
1412
1411
  var _this = this;
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.312",
5
+ "version": "0.2.313",
6
6
  "main": "index.js",
7
7
  "typings": "apn.d.ts",
8
8
  "dependencies": {