mol_plot_all 1.2.959 → 1.2.961
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 +93 -94
- package/node.d.ts.map +1 -1
- package/node.deps.json +1 -1
- package/node.js +6 -4
- package/node.js.map +1 -1
- package/node.mjs +6 -4
- package/node.test.js +6 -4
- package/node.test.js.map +1 -1
- package/package.json +1 -1
- package/web.d.ts +93 -94
- package/web.d.ts.map +1 -1
- package/web.deps.json +1 -1
- package/web.js +6 -4
- package/web.js.map +1 -1
- package/web.mjs +6 -4
package/node.js
CHANGED
|
@@ -798,6 +798,7 @@ var $;
|
|
|
798
798
|
result = Object.assign(result.then(put, put), {
|
|
799
799
|
destructor: result['destructor'] ?? (() => { })
|
|
800
800
|
});
|
|
801
|
+
Error.captureStackTrace(result);
|
|
801
802
|
handled.add(result);
|
|
802
803
|
}
|
|
803
804
|
}
|
|
@@ -815,6 +816,7 @@ var $;
|
|
|
815
816
|
}), {
|
|
816
817
|
destructor: result['destructor'] ?? (() => { })
|
|
817
818
|
});
|
|
819
|
+
Error.captureStackTrace(result);
|
|
818
820
|
handled.add(result);
|
|
819
821
|
}
|
|
820
822
|
}
|
|
@@ -2587,10 +2589,10 @@ var $;
|
|
|
2587
2589
|
"use strict";
|
|
2588
2590
|
var $;
|
|
2589
2591
|
(function ($) {
|
|
2590
|
-
function $mol_style_prop(prefix,
|
|
2591
|
-
const record =
|
|
2592
|
-
|
|
2593
|
-
return
|
|
2592
|
+
function $mol_style_prop(prefix, keys) {
|
|
2593
|
+
const record = keys.reduce((rec, key) => {
|
|
2594
|
+
rec[key] = $mol_style_func.vary(`--${prefix}_${key}`);
|
|
2595
|
+
return rec;
|
|
2594
2596
|
}, {});
|
|
2595
2597
|
return record;
|
|
2596
2598
|
}
|