@spiffcommerce/core 21.11.1 → 21.11.2-1
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.js +3 -1
- package/dist/index.umd.cjs +26 -26
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -7673,6 +7673,7 @@ class Gn {
|
|
|
7673
7673
|
* Actions to perform when a static render event is fired for this canvas.
|
|
7674
7674
|
*/
|
|
7675
7675
|
async render(e, t, A) {
|
|
7676
|
+
console.trace();
|
|
7676
7677
|
const a = we(t);
|
|
7677
7678
|
this.lastRequestedRenderArguments = {
|
|
7678
7679
|
workflow: e,
|
|
@@ -7736,6 +7737,7 @@ class kn extends tA {
|
|
|
7736
7737
|
* a loose target but should be kept in mind when making changes.
|
|
7737
7738
|
*/
|
|
7738
7739
|
async execute() {
|
|
7740
|
+
performance.mark("spiff-core-rqp-execute-start");
|
|
7739
7741
|
const e = this.layouts.find((l) => l.layoutState.layout.id === this.layoutId);
|
|
7740
7742
|
if (!e)
|
|
7741
7743
|
return;
|
|
@@ -7762,7 +7764,7 @@ class kn extends tA {
|
|
|
7762
7764
|
DOMParser: Jt(),
|
|
7763
7765
|
fetch: et
|
|
7764
7766
|
});
|
|
7765
|
-
B.resize(s, o), await B.render(), this.onRender();
|
|
7767
|
+
B.resize(s, o), await B.render(), this.onRender(), performance.mark("spiff-core-rqp-execute-end"), performance.measure("spiff-core-rqp-execute", "spiff-core-rqp-execute-start", "spiff-core-rqp-execute-end");
|
|
7766
7768
|
}
|
|
7767
7769
|
}
|
|
7768
7770
|
const Vi = (c, e) => {
|