@vouchfor/embeds 0.0.0-experiment.af36011 → 0.0.0-experiment.b192b60

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.
Files changed (77) hide show
  1. package/dist/es/browser-e3bc90da.js +433 -0
  2. package/dist/es/browser-e3bc90da.js.map +1 -0
  3. package/dist/es/embeds.js +10 -1521
  4. package/dist/es/embeds.js.map +1 -1
  5. package/dist/es/index-9c051786.js +10478 -0
  6. package/dist/es/index-9c051786.js.map +1 -0
  7. package/dist/es/src/components/DialogEmbed/DialogOverlay.d.ts +19 -0
  8. package/dist/es/src/components/DialogEmbed/DialogPortal.d.ts +35 -0
  9. package/dist/es/src/components/DialogEmbed/index.d.ts +35 -0
  10. package/dist/es/src/components/PlayerEmbed/controllers/event-forwarder.d.ts +15 -0
  11. package/dist/es/{components/Embed → src/components/PlayerEmbed}/controllers/fetcher.d.ts +5 -4
  12. package/dist/es/src/components/PlayerEmbed/controllers/tracking/index.d.ts +36 -0
  13. package/dist/es/src/components/PlayerEmbed/controllers/tracking/utils.d.ts +17 -0
  14. package/dist/es/src/components/PlayerEmbed/tests/data.d.ts +3 -0
  15. package/dist/es/src/index.d.ts +2 -0
  16. package/dist/iife/dialog-embed/browser-aa8d9e98.js +433 -0
  17. package/dist/iife/dialog-embed/browser-aa8d9e98.js.map +1 -0
  18. package/dist/iife/dialog-embed/embed.iife.js +1721 -0
  19. package/dist/iife/dialog-embed/embed.iife.js.map +1 -0
  20. package/dist/iife/dialog-embed/embed.js +5 -0
  21. package/dist/iife/dialog-embed/embed.js.map +1 -0
  22. package/dist/iife/dialog-embed/index-8e10ace8.js +32935 -0
  23. package/dist/iife/dialog-embed/index-8e10ace8.js.map +1 -0
  24. package/dist/iife/dialog-embed/src/components/DialogEmbed/DialogOverlay.d.ts +19 -0
  25. package/dist/iife/dialog-embed/src/components/DialogEmbed/DialogPortal.d.ts +35 -0
  26. package/dist/iife/dialog-embed/src/components/DialogEmbed/index.d.ts +35 -0
  27. package/dist/iife/dialog-embed/src/components/PlayerEmbed/controllers/event-forwarder.d.ts +15 -0
  28. package/dist/iife/dialog-embed/src/components/PlayerEmbed/controllers/fetcher.d.ts +14 -0
  29. package/dist/iife/dialog-embed/src/components/PlayerEmbed/controllers/tracking/index.d.ts +36 -0
  30. package/dist/iife/dialog-embed/src/components/PlayerEmbed/controllers/tracking/utils.d.ts +17 -0
  31. package/dist/iife/dialog-embed/src/components/PlayerEmbed/tests/data.d.ts +3 -0
  32. package/dist/iife/dialog-embed/src/index.d.ts +2 -0
  33. package/dist/iife/dialog-embed/src/utils/env.d.ts +12 -0
  34. package/dist/iife/dialog-embed/src/utils/events.d.ts +2 -0
  35. package/dist/iife/embeds.iife.js +633 -342
  36. package/dist/iife/embeds.iife.js.map +1 -1
  37. package/dist/iife/player-embed/browser-df9ae2d4.js +433 -0
  38. package/dist/iife/player-embed/browser-df9ae2d4.js.map +1 -0
  39. package/dist/iife/player-embed/embed.iife.js +1585 -0
  40. package/dist/iife/player-embed/embed.iife.js.map +1 -0
  41. package/dist/iife/player-embed/embed.js +5 -0
  42. package/dist/iife/player-embed/embed.js.map +1 -0
  43. package/dist/iife/player-embed/index-9a5cdb16.js +32492 -0
  44. package/dist/iife/player-embed/index-9a5cdb16.js.map +1 -0
  45. package/dist/iife/player-embed/src/components/DialogEmbed/DialogOverlay.d.ts +19 -0
  46. package/dist/iife/player-embed/src/components/DialogEmbed/DialogPortal.d.ts +35 -0
  47. package/dist/iife/player-embed/src/components/DialogEmbed/index.d.ts +35 -0
  48. package/dist/iife/player-embed/src/components/PlayerEmbed/controllers/event-forwarder.d.ts +15 -0
  49. package/dist/iife/player-embed/src/components/PlayerEmbed/controllers/fetcher.d.ts +14 -0
  50. package/dist/iife/player-embed/src/components/PlayerEmbed/controllers/tracking/index.d.ts +36 -0
  51. package/dist/iife/player-embed/src/components/PlayerEmbed/controllers/tracking/utils.d.ts +17 -0
  52. package/dist/iife/player-embed/src/components/PlayerEmbed/tests/data.d.ts +3 -0
  53. package/dist/iife/player-embed/src/index.d.ts +2 -0
  54. package/dist/iife/player-embed/src/utils/env.d.ts +12 -0
  55. package/dist/iife/player-embed/src/utils/events.d.ts +2 -0
  56. package/package.json +13 -5
  57. package/src/components/DialogEmbed/Dialog.stories.ts +79 -0
  58. package/src/components/DialogEmbed/DialogOverlay.ts +130 -0
  59. package/src/components/DialogEmbed/DialogPortal.ts +114 -0
  60. package/src/components/DialogEmbed/index.ts +93 -0
  61. package/src/components/{Embed/Embed.stories.ts → PlayerEmbed/PlayerEmbed.stories.ts} +27 -14
  62. package/src/components/{Embed → PlayerEmbed}/controllers/event-forwarder.ts +6 -5
  63. package/src/components/{Embed → PlayerEmbed}/controllers/fetcher.ts +36 -17
  64. package/src/components/PlayerEmbed/controllers/tracking/index.ts +224 -0
  65. package/src/components/PlayerEmbed/controllers/tracking/utils.ts +95 -0
  66. package/src/components/PlayerEmbed/index.ts +149 -0
  67. package/src/components/PlayerEmbed/tests/PlayerEmbed.spec.ts +80 -0
  68. package/src/components/PlayerEmbed/tests/data.ts +183 -0
  69. package/src/index.ts +2 -1
  70. package/src/mixins/media-player-proxy.ts +116 -0
  71. package/dist/es/components/Embed/controllers/tracking.d.ts +0 -30
  72. package/dist/es/components/Embed/index.d.ts +0 -66
  73. package/dist/es/index.d.ts +0 -1
  74. package/src/components/Embed/controllers/tracking.ts +0 -306
  75. package/src/components/Embed/index.ts +0 -202
  76. /package/dist/es/{utils → src/utils}/env.d.ts +0 -0
  77. /package/dist/es/{utils → src/utils}/events.d.ts +0 -0
@@ -1,306 +0,0 @@
1
- /* eslint-disable max-lines */
2
- import { v4 as uuidv4 } from 'uuid';
3
-
4
- import type { Embed } from '..';
5
- import type { VideoEventDetail } from '@vouchfor/media-player';
6
- import type { ReactiveController, ReactiveControllerHost } from 'lit';
7
-
8
- import { getEnvUrls } from '~/utils/env';
9
-
10
- const STREAMED_THROTTLE = 10000;
11
-
12
- type EmbedHost = ReactiveControllerHost & Embed;
13
-
14
- type TrackingEvent = 'VOUCH_LOADED' | 'VOUCH_RESPONSE_VIEWED' | 'VIDEO_PLAYED' | 'VIDEO_STREAMED';
15
- type TrackingPayload = {
16
- vouchId: string;
17
- answerId?: string;
18
- streamStart?: number;
19
- streamEnd?: number;
20
- };
21
-
22
- type TimeMap = {
23
- [key: string]: number;
24
- };
25
-
26
- type BooleanMap = {
27
- [key: string]: boolean;
28
- };
29
-
30
- class TrackingController implements ReactiveController {
31
- host: EmbedHost;
32
-
33
- private _tabId: string | undefined = undefined;
34
- private _clientId: string | undefined = undefined;
35
- private _visitorId: string | undefined = undefined;
36
-
37
- private _hasPlayed = false;
38
- private _hasLoaded: BooleanMap = {};
39
- private _answersViewed: BooleanMap = {};
40
- private _streamedTime: TimeMap = {};
41
- private _streamLatestTime: TimeMap = {};
42
- private _streamedPrevTimestamp: TimeMap = {};
43
-
44
- constructor(host: EmbedHost) {
45
- this.host = host;
46
- host.addController(this);
47
- }
48
-
49
- private _findVouchId() {
50
- if (this.host.vouch) {
51
- if ('uuid' in this.host.vouch) {
52
- return this.host.vouch.uuid;
53
- }
54
- return this.host.vouch.id;
55
- }
56
- }
57
-
58
- private _createVisitor = (visitorId: string) => {
59
- const { publicApiUrl } = getEnvUrls(this.host.env);
60
- window.localStorage?.setItem?.('vouch-uid-visitor', visitorId);
61
- navigator.sendBeacon(`${publicApiUrl}/api/visitor`, JSON.stringify({ visitorId }));
62
- return visitorId;
63
- };
64
-
65
- private _getUids() {
66
- if (typeof window === 'undefined') {
67
- return {
68
- client: null,
69
- tab: null,
70
- request: uuidv4()
71
- };
72
- }
73
-
74
- // Persisted for a user for the same device + browser, so we can e.g. search for all logs related to that browser
75
- const visitorId =
76
- this._visitorId || window.localStorage?.getItem?.('vouch-uid-visitor') || this._createVisitor(uuidv4());
77
- // Persisted for a user for the same device + browser, so we can e.g. search for all logs related to that browser
78
- const clientId = this._clientId || window.localStorage?.getItem?.('vouch-uid-client') || uuidv4();
79
- // Persisted in session storage, so we can search for everything the user has done in a specific tab
80
- const tabId = this._tabId || window.sessionStorage?.getItem?.('vouch-uid-tab') || uuidv4();
81
- // Not persisted, allows us to search for any logs related to a single FE request
82
- // E.g. BE should pass this request ID through all other services to be able to group logs
83
- const requestId = uuidv4();
84
-
85
- // Cache and persist uids
86
- if (visitorId !== this._visitorId) {
87
- this._visitorId = visitorId;
88
- window.localStorage?.setItem?.('vouch-uid-visitor', visitorId);
89
- }
90
-
91
- if (clientId !== this._clientId) {
92
- this._clientId = clientId;
93
- window.localStorage?.setItem?.('vouch-uid-client', clientId);
94
- }
95
-
96
- if (tabId !== this._tabId) {
97
- this._tabId = tabId;
98
- window.sessionStorage?.setItem?.('vouch-uid-tab', tabId);
99
- }
100
-
101
- return {
102
- client: clientId,
103
- tab: tabId,
104
- request: requestId,
105
- visitor: visitorId
106
- };
107
- }
108
-
109
- private _getReportingMetadata = () => {
110
- const [country, region] = Intl.DateTimeFormat().resolvedOptions().timeZone?.split?.('/') ?? [];
111
-
112
- const utmParams: any = {};
113
- [...new URLSearchParams(location.search).entries()].forEach(([key, value]) => {
114
- if (/utm/.test(key)) {
115
- const param = key.toLowerCase().replace(/[-_][a-z0-9]/g, (group) => group.slice(-1).toUpperCase());
116
- utmParams[param] = value;
117
- }
118
- });
119
-
120
- return {
121
- source: this.host.trackingSource,
122
- time: new Date(),
123
- region,
124
- country,
125
- screenHeight: window.screen.height,
126
- screenWidth: window.screen.width,
127
- referrer: document.referrer,
128
- currentUrl: location.href,
129
- ...utmParams
130
- };
131
- };
132
-
133
- private _sendTrackingEvent = (event: TrackingEvent, payload: TrackingPayload) => {
134
- const { publicApiUrl } = getEnvUrls(this.host.env);
135
- const { client, tab, request, visitor } = this._getUids();
136
-
137
- if (this.host.disableTracking) {
138
- return;
139
- }
140
-
141
- navigator.sendBeacon(
142
- `${publicApiUrl}/api/events`,
143
- JSON.stringify({
144
- event,
145
- payload,
146
- context: {
147
- 'x-uid-client': client,
148
- 'x-uid-tab': tab,
149
- 'x-uid-request': request,
150
- 'x-uid-visitor': visitor,
151
- 'x-reporting-metadata': this._getReportingMetadata()
152
- }
153
- })
154
- );
155
- };
156
-
157
- private _handleVouchLoaded = ({ detail: vouchId }: CustomEvent<string>) => {
158
- if (!vouchId) {
159
- return;
160
- }
161
-
162
- // Only send loaded event once per session
163
- if (!this._hasLoaded[vouchId]) {
164
- this._sendTrackingEvent('VOUCH_LOADED', {
165
- vouchId
166
- });
167
- this._hasLoaded[vouchId] = true;
168
- }
169
- };
170
-
171
- private _handlePlay = () => {
172
- const vouchId = this._findVouchId();
173
-
174
- if (!vouchId) {
175
- return;
176
- }
177
-
178
- // Only send the video played event once per session
179
- if (!this._hasPlayed) {
180
- this._sendTrackingEvent('VIDEO_PLAYED', {
181
- vouchId,
182
- streamStart: this.host.currentTime
183
- });
184
- this._hasPlayed = true;
185
- }
186
- };
187
-
188
- private _handleVideoPlay = ({ detail: { id, node } }: CustomEvent<VideoEventDetail>) => {
189
- const vouchId = this._findVouchId();
190
-
191
- if (!vouchId) {
192
- return;
193
- }
194
-
195
- // Only increment play count once per session
196
- if (!this._answersViewed[id]) {
197
- this._sendTrackingEvent('VOUCH_RESPONSE_VIEWED', {
198
- vouchId,
199
- answerId: id
200
- });
201
- this._answersViewed[id] = true;
202
- }
203
-
204
- this._streamedTime[id] = node.currentTime;
205
- this._streamLatestTime[id] = node.currentTime;
206
- this._streamedPrevTimestamp[id] = Date.now();
207
- };
208
-
209
- private _handleVideoSeeking = ({ detail: { id } }: CustomEvent<VideoEventDetail>) => {
210
- const vouchId = this._findVouchId();
211
-
212
- if (!vouchId) {
213
- return;
214
- }
215
-
216
- if (this._streamLatestTime[id]) {
217
- this._sendTrackingEvent('VIDEO_STREAMED', {
218
- vouchId,
219
- answerId: id,
220
- streamStart: this._streamedTime[id],
221
- streamEnd: this._streamLatestTime[id]
222
- });
223
- }
224
-
225
- delete this._streamedTime[id];
226
- delete this._streamLatestTime[id];
227
- delete this._streamedPrevTimestamp[id];
228
- };
229
-
230
- private _handleVideoTimeUpdate = ({ detail: { id, node } }: CustomEvent<VideoEventDetail>) => {
231
- const vouchId = this._findVouchId();
232
-
233
- if (!vouchId) {
234
- return;
235
- }
236
-
237
- const currentTimestamp = Date.now();
238
- if (
239
- node.currentTime &&
240
- !node.paused &&
241
- !this.host.paused &&
242
- // Only fire the video seeked event when this video is the active one
243
- id === this.host.scene?.video?.id &&
244
- // Throttle the frequency that we send streamed events while playing
245
- currentTimestamp - this._streamedPrevTimestamp[id] > STREAMED_THROTTLE
246
- ) {
247
- this._sendTrackingEvent('VIDEO_STREAMED', {
248
- vouchId,
249
- answerId: id,
250
- streamStart: this._streamedTime[id],
251
- streamEnd: node.currentTime
252
- });
253
- this._streamedTime[id] = node.currentTime;
254
- this._streamedPrevTimestamp[id] = currentTimestamp;
255
- }
256
-
257
- this._streamLatestTime[id] = node.currentTime;
258
- };
259
-
260
- private _handleVideoPause = ({ detail: { id, node } }: CustomEvent<VideoEventDetail>) => {
261
- const vouchId = this._findVouchId();
262
-
263
- if (!vouchId) {
264
- return;
265
- }
266
-
267
- // Don't send a tracking event if the video pauses when seeking backwards
268
- if (node.currentTime > this._streamedTime[id]) {
269
- // Send a video streamed event any time the video pauses then reset the streamed state
270
- // We do this to capture the last bit of time that the video was played between the previous
271
- // stream event and the video being paused manually or stopping because it ended
272
- this._sendTrackingEvent('VIDEO_STREAMED', {
273
- vouchId,
274
- answerId: id,
275
- streamStart: this._streamedTime[id],
276
- streamEnd: node.currentTime
277
- });
278
- }
279
-
280
- delete this._streamedTime[id];
281
- delete this._streamLatestTime[id];
282
- delete this._streamedPrevTimestamp[id];
283
- };
284
-
285
- hostConnected() {
286
- requestAnimationFrame(() => {
287
- this.host.addEventListener('vouch:loaded', this._handleVouchLoaded);
288
- this.host.mediaPlayer?.addEventListener('play', this._handlePlay);
289
- this.host.mediaPlayer?.addEventListener('video:play', this._handleVideoPlay);
290
- this.host.mediaPlayer?.addEventListener('video:seeking', this._handleVideoSeeking);
291
- this.host.mediaPlayer?.addEventListener('video:pause', this._handleVideoPause);
292
- this.host.mediaPlayer?.addEventListener('video:timeupdate', this._handleVideoTimeUpdate);
293
- });
294
- }
295
-
296
- hostDisconnected() {
297
- this.host.removeEventListener('vouch:loaded', this._handleVouchLoaded);
298
- this.host.mediaPlayer?.removeEventListener('play', this._handlePlay);
299
- this.host.mediaPlayer?.removeEventListener('video:play', this._handleVideoPlay);
300
- this.host.mediaPlayer?.removeEventListener('video:seeking', this._handleVideoSeeking);
301
- this.host.mediaPlayer?.removeEventListener('video:pause', this._handleVideoPause);
302
- this.host.mediaPlayer?.removeEventListener('video:timeupdate', this._handleVideoTimeUpdate);
303
- }
304
- }
305
-
306
- export { TrackingController };
@@ -1,202 +0,0 @@
1
- import { html, LitElement } from 'lit';
2
- import { customElement, property, state } from 'lit/decorators.js';
3
- import { ifDefined } from 'lit/directives/if-defined.js';
4
- import { createRef, ref } from 'lit/directives/ref.js';
5
-
6
- import type { Scene, TemplateInstance } from '@vouchfor/canvas-video';
7
- import type { MediaPlayer, MediaPlayerProps } from '@vouchfor/media-player';
8
- import type { Ref } from 'lit/directives/ref.js';
9
- import type { Environment } from '~/utils/env';
10
-
11
- import { EventForwardController } from './controllers/event-forwarder';
12
- import { FetcherController } from './controllers/fetcher';
13
- import { TrackingController } from './controllers/tracking';
14
-
15
- import '@vouchfor/media-player';
16
-
17
- type EmbedProps = Pick<MediaPlayerProps, 'data' | 'aspectRatio' | 'preload' | 'autoplay' | 'controls'> & {
18
- env: Environment;
19
- apiKey: string;
20
- disableTracking?: boolean;
21
- trackingSource?: string;
22
- vouchId?: string;
23
- templateId?: string;
24
- };
25
-
26
- @customElement('vouch-embed')
27
- class Embed extends LitElement {
28
- private _mediaPlayerRef: Ref<MediaPlayer> = createRef();
29
-
30
- @property({ type: Object, attribute: 'data' }) data: EmbedProps['data'];
31
- @property({ type: String }) vouchId: EmbedProps['vouchId'];
32
- @property({ type: String }) templateId: EmbedProps['templateId'];
33
-
34
- @property({ type: String }) env: EmbedProps['env'] = 'prod';
35
- @property({ type: String }) apiKey: EmbedProps['apiKey'] = '';
36
- @property({ type: Boolean }) disableTracking: EmbedProps['disableTracking'] = false;
37
- @property({ type: String }) trackingSource: EmbedProps['trackingSource'] = 'embed';
38
-
39
- @property({ type: Array }) controls: EmbedProps['controls'];
40
- @property({ type: String }) preload: EmbedProps['preload'] = 'auto';
41
- @property({ type: Boolean }) autoplay: EmbedProps['autoplay'] = false;
42
- @property({ type: Number }) aspectRatio: EmbedProps['aspectRatio'] = 0;
43
-
44
- private eventController = new EventForwardController(this, [
45
- 'durationchange',
46
- 'ended',
47
- 'error',
48
- 'loadeddata',
49
- 'pause',
50
- 'stalled',
51
- 'play',
52
- 'playing',
53
- 'ratechange',
54
- 'scenechange',
55
- 'seeking',
56
- 'seeked',
57
- 'timeupdate',
58
- 'volumechange',
59
- 'waiting',
60
-
61
- 'video:loadeddata',
62
- 'video:seeking',
63
- 'video:seeked',
64
- 'video:play',
65
- 'video:playing',
66
- 'video:pause',
67
- 'video:stalled',
68
- 'video:timeupdate',
69
- 'video:ended',
70
- 'video:error'
71
- ]);
72
- private _fetcherController = new FetcherController(this);
73
- // eslint-disable-next-line @typescript-eslint/ban-ts-comment
74
- // @ts-ignore
75
- private _trackingController = new TrackingController(this);
76
-
77
- @state() vouch: EmbedProps['data'];
78
- @state() template: TemplateInstance | undefined;
79
-
80
- get fetching() {
81
- return this._fetcherController.fetching;
82
- }
83
-
84
- get waiting() {
85
- return this._mediaPlayerRef.value?.waiting;
86
- }
87
-
88
- get seeking() {
89
- return this._mediaPlayerRef.value?.seeking;
90
- }
91
-
92
- get paused() {
93
- return this._mediaPlayerRef.value?.paused;
94
- }
95
-
96
- get captions() {
97
- return this._mediaPlayerRef.value?.captions;
98
- }
99
-
100
- get fullscreen() {
101
- return this._mediaPlayerRef.value?.fullscreen;
102
- }
103
-
104
- get duration() {
105
- return this._mediaPlayerRef.value?.duration;
106
- }
107
-
108
- set currentTime(value: number) {
109
- if (this._mediaPlayerRef.value) {
110
- this._mediaPlayerRef.value.currentTime = value;
111
- }
112
- }
113
- get currentTime() {
114
- return this._mediaPlayerRef.value?.currentTime ?? 0;
115
- }
116
-
117
- set playbackRate(value: number) {
118
- if (this._mediaPlayerRef.value) {
119
- this._mediaPlayerRef.value.playbackRate = value;
120
- }
121
- }
122
- get playbackRate() {
123
- return this._mediaPlayerRef.value?.playbackRate ?? 1;
124
- }
125
-
126
- set volume(value: number) {
127
- if (this._mediaPlayerRef.value) {
128
- this._mediaPlayerRef.value.volume = value;
129
- }
130
- }
131
- get volume() {
132
- return this._mediaPlayerRef.value?.volume ?? 1;
133
- }
134
-
135
- set muted(value: boolean) {
136
- if (this._mediaPlayerRef.value) {
137
- this._mediaPlayerRef.value.muted = value;
138
- }
139
- }
140
- get muted() {
141
- return this._mediaPlayerRef.value?.muted ?? false;
142
- }
143
-
144
- get scene(): Scene | null {
145
- return this._mediaPlayerRef.value?.scene ?? null;
146
- }
147
-
148
- get scenes(): Scene[] {
149
- return this._mediaPlayerRef.value?.scenes ?? [];
150
- }
151
-
152
- get videoState() {
153
- return this._mediaPlayerRef.value?.videoState;
154
- }
155
-
156
- get mediaPlayer() {
157
- return this._mediaPlayerRef.value;
158
- }
159
-
160
- play() {
161
- this._mediaPlayerRef.value?.play();
162
- }
163
-
164
- pause() {
165
- this._mediaPlayerRef.value?.pause();
166
- }
167
-
168
- setScene(index: number) {
169
- this._mediaPlayerRef.value?.setScene(index);
170
- }
171
-
172
- render() {
173
- return html`
174
- <vmp-new-media-player
175
- ${ref(this._mediaPlayerRef)}
176
- ${this.eventController.register()}
177
- ?autoplay=${this.autoplay}
178
- ?loading=${this.fetching}
179
- .data=${this.vouch}
180
- .template=${this.template}
181
- aspectRatio=${ifDefined(this.aspectRatio)}
182
- preload=${ifDefined(this.preload)}
183
- .controls=${this.controls}
184
- ></vmp-new-media-player>
185
- `;
186
- }
187
- }
188
-
189
- declare global {
190
- interface HTMLElementTagNameMap {
191
- 'vouch-embed': Embed;
192
- }
193
-
194
- namespace JSX {
195
- interface IntrinsicElements {
196
- 'vouch-embed': Embed;
197
- }
198
- }
199
- }
200
-
201
- export { Embed };
202
- export type { EmbedProps };
File without changes
File without changes