@j2inn/fin5-ui-utils 8.1.2-beta.1 → 8.1.2-beta.2

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.
@@ -115,9 +115,9 @@ export interface Fin5App {
115
115
  *
116
116
  * @method CurrentAppName
117
117
  * @param {boolean} isSpecialAppId : if true, returns the special app id (iframe app name) which is the url hash without the underscore
118
- * @return {string}
118
+ * @return {string | boolean} if false, there's no app currently open. Otherwise, returns the identifier of the app.
119
119
  */
120
- CurrentAppName: (isSpecialAppId?: boolean) => string;
120
+ CurrentAppName: (isSpecialAppId?: boolean) => string | boolean;
121
121
  findComponent: (name: string) => Fin5AppComponent;
122
122
  /**
123
123
  * @see https://ractive.js.org/api/#ractiveobserve
@@ -115,9 +115,9 @@ export interface Fin5App {
115
115
  *
116
116
  * @method CurrentAppName
117
117
  * @param {boolean} isSpecialAppId : if true, returns the special app id (iframe app name) which is the url hash without the underscore
118
- * @return {string}
118
+ * @return {string | boolean} if false, there's no app currently open. Otherwise, returns the identifier of the app.
119
119
  */
120
- CurrentAppName: (isSpecialAppId?: boolean) => string;
120
+ CurrentAppName: (isSpecialAppId?: boolean) => string | boolean;
121
121
  findComponent: (name: string) => Fin5AppComponent;
122
122
  /**
123
123
  * @see https://ractive.js.org/api/#ractiveobserve
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@j2inn/fin5-ui-utils",
3
- "version": "8.1.2-beta.1",
3
+ "version": "8.1.2-beta.2",
4
4
  "description": "A set of useful client-side utilities useful for creating UI applications on top of FIN 5",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",