@ktjs/mui-icon 0.32.3 → 0.32.5

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.
Files changed (2) hide show
  1. package/README.md +39 -0
  2. package/package.json +1 -1
package/README.md ADDED
@@ -0,0 +1,39 @@
1
+ # KT.js
2
+
3
+ [![npm version](https://img.shields.io/npm/v/kt.js.svg)](https://www.npmjs.com/package/kt.js)
4
+ [![npm downloads](https://img.shields.io/npm/dm/kt.js.svg)](https://www.npmjs.com/package/kt.js)
5
+ [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
6
+
7
+ <p align="center">
8
+ <a href="https://baendlorel.github.io/kt.js/">
9
+ <img src="https://raw.githubusercontent.com/baendlorel/kt.js/refs/heads/main/assets/ktjs-0.0.1.svg" width="240px" alt="KT.js logo" />
10
+ </a>
11
+ </p>
12
+
13
+ <p align="center"><strong>Visit KT.js: <a href="https://baendlorel.github.io/kt.js/">https://baendlorel.github.io/kt.js/</a></strong></p>
14
+
15
+ ## Recent Updates
16
+
17
+ 1. Special refs for `Array`, `Set`, `Map`, `WeakMap`, `WeakSet`, `Date` to better track mutations.
18
+ - e.g. `const a = ref.array([1, 2])`, then we can call `a.push(3)` to make a reactive change instead of `a.value.push(3)`.
19
+ 2. Fixed issues of `svg` and `mathml` elements.
20
+
21
+ ## Community
22
+
23
+ - QQ Group: `1070434849`
24
+ - Telegram: https://t.me/kt_js
25
+
26
+ ## Introduction
27
+
28
+ kt.js is a simple framework with a tiny runtime that renders real DOM directly (no virtual DOM), uses explicit reactivity variables and gives you manual control over refs, bindings, and redraw timing.
29
+
30
+ KT.js focuses on one principle: keep direct control of the DOM and avoid unnecessary repainting.
31
+
32
+ ## Quick Start
33
+
34
+ ```bash
35
+ pnpm create kt.js my-app
36
+ cd my-app
37
+ pnpm install
38
+ pnpm dev
39
+ ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ktjs/mui-icon",
3
- "version": "0.32.3",
3
+ "version": "0.32.5",
4
4
  "description": "Material-UI icon components for kt.js - pre-styled UI components",
5
5
  "description_zh": "面向 kt.js 的类 Material-UI 图标组件库。",
6
6
  "type": "module",