react-js-banner 0.6.0 → 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 +8 -7
- package/.eslintrc.json +1 -0
- package/README.md +9 -5
- package/build/index.js +4710 -2
- package/dist/main.js +23 -0
- package/package.json +16 -20
- package/webpack.config.js +15 -6
- package/build/index.js.LICENSE.txt +0 -1
package/.babelrc
CHANGED
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
2
|
+
"presets":[
|
|
3
|
+
"@babel/preset-env",
|
|
4
|
+
[
|
|
5
|
+
"@babel/preset-react",
|
|
6
|
+
{
|
|
7
|
+
"runtime": "automatic"
|
|
8
|
+
}
|
|
9
|
+
]
|
|
9
10
|
]
|
|
10
11
|
}
|
package/.eslintrc.json
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{}
|
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>
|
|
@@ -111,19 +111,23 @@ Props available:
|
|
|
111
111
|
|
|
112
112
|
# Donations
|
|
113
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
|
-
|
|
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 :)
|
|
116
115
|
|
|
117
116
|
[](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=2MSMEVFF9P33N)
|
|
118
117
|
|
|
119
118
|
You can also follow me on Patreon:
|
|
119
|
+
https://patreon.com/Jacware
|
|
120
120
|
|
|
121
|
-
https://patreon.com/Jacware?utm_medium=unknown&utm_source=join_link&utm_campaign=creatorshare_creator&utm_content=copyLink
|
|
122
121
|
|
|
123
122
|
# Changelog
|
|
124
123
|
|
|
124
|
+
### v0.6.1
|
|
125
|
+
* Removed Polyfill Dependency
|
|
126
|
+
* Package size decreased!
|
|
127
|
+
|
|
128
|
+
|
|
125
129
|
### v0.6.0
|
|
126
|
-
* Bug
|
|
130
|
+
* Bug Fixes
|
|
127
131
|
* Dependencies updated
|
|
128
132
|
|
|
129
133
|
### v0.5.2
|