@everymatrix/casino-slider 1.29.6 → 1.29.8
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": "@everymatrix/casino-slider",
|
3
|
-
"version": "1.29.
|
3
|
+
"version": "1.29.8",
|
4
4
|
"main": "dist/casino-slider.js",
|
5
5
|
"svelte": "src/index.ts",
|
6
6
|
"scripts": {
|
@@ -35,5 +35,5 @@
|
|
35
35
|
"publishConfig": {
|
36
36
|
"access": "public"
|
37
37
|
},
|
38
|
-
"gitHead": "
|
38
|
+
"gitHead": "a6ce52ac3c8209814f7d801c927c7d2d9224b2ae"
|
39
39
|
}
|
package/src/CasinoSlider.svelte
CHANGED
@@ -17,7 +17,6 @@
|
|
17
17
|
export let clientstylingurl:string = '';
|
18
18
|
export let identity:string = '';
|
19
19
|
export let translationurl:string = '';
|
20
|
-
export let containermaxwidth:string = '';
|
21
20
|
export let isprimarymenu:boolean = false;
|
22
21
|
export let issecondarymenu:boolean = false;
|
23
22
|
export let lang:string = '';
|
@@ -245,7 +244,10 @@
|
|
245
244
|
</script>
|
246
245
|
|
247
246
|
<div class="CarouselWrapper { (location === 'headerMain') ? 'CarouselWrapperHeaderMain' : '' }" bind:this={customStylingContainer}>
|
248
|
-
<div
|
247
|
+
<div
|
248
|
+
class={`CarouselContainer CarouselContainerMobile ${ location === 'headerMain' ? 'CarouselContainerHeaderMain' : '' }`}
|
249
|
+
style="{ (location === 'headerMain') ? 'max-width: auto' : undefined }"
|
250
|
+
>
|
249
251
|
<div class="CarouselLeftArrow" on:click="{() => scrollLeft()}">
|
250
252
|
<svg fill="none" stroke="var(--emfe-w-categories-arrows, var( --emfe-w-color-white, #FFFFFF));" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
251
253
|
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M15 19l-7-7 7-7"></path>
|
@@ -327,6 +329,7 @@
|
|
327
329
|
width: 100%;
|
328
330
|
color: var(--emfe-w-categories-typography, var(--emfe-w-color-white, #FFFFFF));
|
329
331
|
margin: 0 auto;
|
332
|
+
max-width: 1300px;
|
330
333
|
&.CarouselContainerMobile {
|
331
334
|
padding: 0;
|
332
335
|
}
|