@reuters-graphics/graphics-components 3.0.12 → 3.0.13

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 (75) hide show
  1. package/dist/components/@types/global.d.ts +45 -0
  2. package/dist/components/Scroller/Scroller.mdx +2 -2
  3. package/dist/components/ScrollerBase/ScrollerBase.mdx +0 -5
  4. package/dist/components/ScrollerVideo/Debug.svelte +207 -0
  5. package/dist/components/ScrollerVideo/Debug.svelte.d.ts +5 -0
  6. package/dist/components/ScrollerVideo/ScrollerVideo.mdx +462 -0
  7. package/dist/components/ScrollerVideo/ScrollerVideo.stories.svelte +190 -0
  8. package/dist/components/ScrollerVideo/ScrollerVideo.stories.svelte.d.ts +19 -0
  9. package/dist/components/ScrollerVideo/ScrollerVideo.svelte +292 -0
  10. package/dist/components/ScrollerVideo/ScrollerVideo.svelte.d.ts +58 -0
  11. package/dist/components/ScrollerVideo/ScrollerVideoForeground.svelte +164 -0
  12. package/dist/components/ScrollerVideo/ScrollerVideoForeground.svelte.d.ts +17 -0
  13. package/dist/components/ScrollerVideo/demo/AdvancedUsecases.svelte +114 -0
  14. package/dist/components/ScrollerVideo/demo/AdvancedUsecases.svelte.d.ts +3 -0
  15. package/dist/components/ScrollerVideo/demo/Embedded.svelte +94 -0
  16. package/dist/components/ScrollerVideo/demo/Embedded.svelte.d.ts +3 -0
  17. package/dist/components/ScrollerVideo/demo/WithAi2svelteForegrounds.svelte +117 -0
  18. package/dist/components/ScrollerVideo/demo/WithAi2svelteForegrounds.svelte.d.ts +3 -0
  19. package/dist/components/ScrollerVideo/demo/WithScrollerBase.svelte +80 -0
  20. package/dist/components/ScrollerVideo/demo/WithScrollerBase.svelte.d.ts +3 -0
  21. package/dist/components/ScrollerVideo/demo/WithTextForegrounds.svelte +72 -0
  22. package/dist/components/ScrollerVideo/demo/WithTextForegrounds.svelte.d.ts +18 -0
  23. package/dist/components/ScrollerVideo/demo/graphic/ai2svelte/ai-chart.svelte +631 -0
  24. package/dist/components/ScrollerVideo/demo/graphic/ai2svelte/ai-chart.svelte.d.ts +3 -0
  25. package/dist/components/ScrollerVideo/demo/graphic/ai2svelte/annotation1.svelte +428 -0
  26. package/dist/components/ScrollerVideo/demo/graphic/ai2svelte/annotation1.svelte.d.ts +26 -0
  27. package/dist/components/ScrollerVideo/demo/graphic/ai2svelte/annotation2.svelte +402 -0
  28. package/dist/components/ScrollerVideo/demo/graphic/ai2svelte/annotation2.svelte.d.ts +26 -0
  29. package/dist/components/ScrollerVideo/demo/graphic/ai2svelte/annotation3.svelte +398 -0
  30. package/dist/components/ScrollerVideo/demo/graphic/ai2svelte/annotation3.svelte.d.ts +26 -0
  31. package/dist/components/ScrollerVideo/demo/graphic/ai2svelte/annotation4.svelte +360 -0
  32. package/dist/components/ScrollerVideo/demo/graphic/ai2svelte/annotation4.svelte.d.ts +26 -0
  33. package/dist/components/ScrollerVideo/demo/graphic/imgs/ai-chart-md.png +0 -0
  34. package/dist/components/ScrollerVideo/demo/graphic/imgs/ai-chart-sm.png +0 -0
  35. package/dist/components/ScrollerVideo/demo/graphic/imgs/ai-chart-xs.png +0 -0
  36. package/dist/components/ScrollerVideo/demo/graphic/imgs/annotation1-lg.png +0 -0
  37. package/dist/components/ScrollerVideo/demo/graphic/imgs/annotation1-md.png +0 -0
  38. package/dist/components/ScrollerVideo/demo/graphic/imgs/annotation1-sm.png +0 -0
  39. package/dist/components/ScrollerVideo/demo/graphic/imgs/annotation1-xl.png +0 -0
  40. package/dist/components/ScrollerVideo/demo/graphic/imgs/annotation1-xs.png +0 -0
  41. package/dist/components/ScrollerVideo/demo/graphic/imgs/annotation2-lg.png +0 -0
  42. package/dist/components/ScrollerVideo/demo/graphic/imgs/annotation2-md.png +0 -0
  43. package/dist/components/ScrollerVideo/demo/graphic/imgs/annotation2-sm.png +0 -0
  44. package/dist/components/ScrollerVideo/demo/graphic/imgs/annotation2-xl.png +0 -0
  45. package/dist/components/ScrollerVideo/demo/graphic/imgs/annotation2-xs.png +0 -0
  46. package/dist/components/ScrollerVideo/demo/graphic/imgs/annotation3-lg.png +0 -0
  47. package/dist/components/ScrollerVideo/demo/graphic/imgs/annotation3-md.png +0 -0
  48. package/dist/components/ScrollerVideo/demo/graphic/imgs/annotation3-sm.png +0 -0
  49. package/dist/components/ScrollerVideo/demo/graphic/imgs/annotation3-xl.png +0 -0
  50. package/dist/components/ScrollerVideo/demo/graphic/imgs/annotation3-xs.png +0 -0
  51. package/dist/components/ScrollerVideo/demo/graphic/imgs/annotation4-lg.png +0 -0
  52. package/dist/components/ScrollerVideo/demo/graphic/imgs/annotation4-md.png +0 -0
  53. package/dist/components/ScrollerVideo/demo/graphic/imgs/annotation4-sm.png +0 -0
  54. package/dist/components/ScrollerVideo/demo/graphic/imgs/annotation4-xl.png +0 -0
  55. package/dist/components/ScrollerVideo/demo/graphic/imgs/annotation4-xs.png +0 -0
  56. package/dist/components/ScrollerVideo/ts/ScrollerVideo.d.ts +248 -0
  57. package/dist/components/ScrollerVideo/ts/ScrollerVideo.js +762 -0
  58. package/dist/components/ScrollerVideo/ts/mp4box.d.ts +137 -0
  59. package/dist/components/ScrollerVideo/ts/state.svelte.d.ts +51 -0
  60. package/dist/components/ScrollerVideo/ts/state.svelte.js +25 -0
  61. package/dist/components/ScrollerVideo/ts/utils.d.ts +70 -0
  62. package/dist/components/ScrollerVideo/ts/utils.js +92 -0
  63. package/dist/components/ScrollerVideo/ts/videoDecoder.d.ts +11 -0
  64. package/dist/components/ScrollerVideo/ts/videoDecoder.js +193 -0
  65. package/dist/components/ScrollerVideo/videos/HPO.mp4 +0 -0
  66. package/dist/components/ScrollerVideo/videos/drone.mp4 +0 -0
  67. package/dist/components/ScrollerVideo/videos/goldengate.mp4 +0 -0
  68. package/dist/components/ScrollerVideo/videos/tennis.mp4 +0 -0
  69. package/dist/components/ScrollerVideo/videos/waves_lg.mp4 +0 -0
  70. package/dist/components/ScrollerVideo/videos/waves_md.mp4 +0 -0
  71. package/dist/components/ScrollerVideo/videos/waves_sm.mp4 +0 -0
  72. package/dist/components/SiteHeadline/SiteHeadline.mdx +4 -1
  73. package/dist/index.d.ts +3 -1
  74. package/dist/index.js +2 -0
  75. package/package.json +3 -1
@@ -0,0 +1,402 @@
1
+ <script>
2
+ // @ts-ignore img
3
+ import chartXs from '../imgs/annotation2-xs.png';
4
+ // @ts-ignore img
5
+ import chartSm from '../imgs/annotation2-sm.png';
6
+ // @ts-ignore img
7
+ import chartMd from '../imgs/annotation2-md.png';
8
+ // @ts{width}mg
9
+ import chartLg from '../imgs/annotation2-md.png';
10
+ // @ts-ignore img
11
+ import chartXl from '../imgs/annotation2-xl.png';
12
+
13
+ let width = null;
14
+ </script>
15
+
16
+ <div id="g-annotation2-box" bind:clientWidth={width}>
17
+ <!-- Artboard: xs -->
18
+ {#if width && width >= 0 && width < 510}
19
+ <div id="g-annotation2-xs" class="g-artboard" style="">
20
+ <div style="padding: 0 0 187.8788% 0;"></div>
21
+ <div
22
+ id="g-annotation2-xs-img"
23
+ class="g-aiImg"
24
+ style={`background-image: url(${chartXs});`}
25
+ ></div>
26
+ <div
27
+ id="g-ai0-1"
28
+ class="g-text g-aiAbs g-aiPointText"
29
+ style="top:9.0284%;margin-top:-41px;left:17.9779%;width:219px;"
30
+ >
31
+ <p class="g-pstyle0">The wave at Teahupo'o is</p>
32
+ <p class="g-pstyle0">known to be very heavy</p>
33
+ <p class="g-pstyle0">with a thick lip that can</p>
34
+ <p class="g-pstyle0">easily knock a surfer off the</p>
35
+ <p class="g-pstyle0">wave and onto the reef below</p>
36
+ </div>
37
+ <div
38
+ id="g-ai0-2"
39
+ class="g-text g-aiAbs g-aiPointText"
40
+ style="top:68.8671%;margin-top:-25px;left:12.9181%;width:144px;"
41
+ >
42
+ <p class="g-pstyle0">Surfer speed is up</p>
43
+ <p class="g-pstyle0">to 35 km per hour</p>
44
+ <p class="g-pstyle0">(20 mph)</p>
45
+ </div>
46
+ <div
47
+ id="g-ai0-3"
48
+ class="g-text g-aiAbs g-aiPointText"
49
+ style="top:68.8671%;margin-top:-25px;left:62.8912%;width:149px;"
50
+ >
51
+ <p class="g-pstyle0">One cubic meter</p>
52
+ <p class="g-pstyle0">of water weighs</p>
53
+ <p class="g-pstyle0">1,000 kg. (2,200 lb)</p>
54
+ </div>
55
+ <div
56
+ id="g-ai0-4"
57
+ class="g-text g-aiAbs"
58
+ style="top:78.7097%;left:17.9779%;width:59.0909%;"
59
+ >
60
+ <p>
61
+ A surfer will adjust speed to stay in the tube by dragging a hand to
62
+ slow, or pumping the board to speed up
63
+ </p>
64
+ </div>
65
+ </div>
66
+ {/if}
67
+ <!-- Artboard: sm -->
68
+ {#if width && width >= 510 && width < 660}
69
+ <div id="g-annotation2-sm" class="g-artboard" style="">
70
+ <div style="padding: 0 0 56.2745% 0;"></div>
71
+ <div
72
+ id="g-annotation2-sm-img"
73
+ class="g-aiImg"
74
+ style={`background-image: url(${chartSm});`}
75
+ ></div>
76
+ </div>
77
+ {/if}
78
+ <!-- Artboard: md -->
79
+ {#if width && width >= 660 && width < 930}
80
+ <div id="g-annotation2-md" class="g-artboard" style="">
81
+ <div style="padding: 0 0 56.3636% 0;"></div>
82
+ <div
83
+ id="g-annotation2-md-img"
84
+ class="g-aiImg"
85
+ style={`background-image: url(${chartMd});`}
86
+ ></div>
87
+ <div
88
+ id="g-ai2-1"
89
+ class="g-text g-aiAbs g-aiPointText"
90
+ style="top:23.9183%;margin-top:-41px;left:67.1629%;width:219px;"
91
+ >
92
+ <p class="g-pstyle0">The wave at Teahupo'o is</p>
93
+ <p class="g-pstyle0">known to be very heavy</p>
94
+ <p class="g-pstyle0">with a thick lip that can</p>
95
+ <p class="g-pstyle0">easily knock a surfer off the</p>
96
+ <p class="g-pstyle0">wave and onto the reef below</p>
97
+ </div>
98
+ <div
99
+ id="g-ai2-2"
100
+ class="g-text g-aiAbs g-aiPointText"
101
+ style="top:65.585%;margin-top:-17px;left:51.2917%;width:189px;"
102
+ >
103
+ <p class="g-pstyle0">Surfer speed is up to</p>
104
+ <p class="g-pstyle0">35 km per hour (20 mph)</p>
105
+ </div>
106
+ <div
107
+ id="g-ai2-3"
108
+ class="g-text g-aiAbs g-aiPointText"
109
+ style="top:74.4559%;margin-top:-25px;left:5.9007%;width:263px;"
110
+ >
111
+ <p class="g-pstyle0">A surfer will adjust speed to stay in</p>
112
+ <p class="g-pstyle0">the tube by dragging a hand to slow,</p>
113
+ <p class="g-pstyle0">or pumping the board to speed up</p>
114
+ </div>
115
+ <div
116
+ id="g-ai2-4"
117
+ class="g-text g-aiAbs g-aiPointText"
118
+ style="top:79.5635%;margin-top:-17px;left:70.1381%;width:199px;"
119
+ >
120
+ <p class="g-pstyle0">One cubic meter of water</p>
121
+ <p class="g-pstyle0">weighs 1,000 kg. (2,200 lb)</p>
122
+ </div>
123
+ </div>
124
+ {/if}
125
+ <!-- Artboard: lg -->
126
+ {#if width && width >= 930 && width < 1200}
127
+ <div id="g-annotation2-lg" class="g-artboard" style="">
128
+ <div style="padding: 0 0 56.0215% 0;"></div>
129
+ <div
130
+ id="g-annotation2-lg-img"
131
+ class="g-aiImg"
132
+ style={`background-image: url(${chartLg});`}
133
+ ></div>
134
+ <div
135
+ id="g-ai3-1"
136
+ class="g-text g-aiAbs g-aiPointText"
137
+ style="top:22.7846%;margin-top:-47.7px;left:73.261%;width:219px;"
138
+ >
139
+ <p class="g-pstyle0">The wave at Teahupo'o is</p>
140
+ <p class="g-pstyle0">known to be very heavy</p>
141
+ <p class="g-pstyle0">with a thick lip that can</p>
142
+ <p class="g-pstyle0">easily knock a surfer off the</p>
143
+ <p class="g-pstyle0">wave and onto the reef below</p>
144
+ </div>
145
+ <div
146
+ id="g-ai3-2"
147
+ class="g-text g-aiAbs g-aiPointText"
148
+ style="top:22.7846%;margin-top:-47.7px;left:73.261%;width:219px;"
149
+ >
150
+ <p class="g-pstyle0">The wave at Teahupo'o is</p>
151
+ <p class="g-pstyle0">known to be very heavy</p>
152
+ <p class="g-pstyle0">with a thick lip that can</p>
153
+ <p class="g-pstyle0">easily knock a surfer off the</p>
154
+ <p class="g-pstyle0">wave and onto the reef below</p>
155
+ </div>
156
+ <div
157
+ id="g-ai3-3"
158
+ class="g-text g-aiAbs g-aiPointText"
159
+ style="top:61.187%;margin-top:-19.8px;left:54.1451%;width:189px;"
160
+ >
161
+ <p class="g-pstyle0">Surfer speed is up to</p>
162
+ <p class="g-pstyle0">35 km per hour (20 mph)</p>
163
+ </div>
164
+ <div
165
+ id="g-ai3-4"
166
+ class="g-text g-aiAbs g-aiPointText"
167
+ style="top:61.187%;margin-top:-19.8px;left:54.1451%;width:189px;"
168
+ >
169
+ <p class="g-pstyle0">Surfer speed is up to</p>
170
+ <p class="g-pstyle0">35 km per hour (20 mph)</p>
171
+ </div>
172
+ <div
173
+ id="g-ai3-5"
174
+ class="g-text g-aiAbs g-aiPointText"
175
+ style="top:72.3786%;margin-top:-29.1px;left:22.2898%;width:263px;"
176
+ >
177
+ <p class="g-pstyle0">A surfer will adjust speed to stay in</p>
178
+ <p class="g-pstyle0">the tube by dragging a hand to slow,</p>
179
+ <p class="g-pstyle0">or pumping the board to speed up</p>
180
+ </div>
181
+ <div
182
+ id="g-ai3-6"
183
+ class="g-text g-aiAbs g-aiPointText"
184
+ style="top:72.3786%;margin-top:-29.1px;left:22.2898%;width:263px;"
185
+ >
186
+ <p class="g-pstyle0">A surfer will adjust speed to stay in</p>
187
+ <p class="g-pstyle0">the tube by dragging a hand to slow,</p>
188
+ <p class="g-pstyle0">or pumping the board to speed up</p>
189
+ </div>
190
+ <div
191
+ id="g-ai3-7"
192
+ class="g-text g-aiAbs g-aiPointText"
193
+ style="top:79.6131%;margin-top:-19.8px;left:76.246%;width:199px;"
194
+ >
195
+ <p class="g-pstyle0">One cubic meter of water</p>
196
+ <p class="g-pstyle0">weighs 1,000 kg. (2,200 lb)</p>
197
+ </div>
198
+ <div
199
+ id="g-ai3-8"
200
+ class="g-text g-aiAbs g-aiPointText"
201
+ style="top:79.6131%;margin-top:-19.8px;left:76.246%;width:199px;"
202
+ >
203
+ <p class="g-pstyle0">One cubic meter of water</p>
204
+ <p class="g-pstyle0">weighs 1,000 kg. (2,200 lb)</p>
205
+ </div>
206
+ </div>
207
+ {/if}
208
+ <!-- Artboard: xl -->
209
+ {#if width && width >= 1200}
210
+ <div id="g-annotation2-xl" class="g-artboard" style="">
211
+ <div style="padding: 0 0 51.6667% 0;"></div>
212
+ <div
213
+ id="g-annotation2-xl-img"
214
+ class="g-aiImg"
215
+ style={`background-image: url(${chartXl});`}
216
+ ></div>
217
+ <div
218
+ id="g-ai4-1"
219
+ class="g-text g-aiAbs g-aiPointText"
220
+ style="top:23.2613%;margin-top:-61.2px;left:79.2253%;width:268px;"
221
+ >
222
+ <p class="g-pstyle0">The wave at Teahupo'o is</p>
223
+ <p class="g-pstyle0">known to be very heavy</p>
224
+ <p class="g-pstyle0">with a thick lip that can</p>
225
+ <p class="g-pstyle0">easily knock a surfer off the</p>
226
+ <p class="g-pstyle0">wave and onto the reef below</p>
227
+ </div>
228
+ <div
229
+ id="g-ai4-2"
230
+ class="g-text g-aiAbs g-aiPointText"
231
+ style="top:65.3581%;margin-top:-25.2px;left:54.3241%;width:230px;"
232
+ >
233
+ <p class="g-pstyle0">Surfer speed is up to</p>
234
+ <p class="g-pstyle0">35 km per hour (20 mph)</p>
235
+ </div>
236
+ <div
237
+ id="g-ai4-3"
238
+ class="g-text g-aiAbs g-aiPointText"
239
+ style="top:76.3258%;margin-top:-37.2px;left:22.0662%;width:323px;"
240
+ >
241
+ <p class="g-pstyle0">A surfer will adjust speed to stay in</p>
242
+ <p class="g-pstyle0">the tube by dragging a hand to slow,</p>
243
+ <p class="g-pstyle0">or pumping the board to speed up</p>
244
+ </div>
245
+ <div
246
+ id="g-ai4-4"
247
+ class="g-text g-aiAbs g-aiPointText"
248
+ style="top:83.2613%;
249
+ margin-top:-25.2px;left:81.2408%;width:243px;"
250
+ >
251
+ <p class="g-pstyle0">One cubic meter of water</p>
252
+ <p class="g-pstyle0">weighs 1,000 kg. (2,200 lb)</p>
253
+ </div>
254
+ </div>
255
+ {/if}
256
+ </div>
257
+
258
+ <!-- End ai2html - 2024-07-19 13:14 -->
259
+
260
+ <!-- Generated by ai2html v0.100.0 - 2024-07-19 13:14 -->
261
+ <!-- ai file: annotation2.ai -->
262
+ <style>#g-annotation2-box,
263
+ #g-annotation2-box .g-artboard {
264
+ margin: 0 auto;
265
+ }
266
+
267
+ #g-annotation2-box p {
268
+ margin: 0;
269
+ }
270
+
271
+ #g-annotation2-box .g-aiAbs {
272
+ position: absolute;
273
+ }
274
+
275
+ #g-annotation2-box .g-aiImg {
276
+ position: absolute;
277
+ top: 0;
278
+ display: block;
279
+ width: 100% !important;
280
+ height: 100%;
281
+ background-size: contain;
282
+ background-repeat: no-repeat;
283
+ }
284
+
285
+ #g-annotation2-box .g-aiPointText p {
286
+ white-space: nowrap;
287
+ }
288
+
289
+ #g-annotation2-xs {
290
+ position: relative;
291
+ overflow: hidden;
292
+ }
293
+
294
+ #g-annotation2-xs p {
295
+ font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Helvetica, Arial, sans-serif;
296
+ font-weight: 400;
297
+ line-height: 16px;
298
+ height: auto;
299
+ opacity: 1;
300
+ letter-spacing: 0em;
301
+ font-size: 16px;
302
+ text-align: left;
303
+ color: rgb(255, 255, 255);
304
+ text-transform: none;
305
+ padding-bottom: 0;
306
+ padding-top: 0;
307
+ mix-blend-mode: normal;
308
+ font-style: normal;
309
+ position: static;
310
+ }
311
+
312
+ #g-annotation2-xs .g-pstyle0 {
313
+ height: 16px;
314
+ }
315
+
316
+ #g-annotation2-sm {
317
+ position: relative;
318
+ overflow: hidden;
319
+ }
320
+
321
+ #g-annotation2-md {
322
+ position: relative;
323
+ overflow: hidden;
324
+ }
325
+
326
+ #g-annotation2-md p {
327
+ font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Helvetica, Arial, sans-serif;
328
+ font-weight: 400;
329
+ line-height: 16px;
330
+ height: auto;
331
+ opacity: 1;
332
+ letter-spacing: 0em;
333
+ font-size: 16px;
334
+ text-align: left;
335
+ color: rgb(255, 255, 255);
336
+ text-transform: none;
337
+ padding-bottom: 0;
338
+ padding-top: 0;
339
+ mix-blend-mode: normal;
340
+ font-style: normal;
341
+ position: static;
342
+ }
343
+
344
+ #g-annotation2-md .g-pstyle0 {
345
+ height: 16px;
346
+ }
347
+
348
+ #g-annotation2-lg {
349
+ position: relative;
350
+ overflow: hidden;
351
+ }
352
+
353
+ #g-annotation2-lg p {
354
+ font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Helvetica, Arial, sans-serif;
355
+ font-weight: 400;
356
+ line-height: 19px;
357
+ height: auto;
358
+ opacity: 1;
359
+ letter-spacing: 0em;
360
+ font-size: 16px;
361
+ text-align: left;
362
+ color: rgb(255, 255, 255);
363
+ text-transform: none;
364
+ padding-bottom: 0;
365
+ padding-top: 0;
366
+ mix-blend-mode: normal;
367
+ font-style: normal;
368
+ position: static;
369
+ }
370
+
371
+ #g-annotation2-lg .g-pstyle0 {
372
+ height: 19px;
373
+ }
374
+
375
+ #g-annotation2-xl {
376
+ position: relative;
377
+ overflow: hidden;
378
+ }
379
+
380
+ #g-annotation2-xl p {
381
+ font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Helvetica, Arial, sans-serif;
382
+ font-weight: 400;
383
+ line-height: 24px;
384
+ height: auto;
385
+ opacity: 1;
386
+ letter-spacing: 0em;
387
+ font-size: 20px;
388
+ text-align: left;
389
+ color: rgb(255, 255, 255);
390
+ text-transform: none;
391
+ padding-bottom: 0;
392
+ padding-top: 0;
393
+ mix-blend-mode: normal;
394
+ font-style: normal;
395
+ position: static;
396
+ }
397
+
398
+ #g-annotation2-xl .g-pstyle0 {
399
+ height: 24px;
400
+ }
401
+
402
+ /* Custom CSS */</style>
@@ -0,0 +1,26 @@
1
+ export default Annotation2;
2
+ type Annotation2 = SvelteComponent<{
3
+ [x: string]: never;
4
+ }, {
5
+ [evt: string]: CustomEvent<any>;
6
+ }, {}> & {
7
+ $$bindings?: string | undefined;
8
+ };
9
+ declare const Annotation2: $$__sveltets_2_IsomorphicComponent<{
10
+ [x: string]: never;
11
+ }, {
12
+ [evt: string]: CustomEvent<any>;
13
+ }, {}, {}, string>;
14
+ interface $$__sveltets_2_IsomorphicComponent<Props extends Record<string, any> = any, Events extends Record<string, any> = any, Slots extends Record<string, any> = any, Exports = {}, Bindings = string> {
15
+ new (options: import("svelte").ComponentConstructorOptions<Props>): import("svelte").SvelteComponent<Props, Events, Slots> & {
16
+ $$bindings?: Bindings;
17
+ } & Exports;
18
+ (internal: unknown, props: {
19
+ $$events?: Events;
20
+ $$slots?: Slots;
21
+ }): Exports & {
22
+ $set?: any;
23
+ $on?: any;
24
+ };
25
+ z_$$bindings?: Bindings;
26
+ }