@ktjs/core 0.7.1 → 0.7.3

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 CHANGED
@@ -103,7 +103,7 @@ type HTML<T extends HTMLTag & otherstring> = T extends HTMLTag ? HTMLElementTagN
103
103
  * ## About
104
104
  * @package @ktjs/core
105
105
  * @author Kasukabe Tsumugi <futami16237@gmail.com>
106
- * @version 0.7.1 (Last Update: 2025.12.25 09:44:03.948)
106
+ * @version 0.7.3 (Last Update: 2025.12.25 09:51:02.157)
107
107
  * @license MIT
108
108
  * @link https://github.com/baendlorel/kt.js
109
109
  * @link https://baendlorel.github.io/ Welcome to my site!
@@ -176,6 +176,7 @@ var __ktjs_core__ = (function (exports) {
176
176
  }
177
177
 
178
178
  function applyContent(element, content) {
179
+ console.log('applyContent', content);
179
180
  if (typeof content === 'function') {
180
181
  content = content();
181
182
  }
@@ -213,7 +214,7 @@ var __ktjs_core__ = (function (exports) {
213
214
  * ## About
214
215
  * @package @ktjs/core
215
216
  * @author Kasukabe Tsumugi <futami16237@gmail.com>
216
- * @version 0.7.1 (Last Update: 2025.12.25 09:44:03.948)
217
+ * @version 0.7.3 (Last Update: 2025.12.25 09:51:02.157)
217
218
  * @license MIT
218
219
  * @link https://github.com/baendlorel/kt.js
219
220
  * @link https://baendlorel.github.io/ Welcome to my site!
@@ -187,6 +187,7 @@ var __ktjs_core__ = (function (exports) {
187
187
  }
188
188
 
189
189
  function applyContent(element, content) {
190
+ console.log('applyContent', content);
190
191
  if (typeof content === 'function') {
191
192
  content = content();
192
193
  }
@@ -224,7 +225,7 @@ var __ktjs_core__ = (function (exports) {
224
225
  * ## About
225
226
  * @package @ktjs/core
226
227
  * @author Kasukabe Tsumugi <futami16237@gmail.com>
227
- * @version 0.7.1 (Last Update: 2025.12.25 09:44:03.948)
228
+ * @version 0.7.3 (Last Update: 2025.12.25 09:51:02.157)
228
229
  * @license MIT
229
230
  * @link https://github.com/baendlorel/kt.js
230
231
  * @link https://baendlorel.github.io/ Welcome to my site!
package/dist/index.mjs CHANGED
@@ -173,6 +173,7 @@ function applyAttr(element, attr) {
173
173
  }
174
174
 
175
175
  function applyContent(element, content) {
176
+ console.log('applyContent', content);
176
177
  if (typeof content === 'function') {
177
178
  content = content();
178
179
  }
@@ -210,7 +211,7 @@ function applyContent(element, content) {
210
211
  * ## About
211
212
  * @package @ktjs/core
212
213
  * @author Kasukabe Tsumugi <futami16237@gmail.com>
213
- * @version 0.7.1 (Last Update: 2025.12.25 09:44:03.948)
214
+ * @version 0.7.3 (Last Update: 2025.12.25 09:51:02.157)
214
215
  * @license MIT
215
216
  * @link https://github.com/baendlorel/kt.js
216
217
  * @link https://baendlorel.github.io/ Welcome to my site!
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ktjs/core",
3
- "version": "0.7.1",
3
+ "version": "0.7.3",
4
4
  "description": "Core functionality for kt.js - DOM manipulation utilities",
5
5
  "type": "module",
6
6
  "module": "./dist/index.mjs",