@vouchfor/embeds 0.0.0-experiment.d99576c → 0.0.0-experiment.da12aaa

Sign up to get free protection for your applications and to get access to all the features.
Files changed (38) hide show
  1. package/dist/es/embeds.js +1146 -7
  2. package/dist/es/embeds.js.map +1 -1
  3. package/dist/es/src/components/DialogEmbed/DialogOverlay.d.ts +20 -0
  4. package/dist/es/src/components/DialogEmbed/DialogPortal.d.ts +36 -0
  5. package/dist/es/src/components/DialogEmbed/index.d.ts +38 -0
  6. package/dist/es/src/components/PlayerEmbed/controllers/event-forwarder.d.ts +15 -0
  7. package/dist/es/src/components/{Embed → PlayerEmbed}/controllers/fetcher.d.ts +4 -4
  8. package/dist/es/src/components/{Embed/controllers/tracking.d.ts → PlayerEmbed/controllers/tracking/index.d.ts} +14 -11
  9. package/dist/es/src/components/PlayerEmbed/controllers/tracking/utils.d.ts +17 -0
  10. package/dist/es/src/components/{Embed → PlayerEmbed}/index.d.ts +27 -22
  11. package/dist/es/src/components/PlayerEmbed/tests/data.d.ts +3 -0
  12. package/dist/es/src/index.d.ts +2 -1
  13. package/dist/iife/dialog-embed/embed.iife.js +1759 -0
  14. package/dist/iife/dialog-embed/embed.iife.js.map +1 -0
  15. package/dist/iife/embeds.iife.js +582 -381
  16. package/dist/iife/embeds.iife.js.map +1 -1
  17. package/dist/iife/player-embed/embed.iife.js +1621 -0
  18. package/dist/iife/player-embed/embed.iife.js.map +1 -0
  19. package/package.json +43 -32
  20. package/src/components/DialogEmbed/Dialog.stories.ts +91 -0
  21. package/src/components/DialogEmbed/DialogOverlay.ts +131 -0
  22. package/src/components/DialogEmbed/DialogPortal.ts +126 -0
  23. package/src/components/DialogEmbed/index.ts +97 -0
  24. package/src/components/PlayerEmbed/MultiEmbed.stories.ts +135 -0
  25. package/src/components/{Embed/Embed.stories.ts → PlayerEmbed/PlayerEmbed.stories.ts} +30 -16
  26. package/src/components/{Embed → PlayerEmbed}/controllers/event-forwarder.ts +6 -5
  27. package/src/components/{Embed → PlayerEmbed}/controllers/fetcher.ts +11 -11
  28. package/src/components/{Embed/controllers/tracking.ts → PlayerEmbed/controllers/tracking/index.ts} +47 -118
  29. package/src/components/PlayerEmbed/controllers/tracking/utils.ts +95 -0
  30. package/src/components/{Embed → PlayerEmbed}/index.ts +63 -23
  31. package/src/components/PlayerEmbed/tests/PlayerEmbed.spec.ts +80 -0
  32. package/src/components/PlayerEmbed/tests/data.ts +183 -0
  33. package/src/index.ts +2 -1
  34. package/dist/es/browser-9c97227e.js +0 -433
  35. package/dist/es/browser-9c97227e.js.map +0 -1
  36. package/dist/es/index-92fec846.js +0 -9950
  37. package/dist/es/index-92fec846.js.map +0 -1
  38. package/src/components/Embed/Embed.spec.ts +0 -17
package/dist/es/embeds.js CHANGED
@@ -1,11 +1,1150 @@
1
- import { E as a } from "./index-92fec846.js";
2
- import "lit/decorators.js";
3
- import "lit/directives/if-defined.js";
4
- import "lit/directives/ref.js";
5
- import "@lit/task";
6
- import "uuid";
1
+ import { css, LitElement, html } from "lit";
2
+ import { property, state, customElement } from "lit/decorators.js";
3
+ import { ifDefined } from "lit/directives/if-defined.js";
4
+ import { createRef, ref } from "lit/directives/ref.js";
5
+ import { Task } from "@lit/task";
6
+ import { v4 } from "uuid";
7
+ import { TEMPLATE_VERSION } from "@vouchfor/canvas-video";
7
8
  import "@vouchfor/media-player";
9
+ import { styleMap } from "lit/directives/style-map.js";
10
+ import { classMap } from "lit/directives/class-map.js";
11
+ import "@a11y/focus-trap";
12
+ function forwardEvent(type2, fromElement, toElement) {
13
+ function forwarder(event) {
14
+ toElement.dispatchEvent(new CustomEvent(event.type, event));
15
+ }
16
+ fromElement.addEventListener(type2, forwarder);
17
+ return () => {
18
+ fromElement.removeEventListener(type2, forwarder);
19
+ };
20
+ }
21
+ class EventForwardController {
22
+ constructor(host, events) {
23
+ this._events = [];
24
+ this._cleanup = [];
25
+ this._forwardElementRef = createRef();
26
+ this.host = host;
27
+ this._events = events;
28
+ host.addController(this);
29
+ }
30
+ register() {
31
+ return ref(this._forwardElementRef);
32
+ }
33
+ hostConnected() {
34
+ requestAnimationFrame(() => {
35
+ this._events.forEach((event) => {
36
+ if (this._forwardElementRef.value) {
37
+ this._cleanup.push(forwardEvent(event, this._forwardElementRef.value, this.host));
38
+ }
39
+ });
40
+ });
41
+ }
42
+ hostDisconnected() {
43
+ this._cleanup.forEach((fn) => {
44
+ fn();
45
+ });
46
+ this._cleanup = [];
47
+ }
48
+ }
49
+ const devVideoUrl = "https://d2rxhdlm2q91uk.cloudfront.net";
50
+ const stagingVideoUrl = "https://d1ix11aj5kfygl.cloudfront.net";
51
+ const prodVideoUrl = "https://d157jlwnudd93d.cloudfront.net";
52
+ const devPublicApiUrl = "https://bshyfw4h5a.execute-api.ap-southeast-2.amazonaws.com/dev";
53
+ const stagingPublicApiUrl = "https://gyzw7rpbq3.execute-api.ap-southeast-2.amazonaws.com/staging";
54
+ const prodPublicApiUrl = "https://vfcjuim1l3.execute-api.ap-southeast-2.amazonaws.com/prod";
55
+ const localEmbedApiUrl = "http://localhost:6060/v2";
56
+ const devEmbedApiUrl = "https://embed-dev.vouchfor.com/v2";
57
+ const stagingEmbedApiUrl = "https://embed-staging.vouchfor.com/v2";
58
+ const prodEmbedApiUrl = "https://embed.vouchfor.com/v2";
59
+ function getEnvUrls(env) {
60
+ if (!["local", "dev", "staging", "prod"].includes(env)) {
61
+ throw new Error(`Unknown environment: ${env}`);
62
+ }
63
+ if (env === "local") {
64
+ return {
65
+ videoUrl: devVideoUrl,
66
+ publicApiUrl: devPublicApiUrl,
67
+ embedApiUrl: localEmbedApiUrl
68
+ };
69
+ }
70
+ if (env === "dev") {
71
+ return {
72
+ videoUrl: devVideoUrl,
73
+ publicApiUrl: devPublicApiUrl,
74
+ embedApiUrl: devEmbedApiUrl
75
+ };
76
+ }
77
+ if (env === "staging") {
78
+ return {
79
+ videoUrl: stagingVideoUrl,
80
+ publicApiUrl: stagingPublicApiUrl,
81
+ embedApiUrl: stagingEmbedApiUrl
82
+ };
83
+ }
84
+ if (env === "prod") {
85
+ return {
86
+ videoUrl: prodVideoUrl,
87
+ publicApiUrl: prodPublicApiUrl,
88
+ embedApiUrl: prodEmbedApiUrl
89
+ };
90
+ }
91
+ }
92
+ class FetcherController {
93
+ constructor(host) {
94
+ this._fetching = false;
95
+ this.getVouch = async (env, apiKey, vouchId) => {
96
+ var _a;
97
+ const { embedApiUrl } = getEnvUrls(env);
98
+ const cacheCheck = v4();
99
+ const res = await fetch(`${embedApiUrl}/vouches/${vouchId}`, {
100
+ method: "GET",
101
+ headers: [
102
+ ["X-Api-Key", apiKey],
103
+ ["X-Cache-Check", cacheCheck]
104
+ ]
105
+ });
106
+ const vouch = await res.json();
107
+ this.host.dispatchEvent(new CustomEvent("vouch:loaded", { detail: vouch == null ? void 0 : vouch.id }));
108
+ const resCacheCheck = (_a = res == null ? void 0 : res.headers) == null ? void 0 : _a.get("X-Cache-Check");
109
+ if (resCacheCheck !== cacheCheck) {
110
+ fetch(`${embedApiUrl}/vouches/${vouchId}`, {
111
+ method: "GET",
112
+ headers: [
113
+ ["X-Api-Key", apiKey],
114
+ ["Cache-Control", "max-age=0"]
115
+ ]
116
+ });
117
+ }
118
+ return vouch;
119
+ };
120
+ this.getTemplate = async (env, apiKey, templateId) => {
121
+ var _a;
122
+ const { embedApiUrl } = getEnvUrls(env);
123
+ const cacheCheck = v4();
124
+ const res = await fetch(`${embedApiUrl}/templates/${templateId}`, {
125
+ method: "GET",
126
+ headers: [
127
+ ["X-Api-Key", apiKey],
128
+ ["X-Cache-Check", cacheCheck]
129
+ ]
130
+ });
131
+ const template = await res.json();
132
+ const resCacheCheck = (_a = res == null ? void 0 : res.headers) == null ? void 0 : _a.get("X-Cache-Check");
133
+ if (resCacheCheck !== cacheCheck) {
134
+ fetch(`${embedApiUrl}/templates/${templateId}`, {
135
+ method: "GET",
136
+ headers: [
137
+ ["X-Api-Key", apiKey],
138
+ ["Cache-Control", "max-age=0"]
139
+ ]
140
+ });
141
+ }
142
+ return template;
143
+ };
144
+ this.host = host;
145
+ new Task(
146
+ this.host,
147
+ async ([env, apiKey, data, vouchId, templateId]) => {
148
+ var _a, _b, _c, _d;
149
+ try {
150
+ host.vouch = void 0;
151
+ host.template = void 0;
152
+ if (data) {
153
+ let template;
154
+ if (templateId) {
155
+ this.fetching = true;
156
+ template = await this.getTemplate(env, apiKey, templateId);
157
+ }
158
+ this._vouch = data;
159
+ host.template = template ?? ((_b = (_a = data == null ? void 0 : data.settings) == null ? void 0 : _a.template) == null ? void 0 : _b.instance);
160
+ } else if (vouchId) {
161
+ this.fetching = true;
162
+ const [vouch, template] = await Promise.all([
163
+ this.getVouch(env, apiKey, vouchId),
164
+ templateId ? this.getTemplate(env, apiKey, templateId) : null
165
+ ]);
166
+ this._vouch = vouch;
167
+ host.template = template ?? ((_d = (_c = vouch == null ? void 0 : vouch.settings) == null ? void 0 : _c.template) == null ? void 0 : _d.instance);
168
+ }
169
+ } finally {
170
+ this.fetching = false;
171
+ }
172
+ },
173
+ () => [host.env, host.apiKey, host.data, host.vouchId, host.templateId]
174
+ );
175
+ new Task(
176
+ this.host,
177
+ ([vouch, questions]) => {
178
+ host.vouch = vouch ? {
179
+ ...vouch,
180
+ questions: {
181
+ items: vouch == null ? void 0 : vouch.questions.items.filter((_, index) => !(questions == null ? void 0 : questions.length) || (questions == null ? void 0 : questions.includes(index + 1)))
182
+ }
183
+ } : void 0;
184
+ },
185
+ () => [this._vouch, host.questions]
186
+ );
187
+ }
188
+ set fetching(value) {
189
+ if (this._fetching !== value) {
190
+ this._fetching = value;
191
+ this.host.requestUpdate();
192
+ }
193
+ }
194
+ get fetching() {
195
+ return this._fetching;
196
+ }
197
+ }
198
+ const name = "@vouchfor/embeds";
199
+ const version = "0.0.0-experiment.da12aaa";
200
+ const license = "MIT";
201
+ const author = "Aaron Williams";
202
+ const main = "dist/es/embeds.js";
203
+ const module = "dist/es/embeds.js";
204
+ const type = "module";
205
+ const types = "dist/es/src/index.d.ts";
206
+ const exports = {
207
+ ".": "./dist/es/embeds.js"
208
+ };
209
+ const files = [
210
+ "dist",
211
+ "src"
212
+ ];
213
+ const publishConfig = {
214
+ tag: "experiment",
215
+ access: "public"
216
+ };
217
+ const engines = {
218
+ node: ">=18.18.0"
219
+ };
220
+ const scripts = {
221
+ build: "rm -rf dist && tsc && yarn build:self",
222
+ "build:deps": "yarn --cwd ../media-player build",
223
+ "build:self": "vite build --mode iife && vite build --mode es && node scripts/build.cjs",
224
+ "build:package": "yarn build",
225
+ "build:storybook": "yarn prebuild && storybook build",
226
+ "generate:manifest": "wca src --outFile custom-elements.json",
227
+ lint: "eslint . --quiet",
228
+ "lint:fix": "eslint . --fix",
229
+ "lint:staged": "lint-staged",
230
+ prepublishOnly: "yarn build",
231
+ size: "size-limit",
232
+ storybook: "yarn prebuild && storybook dev -p 6007",
233
+ prebuild: "yarn build:deps && yarn generate:manifest",
234
+ test: "rm -rf test/lib && yarn prebuild && vite build --mode test && web-test-runner",
235
+ "test:ci": "yarn test --config web-test-runner.ci.config.js",
236
+ "test:watch": "yarn test --watch"
237
+ };
238
+ const dependencies = {
239
+ "@a11y/focus-trap": "^1.0.5",
240
+ "@lit/task": "^1.0.0",
241
+ "@vouchfor/canvas-video": "0.0.0-experiment.da12aaa",
242
+ "@vouchfor/media-player": "0.0.0-experiment.da12aaa",
243
+ uuid: "^9.0.1"
244
+ };
245
+ const peerDependencies = {
246
+ lit: "^3.1.2"
247
+ };
248
+ const devDependencies = {
249
+ "@esm-bundle/chai": "^4.3.4-fix.0",
250
+ "@open-wc/testing": "^4.0.0",
251
+ "@storybook/addon-essentials": "^8.0.4",
252
+ "@storybook/addon-links": "^8.0.4",
253
+ "@storybook/blocks": "^8.0.4",
254
+ "@storybook/web-components": "^8.0.4",
255
+ "@storybook/web-components-vite": "^8.0.4",
256
+ "@svgr/core": "^8.1.0",
257
+ "@types/flat": "^5.0.5",
258
+ "@types/mocha": "^10.0.6",
259
+ "@vouchfor/eslint-config": "^1.0.1",
260
+ "@vouchfor/prettier-config": "^1.0.1",
261
+ "@vouchfor/video-utils": "0.0.0-experiment.da12aaa",
262
+ "@web/dev-server-esbuild": "^1.0.2",
263
+ "@web/test-runner": "^0.18.1",
264
+ "@web/test-runner-browserstack": "^0.7.1",
265
+ "@web/test-runner-mocha": "^0.9.0",
266
+ "@web/test-runner-playwright": "^0.11.0",
267
+ glob: "^10.3.10",
268
+ "lint-staged": "^15.2.2",
269
+ lit: "^3.1.2",
270
+ lodash: "^4.17.21",
271
+ react: "^18.2.0",
272
+ "react-dom": "^18.2.0",
273
+ "rollup-plugin-tla": "^0.0.2",
274
+ sinon: "^17.0.1",
275
+ storybook: "^8.0.4",
276
+ svgson: "^5.3.1",
277
+ typescript: "^5.4.3",
278
+ vite: "^5.2.2",
279
+ "vite-plugin-commonjs": "^0.10.1",
280
+ "vite-plugin-dts": "^3.7.3",
281
+ "web-component-analyzer": "^2.0.0"
282
+ };
283
+ const packageJson = {
284
+ name,
285
+ version,
286
+ license,
287
+ author,
288
+ main,
289
+ module,
290
+ type,
291
+ types,
292
+ exports,
293
+ files,
294
+ publishConfig,
295
+ engines,
296
+ scripts,
297
+ "lint-staged": {
298
+ "**/*.{ts,tsx,js}": "eslint --fix --quiet",
299
+ "**/*.{md,json,yml}": "prettier --write"
300
+ },
301
+ dependencies,
302
+ peerDependencies,
303
+ devDependencies
304
+ };
305
+ function createVisitor(env) {
306
+ const { publicApiUrl } = getEnvUrls(env);
307
+ const visitorId = v4();
308
+ navigator.sendBeacon(`${publicApiUrl}/api/visitor`, JSON.stringify({ visitorId }));
309
+ return visitorId;
310
+ }
311
+ function getUids(env) {
312
+ var _a, _b, _c, _d, _e, _f, _g, _h, _i, _j, _k, _l;
313
+ if (typeof window === "undefined") {
314
+ return {
315
+ client: null,
316
+ tab: null,
317
+ request: v4()
318
+ };
319
+ }
320
+ let visitorId = (_b = (_a = window.localStorage) == null ? void 0 : _a.getItem) == null ? void 0 : _b.call(_a, "vouch-uid-visitor");
321
+ let clientId = (_d = (_c = window.localStorage) == null ? void 0 : _c.getItem) == null ? void 0 : _d.call(_c, "vouch-uid-client");
322
+ let tabId = (_f = (_e = window.sessionStorage) == null ? void 0 : _e.getItem) == null ? void 0 : _f.call(_e, "vouch-uid-tab");
323
+ const requestId = v4();
324
+ if (!visitorId) {
325
+ visitorId = createVisitor(env);
326
+ (_h = (_g = window.localStorage) == null ? void 0 : _g.setItem) == null ? void 0 : _h.call(_g, "vouch-uid-visitor", visitorId);
327
+ }
328
+ if (!clientId) {
329
+ clientId = v4();
330
+ (_j = (_i = window.localStorage) == null ? void 0 : _i.setItem) == null ? void 0 : _j.call(_i, "vouch-uid-client", clientId);
331
+ }
332
+ if (!tabId) {
333
+ tabId = v4();
334
+ (_l = (_k = window.sessionStorage) == null ? void 0 : _k.setItem) == null ? void 0 : _l.call(_k, "vouch-uid-tab", tabId);
335
+ }
336
+ return {
337
+ client: clientId,
338
+ tab: tabId,
339
+ request: requestId,
340
+ visitor: visitorId
341
+ };
342
+ }
343
+ function findVouchId(payload, vouch) {
344
+ if (payload && "vouchId" in payload) {
345
+ return payload.vouchId;
346
+ }
347
+ return (vouch == null ? void 0 : vouch.id) ?? null;
348
+ }
349
+ function getReportingMetadata(source = "embedded_player") {
350
+ var _a, _b;
351
+ const [country, region] = ((_b = (_a = Intl.DateTimeFormat().resolvedOptions().timeZone) == null ? void 0 : _a.split) == null ? void 0 : _b.call(_a, "/")) ?? [];
352
+ const utmParams = {};
353
+ [...new URLSearchParams(location.search).entries()].forEach(([key, value]) => {
354
+ if (/utm/.test(key)) {
355
+ const param = key.toLowerCase().replace(/[-_][a-z0-9]/g, (group) => group.slice(-1).toUpperCase());
356
+ utmParams[param] = value;
357
+ }
358
+ });
359
+ return {
360
+ source,
361
+ time: /* @__PURE__ */ new Date(),
362
+ region,
363
+ country,
364
+ screenHeight: window.screen.height,
365
+ screenWidth: window.screen.width,
366
+ referrer: document.referrer,
367
+ currentUrl: location.href,
368
+ embedType: "media-player-embed",
369
+ embedVersion: packageJson.version,
370
+ templateVersion: TEMPLATE_VERSION,
371
+ ...utmParams
372
+ };
373
+ }
374
+ const MINIMUM_SEND_THRESHOLD = 1;
375
+ class TrackingController {
376
+ constructor(host) {
377
+ this._batchedEvents = [];
378
+ this._hasPlayed = false;
379
+ this._hasLoaded = {};
380
+ this._answersViewed = {};
381
+ this._streamStartTime = {};
382
+ this._streamLatestTime = {};
383
+ this._currentlyPlayingVideo = null;
384
+ this._createTrackingEvent = (event, payload) => {
385
+ const vouchId = findVouchId(payload, this.host.vouch);
386
+ if (!vouchId || this.host.disableTracking) {
387
+ return;
388
+ }
389
+ this._batchedEvents.push({
390
+ event,
391
+ payload: {
392
+ ...payload,
393
+ vouchId,
394
+ time: (/* @__PURE__ */ new Date()).toISOString()
395
+ }
396
+ });
397
+ };
398
+ this._sendTrackingEvent = () => {
399
+ if (this._batchedEvents.length <= 0) {
400
+ return;
401
+ }
402
+ const { publicApiUrl } = getEnvUrls(this.host.env);
403
+ const { client, tab, request, visitor } = getUids(this.host.env);
404
+ navigator.sendBeacon(
405
+ `${publicApiUrl}/api/batchevents`,
406
+ JSON.stringify({
407
+ payload: {
408
+ events: this._batchedEvents
409
+ },
410
+ context: {
411
+ "x-uid-client": client,
412
+ "x-uid-tab": tab,
413
+ "x-uid-request": request,
414
+ "x-uid-visitor": visitor,
415
+ "x-reporting-metadata": getReportingMetadata(this.host.trackingSource)
416
+ }
417
+ })
418
+ );
419
+ this._batchedEvents = [];
420
+ };
421
+ this._streamEnded = () => {
422
+ if (this._currentlyPlayingVideo) {
423
+ const { id, key } = this._currentlyPlayingVideo;
424
+ if (this._streamLatestTime[key] > this._streamStartTime[key] + MINIMUM_SEND_THRESHOLD) {
425
+ this._createTrackingEvent("VIDEO_STREAMED", {
426
+ answerId: id,
427
+ streamStart: this._streamStartTime[key],
428
+ streamEnd: this._streamLatestTime[key]
429
+ });
430
+ }
431
+ delete this._streamStartTime[key];
432
+ delete this._streamLatestTime[key];
433
+ }
434
+ };
435
+ this._handleVouchLoaded = ({ detail: vouchId }) => {
436
+ if (!vouchId) {
437
+ return;
438
+ }
439
+ if (!this._hasLoaded[vouchId]) {
440
+ this._createTrackingEvent("VOUCH_LOADED", { vouchId });
441
+ this._hasLoaded[vouchId] = true;
442
+ }
443
+ };
444
+ this._handlePlay = () => {
445
+ if (!this._hasPlayed) {
446
+ this._createTrackingEvent("VIDEO_PLAYED", {
447
+ streamStart: this.host.currentTime
448
+ });
449
+ this._hasPlayed = true;
450
+ }
451
+ };
452
+ this._handleVideoPlay = ({ detail: { id, key } }) => {
453
+ if (!this._answersViewed[key]) {
454
+ this._createTrackingEvent("VOUCH_RESPONSE_VIEWED", {
455
+ answerId: id
456
+ });
457
+ this._answersViewed[key] = true;
458
+ }
459
+ };
460
+ this._handleVideoTimeUpdate = ({ detail: { id, key, node } }) => {
461
+ var _a, _b;
462
+ if (
463
+ // We only want to count any time that the video is actually playing
464
+ !this.host.paused && // Only update the latest time if this event fires for the currently active video
465
+ id === ((_b = (_a = this.host.scene) == null ? void 0 : _a.video) == null ? void 0 : _b.id)
466
+ ) {
467
+ this._currentlyPlayingVideo = { id, key, node };
468
+ this._streamLatestTime[key] = node.currentTime;
469
+ if (!this._streamStartTime[key]) {
470
+ this._streamStartTime[key] = node.currentTime;
471
+ this._streamLatestTime[key] = node.currentTime;
472
+ }
473
+ }
474
+ };
475
+ this._handleVideoPause = ({ detail: { id, key } }) => {
476
+ if (this._streamLatestTime[key] > this._streamStartTime[key] + MINIMUM_SEND_THRESHOLD) {
477
+ this._createTrackingEvent("VIDEO_STREAMED", {
478
+ answerId: id,
479
+ streamStart: this._streamStartTime[key],
480
+ streamEnd: this._streamLatestTime[key]
481
+ });
482
+ }
483
+ delete this._streamStartTime[key];
484
+ delete this._streamLatestTime[key];
485
+ };
486
+ this._pageUnloading = () => {
487
+ this._streamEnded();
488
+ this._sendTrackingEvent();
489
+ };
490
+ this._handleVisibilityChange = () => {
491
+ if (document.visibilityState === "hidden") {
492
+ this._pageUnloading();
493
+ }
494
+ };
495
+ this._handlePageHide = () => {
496
+ this._pageUnloading();
497
+ };
498
+ this.host = host;
499
+ host.addController(this);
500
+ }
501
+ hostConnected() {
502
+ requestAnimationFrame(() => {
503
+ var _a, _b, _c, _d;
504
+ if ("onvisibilitychange" in document) {
505
+ document.addEventListener("visibilitychange", this._handleVisibilityChange);
506
+ } else {
507
+ window.addEventListener("pagehide", this._handlePageHide);
508
+ }
509
+ this.host.addEventListener("vouch:loaded", this._handleVouchLoaded);
510
+ (_a = this.host.mediaPlayer) == null ? void 0 : _a.addEventListener("play", this._handlePlay);
511
+ (_b = this.host.mediaPlayer) == null ? void 0 : _b.addEventListener("video:play", this._handleVideoPlay);
512
+ (_c = this.host.mediaPlayer) == null ? void 0 : _c.addEventListener("video:pause", this._handleVideoPause);
513
+ (_d = this.host.mediaPlayer) == null ? void 0 : _d.addEventListener("video:timeupdate", this._handleVideoTimeUpdate);
514
+ });
515
+ }
516
+ hostDisconnected() {
517
+ var _a, _b, _c, _d;
518
+ this._pageUnloading();
519
+ if ("onvisibilitychange" in document) {
520
+ document.removeEventListener("visibilitychange", this._handleVisibilityChange);
521
+ } else {
522
+ window.removeEventListener("pagehide", this._handlePageHide);
523
+ }
524
+ this.host.removeEventListener("vouch:loaded", this._handleVouchLoaded);
525
+ (_a = this.host.mediaPlayer) == null ? void 0 : _a.removeEventListener("play", this._handlePlay);
526
+ (_b = this.host.mediaPlayer) == null ? void 0 : _b.removeEventListener("video:play", this._handleVideoPlay);
527
+ (_c = this.host.mediaPlayer) == null ? void 0 : _c.removeEventListener("video:pause", this._handleVideoPause);
528
+ (_d = this.host.mediaPlayer) == null ? void 0 : _d.removeEventListener("video:timeupdate", this._handleVideoTimeUpdate);
529
+ }
530
+ }
531
+ var __defProp$3 = Object.defineProperty;
532
+ var __getOwnPropDesc$3 = Object.getOwnPropertyDescriptor;
533
+ var __decorateClass$3 = (decorators, target, key, kind) => {
534
+ var result = kind > 1 ? void 0 : kind ? __getOwnPropDesc$3(target, key) : target;
535
+ for (var i = decorators.length - 1, decorator; i >= 0; i--)
536
+ if (decorator = decorators[i])
537
+ result = (kind ? decorator(target, key, result) : decorator(result)) || result;
538
+ if (kind && result)
539
+ __defProp$3(target, key, result);
540
+ return result;
541
+ };
542
+ let PlayerEmbed = class extends LitElement {
543
+ constructor() {
544
+ super(...arguments);
545
+ this.env = "prod";
546
+ this.apiKey = "";
547
+ this.disableTracking = false;
548
+ this.trackingSource = "embedded_player";
549
+ this.preload = "auto";
550
+ this.autoplay = false;
551
+ this.aspectRatio = 0;
552
+ this.eventController = new EventForwardController(this, [
553
+ "durationchange",
554
+ "ended",
555
+ "error",
556
+ "loadeddata",
557
+ "pause",
558
+ "stalled",
559
+ "play",
560
+ "playing",
561
+ "ratechange",
562
+ "scenechange",
563
+ "scenesupdate",
564
+ "seeking",
565
+ "seeked",
566
+ "timeupdate",
567
+ "volumechange",
568
+ "processing",
569
+ "waiting",
570
+ "video:loadeddata",
571
+ "video:seeking",
572
+ "video:seeked",
573
+ "video:play",
574
+ "video:playing",
575
+ "video:pause",
576
+ "video:stalled",
577
+ "video:timeupdate",
578
+ "video:ended",
579
+ "video:error"
580
+ ]);
581
+ this._fetcherController = new FetcherController(this);
582
+ this._trackingController = new TrackingController(this);
583
+ this._mediaPlayerRef = createRef();
584
+ }
585
+ get fetching() {
586
+ return this._fetcherController.fetching;
587
+ }
588
+ get waiting() {
589
+ var _a;
590
+ return (_a = this._mediaPlayerRef.value) == null ? void 0 : _a.waiting;
591
+ }
592
+ get initialised() {
593
+ var _a;
594
+ return (_a = this._mediaPlayerRef.value) == null ? void 0 : _a.initialised;
595
+ }
596
+ get seeking() {
597
+ var _a;
598
+ return (_a = this._mediaPlayerRef.value) == null ? void 0 : _a.seeking;
599
+ }
600
+ get paused() {
601
+ var _a;
602
+ return (_a = this._mediaPlayerRef.value) == null ? void 0 : _a.paused;
603
+ }
604
+ get captions() {
605
+ var _a;
606
+ return (_a = this._mediaPlayerRef.value) == null ? void 0 : _a.captions;
607
+ }
608
+ get fullscreen() {
609
+ var _a;
610
+ return (_a = this._mediaPlayerRef.value) == null ? void 0 : _a.fullscreen;
611
+ }
612
+ get duration() {
613
+ var _a;
614
+ return (_a = this._mediaPlayerRef.value) == null ? void 0 : _a.duration;
615
+ }
616
+ set currentTime(value) {
617
+ if (this._mediaPlayerRef.value) {
618
+ this._mediaPlayerRef.value.currentTime = value;
619
+ }
620
+ }
621
+ get currentTime() {
622
+ var _a;
623
+ return ((_a = this._mediaPlayerRef.value) == null ? void 0 : _a.currentTime) ?? 0;
624
+ }
625
+ set playbackRate(value) {
626
+ if (this._mediaPlayerRef.value) {
627
+ this._mediaPlayerRef.value.playbackRate = value;
628
+ }
629
+ }
630
+ get playbackRate() {
631
+ var _a;
632
+ return ((_a = this._mediaPlayerRef.value) == null ? void 0 : _a.playbackRate) ?? 1;
633
+ }
634
+ set volume(value) {
635
+ if (this._mediaPlayerRef.value) {
636
+ this._mediaPlayerRef.value.volume = value;
637
+ }
638
+ }
639
+ get volume() {
640
+ var _a;
641
+ return ((_a = this._mediaPlayerRef.value) == null ? void 0 : _a.volume) ?? 1;
642
+ }
643
+ set muted(value) {
644
+ if (this._mediaPlayerRef.value) {
645
+ this._mediaPlayerRef.value.muted = value;
646
+ }
647
+ }
648
+ get muted() {
649
+ var _a;
650
+ return ((_a = this._mediaPlayerRef.value) == null ? void 0 : _a.muted) ?? false;
651
+ }
652
+ get scene() {
653
+ var _a;
654
+ return ((_a = this._mediaPlayerRef.value) == null ? void 0 : _a.scene) ?? null;
655
+ }
656
+ get scenes() {
657
+ var _a;
658
+ return ((_a = this._mediaPlayerRef.value) == null ? void 0 : _a.scenes) ?? [];
659
+ }
660
+ get sceneConfig() {
661
+ var _a;
662
+ return ((_a = this._mediaPlayerRef.value) == null ? void 0 : _a.sceneConfig) ?? null;
663
+ }
664
+ get videoState() {
665
+ var _a;
666
+ return (_a = this._mediaPlayerRef.value) == null ? void 0 : _a.videoState;
667
+ }
668
+ get mediaPlayer() {
669
+ return this._mediaPlayerRef.value;
670
+ }
671
+ play() {
672
+ var _a;
673
+ (_a = this._mediaPlayerRef.value) == null ? void 0 : _a.play();
674
+ }
675
+ pause() {
676
+ var _a;
677
+ (_a = this._mediaPlayerRef.value) == null ? void 0 : _a.pause();
678
+ }
679
+ reset(time = 0, play = false) {
680
+ var _a;
681
+ (_a = this._mediaPlayerRef.value) == null ? void 0 : _a.reset(time, play);
682
+ }
683
+ setScene(index) {
684
+ var _a;
685
+ (_a = this._mediaPlayerRef.value) == null ? void 0 : _a.setScene(index);
686
+ }
687
+ _renderStyles() {
688
+ if (!this.aspectRatio) {
689
+ return html`
690
+ <style>
691
+ :host {
692
+ width: 100%;
693
+ height: 100%;
694
+ }
695
+ </style>
696
+ `;
697
+ }
698
+ if (typeof this.aspectRatio === "number") {
699
+ return html`
700
+ <style>
701
+ :host {
702
+ aspect-ratio: ${this.aspectRatio};
703
+ }
704
+ </style>
705
+ `;
706
+ }
707
+ return null;
708
+ }
709
+ render() {
710
+ return html`
711
+ ${this._renderStyles()}
712
+ <vmp-media-player
713
+ ${ref(this._mediaPlayerRef)}
714
+ ${this.eventController.register()}
715
+ ?autoplay=${this.autoplay}
716
+ ?loading=${this.fetching}
717
+ .data=${this.vouch}
718
+ .template=${this.template}
719
+ aspectRatio=${ifDefined(this.aspectRatio)}
720
+ preload=${ifDefined(this.preload)}
721
+ language=${ifDefined(this.language)}
722
+ .controls=${this.controls}
723
+ ></vmp-media-player>
724
+ `;
725
+ }
726
+ };
727
+ PlayerEmbed.styles = [
728
+ css`
729
+ :host {
730
+ display: flex;
731
+ }
732
+ `
733
+ ];
734
+ __decorateClass$3([
735
+ property({ type: Object })
736
+ ], PlayerEmbed.prototype, "data", 2);
737
+ __decorateClass$3([
738
+ property({ type: String })
739
+ ], PlayerEmbed.prototype, "vouchId", 2);
740
+ __decorateClass$3([
741
+ property({ type: String })
742
+ ], PlayerEmbed.prototype, "templateId", 2);
743
+ __decorateClass$3([
744
+ property({ type: Array })
745
+ ], PlayerEmbed.prototype, "questions", 2);
746
+ __decorateClass$3([
747
+ property({ type: String })
748
+ ], PlayerEmbed.prototype, "env", 2);
749
+ __decorateClass$3([
750
+ property({ type: String })
751
+ ], PlayerEmbed.prototype, "apiKey", 2);
752
+ __decorateClass$3([
753
+ property({ type: Boolean })
754
+ ], PlayerEmbed.prototype, "disableTracking", 2);
755
+ __decorateClass$3([
756
+ property({ type: String })
757
+ ], PlayerEmbed.prototype, "trackingSource", 2);
758
+ __decorateClass$3([
759
+ property({ type: Array })
760
+ ], PlayerEmbed.prototype, "controls", 2);
761
+ __decorateClass$3([
762
+ property({ type: String })
763
+ ], PlayerEmbed.prototype, "preload", 2);
764
+ __decorateClass$3([
765
+ property({ type: Boolean })
766
+ ], PlayerEmbed.prototype, "autoplay", 2);
767
+ __decorateClass$3([
768
+ property({ type: Number })
769
+ ], PlayerEmbed.prototype, "aspectRatio", 2);
770
+ __decorateClass$3([
771
+ property({ type: String })
772
+ ], PlayerEmbed.prototype, "language", 2);
773
+ __decorateClass$3([
774
+ state()
775
+ ], PlayerEmbed.prototype, "vouch", 2);
776
+ __decorateClass$3([
777
+ state()
778
+ ], PlayerEmbed.prototype, "template", 2);
779
+ PlayerEmbed = __decorateClass$3([
780
+ customElement("vouch-embed-player")
781
+ ], PlayerEmbed);
782
+ var __defProp$2 = Object.defineProperty;
783
+ var __getOwnPropDesc$2 = Object.getOwnPropertyDescriptor;
784
+ var __decorateClass$2 = (decorators, target, key, kind) => {
785
+ var result = kind > 1 ? void 0 : kind ? __getOwnPropDesc$2(target, key) : target;
786
+ for (var i = decorators.length - 1, decorator; i >= 0; i--)
787
+ if (decorator = decorators[i])
788
+ result = (kind ? decorator(target, key, result) : decorator(result)) || result;
789
+ if (kind && result)
790
+ __defProp$2(target, key, result);
791
+ return result;
792
+ };
793
+ let DialogOverlay = class extends LitElement {
794
+ constructor() {
795
+ super(...arguments);
796
+ this.open = false;
797
+ this.aspectRatio = 0;
798
+ }
799
+ render() {
800
+ return html`
801
+ <div
802
+ class=${classMap({
803
+ container: true,
804
+ hidden: !this.open
805
+ })}
806
+ >
807
+ <div
808
+ class="background"
809
+ @click=${() => this.dispatchEvent(new CustomEvent("overlay:click", { bubbles: true, composed: true }))}
810
+ ></div>
811
+ <focus-trap>
812
+ <div
813
+ class=${classMap({
814
+ "video-frame": true,
815
+ grow: this.aspectRatio === 0
816
+ })}
817
+ style=${styleMap({
818
+ aspectRatio: this.aspectRatio
819
+ })}
820
+ >
821
+ <slot></slot>
822
+ <vmp-icon-button
823
+ icon="close"
824
+ rounded="full"
825
+ weight="heavy"
826
+ @click=${() => this.dispatchEvent(new CustomEvent("close:click", { bubbles: true, composed: true }))}
827
+ ></vmp-icon-button>
828
+ </div>
829
+ </focus-trap>
830
+ </div>
831
+ `;
832
+ }
833
+ };
834
+ DialogOverlay.styles = [
835
+ css`
836
+ :host {
837
+ --vouch-media-player-border-radius: var(--vu-media-player-border-radius, 12px);
838
+ --overlay-background-color: var(--vu-overlay-background-color, black);
839
+ --overlay-background-opacity: var(--vu-overlay-background-opacity, 0.4);
840
+
841
+ --dialog-width: var(--vu-dialog-width, 890px);
842
+ --dialog-height: var(--vu-dialog-height, 500px);
843
+ }
844
+
845
+ .container {
846
+ position: fixed;
847
+ display: flex;
848
+ inset: 0;
849
+ opacity: 1;
850
+ z-index: 2147483647;
851
+ align-items: center;
852
+ justify-content: center;
853
+ transition: opacity 100ms ease-in;
854
+ }
855
+
856
+ .hidden {
857
+ opacity: 0;
858
+ pointer-events: none;
859
+ }
860
+
861
+ .background {
862
+ position: absolute;
863
+ inset: 0;
864
+ opacity: var(--overlay-background-opacity);
865
+ background-color: var(--overlay-background-color);
866
+ }
867
+
868
+ focus-trap {
869
+ display: flex;
870
+ align-items: center;
871
+ justify-content: center;
872
+ margin: 40px;
873
+ width: var(--dialog-width);
874
+ height: var(--dialog-height);
875
+ max-width: calc(100% - 80px);
876
+ max-height: calc(100% - 80px);
877
+ }
878
+
879
+ .video-frame {
880
+ position: relative;
881
+ display: flex;
882
+ align-items: center;
883
+ justify-content: center;
884
+ max-width: 100%;
885
+ max-height: 100%;
886
+ }
887
+
888
+ .video-frame.grow {
889
+ width: 100%;
890
+ height: 100%;
891
+ }
892
+
893
+ vmp-icon-button {
894
+ position: absolute;
895
+ top: 0;
896
+ right: 0;
897
+ margin: 10px;
898
+ }
899
+ `
900
+ ];
901
+ __decorateClass$2([
902
+ property({ type: Boolean })
903
+ ], DialogOverlay.prototype, "open", 2);
904
+ __decorateClass$2([
905
+ property({ type: Number })
906
+ ], DialogOverlay.prototype, "aspectRatio", 2);
907
+ DialogOverlay = __decorateClass$2([
908
+ customElement("vouch-embed-dialog-overlay")
909
+ ], DialogOverlay);
910
+ var __defProp$1 = Object.defineProperty;
911
+ var __getOwnPropDesc$1 = Object.getOwnPropertyDescriptor;
912
+ var __decorateClass$1 = (decorators, target, key, kind) => {
913
+ var result = kind > 1 ? void 0 : kind ? __getOwnPropDesc$1(target, key) : target;
914
+ for (var i = decorators.length - 1, decorator; i >= 0; i--)
915
+ if (decorator = decorators[i])
916
+ result = (kind ? decorator(target, key, result) : decorator(result)) || result;
917
+ if (kind && result)
918
+ __defProp$1(target, key, result);
919
+ return result;
920
+ };
921
+ let DialogPortal = class extends LitElement {
922
+ constructor() {
923
+ super(...arguments);
924
+ this.env = "prod";
925
+ this.apiKey = "";
926
+ this.disableTracking = false;
927
+ this.trackingSource = "embedded_player";
928
+ this.preload = "none";
929
+ this.disableAutoplay = false;
930
+ this.aspectRatio = 0;
931
+ this._mediaPlayerRef = createRef();
932
+ this.open = false;
933
+ this._handleToggle = ({ detail }) => {
934
+ var _a, _b, _c;
935
+ if (this.id === detail) {
936
+ this.open = !this.open;
937
+ if (this.open) {
938
+ if (!this.disableAutoplay && ((_a = this._mediaPlayerRef) == null ? void 0 : _a.value)) {
939
+ this._mediaPlayerRef.value.muted = false;
940
+ this._mediaPlayerRef.value.play();
941
+ }
942
+ } else {
943
+ (_c = (_b = this._mediaPlayerRef) == null ? void 0 : _b.value) == null ? void 0 : _c.pause();
944
+ }
945
+ }
946
+ };
947
+ this._handleClose = () => {
948
+ var _a, _b;
949
+ this.open = false;
950
+ (_b = (_a = this._mediaPlayerRef) == null ? void 0 : _a.value) == null ? void 0 : _b.pause();
951
+ };
952
+ this._handleDocumentKeyUp = (e) => {
953
+ if (e.key === "Escape") {
954
+ this._handleClose();
955
+ }
956
+ };
957
+ }
958
+ connectedCallback() {
959
+ super.connectedCallback();
960
+ document.addEventListener("dialogembed:click", this._handleToggle);
961
+ document.addEventListener("keyup", this._handleDocumentKeyUp);
962
+ document.addEventListener("close:click", this._handleClose);
963
+ document.addEventListener("overlay:click", this._handleClose);
964
+ }
965
+ disconnectedCallback() {
966
+ super.disconnectedCallback();
967
+ document.removeEventListener("dialogembed:click", this._handleToggle);
968
+ document.removeEventListener("keyup", this._handleDocumentKeyUp);
969
+ document.removeEventListener("close:click", this._handleClose);
970
+ document.removeEventListener("overlay:click", this._handleClose);
971
+ }
972
+ createRenderRoot() {
973
+ const newNode = document.createElement("div");
974
+ document.body.appendChild(newNode);
975
+ return newNode;
976
+ }
977
+ render() {
978
+ return html`
979
+ <vouch-embed-dialog-overlay ?open=${this.open} aspectRatio=${this.aspectRatio}>
980
+ <vouch-embed-player
981
+ ${ref(this._mediaPlayerRef)}
982
+ style=${styleMap({
983
+ maxWidth: "100%",
984
+ maxHeight: "100%"
985
+ })}
986
+ ?autoplay=${false}
987
+ vouchId=${ifDefined(this.vouchId)}
988
+ templateId=${ifDefined(this.templateId)}
989
+ .questions=${this.questions}
990
+ .controls=${this.controls}
991
+ env=${ifDefined(this.env)}
992
+ apiKey=${ifDefined(this.apiKey)}
993
+ ?disableTracking=${this.disableTracking}
994
+ trackingSource=${ifDefined(this.trackingSource)}
995
+ preload=${ifDefined(this.preload)}
996
+ aspectRatio=${this.aspectRatio}
997
+ ></vouch-embed-player>
998
+ </vouch-embed-dialog-overlay>
999
+ `;
1000
+ }
1001
+ };
1002
+ __decorateClass$1([
1003
+ property({ type: String })
1004
+ ], DialogPortal.prototype, "vouchId", 2);
1005
+ __decorateClass$1([
1006
+ property({ type: String })
1007
+ ], DialogPortal.prototype, "templateId", 2);
1008
+ __decorateClass$1([
1009
+ property({ type: Array })
1010
+ ], DialogPortal.prototype, "questions", 2);
1011
+ __decorateClass$1([
1012
+ property({ type: String })
1013
+ ], DialogPortal.prototype, "env", 2);
1014
+ __decorateClass$1([
1015
+ property({ type: String })
1016
+ ], DialogPortal.prototype, "apiKey", 2);
1017
+ __decorateClass$1([
1018
+ property({ type: Boolean })
1019
+ ], DialogPortal.prototype, "disableTracking", 2);
1020
+ __decorateClass$1([
1021
+ property({ type: String })
1022
+ ], DialogPortal.prototype, "trackingSource", 2);
1023
+ __decorateClass$1([
1024
+ property({ type: Array })
1025
+ ], DialogPortal.prototype, "controls", 2);
1026
+ __decorateClass$1([
1027
+ property({ type: String })
1028
+ ], DialogPortal.prototype, "preload", 2);
1029
+ __decorateClass$1([
1030
+ property({ type: Boolean })
1031
+ ], DialogPortal.prototype, "disableAutoplay", 2);
1032
+ __decorateClass$1([
1033
+ property({ type: Number })
1034
+ ], DialogPortal.prototype, "aspectRatio", 2);
1035
+ __decorateClass$1([
1036
+ state()
1037
+ ], DialogPortal.prototype, "open", 2);
1038
+ DialogPortal = __decorateClass$1([
1039
+ customElement("vouch-embed-dialog-portal")
1040
+ ], DialogPortal);
1041
+ var __defProp = Object.defineProperty;
1042
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
1043
+ var __decorateClass = (decorators, target, key, kind) => {
1044
+ var result = kind > 1 ? void 0 : kind ? __getOwnPropDesc(target, key) : target;
1045
+ for (var i = decorators.length - 1, decorator; i >= 0; i--)
1046
+ if (decorator = decorators[i])
1047
+ result = (kind ? decorator(target, key, result) : decorator(result)) || result;
1048
+ if (kind && result)
1049
+ __defProp(target, key, result);
1050
+ return result;
1051
+ };
1052
+ let DialogEmbed = class extends LitElement {
1053
+ constructor() {
1054
+ super(...arguments);
1055
+ this.env = "prod";
1056
+ this.apiKey = "";
1057
+ this.disableTracking = false;
1058
+ this.trackingSource = "embedded_player";
1059
+ this.preload = "none";
1060
+ this.disableAutoplay = false;
1061
+ this.aspectRatio = 0;
1062
+ this._id = v4();
1063
+ this._handleRootClick = () => {
1064
+ this.dispatchEvent(new CustomEvent("dialogembed:click", { detail: this._id, bubbles: true, composed: true }));
1065
+ };
1066
+ }
1067
+ connectedCallback() {
1068
+ super.connectedCallback();
1069
+ this.addEventListener("click", this._handleRootClick);
1070
+ }
1071
+ disconnectedCallback() {
1072
+ super.disconnectedCallback();
1073
+ this.removeEventListener("click", this._handleRootClick);
1074
+ }
1075
+ render() {
1076
+ return html`
1077
+ <slot>
1078
+ <vmp-button size="large">Play</vmp-button>
1079
+ </slot>
1080
+ <vouch-embed-dialog-portal
1081
+ id=${this._id}
1082
+ ?autoplay=${false}
1083
+ vouchId=${ifDefined(this.vouchId)}
1084
+ templateId=${ifDefined(this.templateId)}
1085
+ .questions=${this.questions}
1086
+ .controls=${this.controls}
1087
+ env=${ifDefined(this.env)}
1088
+ apiKey=${ifDefined(this.apiKey)}
1089
+ ?disableTracking=${this.disableTracking}
1090
+ trackingSource=${ifDefined(this.trackingSource)}
1091
+ preload=${ifDefined(this.preload)}
1092
+ aspectRatio=${this.aspectRatio}
1093
+ ></vouch-embed-dialog-portal>
1094
+ `;
1095
+ }
1096
+ };
1097
+ DialogEmbed.styles = [
1098
+ css`
1099
+ :host {
1100
+ --vu-button-padding: 10px 20px;
1101
+ --vu-button-background: #287179;
1102
+ --vu-button-background-hover: #4faab2;
1103
+
1104
+ display: flex;
1105
+ width: fit-content;
1106
+ height: fit-content;
1107
+ }
1108
+ `
1109
+ ];
1110
+ __decorateClass([
1111
+ property({ type: String })
1112
+ ], DialogEmbed.prototype, "vouchId", 2);
1113
+ __decorateClass([
1114
+ property({ type: String })
1115
+ ], DialogEmbed.prototype, "templateId", 2);
1116
+ __decorateClass([
1117
+ property({ type: Array })
1118
+ ], DialogEmbed.prototype, "questions", 2);
1119
+ __decorateClass([
1120
+ property({ type: String })
1121
+ ], DialogEmbed.prototype, "env", 2);
1122
+ __decorateClass([
1123
+ property({ type: String })
1124
+ ], DialogEmbed.prototype, "apiKey", 2);
1125
+ __decorateClass([
1126
+ property({ type: Boolean })
1127
+ ], DialogEmbed.prototype, "disableTracking", 2);
1128
+ __decorateClass([
1129
+ property({ type: String })
1130
+ ], DialogEmbed.prototype, "trackingSource", 2);
1131
+ __decorateClass([
1132
+ property({ type: Array })
1133
+ ], DialogEmbed.prototype, "controls", 2);
1134
+ __decorateClass([
1135
+ property({ type: String })
1136
+ ], DialogEmbed.prototype, "preload", 2);
1137
+ __decorateClass([
1138
+ property({ type: Boolean })
1139
+ ], DialogEmbed.prototype, "disableAutoplay", 2);
1140
+ __decorateClass([
1141
+ property({ type: Number })
1142
+ ], DialogEmbed.prototype, "aspectRatio", 2);
1143
+ DialogEmbed = __decorateClass([
1144
+ customElement("vouch-embed-dialog")
1145
+ ], DialogEmbed);
8
1146
  export {
9
- a as Embed
1147
+ DialogEmbed,
1148
+ PlayerEmbed
10
1149
  };
11
1150
  //# sourceMappingURL=embeds.js.map