@ktjs/core 0.26.7 → 0.26.8
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 +1 -1
- package/dist/index.iife.js +3 -3
- package/dist/index.legacy.js +3 -3
- package/dist/index.mjs +3 -3
- package/dist/jsx/index.d.ts +1 -1
- package/dist/jsx/index.mjs +2 -2
- package/dist/jsx/jsx-runtime.d.ts +1 -1
- package/dist/jsx/jsx-runtime.mjs +2 -2
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -240,7 +240,7 @@ type KTComponent = (
|
|
|
240
240
|
* ## About
|
|
241
241
|
* @package @ktjs/core
|
|
242
242
|
* @author Kasukabe Tsumugi <futami16237@gmail.com>
|
|
243
|
-
* @version 0.26.
|
|
243
|
+
* @version 0.26.8 (Last Update: 2026.02.06 16:26:16.214)
|
|
244
244
|
* @license MIT
|
|
245
245
|
* @link https://github.com/baendlorel/kt.js
|
|
246
246
|
* @link https://baendlorel.github.io/ Welcome to my site!
|
package/dist/index.iife.js
CHANGED
|
@@ -15,7 +15,7 @@ var __ktjs_core__ = (function (exports) {
|
|
|
15
15
|
// Cached native methods for performance optimization
|
|
16
16
|
const $isArray = Array.isArray;
|
|
17
17
|
const $is = Object.is;
|
|
18
|
-
const $entries = Object.entries;
|
|
18
|
+
const $entries = Object.entries;
|
|
19
19
|
const $random = Math.random;
|
|
20
20
|
const $isThenable = (o) => typeof o?.then === 'function';
|
|
21
21
|
|
|
@@ -91,7 +91,7 @@ var __ktjs_core__ = (function (exports) {
|
|
|
91
91
|
}
|
|
92
92
|
|
|
93
93
|
// Shared utilities and cached native methods for kt.js framework
|
|
94
|
-
Object.defineProperty(window, '__ktjs__', { value: '0.23.
|
|
94
|
+
Object.defineProperty(window, '__ktjs__', { value: '0.23.3' });
|
|
95
95
|
|
|
96
96
|
const isKT = (obj) => obj?.isKT;
|
|
97
97
|
const isRef = (obj) => obj?.ktType === 1 /* KTReactiveType.REF */;
|
|
@@ -595,7 +595,7 @@ var __ktjs_core__ = (function (exports) {
|
|
|
595
595
|
* ## About
|
|
596
596
|
* @package @ktjs/core
|
|
597
597
|
* @author Kasukabe Tsumugi <futami16237@gmail.com>
|
|
598
|
-
* @version 0.26.
|
|
598
|
+
* @version 0.26.8 (Last Update: 2026.02.06 16:26:16.214)
|
|
599
599
|
* @license MIT
|
|
600
600
|
* @link https://github.com/baendlorel/kt.js
|
|
601
601
|
* @link https://baendlorel.github.io/ Welcome to my site!
|
package/dist/index.legacy.js
CHANGED
|
@@ -15,7 +15,7 @@ var __ktjs_core__ = (function (exports) {
|
|
|
15
15
|
// Cached native methods for performance optimization
|
|
16
16
|
const $isArray = Array.isArray;
|
|
17
17
|
const $is = Object.is;
|
|
18
|
-
const $entries = Object.entries;
|
|
18
|
+
const $entries = Object.entries;
|
|
19
19
|
const $random = Math.random;
|
|
20
20
|
const $isThenable = (o) => typeof o?.then === 'function';
|
|
21
21
|
|
|
@@ -91,7 +91,7 @@ var __ktjs_core__ = (function (exports) {
|
|
|
91
91
|
}
|
|
92
92
|
|
|
93
93
|
// Shared utilities and cached native methods for kt.js framework
|
|
94
|
-
Object.defineProperty(window, '__ktjs__', { value: '0.23.
|
|
94
|
+
Object.defineProperty(window, '__ktjs__', { value: '0.23.3' });
|
|
95
95
|
|
|
96
96
|
var isKT = function (obj) { return obj === null || obj === void 0 ? void 0 : obj.isKT; };
|
|
97
97
|
var isRef = function (obj) { return (obj === null || obj === void 0 ? void 0 : obj.ktType) === 1 /* KTReactiveType.REF */; };
|
|
@@ -598,7 +598,7 @@ var __ktjs_core__ = (function (exports) {
|
|
|
598
598
|
* ## About
|
|
599
599
|
* @package @ktjs/core
|
|
600
600
|
* @author Kasukabe Tsumugi <futami16237@gmail.com>
|
|
601
|
-
* @version 0.26.
|
|
601
|
+
* @version 0.26.8 (Last Update: 2026.02.06 16:26:16.214)
|
|
602
602
|
* @license MIT
|
|
603
603
|
* @link https://github.com/baendlorel/kt.js
|
|
604
604
|
* @link https://baendlorel.github.io/ Welcome to my site!
|
package/dist/index.mjs
CHANGED
|
@@ -12,7 +12,7 @@ const MATHML_ATTR_FLAG = '__kt_mathml__';
|
|
|
12
12
|
// Cached native methods for performance optimization
|
|
13
13
|
const $isArray = Array.isArray;
|
|
14
14
|
const $is = Object.is;
|
|
15
|
-
const $entries = Object.entries;
|
|
15
|
+
const $entries = Object.entries;
|
|
16
16
|
const $random = Math.random;
|
|
17
17
|
const $isThenable = (o) => typeof o?.then === 'function';
|
|
18
18
|
|
|
@@ -88,7 +88,7 @@ if (typeof Symbol === 'undefined') {
|
|
|
88
88
|
}
|
|
89
89
|
|
|
90
90
|
// Shared utilities and cached native methods for kt.js framework
|
|
91
|
-
Object.defineProperty(window, '__ktjs__', { value: '0.23.
|
|
91
|
+
Object.defineProperty(window, '__ktjs__', { value: '0.23.3' });
|
|
92
92
|
|
|
93
93
|
const isKT = (obj) => obj?.isKT;
|
|
94
94
|
const isRef = (obj) => obj?.ktType === 1 /* KTReactiveType.REF */;
|
|
@@ -592,7 +592,7 @@ let creator = htmlCreator;
|
|
|
592
592
|
* ## About
|
|
593
593
|
* @package @ktjs/core
|
|
594
594
|
* @author Kasukabe Tsumugi <futami16237@gmail.com>
|
|
595
|
-
* @version 0.26.
|
|
595
|
+
* @version 0.26.8 (Last Update: 2026.02.06 16:26:16.214)
|
|
596
596
|
* @license MIT
|
|
597
597
|
* @link https://github.com/baendlorel/kt.js
|
|
598
598
|
* @link https://baendlorel.github.io/ Welcome to my site!
|
package/dist/jsx/index.d.ts
CHANGED
|
@@ -164,7 +164,7 @@ type KTAttribute = KTBaseAttribute & KTPrefixedEventAttribute;
|
|
|
164
164
|
* ## About
|
|
165
165
|
* @package @ktjs/core
|
|
166
166
|
* @author Kasukabe Tsumugi <futami16237@gmail.com>
|
|
167
|
-
* @version 0.26.
|
|
167
|
+
* @version 0.26.8 (Last Update: 2026.02.06 16:26:16.214)
|
|
168
168
|
* @license MIT
|
|
169
169
|
* @link https://github.com/baendlorel/kt.js
|
|
170
170
|
* @link https://baendlorel.github.io/ Welcome to my site!
|
package/dist/jsx/index.mjs
CHANGED
|
@@ -81,7 +81,7 @@ if (typeof Symbol === 'undefined') {
|
|
|
81
81
|
}
|
|
82
82
|
|
|
83
83
|
// Shared utilities and cached native methods for kt.js framework
|
|
84
|
-
Object.defineProperty(window, '__ktjs__', { value: '0.23.
|
|
84
|
+
Object.defineProperty(window, '__ktjs__', { value: '0.23.3' });
|
|
85
85
|
|
|
86
86
|
const isKT = (obj) => obj?.isKT;
|
|
87
87
|
const isRef = (obj) => obj?.ktType === 1 /* KTReactiveType.REF */;
|
|
@@ -381,7 +381,7 @@ let creator = htmlCreator;
|
|
|
381
381
|
* ## About
|
|
382
382
|
* @package @ktjs/core
|
|
383
383
|
* @author Kasukabe Tsumugi <futami16237@gmail.com>
|
|
384
|
-
* @version 0.26.
|
|
384
|
+
* @version 0.26.8 (Last Update: 2026.02.06 16:26:16.214)
|
|
385
385
|
* @license MIT
|
|
386
386
|
* @link https://github.com/baendlorel/kt.js
|
|
387
387
|
* @link https://baendlorel.github.io/ Welcome to my site!
|
|
@@ -134,7 +134,7 @@ type KTAttribute = KTBaseAttribute & KTPrefixedEventAttribute;
|
|
|
134
134
|
* ## About
|
|
135
135
|
* @package @ktjs/core
|
|
136
136
|
* @author Kasukabe Tsumugi <futami16237@gmail.com>
|
|
137
|
-
* @version 0.26.
|
|
137
|
+
* @version 0.26.8 (Last Update: 2026.02.06 16:26:16.214)
|
|
138
138
|
* @license MIT
|
|
139
139
|
* @link https://github.com/baendlorel/kt.js
|
|
140
140
|
* @link https://baendlorel.github.io/ Welcome to my site!
|
package/dist/jsx/jsx-runtime.mjs
CHANGED
|
@@ -81,7 +81,7 @@ if (typeof Symbol === 'undefined') {
|
|
|
81
81
|
}
|
|
82
82
|
|
|
83
83
|
// Shared utilities and cached native methods for kt.js framework
|
|
84
|
-
Object.defineProperty(window, '__ktjs__', { value: '0.23.
|
|
84
|
+
Object.defineProperty(window, '__ktjs__', { value: '0.23.3' });
|
|
85
85
|
|
|
86
86
|
const isKT = (obj) => obj?.isKT;
|
|
87
87
|
const isRef = (obj) => obj?.ktType === 1 /* KTReactiveType.REF */;
|
|
@@ -381,7 +381,7 @@ let creator = htmlCreator;
|
|
|
381
381
|
* ## About
|
|
382
382
|
* @package @ktjs/core
|
|
383
383
|
* @author Kasukabe Tsumugi <futami16237@gmail.com>
|
|
384
|
-
* @version 0.26.
|
|
384
|
+
* @version 0.26.8 (Last Update: 2026.02.06 16:26:16.214)
|
|
385
385
|
* @license MIT
|
|
386
386
|
* @link https://github.com/baendlorel/kt.js
|
|
387
387
|
* @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.26.
|
|
3
|
+
"version": "0.26.8",
|
|
4
4
|
"description": "Core functionality for kt.js - DOM manipulation utilities with JSX/TSX support",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "./dist/index.mjs",
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
"directory": "packages/core"
|
|
45
45
|
},
|
|
46
46
|
"dependencies": {
|
|
47
|
-
"@ktjs/shared": "0.23.
|
|
47
|
+
"@ktjs/shared": "0.23.3"
|
|
48
48
|
},
|
|
49
49
|
"scripts": {
|
|
50
50
|
"build": "rollup -c rollup.config.mjs",
|