@react-bulk/expo 1.7.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/README.md +38 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +1 -0
- package/dist/platform/index.d.ts +1 -0
- package/dist/platform/index.js +1 -0
- package/dist/platform/index.web.d.ts +1 -0
- package/dist/platform/index.web.js +1 -0
- package/package.json +50 -0
package/README.md
ADDED
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
<div align="center">
|
|
2
|
+
<h1 style="color: #8B5CF6;">
|
|
3
|
+
<br>
|
|
4
|
+
React Bulk
|
|
5
|
+
<br>
|
|
6
|
+
</h1>
|
|
7
|
+
|
|
8
|
+
<p>
|
|
9
|
+
<br>
|
|
10
|
+
Complete and uniform UI for React Web and Native
|
|
11
|
+
<br>
|
|
12
|
+
</p>
|
|
13
|
+
|
|
14
|
+
<a href="https://www.npmjs.com/package/@react-bulk/core">
|
|
15
|
+
<img src="https://img.shields.io/npm/v/@react-bulk/core.svg" alt="NPM" />
|
|
16
|
+
</a>
|
|
17
|
+
|
|
18
|
+
<br>
|
|
19
|
+
<br>
|
|
20
|
+
|
|
21
|
+
<h2>Getting Started</h2>
|
|
22
|
+
|
|
23
|
+
[Installation](https://rbk.caioedut.com/docs/getting-started/installation)
|
|
24
|
+
| [Configuration](https://rbk.caioedut.com/docs/getting-started/configuration)
|
|
25
|
+
| [Components](https://rbk.caioedut.com/docs/category/core)
|
|
26
|
+
| [Hooks](https://rbk.caioedut.com/docs/category/hooks)
|
|
27
|
+
|
|
28
|
+
([📖 Read the full Documentation](https://rbk.caioedut.com/))
|
|
29
|
+
|
|
30
|
+
<br>
|
|
31
|
+
<br>
|
|
32
|
+
|
|
33
|
+
<h2>Sponsor</h2>
|
|
34
|
+
|
|
35
|
+
<a href="https://www.buymeacoffee.com/caioedut" target="_blank">
|
|
36
|
+
<img src="https://cdn.buymeacoffee.com/buttons/v2/default-violet.png" alt="Buy Me A Coffee" width="180" height="50">
|
|
37
|
+
</a>
|
|
38
|
+
</div>
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './platform';
|
package/dist/index.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './platform';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '@react-bulk/native';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '@react-bulk/native';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '@react-bulk/web';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '@react-bulk/web';
|
package/package.json
ADDED
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@react-bulk/expo",
|
|
3
|
+
"description": "React Bulk for Expo (web+native)",
|
|
4
|
+
"version": "1.7.0",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"homepage": "https://rbk.caioedut.com",
|
|
7
|
+
"repository": {
|
|
8
|
+
"type": "git",
|
|
9
|
+
"url": "git+https://github.com/caioedut/react-bulk.git",
|
|
10
|
+
"directory": "packages/expo"
|
|
11
|
+
},
|
|
12
|
+
"author": {
|
|
13
|
+
"name": "Caio Teixeira",
|
|
14
|
+
"email": "caioedut@gmail.com"
|
|
15
|
+
},
|
|
16
|
+
"keywords": [
|
|
17
|
+
"react",
|
|
18
|
+
"react-native",
|
|
19
|
+
"react-component",
|
|
20
|
+
"web",
|
|
21
|
+
"native",
|
|
22
|
+
"android",
|
|
23
|
+
"ios",
|
|
24
|
+
"cross-platform",
|
|
25
|
+
"ui",
|
|
26
|
+
"ux",
|
|
27
|
+
"expo"
|
|
28
|
+
],
|
|
29
|
+
"type": "module",
|
|
30
|
+
"main": "./dist/index.js",
|
|
31
|
+
"types": "./dist/index.d.ts",
|
|
32
|
+
"files": [
|
|
33
|
+
"dist"
|
|
34
|
+
],
|
|
35
|
+
"dependencies": {
|
|
36
|
+
"@react-bulk/core": "^1.7.0",
|
|
37
|
+
"@react-bulk/native": "^1.7.0",
|
|
38
|
+
"@react-bulk/web": "^1.7.0"
|
|
39
|
+
},
|
|
40
|
+
"peerDependencies": {
|
|
41
|
+
"expo": ">=52.0.0",
|
|
42
|
+
"react": ">=17.0.0",
|
|
43
|
+
"react-native": ">=0.71.0",
|
|
44
|
+
"react-native-svg": "*"
|
|
45
|
+
},
|
|
46
|
+
"publishConfig": {
|
|
47
|
+
"access": "public"
|
|
48
|
+
},
|
|
49
|
+
"gitHead": "52a64fc3bfae7d5fdd9c6b7bbdb8524e5eee821e"
|
|
50
|
+
}
|