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

@wildebeest/boxlayout

Package Overview
Dependencies
Maintainers
1
Versions
24
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@wildebeest/boxlayout - npm Package Compare versions

Comparing version 0.4.1 to 0.4.2

1

dist/BoxLayout.d.ts

@@ -22,2 +22,3 @@ import { EmitterService, Emitter, ViewportService, DomService } from "@wildebeest/common";

getEmitter(): Emitter;
recalc(): void;
}

@@ -94,2 +94,8 @@ "use strict";

};
BoxLayout.prototype.recalc = function () {
for (var key in this.positions) {
this.positions[key].update();
}
this.emitter.emit('wbRecalc', {});
};
BoxLayout = __decorate([

@@ -96,0 +102,0 @@ inversify_1.injectable(),

2

package.json
{
"name": "@wildebeest/boxlayout",
"version": "0.4.1",
"version": "0.4.2",
"description": "Box Layout module for creating fullscreen admin enviroments",

@@ -5,0 +5,0 @@ "main": "dist/index.js",

@@ -113,10 +113,9 @@ import { injectable, inject } from "inversify";

// public recalc(): void
// {
// let deviders: Array<LayoutDevider> = this.layout.getDeviders();
// for (let key in deviders) {
// deviders[key].detectChange();
// }
// this.emitter.emit('wbRecalc', {});
// }
public recalc(): void
{
for (let key in this.positions) {
this.positions[key].update();
}
this.emitter.emit('wbRecalc', {});
}
}

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