@vizzly-testing/cli 0.13.4 → 0.14.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.
@@ -0,0 +1,13 @@
1
+ /**
2
+ * Fullscreen comparison viewer - mirrors the Vizzly cloud product UI exactly
3
+ * Displays a single comparison with navigation between screenshots
4
+ */
5
+ export default function FullscreenViewer({ comparison, comparisons, onClose, onAccept, onReject, onNavigate, userAction, }: {
6
+ comparison: any;
7
+ comparisons?: any[];
8
+ onClose: any;
9
+ onAccept: any;
10
+ onReject: any;
11
+ onNavigate: any;
12
+ userAction: any;
13
+ }): any;
@@ -0,0 +1,9 @@
1
+ /**
2
+ * Screenshot list component - simple scannable list
3
+ * Click any row to open the fullscreen comparison viewer
4
+ */
5
+ export default function ScreenshotList({ comparisons, onSelectComparison, loadingStates, }: {
6
+ comparisons: any;
7
+ onSelectComparison: any;
8
+ loadingStates?: {};
9
+ }): any;
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Variant selector for toggling between different viewport sizes and browsers
3
- * Matches cloud product's variant selection UI
3
+ * Mobile-first with horizontal scroll
4
4
  */
5
5
  export default function VariantSelector({ group, selectedIndex, onSelect }: {
6
6
  group: any;
@@ -0,0 +1,8 @@
1
+ /**
2
+ * Route-driven comparison detail view
3
+ * The route parameter :id determines which comparison to show
4
+ */
5
+ export default function ComparisonDetailView({ reportData, setReportData }: {
6
+ reportData: any;
7
+ setReportData: any;
8
+ }): any;
@@ -1,3 +1,7 @@
1
+ /**
2
+ * Comparisons list view - displays all screenshots
3
+ * Clicking a screenshot navigates to /comparison/:id
4
+ */
1
5
  export default function ComparisonsView({ reportData, setReportData, onRefresh, loading, }: {
2
6
  reportData: any;
3
7
  setReportData: any;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vizzly-testing/cli",
3
- "version": "0.13.4",
3
+ "version": "0.14.0",
4
4
  "description": "Visual review platform for UI developers and designers",
5
5
  "keywords": [
6
6
  "visual-testing",