@ktjs/core 0.20.1 → 0.20.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 +1 -3
- package/dist/index.iife.js +7 -1
- package/dist/index.legacy.js +1 -1
- package/dist/index.mjs +7 -1
- package/dist/jsx/index.d.ts +1 -3
- package/dist/jsx/index.mjs +7 -1
- package/dist/jsx/jsx-runtime.d.ts +1 -3
- package/dist/jsx/jsx-runtime.mjs +7 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -13,8 +13,6 @@ declare class KTRef<T> {
|
|
|
13
13
|
* Indicates that this is a KTRef instance
|
|
14
14
|
*/
|
|
15
15
|
isKT: boolean;
|
|
16
|
-
private _value;
|
|
17
|
-
private _onChanges;
|
|
18
16
|
constructor(_value: T, _onChanges: Array<RefChangeHandler<T>>);
|
|
19
17
|
/**
|
|
20
18
|
* If new value and old value are both nodes, the old one will be replaced in the DOM
|
|
@@ -130,7 +128,7 @@ type HTML<T extends (HTMLTag | SVGTag | MathMLTag) & otherstring> = T extends SV
|
|
|
130
128
|
* ## About
|
|
131
129
|
* @package @ktjs/core
|
|
132
130
|
* @author Kasukabe Tsumugi <futami16237@gmail.com>
|
|
133
|
-
* @version 0.20.
|
|
131
|
+
* @version 0.20.3 (Last Update: 2026.02.01 18:38:02.198)
|
|
134
132
|
* @license MIT
|
|
135
133
|
* @link https://github.com/baendlorel/kt.js
|
|
136
134
|
* @link https://baendlorel.github.io/ Welcome to my site!
|
package/dist/index.iife.js
CHANGED
|
@@ -212,7 +212,7 @@ var __ktjs_core__ = (function (exports) {
|
|
|
212
212
|
* ## About
|
|
213
213
|
* @package @ktjs/core
|
|
214
214
|
* @author Kasukabe Tsumugi <futami16237@gmail.com>
|
|
215
|
-
* @version 0.20.
|
|
215
|
+
* @version 0.20.3 (Last Update: 2026.02.01 18:38:02.198)
|
|
216
216
|
* @license MIT
|
|
217
217
|
* @link https://github.com/baendlorel/kt.js
|
|
218
218
|
* @link https://baendlorel.github.io/ Welcome to my site!
|
|
@@ -257,7 +257,13 @@ var __ktjs_core__ = (function (exports) {
|
|
|
257
257
|
* Indicates that this is a KTRef instance
|
|
258
258
|
*/
|
|
259
259
|
isKT = true;
|
|
260
|
+
/**
|
|
261
|
+
* @internal
|
|
262
|
+
*/
|
|
260
263
|
_value;
|
|
264
|
+
/**
|
|
265
|
+
* @internal
|
|
266
|
+
*/
|
|
261
267
|
_onChanges;
|
|
262
268
|
constructor(_value, _onChanges) {
|
|
263
269
|
this._value = _value;
|
package/dist/index.legacy.js
CHANGED
|
@@ -217,7 +217,7 @@ var __ktjs_core__ = (function (exports) {
|
|
|
217
217
|
* ## About
|
|
218
218
|
* @package @ktjs/core
|
|
219
219
|
* @author Kasukabe Tsumugi <futami16237@gmail.com>
|
|
220
|
-
* @version 0.20.
|
|
220
|
+
* @version 0.20.3 (Last Update: 2026.02.01 18:38:02.198)
|
|
221
221
|
* @license MIT
|
|
222
222
|
* @link https://github.com/baendlorel/kt.js
|
|
223
223
|
* @link https://baendlorel.github.io/ Welcome to my site!
|
package/dist/index.mjs
CHANGED
|
@@ -209,7 +209,7 @@ const MATHML_ATTR_FLAG = '__kt_mathml__';
|
|
|
209
209
|
* ## About
|
|
210
210
|
* @package @ktjs/core
|
|
211
211
|
* @author Kasukabe Tsumugi <futami16237@gmail.com>
|
|
212
|
-
* @version 0.20.
|
|
212
|
+
* @version 0.20.3 (Last Update: 2026.02.01 18:38:02.198)
|
|
213
213
|
* @license MIT
|
|
214
214
|
* @link https://github.com/baendlorel/kt.js
|
|
215
215
|
* @link https://baendlorel.github.io/ Welcome to my site!
|
|
@@ -254,7 +254,13 @@ class KTRef {
|
|
|
254
254
|
* Indicates that this is a KTRef instance
|
|
255
255
|
*/
|
|
256
256
|
isKT = true;
|
|
257
|
+
/**
|
|
258
|
+
* @internal
|
|
259
|
+
*/
|
|
257
260
|
_value;
|
|
261
|
+
/**
|
|
262
|
+
* @internal
|
|
263
|
+
*/
|
|
258
264
|
_onChanges;
|
|
259
265
|
constructor(_value, _onChanges) {
|
|
260
266
|
this._value = _value;
|
package/dist/jsx/index.d.ts
CHANGED
|
@@ -13,8 +13,6 @@ declare class KTRef<T> {
|
|
|
13
13
|
* Indicates that this is a KTRef instance
|
|
14
14
|
*/
|
|
15
15
|
isKT: boolean;
|
|
16
|
-
private _value;
|
|
17
|
-
private _onChanges;
|
|
18
16
|
constructor(_value: T, _onChanges: Array<RefChangeHandler<T>>);
|
|
19
17
|
/**
|
|
20
18
|
* If new value and old value are both nodes, the old one will be replaced in the DOM
|
|
@@ -116,7 +114,7 @@ type HTML<T extends (HTMLTag | SVGTag | MathMLTag) & otherstring> = T extends SV
|
|
|
116
114
|
* ## About
|
|
117
115
|
* @package @ktjs/core
|
|
118
116
|
* @author Kasukabe Tsumugi <futami16237@gmail.com>
|
|
119
|
-
* @version 0.20.
|
|
117
|
+
* @version 0.20.3 (Last Update: 2026.02.01 18:38:02.198)
|
|
120
118
|
* @license MIT
|
|
121
119
|
* @link https://github.com/baendlorel/kt.js
|
|
122
120
|
* @link https://baendlorel.github.io/ Welcome to my site!
|
package/dist/jsx/index.mjs
CHANGED
|
@@ -209,7 +209,7 @@ const MATHML_ATTR_FLAG = '__kt_mathml__';
|
|
|
209
209
|
* ## About
|
|
210
210
|
* @package @ktjs/core
|
|
211
211
|
* @author Kasukabe Tsumugi <futami16237@gmail.com>
|
|
212
|
-
* @version 0.20.
|
|
212
|
+
* @version 0.20.3 (Last Update: 2026.02.01 18:38:02.198)
|
|
213
213
|
* @license MIT
|
|
214
214
|
* @link https://github.com/baendlorel/kt.js
|
|
215
215
|
* @link https://baendlorel.github.io/ Welcome to my site!
|
|
@@ -254,7 +254,13 @@ class KTRef {
|
|
|
254
254
|
* Indicates that this is a KTRef instance
|
|
255
255
|
*/
|
|
256
256
|
isKT = true;
|
|
257
|
+
/**
|
|
258
|
+
* @internal
|
|
259
|
+
*/
|
|
257
260
|
_value;
|
|
261
|
+
/**
|
|
262
|
+
* @internal
|
|
263
|
+
*/
|
|
258
264
|
_onChanges;
|
|
259
265
|
constructor(_value, _onChanges) {
|
|
260
266
|
this._value = _value;
|
|
@@ -13,8 +13,6 @@ declare class KTRef<T> {
|
|
|
13
13
|
* Indicates that this is a KTRef instance
|
|
14
14
|
*/
|
|
15
15
|
isKT: boolean;
|
|
16
|
-
private _value;
|
|
17
|
-
private _onChanges;
|
|
18
16
|
constructor(_value: T, _onChanges: Array<RefChangeHandler<T>>);
|
|
19
17
|
/**
|
|
20
18
|
* If new value and old value are both nodes, the old one will be replaced in the DOM
|
|
@@ -110,7 +108,7 @@ type HTML<T extends (HTMLTag | SVGTag | MathMLTag) & otherstring> = T extends SV
|
|
|
110
108
|
* ## About
|
|
111
109
|
* @package @ktjs/core
|
|
112
110
|
* @author Kasukabe Tsumugi <futami16237@gmail.com>
|
|
113
|
-
* @version 0.20.
|
|
111
|
+
* @version 0.20.3 (Last Update: 2026.02.01 18:38:02.198)
|
|
114
112
|
* @license MIT
|
|
115
113
|
* @link https://github.com/baendlorel/kt.js
|
|
116
114
|
* @link https://baendlorel.github.io/ Welcome to my site!
|
package/dist/jsx/jsx-runtime.mjs
CHANGED
|
@@ -209,7 +209,7 @@ const MATHML_ATTR_FLAG = '__kt_mathml__';
|
|
|
209
209
|
* ## About
|
|
210
210
|
* @package @ktjs/core
|
|
211
211
|
* @author Kasukabe Tsumugi <futami16237@gmail.com>
|
|
212
|
-
* @version 0.20.
|
|
212
|
+
* @version 0.20.3 (Last Update: 2026.02.01 18:38:02.198)
|
|
213
213
|
* @license MIT
|
|
214
214
|
* @link https://github.com/baendlorel/kt.js
|
|
215
215
|
* @link https://baendlorel.github.io/ Welcome to my site!
|
|
@@ -254,7 +254,13 @@ class KTRef {
|
|
|
254
254
|
* Indicates that this is a KTRef instance
|
|
255
255
|
*/
|
|
256
256
|
isKT = true;
|
|
257
|
+
/**
|
|
258
|
+
* @internal
|
|
259
|
+
*/
|
|
257
260
|
_value;
|
|
261
|
+
/**
|
|
262
|
+
* @internal
|
|
263
|
+
*/
|
|
258
264
|
_onChanges;
|
|
259
265
|
constructor(_value, _onChanges) {
|
|
260
266
|
this._value = _value;
|