react-famewall 1.0.8 → 1.0.10
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/README.md +17 -0
- package/dist/index.js +2061 -5
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +2061 -5
- package/dist/index.modern.js.map +1 -1
- package/package.json +1 -4
package/README.md
CHANGED
|
@@ -76,6 +76,23 @@ const App = () => {
|
|
|
76
76
|
}
|
|
77
77
|
```
|
|
78
78
|
|
|
79
|
+
To enable autolooping of carousels use autoplay flag as boolean variable
|
|
80
|
+
|
|
81
|
+
```jsx
|
|
82
|
+
|
|
83
|
+
const App = () => {
|
|
84
|
+
|
|
85
|
+
return(
|
|
86
|
+
<FamewallEmbed
|
|
87
|
+
wallUrl="famewall"
|
|
88
|
+
cardTheme="dark"
|
|
89
|
+
carouselMode={true}
|
|
90
|
+
autoplay={true}
|
|
91
|
+
/>
|
|
92
|
+
)
|
|
93
|
+
}
|
|
94
|
+
```
|
|
95
|
+
|
|
79
96
|
## Dual Slider Embed
|
|
80
97
|
|
|
81
98
|
Use 'dualSliderMode' prop to enable testimonials to be displayed as a carousel
|