Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@frui.ts/screens

Package Overview
Dependencies
Maintainers
5
Versions
69
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@frui.ts/screens - npm Package Compare versions

Comparing version 0.15.0-beta.2 to 0.15.0-beta.3

2

dist/structure/conductorAllChildrenActive.d.ts

@@ -10,3 +10,3 @@ import ConductorBase from "./conductorBase";

protected onActivate(): Promise<any[]>;
protected onDeactivate(close: boolean): Promise<void>;
protected onDeactivate(isClosing: boolean): Promise<void>;
protected connectChild(child: TChild): void;

@@ -13,0 +13,0 @@ protected findNavigationChild(name: string): Promise<TChild | undefined> | TChild | undefined;

@@ -148,3 +148,3 @@ "use strict";

};
ConductorAllChildrenActive.prototype.onDeactivate = function (close) {
ConductorAllChildrenActive.prototype.onDeactivate = function (isClosing) {
return __awaiter(this, void 0, void 0, function () {

@@ -163,3 +163,3 @@ var _a, _b, child, e_2_1;

if (!helpers_2.isDeactivatable(child)) return [3, 3];
return [4, child.deactivate(close)];
return [4, child.deactivate(isClosing)];
case 2:

@@ -183,3 +183,3 @@ _d.sent();

case 7:
if (close) {
if (isClosing) {
this.children.clear();

@@ -186,0 +186,0 @@ }

@@ -24,3 +24,3 @@ import { NavigationPath } from "../navigation/navigationPath";

protected onActivate(): Promise<any> | void;
protected onDeactivate(close: boolean): Promise<any> | void;
protected onDeactivate(isClosing: boolean): Promise<any> | void;
protected get canBeNavigationActiveScreen(): boolean;

@@ -27,0 +27,0 @@ protected notifyNavigationChanged(): void;

@@ -170,3 +170,3 @@ "use strict";

ScreenBase.prototype.onActivate = function () { };
ScreenBase.prototype.onDeactivate = function (close) { };
ScreenBase.prototype.onDeactivate = function (isClosing) { };
Object.defineProperty(ScreenBase.prototype, "canBeNavigationActiveScreen", {

@@ -173,0 +173,0 @@ get: function () {

@@ -6,3 +6,3 @@ {

},
"version": "0.15.0-beta.2",
"version": "0.15.0-beta.3",
"description": "Frui.ts core classes for application structure and navigation",

@@ -38,4 +38,3 @@ "keywords": [

"dependencies": {
"@frui.ts/helpers": "^0.15.0-beta.2",
"mobx": "^4.15.4",
"@frui.ts/helpers": "^0.15.0-beta.3",
"query-string": "^6.9.0",

@@ -47,3 +46,6 @@ "route-parser": "^0.0.5"

},
"gitHead": "a1950d8a2f4b4b2bfddbca22972c322b2586c33d"
"peerDependencies": {
"mobx": "^4.0.0 || ^5.0.0"
},
"gitHead": "a50c956e5476cce829dec2d2a976eeebb336ad1b"
}

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc