@robylon/react-native-sdk 2.0.31-staging.6 → 2.1.0

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.
Files changed (55) hide show
  1. package/lib/commonjs/Chatbotsdk.js +1 -1
  2. package/lib/commonjs/Chatbotsdk.js.map +1 -1
  3. package/lib/commonjs/config.js +1 -1
  4. package/lib/commonjs/config.js.map +1 -1
  5. package/lib/commonjs/constants.js +1 -1
  6. package/lib/commonjs/constants.js.map +1 -1
  7. package/lib/module/Chatbotsdk.js +1 -1
  8. package/lib/module/Chatbotsdk.js.map +1 -1
  9. package/lib/module/config.js +1 -1
  10. package/lib/module/config.js.map +1 -1
  11. package/lib/module/constants.js +1 -1
  12. package/lib/module/constants.js.map +1 -1
  13. package/lib/module/openChatbot.js +2 -1
  14. package/lib/module/openChatbot.js.map +1 -1
  15. package/lib/typescript/Chatbotsdk.d.ts.map +1 -1
  16. package/package.json +1 -1
  17. package/android/src/main/AndroidManifest.xml +0 -3
  18. package/android/src/main/java/com/robylonreactnativesdk/RobylonDownloadModule.java +0 -83
  19. package/android/src/main/java/com/robylonreactnativesdk/RobylonReactNativeSdkPackage.java +0 -24
  20. package/src/Chatbotsdk.tsx +0 -946
  21. package/src/FloatingButton/launchers/ImageLauncher.tsx +0 -75
  22. package/src/FloatingButton/launchers/TextLauncher.tsx +0 -84
  23. package/src/FloatingButton/launchers/TextualImageLauncher.tsx +0 -133
  24. package/src/FloatingButton.tsx +0 -97
  25. package/src/LoadingIndicator.tsx +0 -11
  26. package/src/Toast.tsx +0 -65
  27. package/src/components/DebugButton.tsx +0 -46
  28. package/src/components/ErrorBoundary.tsx +0 -38
  29. package/src/config.ts +0 -4
  30. package/src/constants/errorConstants.ts +0 -21
  31. package/src/constants/fontStyles.ts +0 -3
  32. package/src/constants.ts +0 -5
  33. package/src/global.d.ts +0 -11
  34. package/src/hooks/useChatbotEvents.ts +0 -93
  35. package/src/index.tsx +0 -10
  36. package/src/openChatbot.ts +0 -11
  37. package/src/openChatbot.tsx +0 -0
  38. package/src/services/ErrorTrackingService.ts +0 -217
  39. package/src/types/events.ts +0 -28
  40. package/src/types/react-native-flipper-performance-plugin.d.ts +0 -3
  41. package/src/types/react-native-globals.d.ts +0 -10
  42. package/src/utils/animations.ts +0 -120
  43. package/src/utils/colorUtils.ts +0 -35
  44. package/src/utils/cookieUtils.ts +0 -7
  45. package/src/utils/debugConfig.ts +0 -56
  46. package/src/utils/debugMenu.ts +0 -14
  47. package/src/utils/errorHandler.ts +0 -58
  48. package/src/utils/fileDownload.ts +0 -198
  49. package/src/utils/logger.ts +0 -14
  50. package/src/utils/systemInfo.ts +0 -110
  51. package/src/utils/webViewStorage.ts +0 -62
  52. package/src/version.ts +0 -2
  53. package/src/versions/version.dev.ts +0 -2
  54. package/src/versions/version.production.ts +0 -2
  55. package/src/versions/version.staging.ts +0 -2
@@ -1,24 +0,0 @@
1
- package com.robylonreactnativesdk;
2
-
3
- import com.facebook.react.ReactPackage;
4
- import com.facebook.react.bridge.NativeModule;
5
- import com.facebook.react.bridge.ReactApplicationContext;
6
- import com.facebook.react.uimanager.ViewManager;
7
-
8
- import java.util.ArrayList;
9
- import java.util.Collections;
10
- import java.util.List;
11
-
12
- public class RobylonReactNativeSdkPackage implements ReactPackage {
13
- @Override
14
- public List<NativeModule> createNativeModules(ReactApplicationContext reactContext) {
15
- List<NativeModule> modules = new ArrayList<>();
16
- modules.add(new RobylonDownloadModule(reactContext));
17
- return modules;
18
- }
19
-
20
- @Override
21
- public List<ViewManager> createViewManagers(ReactApplicationContext reactContext) {
22
- return Collections.emptyList();
23
- }
24
- }