@meursyphus/flitter 0.0.6 → 0.0.8
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 +4 -1
- package/index.cjs +282 -171
- package/index.d.cts +133 -23
- package/index.d.ts +133 -23
- package/index.global.js +287 -176
- package/index.js +282 -171
- package/package.json +4 -2
package/README.md
CHANGED
|
@@ -11,9 +11,11 @@ For more details, visit [here](https://flitter.pages.dev).
|
|
|
11
11
|
Getting started with Flitter is straightforward. Follow these steps to install and use Flitter in your React or Svelte projects. (Or you can implement widget component manually to support Flitter.)
|
|
12
12
|
|
|
13
13
|
### React
|
|
14
|
+
|
|
14
15
|
```bash
|
|
15
16
|
npm i @meursyphus/flitter @meursyphus/flitter-react
|
|
16
17
|
```
|
|
18
|
+
|
|
17
19
|
Example of using Flitter widgets in a React component:
|
|
18
20
|
|
|
19
21
|
```javascript
|
|
@@ -34,6 +36,7 @@ const App = () => {
|
|
|
34
36
|
);
|
|
35
37
|
};
|
|
36
38
|
```
|
|
39
|
+
|
|
37
40
|
### Svelte
|
|
38
41
|
|
|
39
42
|
```bash
|
|
@@ -67,4 +70,4 @@ npm i @meursyphus/flitter @meursyphus/flitter-svelte
|
|
|
67
70
|
|
|
68
71
|
Flitter is open-source software freely available under the MIT license.
|
|
69
72
|
|
|
70
|
-
For more information and documentation, refer to the [Flitter official documentation](https://flitter.pages.dev).
|
|
73
|
+
For more information and documentation, refer to the [Flitter official documentation](https://flitter.pages.dev).
|