mol_tree2 1.0.648 → 1.0.650
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.test.js +6 -4
- package/node.test.js.map +1 -1
- package/package.json +1 -1
- package/web.test.js +6 -4
- package/web.test.js.map +1 -1
package/package.json
CHANGED
package/web.test.js
CHANGED
|
@@ -2427,6 +2427,7 @@ var $;
|
|
|
2427
2427
|
result = Object.assign(result.then(put, put), {
|
|
2428
2428
|
destructor: result['destructor'] ?? (() => { })
|
|
2429
2429
|
});
|
|
2430
|
+
Error.captureStackTrace(result);
|
|
2430
2431
|
handled.add(result);
|
|
2431
2432
|
}
|
|
2432
2433
|
}
|
|
@@ -2444,6 +2445,7 @@ var $;
|
|
|
2444
2445
|
}), {
|
|
2445
2446
|
destructor: result['destructor'] ?? (() => { })
|
|
2446
2447
|
});
|
|
2448
|
+
Error.captureStackTrace(result);
|
|
2447
2449
|
handled.add(result);
|
|
2448
2450
|
}
|
|
2449
2451
|
}
|
|
@@ -4607,10 +4609,10 @@ var $;
|
|
|
4607
4609
|
"use strict";
|
|
4608
4610
|
var $;
|
|
4609
4611
|
(function ($) {
|
|
4610
|
-
function $mol_style_prop(prefix,
|
|
4611
|
-
const record =
|
|
4612
|
-
|
|
4613
|
-
return
|
|
4612
|
+
function $mol_style_prop(prefix, keys) {
|
|
4613
|
+
const record = keys.reduce((rec, key) => {
|
|
4614
|
+
rec[key] = $mol_style_func.vary(`--${prefix}_${key}`);
|
|
4615
|
+
return rec;
|
|
4614
4616
|
}, {});
|
|
4615
4617
|
return record;
|
|
4616
4618
|
}
|