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.2 to 0.4.3

dist/binding/PixelsBinding.d.ts

4

dist/block/BlockBlueprint.js
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
var OneWayBinding_1 = require("../binding/OneWayBinding");
var PixelsBinding_1 = require("../binding/PixelsBinding");
var BlockBlueprint = (function () {

@@ -10,3 +10,3 @@ function BlockBlueprint(config) {

for (var i = 0; i < this.config.length; i++) {
var binding = new OneWayBinding_1.OneWayBinding(element, this.config[i].elementProperty);
var binding = new PixelsBinding_1.PixelsBinding(element, this.config[i].elementProperty);
if (this.config[i].inverse) {

@@ -13,0 +13,0 @@ this.config[i].position.bindInverse(binding);

@@ -9,2 +9,3 @@ export { BoxLayoutModule } from './BoxLayoutModule';

export { OneWayBinding } from './binding/OneWayBinding';
export { PixelsBinding } from './binding/PixelsBinding';
export { Block } from './block/Block';

@@ -11,0 +12,0 @@ export { BlockBlueprint } from './block/BlockBlueprint';

@@ -15,2 +15,4 @@ "use strict";

exports.OneWayBinding = OneWayBinding_1.OneWayBinding;
var PixelsBinding_1 = require("./binding/PixelsBinding");
exports.PixelsBinding = PixelsBinding_1.PixelsBinding;
var BlockBlueprint_1 = require("./block/BlockBlueprint");

@@ -17,0 +19,0 @@ exports.BlockBlueprint = BlockBlueprint_1.BlockBlueprint;

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

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

@@ -1,4 +0,4 @@

import { OneWayBinding } from "../binding/OneWayBinding";
import { Binding } from "../binding/Binding";
import { Block } from "./Block";
import { PixelsBinding } from "../binding/PixelsBinding";

@@ -17,3 +17,3 @@ export class BlockBlueprint implements Block

for (let i = 0; i < this.config.length; i++) {
let binding: Binding = new OneWayBinding(element, this.config[i].elementProperty);
let binding: Binding = new PixelsBinding(element, this.config[i].elementProperty);
if (this.config[i].inverse) {

@@ -20,0 +20,0 @@ this.config[i].position.bindInverse(binding);

@@ -9,2 +9,3 @@ export { BoxLayoutModule } from './BoxLayoutModule';

export { OneWayBinding } from './binding/OneWayBinding';
export { PixelsBinding } from './binding/PixelsBinding';
export { Block } from './block/Block';

@@ -11,0 +12,0 @@ export { BlockBlueprint } from './block/BlockBlueprint';

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