Comparing version 5.10.0-perf.3 to 5.10.0-perf.4
@@ -535,3 +535,6 @@ 'use strict'; | ||
this.dispatchEvent(new CustomEvent('componentInitialized', { | ||
detail: { elapsedMs: this.initializingCompletedAt - this.initializingStartedAt, component: this }, | ||
detail: { | ||
elapsedMs: this.initializingCompletedAt - this.initializingStartedAt, | ||
component: this.toString() | ||
}, | ||
bubbles: true, | ||
@@ -538,0 +541,0 @@ composed: true |
@@ -138,3 +138,3 @@ 'use strict'; | ||
this.component.dispatchEvent(new CustomEvent('slowRender', { | ||
detail: { elapsedMs: elapsedMs, component: this.component.tagName.toLowerCase() }, | ||
detail: { elapsedMs: elapsedMs, component: this.component.toString() }, | ||
bubbles: true, | ||
@@ -141,0 +141,0 @@ composed: true |
@@ -418,3 +418,6 @@ import cuid from 'cuid'; | ||
new CustomEvent(`componentInitialized`, { | ||
detail: {elapsedMs: this.initializingCompletedAt - this.initializingStartedAt, component: this}, | ||
detail: { | ||
elapsedMs: this.initializingCompletedAt - this.initializingStartedAt, | ||
component: this.toString(), | ||
}, | ||
bubbles: true, | ||
@@ -421,0 +424,0 @@ composed: true, |
@@ -102,3 +102,3 @@ /** | ||
new CustomEvent(`slowRender`, { | ||
detail: {elapsedMs, component: this.component.tagName.toLowerCase()}, | ||
detail: {elapsedMs, component: this.component.toString()}, | ||
bubbles: true, | ||
@@ -105,0 +105,0 @@ composed: true, |
{ | ||
"name": "panel", | ||
"version": "5.10.0-perf.3", | ||
"version": "5.10.0-perf.4", | ||
"description": "Web Components with Virtual DOM: lightweight composable web apps", | ||
@@ -5,0 +5,0 @@ "main": "build/index.js", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
140876
3214