@ivao/atmosphere-react 0.0.1-next.0 → 0.1.0-next.2
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 +25 -21
- package/dist/atmosphere-react.js +4067 -3921
- package/dist/atmosphere-react.js.map +1 -1
- package/dist/react-components.d.ts +24 -19
- package/dist/styles/index.css +3 -0
- package/package.json +5 -4
- package/src/styles/colors.css +1 -1
- package/src/styles/index.css +3 -0
package/README.md
CHANGED
|
@@ -1,21 +1,25 @@
|
|
|
1
|
-
#
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
1
|
+
# Atmosphere Component Library by IVAO
|
|
2
|
+
|
|
3
|
+
## React
|
|
4
|
+
|
|
5
|
+
### Requirements
|
|
6
|
+
|
|
7
|
+
React version: > 18.3
|
|
8
|
+
|
|
9
|
+
### How to install
|
|
10
|
+
|
|
11
|
+
```bash
|
|
12
|
+
npm i @ivao/atmosphere-react
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
```bash
|
|
16
|
+
pnpm add @ivao/atmosphere-react
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
### Configure
|
|
20
|
+
|
|
21
|
+
Import our CSS by adding this line to your index file.
|
|
22
|
+
|
|
23
|
+
```typescript
|
|
24
|
+
import '@ivao/atmosphere-react/dist/styles/index.css';
|
|
25
|
+
```
|