@ardimedia/angular-portal-azure 0.2.258 → 0.2.259

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 (2) hide show
  1. package/apn.d.ts +2 -2
  2. package/package.json +1 -1
package/apn.d.ts CHANGED
@@ -365,7 +365,7 @@ declare namespace angularportalazure {
365
365
  class BladeDetail<T> extends angularportalazure.BladeData {
366
366
  constructor($scope: angular.IScope, portalService: angularportalazure.PortalService, path: string, title: string, subtitle?: string, width?: number);
367
367
  item: T;
368
- loadItem(func: () => Promise<any>): void;
368
+ loadItem(func: () => any | angular.IPromise<any> | Promise<any>): void;
369
369
  saveItem(func: () => any): void;
370
370
  onSaveItem(): void;
371
371
  onSavedItem(): void;
@@ -376,7 +376,7 @@ declare namespace angularportalazure {
376
376
  class BladeGrid extends angularportalazure.BladeData {
377
377
  constructor($scope: angular.IScope, portalService: angularportalazure.PortalService, path: string, title: string, subtitle?: string, width?: number);
378
378
  items: any[];
379
- loadItems(func: () => Promise<any>): void;
379
+ loadItems(func: () => any | angular.IPromise<any> | Promise<any>): void;
380
380
  onFilter(actual: Object, expected: string): boolean;
381
381
  }
382
382
  }
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.258",
5
+ "version": "0.2.259",
6
6
  "main": "index.js",
7
7
  "typings": "apn.d.ts",
8
8
  "dependencies": {