Comparing version 2.1.2 to 2.1.3
{ | ||
"name": "basichtml", | ||
"type": "commonjs", | ||
"version": "2.1.2", | ||
"version": "2.1.3", | ||
"description": "A NodeJS based, standard oriented, HTML implementation.", | ||
@@ -6,0 +6,0 @@ "main": "basichtml.js", |
@@ -13,2 +13,3 @@ const CustomElementRegistry = require('./CustomElementRegistry'); | ||
const HTMLTemplateElement = require('./HTMLTemplateElement'); | ||
const HTMLTextAreaElement = require('./HTMLTextAreaElement'); | ||
const Range = require('./Range'); | ||
@@ -80,2 +81,4 @@ const Text = require('./Text'); | ||
return new HTMLTemplateElement(this, name); | ||
case 'textarea': | ||
return new HTMLTextAreaElement(this, name); | ||
case 'canvas': | ||
@@ -82,0 +85,0 @@ case 'img': |
@@ -45,3 +45,2 @@ const Parser = require('htmlparser2').Parser; | ||
const utils = require('./utils'); | ||
const Element = require('./Element'); | ||
@@ -48,0 +47,0 @@ const HTMLElement = require('./HTMLElement'); |
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
170967
37
1678