@promakeai/inspector 1.1.2 → 1.1.4
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/App.d.ts +1 -1
- package/dist/App.d.ts.map +1 -1
- package/dist/components/ui/button.d.ts +1 -1
- package/dist/components/ui/button.d.ts.map +1 -1
- package/dist/inspector.css +1 -1
- package/dist/inspector.js +820 -4847
- package/dist/utils/urlTracker.d.ts +1 -5
- package/dist/utils/urlTracker.d.ts.map +1 -1
- package/package.json +4 -3
|
@@ -1,11 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* URL Tracker - Monitors and reports URL changes
|
|
3
3
|
*/
|
|
4
|
-
|
|
5
|
-
oldUrl: string;
|
|
6
|
-
newUrl: string;
|
|
7
|
-
timestamp: number;
|
|
8
|
-
}
|
|
4
|
+
import { UrlChangeData } from "@promakeai/inspector-types";
|
|
9
5
|
export type UrlChangeCallback = (data: UrlChangeData) => void;
|
|
10
6
|
export declare class UrlTracker {
|
|
11
7
|
private callback;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"urlTracker.d.ts","sourceRoot":"","sources":["../../src/utils/urlTracker.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,
|
|
1
|
+
{"version":3,"file":"urlTracker.d.ts","sourceRoot":"","sources":["../../src/utils/urlTracker.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,OAAO,EAAE,aAAa,EAAE,MAAM,4BAA4B,CAAC;AAE3D,MAAM,MAAM,iBAAiB,GAAG,CAAC,IAAI,EAAE,aAAa,KAAK,IAAI,CAAC;AAE9D,qBAAa,UAAU;IACrB,OAAO,CAAC,QAAQ,CAAoB;IACpC,OAAO,CAAC,OAAO,CAAS;gBAEZ,QAAQ,EAAE,iBAAiB;IAKvC;;OAEG;IACH,KAAK;IAeL;;OAEG;IACH,OAAO,CAAC,cAAc;IActB;;OAEG;IACH,OAAO,CAAC,uBAAuB;CAchC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@promakeai/inspector",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.4",
|
|
4
4
|
"description": "Visual element inspector React component with AI prompt support",
|
|
5
5
|
"author": "Promake",
|
|
6
6
|
"type": "module",
|
|
@@ -35,7 +35,8 @@
|
|
|
35
35
|
"test": "vitest run",
|
|
36
36
|
"test:watch": "vitest",
|
|
37
37
|
"test:coverage": "vitest run --coverage",
|
|
38
|
-
"prepublishOnly": "bun run build"
|
|
38
|
+
"prepublishOnly": "bun run build",
|
|
39
|
+
"release": "bun run build && npm publish --access public"
|
|
39
40
|
},
|
|
40
41
|
"keywords": [
|
|
41
42
|
"react",
|
|
@@ -56,7 +57,7 @@
|
|
|
56
57
|
}
|
|
57
58
|
},
|
|
58
59
|
"dependencies": {
|
|
59
|
-
"@promakeai/inspector-types": "
|
|
60
|
+
"@promakeai/inspector-types": "1.0.2",
|
|
60
61
|
"clsx": "^2.1.1",
|
|
61
62
|
"lodash": "^4.17.21",
|
|
62
63
|
"lucide-react": "^0.554.0",
|