@ktjs/core 0.18.6 → 0.18.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 +5 -5
- package/dist/index.iife.js +1 -1
- package/dist/index.legacy.js +1 -1
- package/dist/index.mjs +1 -1
- package/dist/jsx/index.d.ts +5 -5
- package/dist/jsx/index.mjs +1 -1
- package/dist/jsx/jsx-runtime.d.ts +5 -5
- package/dist/jsx/jsx-runtime.mjs +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -30,13 +30,13 @@ type BaseAttr = {
|
|
|
30
30
|
// # base attributes
|
|
31
31
|
class?: string;
|
|
32
32
|
className?: string;
|
|
33
|
-
style?: string
|
|
33
|
+
style?: string | Partial<CSSStyleDeclaration>;
|
|
34
34
|
|
|
35
35
|
// # Events
|
|
36
36
|
// Mouse events
|
|
37
|
-
'on:click'?: (ev:
|
|
38
|
-
'on:dblclick'?: (ev:
|
|
39
|
-
'on:mousedown'?: (ev:
|
|
37
|
+
'on:click'?: (ev: PointerEvent) => void;
|
|
38
|
+
'on:dblclick'?: (ev: PointerEvent) => void;
|
|
39
|
+
'on:mousedown'?: (ev: PointerEvent) => void;
|
|
40
40
|
'on:mouseup'?: (ev: MouseEvent) => void;
|
|
41
41
|
'on:mousemove'?: (ev: MouseEvent) => void;
|
|
42
42
|
'on:mouseenter'?: (ev: MouseEvent) => void;
|
|
@@ -1296,7 +1296,7 @@ type HTML<T extends (HTMLTag | SVGTag) & otherstring> = T extends SVGTag ? SVGEl
|
|
|
1296
1296
|
* ## About
|
|
1297
1297
|
* @package @ktjs/core
|
|
1298
1298
|
* @author Kasukabe Tsumugi <futami16237@gmail.com>
|
|
1299
|
-
* @version 0.18.
|
|
1299
|
+
* @version 0.18.8 (Last Update: 2026.01.31 14:28:10.930)
|
|
1300
1300
|
* @license MIT
|
|
1301
1301
|
* @link https://github.com/baendlorel/kt.js
|
|
1302
1302
|
* @link https://baendlorel.github.io/ Welcome to my site!
|
package/dist/index.iife.js
CHANGED
|
@@ -202,7 +202,7 @@ var __ktjs_core__ = (function (exports) {
|
|
|
202
202
|
* ## About
|
|
203
203
|
* @package @ktjs/core
|
|
204
204
|
* @author Kasukabe Tsumugi <futami16237@gmail.com>
|
|
205
|
-
* @version 0.18.
|
|
205
|
+
* @version 0.18.8 (Last Update: 2026.01.31 14:28:10.930)
|
|
206
206
|
* @license MIT
|
|
207
207
|
* @link https://github.com/baendlorel/kt.js
|
|
208
208
|
* @link https://baendlorel.github.io/ Welcome to my site!
|
package/dist/index.legacy.js
CHANGED
|
@@ -215,7 +215,7 @@ var __ktjs_core__ = (function (exports) {
|
|
|
215
215
|
* ## About
|
|
216
216
|
* @package @ktjs/core
|
|
217
217
|
* @author Kasukabe Tsumugi <futami16237@gmail.com>
|
|
218
|
-
* @version 0.18.
|
|
218
|
+
* @version 0.18.8 (Last Update: 2026.01.31 14:28:10.930)
|
|
219
219
|
* @license MIT
|
|
220
220
|
* @link https://github.com/baendlorel/kt.js
|
|
221
221
|
* @link https://baendlorel.github.io/ Welcome to my site!
|
package/dist/index.mjs
CHANGED
|
@@ -199,7 +199,7 @@ const svgTempWrapper = document.createElement('div');
|
|
|
199
199
|
* ## About
|
|
200
200
|
* @package @ktjs/core
|
|
201
201
|
* @author Kasukabe Tsumugi <futami16237@gmail.com>
|
|
202
|
-
* @version 0.18.
|
|
202
|
+
* @version 0.18.8 (Last Update: 2026.01.31 14:28:10.930)
|
|
203
203
|
* @license MIT
|
|
204
204
|
* @link https://github.com/baendlorel/kt.js
|
|
205
205
|
* @link https://baendlorel.github.io/ Welcome to my site!
|
package/dist/jsx/index.d.ts
CHANGED
|
@@ -30,13 +30,13 @@ type BaseAttr = {
|
|
|
30
30
|
// # base attributes
|
|
31
31
|
class?: string;
|
|
32
32
|
className?: string;
|
|
33
|
-
style?: string
|
|
33
|
+
style?: string | Partial<CSSStyleDeclaration>;
|
|
34
34
|
|
|
35
35
|
// # Events
|
|
36
36
|
// Mouse events
|
|
37
|
-
'on:click'?: (ev:
|
|
38
|
-
'on:dblclick'?: (ev:
|
|
39
|
-
'on:mousedown'?: (ev:
|
|
37
|
+
'on:click'?: (ev: PointerEvent) => void;
|
|
38
|
+
'on:dblclick'?: (ev: PointerEvent) => void;
|
|
39
|
+
'on:mousedown'?: (ev: PointerEvent) => void;
|
|
40
40
|
'on:mouseup'?: (ev: MouseEvent) => void;
|
|
41
41
|
'on:mousemove'?: (ev: MouseEvent) => void;
|
|
42
42
|
'on:mouseenter'?: (ev: MouseEvent) => void;
|
|
@@ -1282,7 +1282,7 @@ type HTML<T extends (HTMLTag | SVGTag) & otherstring> = T extends SVGTag ? SVGEl
|
|
|
1282
1282
|
* ## About
|
|
1283
1283
|
* @package @ktjs/core
|
|
1284
1284
|
* @author Kasukabe Tsumugi <futami16237@gmail.com>
|
|
1285
|
-
* @version 0.18.
|
|
1285
|
+
* @version 0.18.8 (Last Update: 2026.01.31 14:28:10.930)
|
|
1286
1286
|
* @license MIT
|
|
1287
1287
|
* @link https://github.com/baendlorel/kt.js
|
|
1288
1288
|
* @link https://baendlorel.github.io/ Welcome to my site!
|
package/dist/jsx/index.mjs
CHANGED
|
@@ -199,7 +199,7 @@ const svgTempWrapper = document.createElement('div');
|
|
|
199
199
|
* ## About
|
|
200
200
|
* @package @ktjs/core
|
|
201
201
|
* @author Kasukabe Tsumugi <futami16237@gmail.com>
|
|
202
|
-
* @version 0.18.
|
|
202
|
+
* @version 0.18.8 (Last Update: 2026.01.31 14:28:10.930)
|
|
203
203
|
* @license MIT
|
|
204
204
|
* @link https://github.com/baendlorel/kt.js
|
|
205
205
|
* @link https://baendlorel.github.io/ Welcome to my site!
|
|
@@ -24,13 +24,13 @@ type BaseAttr = {
|
|
|
24
24
|
// # base attributes
|
|
25
25
|
class?: string;
|
|
26
26
|
className?: string;
|
|
27
|
-
style?: string
|
|
27
|
+
style?: string | Partial<CSSStyleDeclaration>;
|
|
28
28
|
|
|
29
29
|
// # Events
|
|
30
30
|
// Mouse events
|
|
31
|
-
'on:click'?: (ev:
|
|
32
|
-
'on:dblclick'?: (ev:
|
|
33
|
-
'on:mousedown'?: (ev:
|
|
31
|
+
'on:click'?: (ev: PointerEvent) => void;
|
|
32
|
+
'on:dblclick'?: (ev: PointerEvent) => void;
|
|
33
|
+
'on:mousedown'?: (ev: PointerEvent) => void;
|
|
34
34
|
'on:mouseup'?: (ev: MouseEvent) => void;
|
|
35
35
|
'on:mousemove'?: (ev: MouseEvent) => void;
|
|
36
36
|
'on:mouseenter'?: (ev: MouseEvent) => void;
|
|
@@ -1276,7 +1276,7 @@ type HTML<T extends (HTMLTag | SVGTag) & otherstring> = T extends SVGTag ? SVGEl
|
|
|
1276
1276
|
* ## About
|
|
1277
1277
|
* @package @ktjs/core
|
|
1278
1278
|
* @author Kasukabe Tsumugi <futami16237@gmail.com>
|
|
1279
|
-
* @version 0.18.
|
|
1279
|
+
* @version 0.18.8 (Last Update: 2026.01.31 14:28:10.930)
|
|
1280
1280
|
* @license MIT
|
|
1281
1281
|
* @link https://github.com/baendlorel/kt.js
|
|
1282
1282
|
* @link https://baendlorel.github.io/ Welcome to my site!
|
package/dist/jsx/jsx-runtime.mjs
CHANGED
|
@@ -199,7 +199,7 @@ const svgTempWrapper = document.createElement('div');
|
|
|
199
199
|
* ## About
|
|
200
200
|
* @package @ktjs/core
|
|
201
201
|
* @author Kasukabe Tsumugi <futami16237@gmail.com>
|
|
202
|
-
* @version 0.18.
|
|
202
|
+
* @version 0.18.8 (Last Update: 2026.01.31 14:28:10.930)
|
|
203
203
|
* @license MIT
|
|
204
204
|
* @link https://github.com/baendlorel/kt.js
|
|
205
205
|
* @link https://baendlorel.github.io/ Welcome to my site!
|