Socket
Socket
Sign inDemoInstall

jsxte

Package Overview
Dependencies
Maintainers
1
Versions
34
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

jsxte - npm Package Compare versions

Comparing version 3.1.0 to 3.1.1

12

CHANGELOG.md

@@ -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 @@

29

dist/types/jsx/base-html-tag-props.d.ts

@@ -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;

4

dist/types/jsx/prop-types/input-jsx-props.d.ts

@@ -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",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc