expo-calendar-kit 2.0.6 → 2.0.8

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.
@@ -2,6 +2,7 @@ import ExpoModulesCore
2
2
 
3
3
  public class ExpoCalendarKitModule: Module {
4
4
  public func definition() -> ModuleDefinition {
5
+ print("🔥 ExpoCalendarKitModule definition() called - MODULE IS LOADING")
5
6
  Name("ExpoCalendarKit")
6
7
 
7
8
  // Legacy functions for backward compatibility
@@ -36,7 +37,6 @@ public class ExpoCalendarKitModule: Module {
36
37
 
37
38
  // Expose the calendar view component
38
39
  View(ExpoCalendarKitView.self) {
39
- Name("ExpoCalendarKit")
40
40
  // Props
41
41
  Prop("events") { (view: ExpoCalendarKitView, events: [[String: Any]]) in
42
42
  print("🔥 MODULE: Prop setter called with \(events.count) events")
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo-calendar-kit",
3
- "version": "2.0.6",
3
+ "version": "2.0.8",
4
4
  "description": "Expo module wrapping the native Swift CalendarKit library for React Native apps",
5
5
  "main": "src/index.ts",
6
6
  "types": "src/index.ts",