@ktjs/jsx 0.6.16 → 0.6.18
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.cjs +2 -2
- package/dist/index.d.ts +1 -1
- package/dist/index.mjs +2 -2
- package/dist/jsx-runtime.cjs +1 -1
- package/dist/jsx-runtime.mjs +1 -1
- package/package.json +3 -3
package/dist/index.cjs
CHANGED
|
@@ -60,7 +60,7 @@ function Fragment(props) {
|
|
|
60
60
|
* JSX Development runtime - same as jsx but with additional dev checks
|
|
61
61
|
*/
|
|
62
62
|
const jsxDEV = (...args) => {
|
|
63
|
-
console.log('JSX
|
|
63
|
+
console.log('JSX DEV called:', ...args);
|
|
64
64
|
return jsx(...args);
|
|
65
65
|
};
|
|
66
66
|
/**
|
|
@@ -93,7 +93,7 @@ const jsxs = jsx;
|
|
|
93
93
|
* ## About
|
|
94
94
|
* @package @ktjs/jsx
|
|
95
95
|
* @author Kasukabe Tsumugi <futami16237@gmail.com>
|
|
96
|
-
* @version 0.6.
|
|
96
|
+
* @version 0.6.18 (Last Update: 2025.12.24 22:21:07.385)
|
|
97
97
|
* @license MIT
|
|
98
98
|
* @link https://github.com/baendlorel/kt.js
|
|
99
99
|
* @link https://baendlorel.github.io/ Welcome to my site!
|
package/dist/index.d.ts
CHANGED
|
@@ -68,7 +68,7 @@ declare global {
|
|
|
68
68
|
* ## About
|
|
69
69
|
* @package @ktjs/jsx
|
|
70
70
|
* @author Kasukabe Tsumugi <futami16237@gmail.com>
|
|
71
|
-
* @version 0.6.
|
|
71
|
+
* @version 0.6.18 (Last Update: 2025.12.24 22:21:07.385)
|
|
72
72
|
* @license MIT
|
|
73
73
|
* @link https://github.com/baendlorel/kt.js
|
|
74
74
|
* @link https://baendlorel.github.io/ Welcome to my site!
|
package/dist/index.mjs
CHANGED
|
@@ -59,7 +59,7 @@ function Fragment(props) {
|
|
|
59
59
|
* JSX Development runtime - same as jsx but with additional dev checks
|
|
60
60
|
*/
|
|
61
61
|
const jsxDEV = (...args) => {
|
|
62
|
-
console.log('JSX
|
|
62
|
+
console.log('JSX DEV called:', ...args);
|
|
63
63
|
return jsx(...args);
|
|
64
64
|
};
|
|
65
65
|
/**
|
|
@@ -92,7 +92,7 @@ const jsxs = jsx;
|
|
|
92
92
|
* ## About
|
|
93
93
|
* @package @ktjs/jsx
|
|
94
94
|
* @author Kasukabe Tsumugi <futami16237@gmail.com>
|
|
95
|
-
* @version 0.6.
|
|
95
|
+
* @version 0.6.18 (Last Update: 2025.12.24 22:21:07.385)
|
|
96
96
|
* @license MIT
|
|
97
97
|
* @link https://github.com/baendlorel/kt.js
|
|
98
98
|
* @link https://baendlorel.github.io/ Welcome to my site!
|
package/dist/jsx-runtime.cjs
CHANGED
|
@@ -60,7 +60,7 @@ function Fragment(props) {
|
|
|
60
60
|
* JSX Development runtime - same as jsx but with additional dev checks
|
|
61
61
|
*/
|
|
62
62
|
const jsxDEV = (...args) => {
|
|
63
|
-
console.log('JSX
|
|
63
|
+
console.log('JSX DEV called:', ...args);
|
|
64
64
|
return jsx(...args);
|
|
65
65
|
};
|
|
66
66
|
/**
|
package/dist/jsx-runtime.mjs
CHANGED
|
@@ -59,7 +59,7 @@ function Fragment(props) {
|
|
|
59
59
|
* JSX Development runtime - same as jsx but with additional dev checks
|
|
60
60
|
*/
|
|
61
61
|
const jsxDEV = (...args) => {
|
|
62
|
-
console.log('JSX
|
|
62
|
+
console.log('JSX DEV called:', ...args);
|
|
63
63
|
return jsx(...args);
|
|
64
64
|
};
|
|
65
65
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ktjs/jsx",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.18",
|
|
4
4
|
"description": "JSX/TSX support for KT.js - Build UIs with JSX syntax while keeping direct DOM control",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Kasukabe Tsumugi",
|
|
@@ -51,10 +51,10 @@
|
|
|
51
51
|
"directory": "packages/jsx"
|
|
52
52
|
},
|
|
53
53
|
"peerDependencies": {
|
|
54
|
-
"@ktjs/core": "0.6.
|
|
54
|
+
"@ktjs/core": "0.6.17"
|
|
55
55
|
},
|
|
56
56
|
"devDependencies": {
|
|
57
|
-
"@ktjs/core": "0.6.
|
|
57
|
+
"@ktjs/core": "0.6.17"
|
|
58
58
|
},
|
|
59
59
|
"scripts": {
|
|
60
60
|
"build": "rollup -c rollup.config.mjs",
|