@editframe/elements 0.16.2-beta.0 → 0.16.3-beta.0

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.
@@ -103,12 +103,25 @@ let EFVideo = class extends TWMixin(EFMedia) {
103
103
  };
104
104
  _decoderLock = /* @__PURE__ */ new WeakMap();
105
105
  EFVideo.styles = [
106
+ /**
107
+ *
108
+ */
106
109
  css`
107
110
  :host {
108
111
  display: block;
109
112
  }
110
113
  canvas {
111
114
  all: inherit;
115
+ overflow: hidden;
116
+ position: static;
117
+ width: 100%;
118
+ height: 100%;
119
+ margin: 0;
120
+ padding: 0;
121
+ overflow: hidden;
122
+ border: none;
123
+ outline: none;
124
+ box-shadow: none;
112
125
  }
113
126
  `
114
127
  ];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@editframe/elements",
3
- "version": "0.16.2-beta.0",
3
+ "version": "0.16.3-beta.0",
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.2-beta.0",
30
+ "@editframe/assets": "0.16.3-beta.0",
31
31
  "@lit/context": "^1.1.2",
32
32
  "@lit/task": "^1.0.1",
33
33
  "d3": "^7.9.0",
@@ -9,12 +9,25 @@ import { EFMedia } from "./EFMedia.js";
9
9
  @customElement("ef-video")
10
10
  export class EFVideo extends TWMixin(EFMedia) {
11
11
  static styles = [
12
+ /**
13
+ *
14
+ */
12
15
  css`
13
16
  :host {
14
17
  display: block;
15
18
  }
16
19
  canvas {
17
20
  all: inherit;
21
+ overflow: hidden;
22
+ position: static;
23
+ width: 100%;
24
+ height: 100%;
25
+ margin: 0;
26
+ padding: 0;
27
+ overflow: hidden;
28
+ border: none;
29
+ outline: none;
30
+ box-shadow: none;
18
31
  }
19
32
  `,
20
33
  ];