@streamscloud/embeddable 17.0.1 → 17.0.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.
@@ -377,12 +377,14 @@ const itemActions = $derived.by(() => {
377
377
  | Property | Description | Default |
378
378
  |---|---|---|
379
379
  | `--sc-fp--background` | Player background | `light-dark(white, black)` |
380
+ | `--sc-fp--padding-left` | Left padding for video area offset | `0px` |
380
381
  | `--sc-fp--button--color` | Control button color | inherited |
381
382
  | `--sc-fp--button--color--inactive` | Inactive control button color | inherited |
382
383
  -->
383
384
 
384
385
  <style>.feed-player {
385
386
  --_feed-player--background: var(--sc-fp--background, light-dark(#ffffff, #000000));
387
+ --_feed-player--padding-left: var(--sc-fp--padding-left, 0px);
386
388
  --_feed-player--button--color: var(--sc-fp--button--color);
387
389
  --_feed-player--button--color--inactive: var(--sc-fp--button--color--inactive);
388
390
  --post-viewer--button--color: var(--_feed-player--button--color);
@@ -391,6 +393,7 @@ const itemActions = $derived.by(() => {
391
393
  width: 100%;
392
394
  height: 100%;
393
395
  display: flex;
396
+ padding-left: var(--_feed-player--padding-left);
394
397
  background: var(--_feed-player--background);
395
398
  overflow: hidden;
396
399
  container-type: inline-size;
@@ -6,6 +6,7 @@ import type { FeedPlayerProps } from './types';
6
6
  * | Property | Description | Default |
7
7
  * |---|---|---|
8
8
  * | `--sc-fp--background` | Player background | `light-dark(white, black)` |
9
+ * | `--sc-fp--padding-left` | Left padding for video area offset | `0px` |
9
10
  * | `--sc-fp--button--color` | Control button color | inherited |
10
11
  * | `--sc-fp--button--color--inactive` | Inactive control button color | inherited |
11
12
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@streamscloud/embeddable",
3
- "version": "17.0.1",
3
+ "version": "17.0.2",
4
4
  "author": "StreamsCloud",
5
5
  "repository": {
6
6
  "type": "git",