@wildebeest/boxlayout
Advanced tools
Comparing version 0.4.2 to 0.4.3
"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
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
101169
114
1754