@mcpc-tech/unplugin-dev-inspector-mcp 0.1.18 → 0.1.19
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/client/dist/inspector.css +23 -0
- package/client/dist/inspector.js +109 -86
- package/dist/config-updater.cjs +41 -2
- package/dist/config-updater.js +41 -2
- package/package.json +1 -1
|
@@ -108,6 +108,7 @@
|
|
|
108
108
|
--color-slate-600: oklch(44.6% .043 257.281);
|
|
109
109
|
--color-slate-700: oklch(37.2% .044 257.287);
|
|
110
110
|
--color-gray-400: oklch(70.7% .022 261.325);
|
|
111
|
+
--color-gray-800: oklch(27.8% .033 256.848);
|
|
111
112
|
--color-zinc-50: oklch(98.5% 0 0);
|
|
112
113
|
--color-zinc-200: oklch(92% .004 286.32);
|
|
113
114
|
--color-zinc-500: oklch(55.2% .016 285.938);
|
|
@@ -574,6 +575,10 @@
|
|
|
574
575
|
top: calc(var(--spacing) * 2);
|
|
575
576
|
}
|
|
576
577
|
|
|
578
|
+
.top-3 {
|
|
579
|
+
top: calc(var(--spacing) * 3);
|
|
580
|
+
}
|
|
581
|
+
|
|
577
582
|
.top-4 {
|
|
578
583
|
top: calc(var(--spacing) * 4);
|
|
579
584
|
}
|
|
@@ -1882,6 +1887,10 @@
|
|
|
1882
1887
|
}
|
|
1883
1888
|
}
|
|
1884
1889
|
|
|
1890
|
+
.bg-black {
|
|
1891
|
+
background-color: var(--color-black);
|
|
1892
|
+
}
|
|
1893
|
+
|
|
1885
1894
|
.bg-black\/50 {
|
|
1886
1895
|
background-color: #00000080;
|
|
1887
1896
|
}
|
|
@@ -2012,6 +2021,16 @@
|
|
|
2012
2021
|
}
|
|
2013
2022
|
}
|
|
2014
2023
|
|
|
2024
|
+
.bg-muted\/80 {
|
|
2025
|
+
background-color: color-mix(in srgb, hsl(var(--muted)) 80%, transparent);
|
|
2026
|
+
}
|
|
2027
|
+
|
|
2028
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
2029
|
+
.bg-muted\/80 {
|
|
2030
|
+
background-color: color-mix(in oklab, var(--color-muted) 80%, transparent);
|
|
2031
|
+
}
|
|
2032
|
+
}
|
|
2033
|
+
|
|
2015
2034
|
.bg-muted\/90 {
|
|
2016
2035
|
background-color: color-mix(in srgb, hsl(var(--muted)) 90%, transparent);
|
|
2017
2036
|
}
|
|
@@ -3080,6 +3099,10 @@
|
|
|
3080
3099
|
}
|
|
3081
3100
|
}
|
|
3082
3101
|
|
|
3102
|
+
.hover\:bg-gray-800:hover {
|
|
3103
|
+
background-color: var(--color-gray-800);
|
|
3104
|
+
}
|
|
3105
|
+
|
|
3083
3106
|
.hover\:bg-muted:hover {
|
|
3084
3107
|
background-color: var(--color-muted);
|
|
3085
3108
|
}
|