@fluix-ui/solid 0.0.2 → 0.0.5
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 +29 -0
- package/package.json +11 -4
package/README.md
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
# @fluix-ui/solid
|
|
2
|
+
|
|
3
|
+
Solid adapter for Fluix UI components.
|
|
4
|
+
|
|
5
|
+
## Install
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npm install @fluix-ui/solid @fluix-ui/css
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Usage
|
|
12
|
+
|
|
13
|
+
```ts
|
|
14
|
+
import { fluix } from "@fluix-ui/solid";
|
|
15
|
+
import "@fluix-ui/css";
|
|
16
|
+
```
|
|
17
|
+
|
|
18
|
+
### Custom themes
|
|
19
|
+
|
|
20
|
+
Pass any theme name — themes are pure CSS. See `@fluix-ui/css` for details.
|
|
21
|
+
|
|
22
|
+
```ts
|
|
23
|
+
fluix.success({ title: "Done", theme: "midnight" });
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
## Docs
|
|
27
|
+
|
|
28
|
+
- Official docs: https://fluix.ivanlopezdev.es
|
|
29
|
+
- Source code: https://github.com/ivanlhz/fluix
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fluix-ui/solid",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.5",
|
|
4
4
|
"description": "Solid.js adapter for Fluix UI components.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -25,14 +25,21 @@
|
|
|
25
25
|
"sideEffects": false,
|
|
26
26
|
"peerDependencies": {
|
|
27
27
|
"solid-js": ">=1.8",
|
|
28
|
-
"@fluix-ui/core": "0.0.
|
|
29
|
-
"@fluix-ui/css": "0.0.
|
|
28
|
+
"@fluix-ui/core": "0.0.5",
|
|
29
|
+
"@fluix-ui/css": "0.0.5"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
32
32
|
"solid-js": "^1.9.0",
|
|
33
33
|
"tsup": "^8.3.0",
|
|
34
34
|
"typescript": "^5.7.0",
|
|
35
|
-
"@fluix-ui/core": "0.0.
|
|
35
|
+
"@fluix-ui/core": "0.0.5"
|
|
36
|
+
},
|
|
37
|
+
"repository": {
|
|
38
|
+
"type": "git",
|
|
39
|
+
"url": "https://github.com/ivanlhz/fluix.git"
|
|
40
|
+
},
|
|
41
|
+
"publishConfig": {
|
|
42
|
+
"access": "public"
|
|
36
43
|
},
|
|
37
44
|
"scripts": {
|
|
38
45
|
"build": "tsup",
|