Comparing version 8.1.7 to 8.1.8
@@ -5,2 +5,9 @@ # Changelog | ||
### [8.1.8](https://github.com/hybridsjs/hybrids/compare/v8.1.7...v8.1.8) (2022-11-16) | ||
### Bug Fixes | ||
* **html:** correct signature creation for form family elements ([#201](https://github.com/hybridsjs/hybrids/issues/201)) ([3767f60](https://github.com/hybridsjs/hybrids/commit/3767f60d5f7185ca4f833082711b445c6d6abe88)) | ||
### [8.1.7](https://github.com/hybridsjs/hybrids/compare/v8.1.6...v8.1.7) (2022-11-10) | ||
@@ -7,0 +14,0 @@ |
{ | ||
"name": "hybrids", | ||
"version": "8.1.7", | ||
"version": "8.1.8", | ||
"description": "A JavaScript framework for creating fully-featured web applications, components libraries, and single web components with unique declarative and functional architecture", | ||
@@ -5,0 +5,0 @@ "type": "module", |
@@ -27,3 +27,5 @@ import global from "../global.js"; | ||
tableMode || | ||
parts[index - 1].match(/<\s*(table|tr|thead|tbody|tfoot|colgroup)>\s*$/); | ||
parts[index - 1].match( | ||
/<\s*(table|tr|thead|tbody|tfoot|colgroup)([^>]|".*"|'.*')*>\s*$/, | ||
); | ||
@@ -37,3 +39,3 @@ signature += | ||
tableMode && | ||
!parts[index].match(/<\/\s*(table|tr|thead|tbody|tfoot|colgroup)>/); | ||
!parts[index].match(/<\/\s*(table|tr|thead|tbody|tfoot|colgroup)\s*>/); | ||
} | ||
@@ -40,0 +42,0 @@ |
445128
6613