@akhilpulse/samadhaan-session-replay 0.3.3 → 0.3.5

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.
@@ -15,12 +15,12 @@ android {
15
15
  }
16
16
 
17
17
  compileOptions {
18
- sourceCompatibility JavaVersion.VERSION_17
19
- targetCompatibility JavaVersion.VERSION_17
18
+ sourceCompatibility JavaVersion.VERSION_11
19
+ targetCompatibility JavaVersion.VERSION_11
20
20
  }
21
21
 
22
22
  kotlinOptions {
23
- jvmTarget = "17"
23
+ jvmTarget = "11"
24
24
  }
25
25
 
26
26
  sourceSets {
@@ -37,6 +37,6 @@ repositories {
37
37
  }
38
38
 
39
39
  dependencies {
40
- implementation "com.facebook.react:react-android"
40
+ implementation "com.facebook.react:react-native:+"
41
41
  implementation "org.jetbrains.kotlin:kotlin-stdlib:${safeExtGet('kotlinVersion', '1.9.24')}"
42
42
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@akhilpulse/samadhaan-session-replay",
3
- "version": "0.3.3",
3
+ "version": "0.3.5",
4
4
  "description": "React Native SDK for Samadhaan Guided Support — session recording, live remote screen-share, take-control, and guided-tour overlays.",
5
5
  "main": "src/index.ts",
6
6
  "module": "src/index.ts",
@@ -6,7 +6,7 @@ module.exports = {
6
6
  packageImportPath: 'import com.akhilpulse.sessionreplay.SessionReplayPixelCopyPackage;',
7
7
  packageInstance: 'new SessionReplayPixelCopyPackage()',
8
8
  },
9
- ios: null,
9
+ ios: {},
10
10
  },
11
11
  },
12
12
  };
@@ -618,10 +618,10 @@ const styles = StyleSheet.create({
618
618
  consentTitle: { color: "#0f172a", fontSize: 18, fontWeight: "700", marginBottom: 8, textAlign: "center" },
619
619
  consentBody: { color: "#475569", fontSize: 14, lineHeight: 20, textAlign: "center", marginBottom: 20 },
620
620
  consentEmphasis: { color: "#0f172a", fontWeight: "600" },
621
- consentRow: { flexDirection: "row", justifyContent: "center", gap: 10, width: "100%" },
621
+ consentRow: { flexDirection: "row", justifyContent: "center", width: "100%", marginHorizontal: -5 },
622
622
  btn: {
623
623
  flex: 1, paddingVertical: 12, paddingHorizontal: 16, borderRadius: 10,
624
- alignItems: "center", justifyContent: "center", minHeight: 44,
624
+ alignItems: "center", justifyContent: "center", minHeight: 44, marginHorizontal: 5,
625
625
  },
626
626
  btnPressed: { opacity: 0.7 },
627
627
  btnGhost: { backgroundColor: "#f1f5f9" },