Comparing version 3.1.1 to 3.1.2
@@ -0,1 +1,9 @@ | ||
## 3.1.2 (August 27, 2023) | ||
### Bug Fixes | ||
- #### fix: export the InputType type ([#189](https://github.com/ncpa0/jsxte/pull/189)) | ||
- #### fix: Add "email" to InputTypes ([#188](https://github.com/ncpa0/jsxte/pull/188)) | ||
## 3.1.1 (August 24, 2023) | ||
@@ -2,0 +10,0 @@ |
@@ -20,1 +20,2 @@ import "./utilities/array-flat-polyfill"; | ||
export type { JsxteJson } from "./json-renderer/jsx-elem-to-json"; | ||
export type { InputType } from "./jsx/prop-types/input-jsx-props"; |
import type { AttributeBool } from "../base-html-tag-props"; | ||
export type InputType = "button" | "checkbox" | "color" | "date" | "datetime-local" | "datetime-local" | "file" | "hidden" | "image" | "month" | "number" | "password" | "radio" | "range" | "reset" | "search" | "submit" | "tel" | "text" | "time" | "url" | "week"; | ||
export type InputType = "button" | "checkbox" | "color" | "date" | "datetime-local" | "datetime-local" | "email" | "file" | "hidden" | "image" | "month" | "number" | "password" | "radio" | "range" | "reset" | "search" | "submit" | "tel" | "text" | "time" | "url" | "week"; | ||
export interface InputTagProps { | ||
@@ -4,0 +4,0 @@ accept?: string; |
{ | ||
"name": "jsxte", | ||
"version": "3.1.1", | ||
"version": "3.1.2", | ||
"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
303946
7342