@vobs/devtools-ui 1.0.0 → 1.2.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/dist/index.cjs +3336 -0
- package/dist/index.cjs.map +1 -0
- package/dist/index.d.cts +6 -0
- package/dist/index.d.ts +6 -0
- package/dist/index.js +3332 -0
- package/dist/index.js.map +1 -0
- package/dist/panel.cjs +3187 -0
- package/dist/panel.cjs.map +1 -0
- package/dist/panel.d.cts +41 -0
- package/dist/panel.d.ts +41 -0
- package/dist/panel.js +3183 -0
- package/dist/panel.js.map +1 -0
- package/dist/styles/styles.css +1582 -0
- package/dist/widget.cjs +3330 -0
- package/dist/widget.cjs.map +1 -0
- package/dist/widget.d.cts +13 -0
- package/dist/widget.d.ts +13 -0
- package/dist/widget.js +3328 -0
- package/dist/widget.js.map +1 -0
- package/package.json +38 -12
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { DevToolsPanelProps } from './panel.cjs';
|
|
2
|
+
import { VobsNode } from '@vobs/vobs';
|
|
3
|
+
import '@vobs/devtools';
|
|
4
|
+
import '@vobs/http';
|
|
5
|
+
import '@vobs/router';
|
|
6
|
+
|
|
7
|
+
interface DevToolsWidgetProps extends DevToolsPanelProps {
|
|
8
|
+
readonly label?: string;
|
|
9
|
+
}
|
|
10
|
+
/** Floating entry point for opening the DevTools panel without leaving the app. */
|
|
11
|
+
declare function DevToolsWidget(props?: DevToolsWidgetProps): VobsNode;
|
|
12
|
+
|
|
13
|
+
export { DevToolsWidget, type DevToolsWidgetProps };
|
package/dist/widget.d.ts
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { DevToolsPanelProps } from './panel.js';
|
|
2
|
+
import { VobsNode } from '@vobs/vobs';
|
|
3
|
+
import '@vobs/devtools';
|
|
4
|
+
import '@vobs/http';
|
|
5
|
+
import '@vobs/router';
|
|
6
|
+
|
|
7
|
+
interface DevToolsWidgetProps extends DevToolsPanelProps {
|
|
8
|
+
readonly label?: string;
|
|
9
|
+
}
|
|
10
|
+
/** Floating entry point for opening the DevTools panel without leaving the app. */
|
|
11
|
+
declare function DevToolsWidget(props?: DevToolsWidgetProps): VobsNode;
|
|
12
|
+
|
|
13
|
+
export { DevToolsWidget, type DevToolsWidgetProps };
|