@ardimedia/angular-portal-azure 0.2.100 → 0.2.101
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 -0
- package/apn.js +6 -2
- package/package.json +1 -1
package/apn.d.ts
CHANGED
|
@@ -325,6 +325,7 @@ declare namespace angularportalazure {
|
|
|
325
325
|
item: any;
|
|
326
326
|
constructor(portalService: angularportalazure.PortalService, path: string, title: string, subtitle?: string, width?: number);
|
|
327
327
|
loadItem(func: () => any): void;
|
|
328
|
+
onLoadedItem(): void;
|
|
328
329
|
onCommandCancel(): void;
|
|
329
330
|
}
|
|
330
331
|
}
|
|
@@ -333,6 +334,7 @@ declare namespace angularportalazure {
|
|
|
333
334
|
constructor(portalService: angularportalazure.PortalService, path: string, title: string, subtitle?: string, width?: number);
|
|
334
335
|
items: any[];
|
|
335
336
|
loadItems(func: () => any): void;
|
|
337
|
+
onLoadedItems(): void;
|
|
336
338
|
onFilter(actual: Object, expected: string): boolean;
|
|
337
339
|
/** Obsolete */
|
|
338
340
|
setObsoleteLayoutProperites(): void;
|
package/apn.js
CHANGED
|
@@ -1208,11 +1208,13 @@ var angularportalazure;
|
|
|
1208
1208
|
func().then(function (data) {
|
|
1209
1209
|
that.item = data;
|
|
1210
1210
|
that.clearStatusbar();
|
|
1211
|
-
that.
|
|
1211
|
+
that.onLoadedItem();
|
|
1212
1212
|
}).catch(function (exception) {
|
|
1213
1213
|
that.showExceptionOnStatusbar(exception);
|
|
1214
1214
|
});
|
|
1215
1215
|
};
|
|
1216
|
+
BladeDetail.prototype.onLoadedItem = function () {
|
|
1217
|
+
};
|
|
1216
1218
|
BladeDetail.prototype.onCommandCancel = function () {
|
|
1217
1219
|
this.close();
|
|
1218
1220
|
};
|
|
@@ -1277,11 +1279,13 @@ var angularportalazure;
|
|
|
1277
1279
|
func().then(function (data) {
|
|
1278
1280
|
that.items = data;
|
|
1279
1281
|
that.clearStatusbar();
|
|
1280
|
-
that.
|
|
1282
|
+
that.onLoadedItems();
|
|
1281
1283
|
}).catch(function (exception) {
|
|
1282
1284
|
that.showExceptionOnStatusbar(exception);
|
|
1283
1285
|
});
|
|
1284
1286
|
};
|
|
1287
|
+
BladeGrid.prototype.onLoadedItems = function () {
|
|
1288
|
+
};
|
|
1285
1289
|
//#region Filter
|
|
1286
1290
|
BladeGrid.prototype.onFilter = function (actual, expected) {
|
|
1287
1291
|
//#region Documentation
|
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.101",
|
|
6
6
|
"main": "index.js",
|
|
7
7
|
"typings": "apn.d.ts",
|
|
8
8
|
"dependencies": {
|