@naniteninja/profile-comparison-lib 1.0.14 → 1.0.15

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/index.d.ts CHANGED
@@ -451,6 +451,10 @@ declare class ProfileComparisonLibComponent implements OnInit, AfterViewInit, On
451
451
  viewProfileClick: EventEmitter<{
452
452
  side: "left" | "right";
453
453
  }>;
454
+ /** Fires when the user drags a frame to its maximum displacement and
455
+ * continues pulling past the edge. The parent can use this to swipe to
456
+ * the next/previous prospect in its own swiper. */
457
+ edgeDrag: EventEmitter<"left" | "right">;
454
458
  selectedFile: File | null;
455
459
  firstImageData: FaceDetectionData | null;
456
460
  secondImageData: FaceDetectionData | null;
@@ -578,7 +582,7 @@ declare class ProfileComparisonLibComponent implements OnInit, AfterViewInit, On
578
582
  applyDefaultAlignment(): void;
579
583
  isValidFaceData(face: IBoundingBox): boolean;
580
584
  static ɵfac: i0.ɵɵFactoryDeclaration<ProfileComparisonLibComponent, [null, null, null, null, null, { optional: true; }]>;
581
- static ɵcmp: i0.ɵɵComponentDeclaration<ProfileComparisonLibComponent, "lib-profile-comparison", never, { "config": { "alias": "config"; "required": false; }; "backendMode": { "alias": "backendMode"; "required": false; }; "backendUrl": { "alias": "backendUrl"; "required": false; }; "fadeAllEdges": { "alias": "fadeAllEdges"; "required": false; }; }, { "matrixDataChange": "matrixDataChange"; "rawLLMOutputChange": "rawLLMOutputChange"; "viewProfileClick": "viewProfileClick"; }, never, never, false, never>;
585
+ static ɵcmp: i0.ɵɵComponentDeclaration<ProfileComparisonLibComponent, "lib-profile-comparison", never, { "config": { "alias": "config"; "required": false; }; "backendMode": { "alias": "backendMode"; "required": false; }; "backendUrl": { "alias": "backendUrl"; "required": false; }; "fadeAllEdges": { "alias": "fadeAllEdges"; "required": false; }; }, { "matrixDataChange": "matrixDataChange"; "rawLLMOutputChange": "rawLLMOutputChange"; "viewProfileClick": "viewProfileClick"; "edgeDrag": "edgeDrag"; }, never, never, false, never>;
582
586
  }
583
587
 
584
588
  declare class ProfileComparisonLibModule {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@naniteninja/profile-comparison-lib",
3
- "version": "1.0.14",
3
+ "version": "1.0.15",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^20.0.0",
6
6
  "@angular/core": "^20.0.0"