mol_jsx_lib 0.0.71 → 0.0.74
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/node.d.ts +10 -6
- package/node.deps.json +1 -1
- package/node.esm.js +10 -3
- package/node.esm.js.map +1 -1
- package/node.js +10 -3
- package/node.js.map +1 -1
- package/node.test.js +13 -3
- package/node.test.js.map +1 -1
- package/package.json +3 -2
- package/web.d.ts +10 -6
- package/web.deps.json +1 -1
- package/web.esm.js +10 -3
- package/web.esm.js.map +1 -1
- package/web.js +10 -3
- package/web.js.map +1 -1
- package/web.test.js +3 -0
- package/web.test.js.map +1 -1
package/node.test.js
CHANGED
|
@@ -1903,13 +1903,15 @@ var $;
|
|
|
1903
1903
|
//mol/wire/field/field.ts
|
|
1904
1904
|
;
|
|
1905
1905
|
"use strict";
|
|
1906
|
-
//mol/type/
|
|
1906
|
+
//mol/type/tail/tail.ts
|
|
1907
1907
|
;
|
|
1908
1908
|
"use strict";
|
|
1909
1909
|
var $;
|
|
1910
1910
|
(function ($) {
|
|
1911
1911
|
function $mol_wire_solo(host, field, descr) {
|
|
1912
|
-
|
|
1912
|
+
if (!descr)
|
|
1913
|
+
descr = Reflect.getOwnPropertyDescriptor(host, field);
|
|
1914
|
+
const orig = descr?.value ?? host[field];
|
|
1913
1915
|
const sup = Reflect.getPrototypeOf(host);
|
|
1914
1916
|
if (typeof sup[field] === 'function') {
|
|
1915
1917
|
Object.defineProperty(orig, 'name', { value: sup[field].name });
|
|
@@ -1941,10 +1943,15 @@ var $;
|
|
|
1941
1943
|
//mol/wire/solo/solo.ts
|
|
1942
1944
|
;
|
|
1943
1945
|
"use strict";
|
|
1946
|
+
//mol/type/error/error.ts
|
|
1947
|
+
;
|
|
1948
|
+
"use strict";
|
|
1944
1949
|
var $;
|
|
1945
1950
|
(function ($) {
|
|
1946
1951
|
function $mol_wire_plex(host, field, descr) {
|
|
1947
|
-
|
|
1952
|
+
if (!descr)
|
|
1953
|
+
descr = Reflect.getOwnPropertyDescriptor(host, field);
|
|
1954
|
+
const orig = descr?.value ?? host[field];
|
|
1948
1955
|
const sup = Reflect.getPrototypeOf(host);
|
|
1949
1956
|
if (typeof sup[field] === 'function') {
|
|
1950
1957
|
Object.defineProperty(orig, 'name', { value: sup[field].name });
|
|
@@ -3245,6 +3252,9 @@ var $;
|
|
|
3245
3252
|
//mol/wire/async/async.test.ts
|
|
3246
3253
|
;
|
|
3247
3254
|
"use strict";
|
|
3255
|
+
//mol/type/tail/tail.test.ts
|
|
3256
|
+
;
|
|
3257
|
+
"use strict";
|
|
3248
3258
|
var $;
|
|
3249
3259
|
(function ($_1) {
|
|
3250
3260
|
$mol_test({
|