uidex 0.3.0 → 0.4.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/cli/cli.cjs +122 -41
- package/dist/cli/cli.cjs.map +1 -1
- package/dist/cloud/index.cjs +22 -2
- package/dist/cloud/index.cjs.map +1 -1
- package/dist/cloud/index.js +22 -2
- package/dist/cloud/index.js.map +1 -1
- package/dist/headless/index.cjs +909 -346
- package/dist/headless/index.cjs.map +1 -1
- package/dist/headless/index.d.cts +6 -0
- package/dist/headless/index.d.ts +6 -0
- package/dist/headless/index.js +914 -346
- package/dist/headless/index.js.map +1 -1
- package/dist/index.cjs +2887 -1167
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +83 -16
- package/dist/index.d.ts +83 -16
- package/dist/index.js +2919 -1175
- package/dist/index.js.map +1 -1
- package/dist/react/index.cjs +2850 -1155
- package/dist/react/index.cjs.map +1 -1
- package/dist/react/index.d.cts +55 -8
- package/dist/react/index.d.ts +55 -8
- package/dist/react/index.js +2879 -1159
- package/dist/react/index.js.map +1 -1
- package/dist/scan/index.cjs +121 -42
- package/dist/scan/index.cjs.map +1 -1
- package/dist/scan/index.d.cts +5 -0
- package/dist/scan/index.d.ts +5 -0
- package/dist/scan/index.js +121 -42
- package/dist/scan/index.js.map +1 -1
- package/package.json +18 -17
- package/templates/claude/audit.md +8 -2
- package/templates/claude/rules.md +15 -0
- package/dist/cloud/index.d.cts +0 -108
- package/dist/cloud/index.d.ts +0 -108
|
@@ -33,11 +33,16 @@ interface Route {
|
|
|
33
33
|
path: string;
|
|
34
34
|
page: string;
|
|
35
35
|
}
|
|
36
|
+
interface FlowStep {
|
|
37
|
+
entityId: string;
|
|
38
|
+
action?: string;
|
|
39
|
+
}
|
|
36
40
|
interface Flow {
|
|
37
41
|
kind: "flow";
|
|
38
42
|
id: string;
|
|
39
43
|
loc: Location;
|
|
40
44
|
touches: string[];
|
|
45
|
+
steps: FlowStep[];
|
|
41
46
|
}
|
|
42
47
|
interface Page extends EntityWithMetaBase {
|
|
43
48
|
kind: "page";
|
|
@@ -179,6 +184,7 @@ interface OverlayShowOptions {
|
|
|
179
184
|
borderStyle?: string;
|
|
180
185
|
borderWidth?: number;
|
|
181
186
|
fillOpacity?: number;
|
|
187
|
+
backdrop?: boolean;
|
|
182
188
|
}
|
|
183
189
|
|
|
184
190
|
type Corner = "top-left" | "top-right" | "bottom-left" | "bottom-right";
|
package/dist/headless/index.d.ts
CHANGED
|
@@ -33,11 +33,16 @@ interface Route {
|
|
|
33
33
|
path: string;
|
|
34
34
|
page: string;
|
|
35
35
|
}
|
|
36
|
+
interface FlowStep {
|
|
37
|
+
entityId: string;
|
|
38
|
+
action?: string;
|
|
39
|
+
}
|
|
36
40
|
interface Flow {
|
|
37
41
|
kind: "flow";
|
|
38
42
|
id: string;
|
|
39
43
|
loc: Location;
|
|
40
44
|
touches: string[];
|
|
45
|
+
steps: FlowStep[];
|
|
41
46
|
}
|
|
42
47
|
interface Page extends EntityWithMetaBase {
|
|
43
48
|
kind: "page";
|
|
@@ -179,6 +184,7 @@ interface OverlayShowOptions {
|
|
|
179
184
|
borderStyle?: string;
|
|
180
185
|
borderWidth?: number;
|
|
181
186
|
fillOpacity?: number;
|
|
187
|
+
backdrop?: boolean;
|
|
182
188
|
}
|
|
183
189
|
|
|
184
190
|
type Corner = "top-left" | "top-right" | "bottom-left" | "bottom-right";
|