@streamscloud/embeddable 14.1.1 → 14.1.2

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.
@@ -359,10 +359,7 @@ const stopActivityTracking = () => {
359
359
  {/if}
360
360
  </div>
361
361
  {/snippet}
362
- <ChunksProgress
363
- totalItems={buffer.activeChunk.model.pagesCount}
364
- activeItemIndex={buffer.activeChunk.activeItemIndex}
365
- chunkInfo={info} />
362
+ <ChunksProgress totalItems={buffer.activeChunk.model.pagesCount} activeItemIndex={buffer.activeChunk.activeItemIndex} chunkInfo={info} />
366
363
  </div>
367
364
  {/if}
368
365
  {/snippet}
@@ -3,11 +3,7 @@ export {};
3
3
  </script>
4
4
 
5
5
  <div class="chunks-progress">
6
- <div
7
- class="chunks"
8
- class:chunks--few={totalItems <= 3}
9
- class:chunks--common={totalItems > 3 && totalItems <= 6}
10
- class:chunks--many={totalItems > 6}>
6
+ <div class="chunks" class:chunks--few={totalItems <= 3} class:chunks--common={totalItems > 3 && totalItems <= 6} class:chunks--many={totalItems > 6}>
11
7
  {#each Array(totalItems) as _, i (i)}
12
8
  <div class="chunk" class:active={i <= activeItemIndex} aria-label={`Item ${i}`}></div>
13
9
  {/each}
@@ -14,19 +14,6 @@ const styles = $derived.by(() => {
14
14
 
15
15
  <svelte:head>
16
16
  <link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Inter:wght@300..700&display=swap" />
17
- <meta name="theme-color" content="#242424" />
18
- <meta name="color-scheme" content="dark" />
19
- <meta name="mobile-web-app-capable" content="yes" />
20
- <meta name="apple-mobile-web-app-capable" content="yes" />
21
- <meta name="apple-mobile-web-app-status-bar-style" content="black" />
22
-
23
- <style>
24
- html,
25
- body {
26
- background-color: #242424;
27
- color-scheme: dark;
28
- }
29
- </style>
30
17
  </svelte:head>
31
18
 
32
19
  <div
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@streamscloud/embeddable",
3
- "version": "14.1.1",
3
+ "version": "14.1.2",
4
4
  "author": "StreamsCloud",
5
5
  "repository": {
6
6
  "type": "git",