@editframe/elements 0.16.0-beta.0 → 0.16.0-beta.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.
@@ -81,7 +81,6 @@ const _EFMedia = class _EFMedia2 extends EFTargetable(
81
81
  onComplete: () => {
82
82
  this.requestUpdate("intrinsicDurationMs");
83
83
  this.requestUpdate("ownCurrentTimeMs");
84
- console.log("Requesting update for durationMs", this, this.rootTimegroup);
85
84
  this.rootTimegroup?.requestUpdate("ownCurrentTimeMs");
86
85
  this.rootTimegroup?.requestUpdate("durationMs");
87
86
  }
@@ -63,12 +63,10 @@ let EFWorkbench = class extends ContextMixin(TWMixin(LitElement)) {
63
63
  }
64
64
  render() {
65
65
  if (this.rendering || typeof window !== "undefined" && window.EF_RENDERING?.() === true) {
66
- console.log("WORKBENCH RENDERING“");
67
66
  return html`
68
67
  <slot class="fixed inset-0 h-full w-full" name="canvas"></slot>
69
68
  `;
70
69
  }
71
- console.log("WORKBENCH NOT RENDERING");
72
70
  return html`
73
71
  <div
74
72
  class="grid h-full w-full bg-slate-800"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@editframe/elements",
3
- "version": "0.16.0-beta.0",
3
+ "version": "0.16.0-beta.1",
4
4
  "description": "",
5
5
  "exports": {
6
6
  ".": {
@@ -27,7 +27,7 @@
27
27
  "license": "UNLICENSED",
28
28
  "dependencies": {
29
29
  "@bramus/style-observer": "^1.3.0",
30
- "@editframe/assets": "0.16.0-beta.0",
30
+ "@editframe/assets": "0.16.0-beta.1",
31
31
  "@lit/context": "^1.1.2",
32
32
  "@lit/task": "^1.0.1",
33
33
  "d3": "^7.9.0",
@@ -132,7 +132,6 @@ export class EFMedia extends EFTargetable(
132
132
  onComplete: () => {
133
133
  this.requestUpdate("intrinsicDurationMs");
134
134
  this.requestUpdate("ownCurrentTimeMs");
135
- console.log("Requesting update for durationMs", this, this.rootTimegroup);
136
135
  this.rootTimegroup?.requestUpdate("ownCurrentTimeMs");
137
136
  this.rootTimegroup?.requestUpdate("durationMs");
138
137
  },
@@ -80,12 +80,10 @@ export class EFWorkbench extends ContextMixin(TWMixin(LitElement)) {
80
80
  this.rendering ||
81
81
  (typeof window !== "undefined" && window.EF_RENDERING?.() === true)
82
82
  ) {
83
- console.log("WORKBENCH RENDERING“");
84
83
  return html`
85
84
  <slot class="fixed inset-0 h-full w-full" name="canvas"></slot>
86
85
  `;
87
86
  }
88
- console.log("WORKBENCH NOT RENDERING");
89
87
  return html`
90
88
  <div
91
89
  class="grid h-full w-full bg-slate-800"