kt.js 0.0.6 → 0.0.7
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/README.md +1 -1
- package/README.zh.md +1 -1
- package/dist/index.d.ts +1 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
|
|
5
5
|
For more awesome packages, check out [my homepage💛](https://baendlorel.github.io/?repoType=npm)
|
|
6
6
|
|
|
7
|
-
> Note:
|
|
7
|
+
> Note: This framework is still under development. APIs, type declarations, and other parts may change. If you use it, please watch for updates in the near future.
|
|
8
8
|
|
|
9
9
|
KT.js is a tiny, high-performance DOM utility focused on minimal re-rendering and direct DOM manipulation. It favors not forcing re-renders and aims to keep DOM updates to the absolute minimum for maximum performance.
|
|
10
10
|
|
package/README.zh.md
CHANGED
package/dist/index.d.ts
CHANGED
|
@@ -10,7 +10,7 @@ declare function h<Tag extends HTMLElementTag>(tag: Tag, attr?: KAttribute | str
|
|
|
10
10
|
* ## About
|
|
11
11
|
* @package Kt.js
|
|
12
12
|
* @author Kasukabe Tsumugi <futami16237@gmail.com>
|
|
13
|
-
* @version 0.0.
|
|
13
|
+
* @version 0.0.7 (Last Update: 2025.09.19 21:53:16.950)
|
|
14
14
|
* @license MIT
|
|
15
15
|
* @link https://github.com/baendlorel/kt.js
|
|
16
16
|
* @description A simple and easy-to-use web framework, never re-render. Abbreviation of Kasukabe Tsumugi.
|
|
@@ -27,7 +27,6 @@ export { createApp, h };
|
|
|
27
27
|
|
|
28
28
|
// # from: src/global.d.ts
|
|
29
29
|
|
|
30
|
-
|
|
31
30
|
/**
|
|
32
31
|
* Used to create enhanced HTML elements
|
|
33
32
|
*/
|