@mindtris/ui 0.1.0 → 0.1.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 +3 -69
- package/dist/index.d.mts +17 -35
- package/dist/index.mjs +3395 -2595
- package/dist/index.mjs.map +1 -1
- package/package.json +4 -4
- package/tokens/themes/simplifi.css +9 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mindtris/ui",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.5",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Mindtris UI - Components, themes, and tokens",
|
|
6
6
|
"main": "./dist/index.mjs",
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
],
|
|
14
14
|
"repository": {
|
|
15
15
|
"type": "git",
|
|
16
|
-
"url": "https://github.com/mindtris/mindtris-ui.git",
|
|
16
|
+
"url": "git+https://github.com/mindtris/mindtris-ui.git",
|
|
17
17
|
"directory": "pkg/design"
|
|
18
18
|
},
|
|
19
19
|
"publishConfig": {
|
|
@@ -68,7 +68,7 @@
|
|
|
68
68
|
"react": "*",
|
|
69
69
|
"react-day-picker": "*",
|
|
70
70
|
"react-dom": "*",
|
|
71
|
-
"react-hook-form": "
|
|
71
|
+
"react-hook-form": "7.62.0",
|
|
72
72
|
"react-resizable-panels": "*",
|
|
73
73
|
"recharts": "*",
|
|
74
74
|
"tailwind-merge": "*",
|
|
@@ -84,4 +84,4 @@
|
|
|
84
84
|
"tailwind-merge": "^3.0.1",
|
|
85
85
|
"typescript": "^5.7.3"
|
|
86
86
|
}
|
|
87
|
-
}
|
|
87
|
+
}
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
--secondary-foreground: #1b1b1b;
|
|
24
24
|
/* Used for subtle surfaces + hover backgrounds (e.g. header menu hover). */
|
|
25
25
|
--muted: #dedede;
|
|
26
|
-
--muted-foreground: #
|
|
26
|
+
--muted-foreground: #4a4a4a;
|
|
27
27
|
/* Accent is a subtle highlight surface (selection, focus backgrounds). */
|
|
28
28
|
--accent: #f4effa;
|
|
29
29
|
--accent-foreground: #2f184b;
|
|
@@ -46,6 +46,13 @@
|
|
|
46
46
|
--sidebar-accent-foreground: #2f184b;
|
|
47
47
|
--sidebar-border: #dedede;
|
|
48
48
|
--sidebar-ring: #c8b1e4;
|
|
49
|
+
|
|
50
|
+
/* Brand Violet Scale */
|
|
51
|
+
--violet-50: #F4EFFA;
|
|
52
|
+
--violet-100: #C8B1E4;
|
|
53
|
+
--violet-500: #9B72CF;
|
|
54
|
+
--violet-800: #532B88;
|
|
55
|
+
--violet-950: #2F184B;
|
|
49
56
|
}
|
|
50
57
|
|
|
51
58
|
.dark {
|
|
@@ -82,4 +89,4 @@
|
|
|
82
89
|
--sidebar-accent-foreground: #f4effa;
|
|
83
90
|
--sidebar-border: #616161;
|
|
84
91
|
--sidebar-ring: #c8b1e4;
|
|
85
|
-
}
|
|
92
|
+
}
|