Comparing version 3.1.0 to 3.1.1
@@ -0,1 +1,13 @@ | ||
## 3.1.1 (August 24, 2023) | ||
### Bug Fixes | ||
- #### fix: added `number` as a possible type for input attributes `step` and `value` ([#187](https://github.com/ncpa0/jsxte/pull/187)) | ||
Added `number` as a possible type for input attributes `step` and `value`. | ||
- #### fix: added a few event handler property types that were missing ([#186](https://github.com/ncpa0/jsxte/pull/186)) | ||
Typing for the JSX html elements were missing some of the event handlers attributes (`onpointer` events, `onfocusin` etc.). This is fixed now. | ||
## 3.1.0 (August 22, 2023) | ||
@@ -2,0 +14,0 @@ |
@@ -39,3 +39,2 @@ import type { ComponentApi } from "../component-api/component-api"; | ||
children?: ElementChildren; | ||
is?: string; | ||
accesskey?: string; | ||
@@ -49,5 +48,9 @@ class?: string; | ||
inert?: AttributeBool; | ||
is?: string; | ||
lang?: string; | ||
onabort?: string; | ||
onafterprint?: string; | ||
onanimationend?: string; | ||
onanimationiteration?: string; | ||
onanimationstart?: string; | ||
onbeforeprint?: string; | ||
@@ -77,2 +80,7 @@ onbeforeunload?: string; | ||
onfocus?: string; | ||
onfocusin?: string; | ||
onfocusout?: string; | ||
onfullscreenchange?: string; | ||
onfullscreenerror?: string; | ||
ongotpointercapture?: string; | ||
onhashchange?: string; | ||
@@ -88,3 +96,7 @@ oninput?: string; | ||
onloadstart?: string; | ||
onlostpointercapture?: string; | ||
onmessage?: string; | ||
onmousedown?: string; | ||
onmouseenter?: string; | ||
onmouseleave?: string; | ||
onmousemove?: string; | ||
@@ -97,2 +109,3 @@ onmouseout?: string; | ||
ononline?: string; | ||
onopen?: string; | ||
onpagehide?: string; | ||
@@ -104,2 +117,10 @@ onpageshow?: string; | ||
onplaying?: string; | ||
onpointercancel?: string; | ||
onpointerdown?: string; | ||
onpointerenter?: string; | ||
onpointerleave?: string; | ||
onpointermove?: string; | ||
onpointerout?: string; | ||
onpointerover?: string; | ||
onpointerup?: string; | ||
onpopstate?: string; | ||
@@ -115,2 +136,3 @@ onprogress?: string; | ||
onselect?: string; | ||
onshow?: string; | ||
onstalled?: string; | ||
@@ -122,2 +144,7 @@ onstorage?: string; | ||
ontoggle?: string; | ||
ontouchcancel?: string; | ||
ontouchend?: string; | ||
ontouchmove?: string; | ||
ontouchstart?: string; | ||
ontransitionend?: string; | ||
onunload?: string; | ||
@@ -124,0 +151,0 @@ onvolumechange?: string; |
@@ -31,6 +31,6 @@ import type { AttributeBool } from "../base-html-tag-props"; | ||
src?: string; | ||
step?: string; | ||
step?: string | number; | ||
type?: InputType; | ||
value?: string; | ||
value?: string | number; | ||
width?: string | number; | ||
} |
{ | ||
"name": "jsxte", | ||
"version": "3.1.0", | ||
"version": "3.1.1", | ||
"description": "JSX-based html templating engine for browsers or Node environments.", | ||
@@ -5,0 +5,0 @@ "license": "MIT", |
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
303648
7341