Comparing version 3.8.1 to 3.8.2
# CHANGELOG | ||
## 3.8.0 | ||
### 3.8.1 | ||
* Fix bug with updating local variable from outer scope. | ||
* Fix bug with updating custom tags with many attributes. | ||
### 3.8.0 | ||
* Refactor monkberry-loader hot replacement. | ||
@@ -20,3 +25,3 @@ * Fix monkberry-parser dependency version. | ||
## 3.7.0 | ||
### 3.7.0 | ||
@@ -26,15 +31,15 @@ * Added optimization for nested blocks. | ||
## 3.6.0 | ||
### 3.6.0 | ||
* Added `createPool()` and `getPoolInfo()` feature. | ||
## 3.5.0 | ||
### 3.5.0 | ||
* Added support for HTML entities. | ||
## 3.4.0 | ||
### 3.4.0 | ||
* Added unsafe feature. | ||
## 3.3.0 | ||
### 3.3.0 | ||
@@ -49,3 +54,3 @@ * Added import feature. | ||
## 3.2.0 | ||
### 3.2.0 | ||
@@ -79,3 +84,3 @@ * Added global variables feature. | ||
## 3.1.0 | ||
### 3.1.0 | ||
@@ -88,3 +93,3 @@ * Synchronized versioning begun. | ||
## 3.0.0 | ||
### 3.0.0 | ||
@@ -98,3 +103,3 @@ * Improved performance of attributes rendering. | ||
## 2.0.0 | ||
### 2.0.0 | ||
@@ -105,4 +110,4 @@ * Added SVG support. | ||
## 1.0.0 | ||
### 1.0.0 | ||
* First working prototype. | ||
@@ -12,2 +12,3 @@ 'use strict'; | ||
} else if (_types.SVGElements.indexOf(this.name) != -1) { | ||
// TODO: Use path info for detecting SVG elements. | ||
return this.compileSvg(figure); | ||
@@ -14,0 +15,0 @@ } else { |
@@ -8,2 +8,2 @@ 'use strict'; | ||
var SVGElements = exports.SVGElements = ('circle clipPath defs ellipse g line linearGradient mask path pattern polygon polyline ' + 'radialGradient rect stop svg text tspan').split(' '); | ||
var SVGElements = exports.SVGElements = ('circle clipPath defs ellipse feBlend feColorMatrix feComponentTransfer feComposite ' + 'feConvolveMatrix feDiffuseLighting feDisplacementMap feDistantLight feFlood feFuncA ' + 'feFuncB feFuncG feFuncR feGaussianBlur feImage feMerge feMergeNode feMorphology feOffset ' + 'fePointLight feSpecularLighting feSpotLight feTile feTurbulence g line linearGradient mask ' + 'path pattern polygon polyline radialGradient rect stop svg text tspan').split(' '); |
{ | ||
"name": "monkberry", | ||
"version": "3.8.1", | ||
"version": "3.8.2", | ||
"description": "JavaScript DOM Template Engine", | ||
@@ -5,0 +5,0 @@ "bin": "bin/monkberry", |
115921
2560