@functionalcms/svelte-components 2.40.5 → 2.40.6
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.
|
@@ -33,6 +33,7 @@ export let noDrag = void 0;
|
|
|
33
33
|
export let live = void 0;
|
|
34
34
|
export let useScroll = void 0;
|
|
35
35
|
export let reducedMotion = void 0;
|
|
36
|
+
export let padding = "";
|
|
36
37
|
let options = {
|
|
37
38
|
perPage,
|
|
38
39
|
rewind,
|
|
@@ -66,7 +67,8 @@ let options = {
|
|
|
66
67
|
noDrag,
|
|
67
68
|
live,
|
|
68
69
|
useScroll,
|
|
69
|
-
reducedMotion
|
|
70
|
+
reducedMotion,
|
|
71
|
+
padding
|
|
70
72
|
};
|
|
71
73
|
</script>
|
|
72
74
|
|