@umituz/react-native-onboarding 2.1.0 → 2.1.1

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@umituz/react-native-onboarding",
3
- "version": "2.1.0",
3
+ "version": "2.1.1",
4
4
  "description": "Advanced onboarding flow for React Native apps with personalization questions, gradient backgrounds, animations, and customizable slides. SOLID, DRY, KISS principles applied.",
5
5
  "main": "./src/index.ts",
6
6
  "types": "./src/index.ts",
@@ -49,6 +49,8 @@ export const useOnboardingNavigation = (
49
49
  await onComplete();
50
50
  }
51
51
  // Emit event for app-level handling
52
+ /* eslint-disable-next-line no-console */
53
+ if (__DEV__) console.log("[useOnboardingNavigation] Emitting onboarding-complete event");
52
54
  DeviceEventEmitter.emit("onboarding-complete");
53
55
  }, [onComplete]);
54
56