react-js-banner 0.6.0-beta2 → 0.6.0
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 +7 -10
- package/README.md +13 -0
- package/build/index.js +2 -4682
- package/build/index.js.LICENSE.txt +1 -0
- package/package.json +21 -15
- package/webpack.config.js +5 -20
- package/.eslintrc.json +0 -1
package/.babelrc
CHANGED
|
@@ -1,13 +1,10 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
}
|
|
10
|
-
]
|
|
2
|
+
"presets": [
|
|
3
|
+
"@babel/preset-env",
|
|
4
|
+
"@babel/preset-react",
|
|
5
|
+
],
|
|
6
|
+
"plugins": [
|
|
7
|
+
"@babel/plugin-transform-object-rest-spread",
|
|
8
|
+
"@babel/plugin-transform-react-jsx",
|
|
11
9
|
]
|
|
12
|
-
|
|
13
10
|
}
|
package/README.md
CHANGED
|
@@ -109,10 +109,23 @@ 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
|
|
112
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
|
+
|
|
117
|
+
[](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=2MSMEVFF9P33N)
|
|
118
|
+
|
|
119
|
+
You can also follow me on Patreon:
|
|
120
|
+
|
|
121
|
+
https://patreon.com/Jacware?utm_medium=unknown&utm_source=join_link&utm_campaign=creatorshare_creator&utm_content=copyLink
|
|
113
122
|
|
|
114
123
|
# Changelog
|
|
115
124
|
|
|
125
|
+
### v0.6.0
|
|
126
|
+
* Bug fixes
|
|
127
|
+
* Dependencies updated
|
|
128
|
+
|
|
116
129
|
### v0.5.2
|
|
117
130
|
* Removed polyfill as dependency
|
|
118
131
|
|