@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,428 @@
1
+ <script>
2
+ // @ts-ignore img
3
+ import chartXs from '../imgs/annotation1-xs.png';
4
+ // @ts-ignore img
5
+ import chartSm from '../imgs/annotation1-sm.png';
6
+ // @ts-ignore img
7
+ import chartMd from '../imgs/annotation1-md.png';
8
+ // @ts-ignore img
9
+ import chartLg from '../imgs/annotation1-md.png';
10
+ // @ts-ignore img
11
+ import chartXl from '../imgs/annotation1-xl.png';
12
+
13
+ let width = null;
14
+ </script>
15
+
16
+ <div id="g-annotation1-box" bind:clientWidth={width}>
17
+ <!-- Artboard: xs -->
18
+ {#if width && width >= 0 && width < 510}
19
+ <div id="g-annotation1-xs" class="g-artboard" style="">
20
+ <div style="padding: 0 0 187.8788% 0;"></div>
21
+ <div
22
+ id="g-annotation1-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:16.5284%;margin-top:-8.5px;left:31.2%;width:166px;"
30
+ >
31
+ <p class="g-pstyle0">Solid southwest swell</p>
32
+ </div>
33
+ <div
34
+ id="g-ai0-2"
35
+ class="g-text g-aiAbs"
36
+ style="top:56.9355%;left:20.6061%;width:60.303%;"
37
+ >
38
+ <p>
39
+ Tahitian local Vahine Fierro drops into a double overhead wave during
40
+ a recentcompetition. Timing and position are critical to make the
41
+ take-off and maximize scoring
42
+ </p>
43
+ <p></p>
44
+ <p>&nbsp;</p>
45
+ </div>
46
+ <div
47
+ id="g-ai0-3"
48
+ class="g-text g-aiAbs g-aiPointText"
49
+ style="top:85.9639%;margin-top:-17px;left:12.7641%;width:156px;"
50
+ >
51
+ <p class="g-pstyle1">Shallow water hides</p>
52
+ <p class="g-pstyle1">a sharp reef</p>
53
+ </div>
54
+ </div>
55
+ {/if}
56
+ <!-- Artboard: sm -->
57
+ {#if width && width >= 510 && width < 660}
58
+ <div id="g-annotation1-sm" class="g-artboard" style="">
59
+ <div style="padding: 0 0 56.2745% 0;"></div>
60
+ <div
61
+ id="g-annotation1-sm-img"
62
+ class="g-aiImg"
63
+ style={`background-image: url(${chartSm});`}
64
+ ></div>
65
+ <div
66
+ id="g-ai1-1"
67
+ class="g-text g-aiAbs g-aiPointText"
68
+ style="top:18.807%;margin-top:-17px;left:20.9079%;width:247px;"
69
+ >
70
+ <p class="g-pstyle0">Wave forms from hitting reef, and</p>
71
+ <p class="g-pstyle0">tube will track the line of the shelf</p>
72
+ </div>
73
+ <div
74
+ id="g-ai1-2"
75
+ class="g-text g-aiAbs g-aiPointText"
76
+ style="top:24.9046%;margin-top:-8.5px;left:69.9921%;width:166px;"
77
+ >
78
+ <p class="g-pstyle1">Solid southwest swell</p>
79
+ </div>
80
+ <div
81
+ id="g-ai1-3"
82
+ class="g-text g-aiAbs g-aiPointText"
83
+ style="top:81.8732%;margin-top:-57px;left:39.9944%;width:321px;"
84
+ >
85
+ <p class="g-pstyle0">Tahitian local Vahine Fierro drops into</p>
86
+ <p class="g-pstyle0">a double overhead wave during a recent</p>
87
+ <p class="g-pstyle0">competition. Timing and position are critical</p>
88
+ <p class="g-pstyle0">to make the take-off and maximize scoring</p>
89
+ <p class="g-pstyle0"></p>
90
+ <p>&nbsp;</p>
91
+ </div>
92
+ <div
93
+ id="g-ai1-4"
94
+ class="g-text g-aiAbs g-aiPointText"
95
+ style="top:81.5248%;margin-top:-17px;left:6.6905%;width:156px;"
96
+ >
97
+ <p class="g-pstyle0">Shallow water hides</p>
98
+ <p class="g-pstyle0">a sharp reef</p>
99
+ </div>
100
+ </div>
101
+ {/if}
102
+ <!-- Artboard: md -->
103
+ {#if width && width >= 660 && width < 930}
104
+ <div id="g-annotation1-md" class="g-artboard" style="">
105
+ <div style="padding: 0 0 56.3636% 0;"></div>
106
+ <div
107
+ id="g-annotation1-md-img"
108
+ class="g-aiImg"
109
+ style={`background-image: url(${chartMd});`}
110
+ ></div>
111
+ <div
112
+ id="g-ai2-1"
113
+ class="g-text g-aiAbs g-aiPointText"
114
+ style="top:19.0796%;margin-top:-17px;left:20.696%;width:247px;"
115
+ >
116
+ <p class="g-pstyle0">Wave forms from hitting reef, and</p>
117
+ <p class="g-pstyle0">tube will track the line of the shelf</p>
118
+ </div>
119
+ <div
120
+ id="g-ai2-2"
121
+ class="g-text g-aiAbs g-aiPointText"
122
+ style="top:21.6334%;margin-top:-7.5px;left:70.3415%;width:166px;"
123
+ >
124
+ <p class="g-pstyle1">Solid southwest swell</p>
125
+ </div>
126
+ <div
127
+ id="g-ai2-3"
128
+ class="g-text g-aiAbs g-aiPointText"
129
+ style="top:66.6602%;margin-top:-57px;left:48.1533%;width:321px;"
130
+ >
131
+ <p class="g-pstyle0">Tahitian local Vahine Fierro drops into</p>
132
+ <p class="g-pstyle0">a double overhead wave during a recent</p>
133
+ <p class="g-pstyle0">competition. Timing and position are critical</p>
134
+ <p class="g-pstyle0">to make the take-off and maximize scoring</p>
135
+ <p class="g-pstyle0"></p>
136
+ <p>&nbsp;</p>
137
+ </div>
138
+ <div
139
+ id="g-ai2-4"
140
+ class="g-text g-aiAbs g-aiPointText"
141
+ style="top:81.714%;margin-top:-17px;left:17.2641%;width:156px;"
142
+ >
143
+ <p class="g-pstyle0">Shallow water hides</p>
144
+ <p class="g-pstyle0">a sharp reef</p>
145
+ </div>
146
+ </div>
147
+ {/if}
148
+ <!-- Artboard: lg -->
149
+ {#if width && width >= 930 && width < 1200}
150
+ <div id="g-annotation1-lg" class="g-artboard" style="">
151
+ <div style="padding: 0 0 56.0215% 0;"></div>
152
+ <div
153
+ id="g-annotation1-lg-img"
154
+ class="g-aiImg"
155
+ style={`background-image: url(${chartLg});`}
156
+ ></div>
157
+ <div
158
+ id="g-ai3-1"
159
+ class="g-text g-aiAbs g-aiPointText"
160
+ style="top:18.3754%;margin-top:-19.7px;left:20.5759%;width:247px;"
161
+ >
162
+ <p class="g-pstyle0">Wave forms from hitting reef, and</p>
163
+ <p class="g-pstyle0">tube will track the line of the shelf</p>
164
+ </div>
165
+ <div
166
+ id="g-ai3-2"
167
+ class="g-text g-aiAbs g-aiPointText"
168
+ style="top:25.2353%;margin-top:-10.5px;left:73.3785%;width:166px;"
169
+ >
170
+ <p class="g-pstyle0">Solid southwest swell</p>
171
+ </div>
172
+ <div
173
+ id="g-ai3-3"
174
+ class="g-text g-aiAbs g-aiPointText"
175
+ style="top:65.458%;margin-top:-66px;left:46.9484%;width:321px;"
176
+ >
177
+ <p class="g-pstyle0">Tahitian local Vahine Fierro drops into</p>
178
+ <p class="g-pstyle0">a double overhead wave during a recent</p>
179
+ <p class="g-pstyle0">competition. Timing and position are critical</p>
180
+ <p class="g-pstyle0">to make the take-off and maximize scoring</p>
181
+ <p class="g-pstyle0"></p>
182
+ <p>&nbsp;</p>
183
+ </div>
184
+ <div
185
+ id="g-ai3-4"
186
+ class="g-text g-aiAbs g-aiPointText"
187
+ style="top:80.1797%;margin-top:-19.7px;left:17.5746%;width:156px;"
188
+ >
189
+ <p class="g-pstyle0">Shallow water hides</p>
190
+ <p class="g-pstyle0">a sharp reef</p>
191
+ </div>
192
+ </div>
193
+ {/if}
194
+ <!-- Artboard: xl -->
195
+ {#if width && width >= 1200}
196
+ <div id="g-annotation1-xl" class="g-artboard" style="">
197
+ <div style="padding: 0 0 51.6667% 0;"></div>
198
+ <div
199
+ id="g-annotation1-xl-img"
200
+ class="g-aiImg"
201
+ style={`background-image: url(${chartXl});`}
202
+ ></div>
203
+ <div
204
+ id="g-ai4-1"
205
+ class="g-text g-aiAbs g-aiPointText"
206
+ style="top:20.0355%;margin-top:-25.2px;left:20.6647%;width:304px;"
207
+ >
208
+ <p class="g-pstyle0">Wave forms from hitting reef, and</p>
209
+ <p class="g-pstyle0">tube will track the line of the shelf</p>
210
+ </div>
211
+ <div
212
+ id="g-ai4-2"
213
+ class="g-text g-aiAbs g-aiPointText"
214
+ style="top:27.6162%;margin-top:-13.2px;left:81.5814%;width:202px;"
215
+ >
216
+ <p class="g-pstyle0">Solid southwest swell</p>
217
+ </div>
218
+ <div
219
+ id="g-ai4-3"
220
+ class="g-text g-aiAbs g-aiPointText"
221
+ style="top:63.1%;margin-top:-85.2px;left:47.4753%;width:396px;"
222
+ >
223
+ <p class="g-pstyle0">Tahitian local Vahine Fierro drops into</p>
224
+ <p class="g-pstyle0">a double overhead wave during a recent</p>
225
+ <p class="g-pstyle0">competition. Timing and position are critical</p>
226
+ <p class="g-pstyle0">to make the take-off and maximize scoring</p>
227
+ <p class="g-pstyle0"></p>
228
+ <p>&nbsp;</p>
229
+ </div>
230
+ <div
231
+ id="g-ai4-4"
232
+ class="g-text g-aiAbs g-aiPointText"
233
+ style="top:94.0678%;margin-top:-25.2px;left:20.5662%;width:189px;"
234
+ >
235
+ <p class="g-pstyle0">Shallow water hides</p>
236
+ <p
237
+ class="g-
238
+ pstyle0"
239
+ >
240
+ a sharp reef
241
+ </p>
242
+ </div>
243
+ </div>
244
+ {/if}
245
+ </div>
246
+
247
+ <!-- End ai2html - 2024-07-19 13:12 -->
248
+
249
+ <!-- Generated by ai2html v0.100.0 - 2024-07-19 13:12 -->
250
+ <!-- ai file: annotation1.ai -->
251
+ <style>#g-annotation1-box,
252
+ #g-annotation1-box .g-artboard {
253
+ margin: 0 auto;
254
+ }
255
+
256
+ #g-annotation1-box p {
257
+ margin: 0;
258
+ }
259
+
260
+ #g-annotation1-box .g-aiAbs {
261
+ position: absolute;
262
+ }
263
+
264
+ #g-annotation1-box .g-aiImg {
265
+ position: absolute;
266
+ top: 0;
267
+ display: block;
268
+ width: 100% !important;
269
+ height: 100%;
270
+ background-size: contain;
271
+ background-repeat: no-repeat;
272
+ }
273
+
274
+ #g-annotation1-box .g-aiPointText p {
275
+ white-space: nowrap;
276
+ }
277
+
278
+ #g-annotation1-xs {
279
+ position: relative;
280
+ overflow: hidden;
281
+ }
282
+
283
+ #g-annotation1-xs p {
284
+ font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Helvetica, Arial, sans-serif;
285
+ font-weight: 400;
286
+ line-height: 16px;
287
+ opacity: 1;
288
+ letter-spacing: 0em;
289
+ font-size: 16px;
290
+ text-align: left;
291
+ color: rgb(255, 255, 255);
292
+ text-transform: none;
293
+ padding-bottom: 0;
294
+ padding-top: 0;
295
+ mix-blend-mode: normal;
296
+ font-style: normal;
297
+ height: auto;
298
+ position: static;
299
+ }
300
+
301
+ #g-annotation1-xs .g-pstyle0 {
302
+ line-height: 15px;
303
+ height: 15px;
304
+ }
305
+
306
+ #g-annotation1-xs .g-pstyle1 {
307
+ height: 16px;
308
+ }
309
+
310
+ #g-annotation1-sm {
311
+ position: relative;
312
+ overflow: hidden;
313
+ }
314
+
315
+ #g-annotation1-sm p {
316
+ font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Helvetica, Arial, sans-serif;
317
+ font-weight: 400;
318
+ line-height: 16px;
319
+ height: auto;
320
+ opacity: 1;
321
+ letter-spacing: 0em;
322
+ font-size: 16px;
323
+ text-align: left;
324
+ color: rgb(255, 255, 255);
325
+ text-transform: none;
326
+ padding-bottom: 0;
327
+ padding-top: 0;
328
+ mix-blend-mode: normal;
329
+ font-style: normal;
330
+ position: static;
331
+ }
332
+
333
+ #g-annotation1-sm .g-pstyle0 {
334
+ height: 16px;
335
+ }
336
+
337
+ #g-annotation1-sm .g-pstyle1 {
338
+ line-height: 15px;
339
+ height: 15px;
340
+ }
341
+
342
+ #g-annotation1-md {
343
+ position: relative;
344
+ overflow: hidden;
345
+ }
346
+
347
+ #g-annotation1-md p {
348
+ font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Helvetica, Arial, sans-serif;
349
+ font-weight: 400;
350
+ line-height: 16px;
351
+ height: auto;
352
+ opacity: 1;
353
+ letter-spacing: 0em;
354
+ font-size: 16px;
355
+ text-align: left;
356
+ color: rgb(255, 255, 255);
357
+ text-transform: none;
358
+ padding-bottom: 0;
359
+ padding-top: 0;
360
+ mix-blend-mode: normal;
361
+ font-style: normal;
362
+ position: static;
363
+ }
364
+
365
+ #g-annotation1-md .g-pstyle0 {
366
+ height: 16px;
367
+ }
368
+
369
+ #g-annotation1-md .g-pstyle1 {
370
+ line-height: 13px;
371
+ height: 13px;
372
+ }
373
+
374
+ #g-annotation1-lg {
375
+ position: relative;
376
+ overflow: hidden;
377
+ }
378
+
379
+ #g-annotation1-lg p {
380
+ font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Helvetica, Arial, sans-serif;
381
+ font-weight: 400;
382
+ line-height: 19px;
383
+ height: auto;
384
+ opacity: 1;
385
+ letter-spacing: 0em;
386
+ font-size: 16px;
387
+ text-align: left;
388
+ color: rgb(255, 255, 255);
389
+ text-transform: none;
390
+ padding-bottom: 0;
391
+ padding-top: 0;
392
+ mix-blend-mode: normal;
393
+ font-style: normal;
394
+ position: static;
395
+ }
396
+
397
+ #g-annotation1-lg .g-pstyle0 {
398
+ height: 19px;
399
+ }
400
+
401
+ #g-annotation1-xl {
402
+ position: relative;
403
+ overflow: hidden;
404
+ }
405
+
406
+ #g-annotation1-xl p {
407
+ font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Helvetica, Arial, sans-serif;
408
+ font-weight: 400;
409
+ line-height: 24px;
410
+ height: auto;
411
+ opacity: 1;
412
+ letter-spacing: 0em;
413
+ font-size: 20px;
414
+ text-align: left;
415
+ color: rgb(255, 255, 255);
416
+ text-transform: none;
417
+ padding-bottom: 0;
418
+ padding-top: 0;
419
+ mix-blend-mode: normal;
420
+ font-style: normal;
421
+ position: static;
422
+ }
423
+
424
+ #g-annotation1-xl .g-pstyle0 {
425
+ height: 24px;
426
+ }
427
+
428
+ /* Custom CSS */</style>
@@ -0,0 +1,26 @@
1
+ export default Annotation1;
2
+ type Annotation1 = SvelteComponent<{
3
+ [x: string]: never;
4
+ }, {
5
+ [evt: string]: CustomEvent<any>;
6
+ }, {}> & {
7
+ $$bindings?: string | undefined;
8
+ };
9
+ declare const Annotation1: $$__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
+ }