@ardimedia/angular-portal-azure 0.2.160 → 0.2.161
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 +2 -1
- package/package.json +1 -1
package/apn.d.ts
CHANGED
|
@@ -117,7 +117,8 @@ declare namespace angularportalazure {
|
|
|
117
117
|
onActivate(): void;
|
|
118
118
|
onActivated(): void;
|
|
119
119
|
navigateTo(path: any): void;
|
|
120
|
-
|
|
120
|
+
/** Must be overridden. */
|
|
121
|
+
onNavigateTo(value: any): void;
|
|
121
122
|
comparePaths(path1: string, path2: string): boolean;
|
|
122
123
|
/** close blade. */
|
|
123
124
|
close(): void;
|
package/apn.js
CHANGED
|
@@ -267,7 +267,8 @@ var angularportalazure;
|
|
|
267
267
|
Blade.prototype.navigateTo = function (path) {
|
|
268
268
|
this.onNavigateTo(path);
|
|
269
269
|
};
|
|
270
|
-
|
|
270
|
+
/** Must be overridden. */
|
|
271
|
+
Blade.prototype.onNavigateTo = function (value) {
|
|
271
272
|
throw new Error('[angularportalazure.Blade] \'onNavigateTo\' is an abstract function. Define one in the derived class.');
|
|
272
273
|
};
|
|
273
274
|
// At the moment we do not distinguish between lower and upper case path name
|
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.161",
|
|
6
6
|
"main": "index.js",
|
|
7
7
|
"typings": "apn.d.ts",
|
|
8
8
|
"dependencies": {
|