react-native-tree-multi-select 0.5.2 → 0.5.4
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 +16 -0
- package/package.json +16 -2
package/README.md
CHANGED
|
@@ -119,6 +119,22 @@ See the [contributing guide](CONTRIBUTING.md) to learn how to contribute to the
|
|
|
119
119
|
|
|
120
120
|
MIT
|
|
121
121
|
|
|
122
|
+
## Support the project
|
|
123
|
+
|
|
124
|
+
<p align="center" valign="center">
|
|
125
|
+
<a href="https://liberapay.com/FutureJJ/donate">
|
|
126
|
+
<img src="https://liberapay.com/assets/widgets/donate.svg" alt="LiberPay_Donation_Button" width="100" >
|
|
127
|
+
</a>
|
|
128
|
+
|
|
129
|
+
<a href="https://github.com/JairajJangle/OpenCV-Catalogue/blob/master/.github/Jairaj_Jangle_Google_Pay_UPI_QR_Code.jpg">
|
|
130
|
+
<img src="https://img.uxwing.com/wp-content/themes/uxwing/download/brands-social-media/upi-icon.svg" alt="UPI_Donation_Button" width="70" >
|
|
131
|
+
</a>
|
|
132
|
+
|
|
133
|
+
<a href="https://www.paypal.com/paypalme/jairajjangle001/usd">
|
|
134
|
+
<img src="https://logos-world.net/wp-content/uploads/2020/07/PayPal-Logo-500x281.png" alt="Paypal_Donation_Button" width="100" >
|
|
135
|
+
</a>
|
|
136
|
+
</p>
|
|
137
|
+
|
|
122
138
|
---
|
|
123
139
|
|
|
124
140
|
Made with [create-react-native-library](https://github.com/callstack/react-native-builder-bob)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-native-tree-multi-select",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.4",
|
|
4
4
|
"description": "Tree view with multi selection using checkbox",
|
|
5
5
|
"main": "lib/commonjs/index",
|
|
6
6
|
"module": "lib/module/index",
|
|
@@ -168,5 +168,19 @@
|
|
|
168
168
|
"react-native-paper": "^5.9.1",
|
|
169
169
|
"react-native-safe-area-context": "^4.6.4",
|
|
170
170
|
"react-native-vector-icons": "^9.2.0"
|
|
171
|
-
}
|
|
171
|
+
},
|
|
172
|
+
"funding": [
|
|
173
|
+
{
|
|
174
|
+
"type": "individual",
|
|
175
|
+
"url": "https://www.paypal.com/paypalme/jairajjangle001/usd"
|
|
176
|
+
},
|
|
177
|
+
{
|
|
178
|
+
"type": "individual",
|
|
179
|
+
"url": "https://liberapay.com/FutureJJ/donate"
|
|
180
|
+
},
|
|
181
|
+
{
|
|
182
|
+
"type": "individual",
|
|
183
|
+
"url": "https://ko-fi.com/futurejj"
|
|
184
|
+
}
|
|
185
|
+
]
|
|
172
186
|
}
|