@svadmin/create 0.13.7 → 0.14.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/package.json +1 -1
- package/scaffold-manifest.json +21 -6
- package/template/src/app.css +2 -13
package/package.json
CHANGED
package/scaffold-manifest.json
CHANGED
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
},
|
|
12
12
|
"dependencies": {
|
|
13
13
|
"@svadmin/core": "^0.36.3",
|
|
14
|
-
"@svadmin/ui": "^0.
|
|
14
|
+
"@svadmin/ui": "^0.43.0",
|
|
15
15
|
"@tanstack/svelte-query": "^6.1.38",
|
|
16
16
|
"highlight.js": "^11.11.1",
|
|
17
17
|
"@lucide/svelte": "^1.31.0"
|
|
@@ -48,15 +48,30 @@
|
|
|
48
48
|
}
|
|
49
49
|
},
|
|
50
50
|
"dataProviders": {
|
|
51
|
-
"simple-rest": [
|
|
52
|
-
|
|
53
|
-
|
|
51
|
+
"simple-rest": [
|
|
52
|
+
"refine-core",
|
|
53
|
+
"simple-rest"
|
|
54
|
+
],
|
|
55
|
+
"supabase": [
|
|
56
|
+
"refine-core",
|
|
57
|
+
"supabase"
|
|
58
|
+
],
|
|
59
|
+
"graphql": [
|
|
60
|
+
"refine-core",
|
|
61
|
+
"graphql"
|
|
62
|
+
],
|
|
54
63
|
"none": []
|
|
55
64
|
},
|
|
56
65
|
"authProviders": {
|
|
57
66
|
"mock": [],
|
|
58
|
-
"jwt": [
|
|
59
|
-
|
|
67
|
+
"jwt": [
|
|
68
|
+
"refine-core",
|
|
69
|
+
"simple-rest"
|
|
70
|
+
],
|
|
71
|
+
"supabase": [
|
|
72
|
+
"refine-core",
|
|
73
|
+
"supabase"
|
|
74
|
+
],
|
|
60
75
|
"none": []
|
|
61
76
|
}
|
|
62
77
|
}
|
package/template/src/app.css
CHANGED
|
@@ -1,18 +1,7 @@
|
|
|
1
1
|
@import "tailwindcss";
|
|
2
2
|
@import "tw-animate-css";
|
|
3
3
|
|
|
4
|
-
/*
|
|
5
|
-
@import "@svadmin/ui/app.css";
|
|
4
|
+
/* Tailwind source tokens and component discovery are owned by @svadmin/ui. */
|
|
5
|
+
@import "@svadmin/ui/app.theme.css";
|
|
6
6
|
|
|
7
7
|
@custom-variant dark (&:is(.dark *));
|
|
8
|
-
|
|
9
|
-
/* ╔═══════════════════════════════════════════════════════════╗
|
|
10
|
-
║ Color presets are now managed by @svadmin/core. ║
|
|
11
|
-
║ Use AdminApp's themeConfig prop to select a preset: ║
|
|
12
|
-
║ ║
|
|
13
|
-
║ themeConfig={{ colorPreset: 'blue' }} ║
|
|
14
|
-
║ ║
|
|
15
|
-
║ Available presets: neutral, indigo, blue, green, ║
|
|
16
|
-
║ rose, orange, violet. Custom presets can be registered ║
|
|
17
|
-
║ via registerColorPreset() from @svadmin/core. ║
|
|
18
|
-
╚═══════════════════════════════════════════════════════════╝ */
|