@kitajs/html
Advanced tools
Comparing version 1.4.2 to 1.4.3
17
jsx.d.ts
@@ -9,2 +9,14 @@ // This file is a result from many sources, including: wikipedia, typescript dom lib, w3schools, and others. | ||
interface CSSProperties | ||
extends import('csstype').Properties<string | number | boolean> { | ||
/** | ||
* The index signature was removed to enable closed typing for style | ||
* using CSSType. You're able to use type assertion or module augmentation | ||
* to add properties or an index signature of your own. | ||
* | ||
* For examples and more information, visit: | ||
* https://github.com/frenic/csstype#what-should-i-do-when-i-get-type-errors | ||
*/ | ||
} | ||
interface IntrinsicAttributes { | ||
@@ -38,6 +50,3 @@ key?: undefined | string | number | ||
*/ | ||
style?: | ||
| undefined | ||
| string | ||
| import('csstype').Properties<string | number | boolean> | ||
style?: undefined | string | CSSProperties | ||
@@ -44,0 +53,0 @@ /** |
{ | ||
"name": "@kitajs/html", | ||
"version": "1.4.2", | ||
"version": "1.4.3", | ||
"description": "Fast and type safe HTML templates using TypeScript.", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -70,5 +70,4 @@ <br /> | ||
"jsx": "react", | ||
"reactNamespace": "html", | ||
"jsxFactory": "html.createElement", // optional, if you had problems | ||
"jsxFragmentFactory": "html.Fragment" // optional, if you had problems | ||
"jsxFactory": "html.createElement", | ||
"jsxFragmentFactory": "html.Fragment" | ||
} | ||
@@ -75,0 +74,0 @@ } |
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
56825
1085
448