@playpilot/tpi 8.4.2 → 8.4.3

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@playpilot/tpi",
3
- "version": "8.4.2",
3
+ "version": "8.4.3",
4
4
  "type": "module",
5
5
  "scripts": {
6
6
  "dev": "vite dev",
@@ -19,11 +19,11 @@
19
19
  }, {
20
20
  heading: t('List: Upcoming'),
21
21
  params: { from_playlist_sid: 'li42wf', region: null, no_region_filter: true },
22
- properties: { expandable: true },
22
+ properties: { aside: true, size: 'large' },
23
23
  }, {
24
24
  heading: t('List: New'),
25
25
  params: { from_playlist_sid: 'li42WR', include_playable_types: 'SVOD,FREE' },
26
- properties: { aside: true, size: 'large' },
26
+ properties: { expandable: true },
27
27
  }, {
28
28
  heading: t('List: Demand'),
29
29
  params: { from_playlist_sid: 'licBS' },
@@ -31,7 +31,7 @@
31
31
  }, {
32
32
  heading: t('List: Cinema'),
33
33
  params: { from_playlist_sid: 'li42WS', region: null, no_region_filter: true },
34
- properties: {},
34
+ properties: { aside: true, size: 'large' },
35
35
  }]
36
36
 
37
37
  async function getListTitles(params: Record<string, any> = {}): Promise<TitleData[]> {
@@ -219,6 +219,10 @@
219
219
  width: calc(var(--width) * 2);
220
220
  height: var(--image-height);
221
221
  overflow: hidden;
222
+
223
+ &.expanded {
224
+ width: calc(var(--expanded-width) + var(--width));
225
+ }
222
226
  }
223
227
  }
224
228