@mcpc-tech/unplugin-dev-inspector-mcp 0.1.10 → 0.1.12
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 +5 -9
- package/client/dist/inspector.js +66 -70
- package/dist/browser-launcher.cjs +4 -0
- package/dist/browser-launcher.js +3 -0
- package/dist/browser-launcher2.cjs +93 -0
- package/dist/browser-launcher2.js +87 -0
- package/dist/cli.cjs +7 -113
- package/dist/cli.js +3 -105
- package/dist/config-updater.cjs +934 -777
- package/dist/config-updater.js +170 -44
- package/dist/helpers.cjs +49 -0
- package/dist/helpers.js +25 -0
- package/dist/index.cjs +143 -261
- package/dist/index.d.cts +4 -8
- package/dist/index.d.ts +8 -12
- package/dist/index.js +137 -254
- package/dist/loader.cjs +1 -1
- package/dist/next.cjs +1 -1
- package/package.json +2 -2
- package/dist/chunk.cjs +0 -74
- package/dist/standalone-server.cjs +0 -4
- package/dist/standalone-server.js +0 -3
|
@@ -2858,15 +2858,16 @@
|
|
|
2858
2858
|
transition-duration: var(--tw-duration, var(--default-transition-duration));
|
|
2859
2859
|
}
|
|
2860
2860
|
|
|
2861
|
-
.delay-75 {
|
|
2862
|
-
transition-delay: 75ms;
|
|
2863
|
-
}
|
|
2864
|
-
|
|
2865
2861
|
.duration-100 {
|
|
2866
2862
|
--tw-duration: .1s;
|
|
2867
2863
|
transition-duration: .1s;
|
|
2868
2864
|
}
|
|
2869
2865
|
|
|
2866
|
+
.duration-150 {
|
|
2867
|
+
--tw-duration: .15s;
|
|
2868
|
+
transition-duration: .15s;
|
|
2869
|
+
}
|
|
2870
|
+
|
|
2870
2871
|
.duration-200 {
|
|
2871
2872
|
--tw-duration: .2s;
|
|
2872
2873
|
transition-duration: .2s;
|
|
@@ -2877,11 +2878,6 @@
|
|
|
2877
2878
|
transition-duration: .3s;
|
|
2878
2879
|
}
|
|
2879
2880
|
|
|
2880
|
-
.duration-500 {
|
|
2881
|
-
--tw-duration: .5s;
|
|
2882
|
-
transition-duration: .5s;
|
|
2883
|
-
}
|
|
2884
|
-
|
|
2885
2881
|
.ease-\[cubic-bezier\(0\.23\,1\,0\.32\,1\)\] {
|
|
2886
2882
|
--tw-ease: cubic-bezier(.23, 1, .32, 1);
|
|
2887
2883
|
transition-timing-function: cubic-bezier(.23, 1, .32, 1);
|