@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.
package/android/build.gradle
CHANGED
|
@@ -15,12 +15,12 @@ android {
|
|
|
15
15
|
}
|
|
16
16
|
|
|
17
17
|
compileOptions {
|
|
18
|
-
sourceCompatibility JavaVersion.
|
|
19
|
-
targetCompatibility JavaVersion.
|
|
18
|
+
sourceCompatibility JavaVersion.VERSION_11
|
|
19
|
+
targetCompatibility JavaVersion.VERSION_11
|
|
20
20
|
}
|
|
21
21
|
|
|
22
22
|
kotlinOptions {
|
|
23
|
-
jvmTarget = "
|
|
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-
|
|
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
|
+
"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",
|
package/react-native.config.js
CHANGED
|
@@ -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",
|
|
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" },
|