Comparing version 15.1.0 to 15.2.0
# CHANGELOG | ||
## 15.2.0 | ||
Fix of small problem in router. | ||
ctxClass now have to inherit from BobrilCtx and call its super constructor. But adding disposables in such constructor works again. | ||
components without ctxClass have their ctx instance of BobrilCtx instead of plain object. | ||
## 15.1.0 | ||
@@ -4,0 +12,0 @@ |
{ | ||
"name": "bobril", | ||
"version": "15.1.0", | ||
"version": "15.2.0", | ||
"description": "Component Oriented MVC Framework with virtual DOM and CSS", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -172,3 +172,3 @@ import { | ||
compiledPatterns[pattern] = { | ||
matcher: new RegExp("^" + source + "$", "i"), | ||
matcher: new RegExp("^" + source + (pattern.endsWith("/") ? "?" : "\\/?") + "$", "i"), | ||
paramNames: paramNames, | ||
@@ -175,0 +175,0 @@ }; |
Sorry, the diff of this file is too big to display
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
376055
9000