@kitajs/html
Advanced tools
Comparing version 4.2.2 to 4.2.3
10
jsx.d.ts
@@ -508,8 +508,8 @@ // This file is a result from many sources, including: RFCs, typescript dom lib, w3schools, and others. | ||
interface HtmlTableDataCellTag extends HtmlTag { | ||
align?: undefined | "left" | "center" | "right"; | ||
align?: undefined | 'left' | 'center' | 'right'; | ||
colspan?: undefined | string | number; | ||
rowspan?: undefined | string | number; | ||
headers?: undefined | string; | ||
/** @deprecated */ | ||
valign?: undefined | "top" | "middle" | "bottom" | "baseline"; | ||
/** @deprecated */ | ||
valign?: undefined | 'top' | 'middle' | 'bottom' | 'baseline'; | ||
} | ||
@@ -538,4 +538,4 @@ | ||
scope?: undefined | string; | ||
/** @deprecated */ | ||
valign?: undefined | "top" | "middle" | "bottom" | "baseline"; | ||
/** @deprecated */ | ||
valign?: undefined | 'top' | 'middle' | 'bottom' | 'baseline'; | ||
width?: undefined | number | string; | ||
@@ -542,0 +542,0 @@ } |
{ | ||
"name": "@kitajs/html", | ||
"version": "4.2.2", | ||
"version": "4.2.3", | ||
"description": "Fast and type safe HTML templates using TypeScript.", | ||
@@ -37,8 +37,8 @@ "homepage": "https://github.com/kitajs/html/tree/master/packages/html#readme", | ||
"@types/jsdom": "^21.1.7", | ||
"@types/node": "^22.5.2", | ||
"@types/node": "^22.7.4", | ||
"c8": "^10.1.2", | ||
"jsdom": "^25.0.0", | ||
"jsdom": "^25.0.1", | ||
"react": "^18.3.1", | ||
"react-dom": "^18.3.1", | ||
"typescript": "^5.5.4" | ||
"typescript": "^5.6.2" | ||
}, | ||
@@ -45,0 +45,0 @@ "engines": { |
@@ -115,3 +115,3 @@ import type { Readable } from 'node:stream'; | ||
* // cases where the html resolved after one of its async children | ||
* return writeFallback(html, requestData.stream); | ||
* return resolveHtmlStream(html, requestData) | ||
* ``` | ||
@@ -118,0 +118,0 @@ * |
@@ -30,3 +30,3 @@ const { contentsToString, contentToString } = require('./index'); | ||
<script id="kita-html-suspense"> | ||
/*! Apache-2.0 https://kitajs.org */ | ||
/*! MIT License https://kita.js.org */ | ||
function $KITA_RC(i){ | ||
@@ -61,7 +61,7 @@ // simple aliases | ||
do{ | ||
// resets j from previous loop | ||
j=0; | ||
// resets j & c from previous loop | ||
c=j=0; | ||
// loops over every found pending template and | ||
for(c=0;c<r.length;c++) | ||
for(;c<r.length;c++) | ||
if(r[c]!=t) | ||
@@ -68,0 +68,0 @@ // let j as true while at least on $KITA_RC call returns true |
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
123316