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

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.
@@ -4,6 +4,7 @@ type EmbedHost = ReactiveControllerHost & Embed;
4
4
  declare class FetcherController {
5
5
  host: EmbedHost;
6
6
  private _fetching;
7
+ private _vouch;
7
8
  set fetching(value: boolean);
8
9
  get fetching(): boolean;
9
10
  private getVouch;
@@ -9,12 +9,15 @@ type EmbedProps = Pick<MediaPlayerProps, 'data' | 'aspectRatio' | 'preload' | 'a
9
9
  trackingSource?: string;
10
10
  vouchId?: string;
11
11
  templateId?: string;
12
+ questions?: number[];
12
13
  };
13
14
  declare class Embed extends LitElement {
15
+ static styles: import("lit").CSSResult[];
14
16
  private _mediaPlayerRef;
15
17
  data: EmbedProps['data'];
16
18
  vouchId: EmbedProps['vouchId'];
17
19
  templateId: EmbedProps['templateId'];
20
+ questions: EmbedProps['questions'];
18
21
  env: EmbedProps['env'];
19
22
  apiKey: EmbedProps['apiKey'];
20
23
  disableTracking: EmbedProps['disableTracking'];