kt.js 0.16.0 → 0.17.0

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.
@@ -155,6 +155,11 @@ function apdSingle(element, c) {
155
155
  }
156
156
  else {
157
157
  $append.call(element, c);
158
+ // Handle KTFor anchor
159
+ const list = c.__kt_for_list__;
160
+ if ($isArray(list)) {
161
+ apd(element, list);
162
+ }
158
163
  }
159
164
  }
160
165
  function apd(element, c) {
@@ -203,7 +208,7 @@ let creator = defaultCreator;
203
208
  * ## About
204
209
  * @package @ktjs/core
205
210
  * @author Kasukabe Tsumugi <futami16237@gmail.com>
206
- * @version 0.16.0 (Last Update: 2026.01.27 17:30:39.673)
211
+ * @version 0.17.0 (Last Update: 2026.01.28 15:11:59.247)
207
212
  * @license MIT
208
213
  * @link https://github.com/baendlorel/kt.js
209
214
  * @link https://baendlorel.github.io/ Welcome to my site!
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "kt.js",
3
- "version": "0.16.0",
3
+ "version": "0.17.0",
4
4
  "author": {
5
5
  "name": "Kasukabe Tsumugi",
6
6
  "email": "futami16237@gmail.com"
@@ -41,8 +41,8 @@
41
41
  ],
42
42
  "license": "MIT",
43
43
  "dependencies": {
44
- "@ktjs/core": "0.16.0",
45
- "@ktjs/shortcuts": "0.7.3"
44
+ "@ktjs/shortcuts": "0.7.3",
45
+ "@ktjs/core": "0.17.0"
46
46
  },
47
47
  "scripts": {
48
48
  "build": "rollup -c rollup.config.mjs",