@ktjs/core 0.31.6 → 0.31.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1364,7 +1364,7 @@ type HTML<T extends (HTMLTag | SVGTag | MathMLTag) & otherstring> = T extends SV
|
|
|
1364
1364
|
? MathMLElementTagNameMap[T]
|
|
1365
1365
|
: HTMLElement;
|
|
1366
1366
|
|
|
1367
|
-
type SingleContent =
|
|
1367
|
+
type SingleContent = KTReactive<any> | HTMLElement | Element | Node | string | number | boolean | null | undefined;
|
|
1368
1368
|
type KTAvailableContent = SingleContent | KTAvailableContent[];
|
|
1369
1369
|
type KTRawContent = KTAvailableContent | Promise<KTAvailableContent>;
|
|
1370
1370
|
type KTRawAttr = KTAttribute | null | undefined | '' | false;
|
package/dist/index.mjs
CHANGED
|
@@ -612,7 +612,7 @@ function applyKModel(element, valueRef) {
|
|
|
612
612
|
* ## About
|
|
613
613
|
* @package @ktjs/core
|
|
614
614
|
* @author Kasukabe Tsumugi <futami16237@gmail.com>
|
|
615
|
-
* @version 0.31.
|
|
615
|
+
* @version 0.31.8 (Last Update: 2026.03.10 16:20:31.143)
|
|
616
616
|
* @license MIT
|
|
617
617
|
* @link https://github.com/baendlorel/kt.js
|
|
618
618
|
* @link https://baendlorel.github.io/ Welcome to my site!
|
package/package.json
CHANGED