react-js-banner 0.6.0-beta3 → 0.6.1
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/.babelrc +0 -2
- package/README.md +18 -1
- package/build/index.js +4710 -3
- package/dist/main.js +23 -0
- package/package.json +7 -4
- package/webpack.config.js +1 -7
- package/build/index.js.LICENSE.txt +0 -23
package/.babelrc
CHANGED
package/README.md
CHANGED
|
@@ -78,7 +78,7 @@ Example of banner with image:
|
|
|
78
78
|
```
|
|
79
79
|
|
|
80
80
|
New! Now the banner accepts a list of children to display all content data
|
|
81
|
-
```
|
|
81
|
+
``` html
|
|
82
82
|
<Banner showBanner={true}>
|
|
83
83
|
<div>
|
|
84
84
|
<h1>h1</h1>
|
|
@@ -109,10 +109,27 @@ Props available:
|
|
|
109
109
|
| transitionTime | number | N| time for the transition to take |
|
|
110
110
|
| showBanner | bool | N| force the banner to show or hide, this will override the `visibleTime` variable |
|
|
111
111
|
|
|
112
|
+
# Donations
|
|
113
|
+
|
|
114
|
+
If you think that any information you obtained here is useful and worth of some money and are willing to pay for it, feel free to send any amount through Paypal :)
|
|
115
|
+
|
|
116
|
+
[](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=2MSMEVFF9P33N)
|
|
117
|
+
|
|
118
|
+
You can also follow me on Patreon:
|
|
119
|
+
https://patreon.com/Jacware
|
|
112
120
|
|
|
113
121
|
|
|
114
122
|
# Changelog
|
|
115
123
|
|
|
124
|
+
### v0.6.1
|
|
125
|
+
* Removed Polyfill Dependency
|
|
126
|
+
* Package size decreased!
|
|
127
|
+
|
|
128
|
+
|
|
129
|
+
### v0.6.0
|
|
130
|
+
* Bug Fixes
|
|
131
|
+
* Dependencies updated
|
|
132
|
+
|
|
116
133
|
### v0.5.2
|
|
117
134
|
* Removed polyfill as dependency
|
|
118
135
|
|