@vouchfor/embeds 3.0.0 → 3.1.0

Sign up to get free protection for your applications and to get access to all the features.
package/dist/es/embeds.js CHANGED
@@ -196,7 +196,7 @@ class FetcherController {
196
196
  }
197
197
  }
198
198
  const name = "@vouchfor/embeds";
199
- const version = "3.0.0";
199
+ const version = "3.1.0";
200
200
  const license = "MIT";
201
201
  const author = "Aaron Williams";
202
202
  const main = "dist/es/embeds.js";
@@ -238,8 +238,8 @@ const scripts = {
238
238
  const dependencies = {
239
239
  "@a11y/focus-trap": "^1.0.5",
240
240
  "@lit/task": "^1.0.0",
241
- "@vouchfor/canvas-video": "^8.2.0",
242
- "@vouchfor/media-player": "^4.0.0",
241
+ "@vouchfor/canvas-video": "^8.2.1",
242
+ "@vouchfor/media-player": "^4.1.0",
243
243
  uuid: "^9.0.1"
244
244
  };
245
245
  const peerDependencies = {
@@ -258,7 +258,7 @@ const devDependencies = {
258
258
  "@types/mocha": "^10.0.6",
259
259
  "@vouchfor/eslint-config": "^1.0.1",
260
260
  "@vouchfor/prettier-config": "^1.0.1",
261
- "@vouchfor/video-utils": "^1.2.0",
261
+ "@vouchfor/video-utils": "^1.3.0",
262
262
  "@web/dev-server-esbuild": "^1.0.2",
263
263
  "@web/test-runner": "^0.18.1",
264
264
  "@web/test-runner-browserstack": "^0.7.1",
@@ -1,3 +1,4 @@
1
1
  import type { Vouch } from '@vouchfor/video-utils';
2
2
  declare const data: Vouch;
3
- export { data };
3
+ declare const withNullAnswer: Vouch;
4
+ export { data, withNullAnswer };
@@ -0,0 +1,19 @@
1
+ declare const VIDEOA: {
2
+ mp4: string;
3
+ m3u8: string;
4
+ jpg: string;
5
+ duration: number;
6
+ };
7
+ declare const VIDEOB: {
8
+ mp4: string;
9
+ m3u8: string;
10
+ jpg: string;
11
+ duration: number;
12
+ };
13
+ declare const VIDEOC: {
14
+ mp4: string;
15
+ m3u8: string;
16
+ jpg: string;
17
+ duration: number;
18
+ };
19
+ export { VIDEOA, VIDEOB, VIDEOC };