replate-camera 0.14.0 → 0.14.2

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.
@@ -458,14 +458,12 @@ class ReplateCameraView: UIView, ARSessionDelegate {
458
458
  instance.addSubview(arView)
459
459
  arView.session.delegate = instance
460
460
  // Show a light-colored circular focus reticle
461
- if #available(iOS 18.0, *) {
462
- DispatchQueue.main.async {
463
- focusEntity = FocusEntity(
464
- on: arView,
465
- style: .classic(color: .clear)
466
- )
467
- }
468
- }
461
+ DispatchQueue.main.async {
462
+ focusEntity = FocusEntity(
463
+ on: arView,
464
+ style: .classic(color: .white)
465
+ )
466
+ }
469
467
 
470
468
  motionManager = CMMotionManager()
471
469
  if motionManager.isDeviceMotionAvailable {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "replate-camera",
3
- "version": "0.14.0",
3
+ "version": "0.14.2",
4
4
  "description": "Camera component for Replate Manager",
5
5
  "main": "lib/commonjs/index",
6
6
  "module": "lib/module/index",