angular2-resizable
Advanced tools
Comparing version 0.0.2 to 0.0.3
(function webpackUniversalModuleDefinition(root, factory) { | ||
if(typeof exports === 'object' && typeof module === 'object') | ||
module.exports = factory(require("@angular/core"), require("rxjs/Subject")); | ||
module.exports = factory(require("@angular/core"), require("rxjs/Subject"), require("rxjs/operator/map"), require("rxjs/operator/mergeMap")); | ||
else if(typeof define === 'function' && define.amd) | ||
define(["@angular/core", "rxjs/Subject"], factory); | ||
define(["@angular/core", "rxjs/Subject", "rxjs/operator/map", "rxjs/operator/mergeMap"], factory); | ||
else if(typeof exports === 'object') | ||
exports["angular2Resizable"] = factory(require("@angular/core"), require("rxjs/Subject")); | ||
exports["angular2Resizable"] = factory(require("@angular/core"), require("rxjs/Subject"), require("rxjs/operator/map"), require("rxjs/operator/mergeMap")); | ||
else | ||
root["angular2Resizable"] = factory(root["ng"]["core"], root["rx"]["Subject"]); | ||
})(this, function(__WEBPACK_EXTERNAL_MODULE_2__, __WEBPACK_EXTERNAL_MODULE_3__) { | ||
root["angular2Resizable"] = factory(root["ng"]["core"], root["rx"]["Subject"], root["rx"]["Observable"], root["rx"]["Observable"]); | ||
})(this, function(__WEBPACK_EXTERNAL_MODULE_2__, __WEBPACK_EXTERNAL_MODULE_3__, __WEBPACK_EXTERNAL_MODULE_4__, __WEBPACK_EXTERNAL_MODULE_5__) { | ||
return /******/ (function(modules) { // webpackBootstrap | ||
@@ -85,2 +85,4 @@ /******/ // The module cache | ||
var Subject_1 = __webpack_require__(3); | ||
__webpack_require__(4); | ||
__webpack_require__(5); | ||
var isNumberCloseTo = function (value1, value2, precision) { | ||
@@ -315,2 +317,14 @@ if (precision === void 0) { precision = 3; } | ||
/***/ }, | ||
/* 4 */ | ||
/***/ function(module, exports) { | ||
module.exports = __WEBPACK_EXTERNAL_MODULE_4__; | ||
/***/ }, | ||
/* 5 */ | ||
/***/ function(module, exports) { | ||
module.exports = __WEBPACK_EXTERNAL_MODULE_5__; | ||
/***/ } | ||
@@ -317,0 +331,0 @@ /******/ ]) |
@@ -5,2 +5,12 @@ # Change Log | ||
<a name="0.0.3"></a> | ||
## [0.0.3](https://github.com/mattlewis92/angular2-resizable/compare/v0.0.2...v0.0.3) (2016-06-13) | ||
### Bug Fixes | ||
* import missing rxjs operators ([300ac10](https://github.com/mattlewis92/angular2-resizable/commit/300ac10)) | ||
<a name="0.0.2"></a> | ||
@@ -7,0 +17,0 @@ ## [0.0.2](https://github.com/mattlewis92/angular2-resizable/compare/v0.0.1...v0.0.2) (2016-06-13) |
{ | ||
"name": "angular2-resizable", | ||
"version": "0.0.2", | ||
"version": "0.0.3", | ||
"description": "An angular2 directive that allows an element to be dragged and resized", | ||
@@ -5,0 +5,0 @@ "main": "./angular2-resizable.js", |
import { Renderer, ElementRef, OnInit, EventEmitter } from '@angular/core'; | ||
import 'rxjs/add/operator/map'; | ||
import 'rxjs/add/operator/mergeMap'; | ||
export interface Edges { | ||
@@ -3,0 +5,0 @@ top?: boolean; |
Sorry, the diff of this file is not supported yet
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
43990
359
0