@fluix-ui/solid 0.0.4 → 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 +8 -0
- package/package.json +11 -4
package/README.md
CHANGED
|
@@ -15,6 +15,14 @@ import { fluix } from "@fluix-ui/solid";
|
|
|
15
15
|
import "@fluix-ui/css";
|
|
16
16
|
```
|
|
17
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
|
+
|
|
18
26
|
## Docs
|
|
19
27
|
|
|
20
28
|
- Official docs: https://fluix.ivanlopezdev.es
|
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/
|
|
29
|
-
"@fluix-ui/
|
|
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",
|