@tyrads.com/tyrads-sdk 2.0.1 → 3.1.0-beta.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 (229) hide show
  1. package/android/build.gradle +1 -1
  2. package/android/gradle.properties +1 -1
  3. package/android/src/main/java/com/tyradssdk/TyradsSdkModule.kt +27 -6
  4. package/ios/Tyrads/AcmoConfig.swift +3 -3
  5. package/ios/Tyrads/InitModel.swift +5 -2
  6. package/ios/Tyrads/Tyrads.swift +117 -186
  7. package/ios/Tyrads/WebViewController.swift +171 -0
  8. package/ios/Tyrads/helpers/aes_encryptor.swift +81 -0
  9. package/ios/Tyrads/helpers/device_details.swift +58 -0
  10. package/ios/TyradsSdk.mm +10 -2
  11. package/ios/TyradsSdk.swift +44 -29
  12. package/lib/commonjs/acmo/core/helpers/launcher.js +20 -0
  13. package/lib/commonjs/acmo/core/helpers/launcher.js.map +1 -0
  14. package/lib/commonjs/acmo/modules/dashboard/components/active_offers_button.js +76 -0
  15. package/lib/commonjs/acmo/modules/dashboard/components/active_offers_button.js.map +1 -0
  16. package/lib/commonjs/acmo/modules/dashboard/components/custom_card.js +7 -10
  17. package/lib/commonjs/acmo/modules/dashboard/components/custom_card.js.map +1 -1
  18. package/lib/commonjs/acmo/modules/dashboard/components/custom_scroller.js +141 -0
  19. package/lib/commonjs/acmo/modules/dashboard/components/custom_scroller.js.map +1 -0
  20. package/lib/commonjs/acmo/{core/marquee.js → modules/dashboard/components/custom_shimmer.js} +46 -34
  21. package/lib/commonjs/acmo/modules/dashboard/components/custom_shimmer.js.map +1 -0
  22. package/lib/commonjs/acmo/modules/dashboard/components/offer_card.js +264 -0
  23. package/lib/commonjs/acmo/modules/dashboard/components/offer_card.js.map +1 -0
  24. package/lib/commonjs/acmo/modules/dashboard/components/offer_list_item.js +197 -0
  25. package/lib/commonjs/acmo/modules/dashboard/components/offer_list_item.js.map +1 -0
  26. package/lib/commonjs/acmo/modules/dashboard/components/premium_empty_widget.js +83 -0
  27. package/lib/commonjs/acmo/modules/dashboard/components/premium_empty_widget.js.map +1 -0
  28. package/lib/commonjs/acmo/modules/dashboard/components/premium_header.js +12 -10
  29. package/lib/commonjs/acmo/modules/dashboard/components/premium_header.js.map +1 -1
  30. package/lib/commonjs/acmo/modules/dashboard/components/premium_loading.js +118 -0
  31. package/lib/commonjs/acmo/modules/dashboard/components/premium_loading.js.map +1 -0
  32. package/lib/commonjs/acmo/modules/dashboard/repository.js +108 -32
  33. package/lib/commonjs/acmo/modules/dashboard/repository.js.map +1 -1
  34. package/lib/commonjs/acmo/modules/dashboard/top_offers.js +70 -63
  35. package/lib/commonjs/acmo/modules/dashboard/top_offers.js.map +1 -1
  36. package/lib/commonjs/assets/images/angle_up.png +0 -0
  37. package/lib/commonjs/assets/images/diamond.png +0 -0
  38. package/lib/commonjs/assets/images/info.png +0 -0
  39. package/lib/commonjs/assets/images/info_icon.png +0 -0
  40. package/lib/commonjs/assets/images/premium-emptybg.jpeg +0 -0
  41. package/lib/commonjs/assets/images/rank_1.png +0 -0
  42. package/lib/commonjs/assets/images/rank_2.png +0 -0
  43. package/lib/commonjs/assets/images/rank_3.png +0 -0
  44. package/lib/commonjs/assets/images/rank_4.png +0 -0
  45. package/lib/commonjs/assets/images/rank_5.png +0 -0
  46. package/lib/commonjs/index.js +15 -16
  47. package/lib/commonjs/index.js.map +1 -1
  48. package/lib/module/acmo/core/helpers/launcher.js +15 -0
  49. package/lib/module/acmo/core/helpers/launcher.js.map +1 -0
  50. package/lib/module/acmo/modules/dashboard/components/active_offers_button.js +70 -0
  51. package/lib/module/acmo/modules/dashboard/components/active_offers_button.js.map +1 -0
  52. package/lib/module/acmo/modules/dashboard/components/custom_card.js +7 -10
  53. package/lib/module/acmo/modules/dashboard/components/custom_card.js.map +1 -1
  54. package/lib/module/acmo/modules/dashboard/components/custom_scroller.js +135 -0
  55. package/lib/module/acmo/modules/dashboard/components/custom_scroller.js.map +1 -0
  56. package/lib/module/acmo/modules/dashboard/components/custom_shimmer.js +66 -0
  57. package/lib/module/acmo/modules/dashboard/components/custom_shimmer.js.map +1 -0
  58. package/lib/module/acmo/modules/dashboard/components/offer_card.js +257 -0
  59. package/lib/module/acmo/modules/dashboard/components/offer_card.js.map +1 -0
  60. package/lib/module/acmo/modules/dashboard/components/offer_list_item.js +191 -0
  61. package/lib/module/acmo/modules/dashboard/components/offer_list_item.js.map +1 -0
  62. package/lib/module/acmo/modules/dashboard/components/premium_empty_widget.js +78 -0
  63. package/lib/module/acmo/modules/dashboard/components/premium_empty_widget.js.map +1 -0
  64. package/lib/module/acmo/modules/dashboard/components/premium_header.js +12 -10
  65. package/lib/module/acmo/modules/dashboard/components/premium_header.js.map +1 -1
  66. package/lib/module/acmo/modules/dashboard/components/premium_loading.js +113 -0
  67. package/lib/module/acmo/modules/dashboard/components/premium_loading.js.map +1 -0
  68. package/lib/module/acmo/modules/dashboard/repository.js +105 -30
  69. package/lib/module/acmo/modules/dashboard/repository.js.map +1 -1
  70. package/lib/module/acmo/modules/dashboard/top_offers.js +71 -64
  71. package/lib/module/acmo/modules/dashboard/top_offers.js.map +1 -1
  72. package/lib/module/assets/images/angle_up.png +0 -0
  73. package/lib/module/assets/images/diamond.png +0 -0
  74. package/lib/module/assets/images/info.png +0 -0
  75. package/lib/module/assets/images/info_icon.png +0 -0
  76. package/lib/module/assets/images/premium-emptybg.jpeg +0 -0
  77. package/lib/module/assets/images/rank_1.png +0 -0
  78. package/lib/module/assets/images/rank_2.png +0 -0
  79. package/lib/module/assets/images/rank_3.png +0 -0
  80. package/lib/module/assets/images/rank_4.png +0 -0
  81. package/lib/module/assets/images/rank_5.png +0 -0
  82. package/lib/module/index.js +15 -16
  83. package/lib/module/index.js.map +1 -1
  84. package/lib/typescript/commonjs/src/acmo/core/helpers/launcher.d.ts +3 -0
  85. package/lib/typescript/commonjs/src/acmo/core/helpers/launcher.d.ts.map +1 -0
  86. package/lib/typescript/commonjs/src/acmo/core/storage/storage.d.ts.map +1 -1
  87. package/lib/typescript/commonjs/src/acmo/modules/dashboard/components/active_offers_button.d.ts +9 -0
  88. package/lib/typescript/commonjs/src/acmo/modules/dashboard/components/active_offers_button.d.ts.map +1 -0
  89. package/lib/typescript/commonjs/src/acmo/modules/dashboard/components/custom_card.d.ts.map +1 -1
  90. package/lib/typescript/commonjs/src/acmo/modules/dashboard/components/custom_scroller.d.ts +17 -0
  91. package/lib/typescript/commonjs/src/acmo/modules/dashboard/components/custom_scroller.d.ts.map +1 -0
  92. package/lib/typescript/commonjs/src/acmo/modules/dashboard/components/custom_shimmer.d.ts +11 -0
  93. package/lib/typescript/commonjs/src/acmo/modules/dashboard/components/custom_shimmer.d.ts.map +1 -0
  94. package/lib/typescript/commonjs/src/acmo/modules/dashboard/components/offer_card.d.ts +12 -0
  95. package/lib/typescript/commonjs/src/acmo/modules/dashboard/components/offer_card.d.ts.map +1 -0
  96. package/lib/typescript/commonjs/src/acmo/modules/dashboard/components/offer_list_item.d.ts +15 -0
  97. package/lib/typescript/commonjs/src/acmo/modules/dashboard/components/offer_list_item.d.ts.map +1 -0
  98. package/lib/typescript/commonjs/src/acmo/modules/dashboard/components/premium_empty_widget.d.ts +7 -0
  99. package/lib/typescript/commonjs/src/acmo/modules/dashboard/components/premium_empty_widget.d.ts.map +1 -0
  100. package/lib/typescript/commonjs/src/acmo/modules/dashboard/components/premium_loading.d.ts +9 -0
  101. package/lib/typescript/commonjs/src/acmo/modules/dashboard/components/premium_loading.d.ts.map +1 -0
  102. package/lib/typescript/commonjs/src/acmo/modules/dashboard/repository.d.ts +2 -1
  103. package/lib/typescript/commonjs/src/acmo/modules/dashboard/repository.d.ts.map +1 -1
  104. package/lib/typescript/commonjs/src/acmo/modules/dashboard/top_offers.d.ts +8 -7
  105. package/lib/typescript/commonjs/src/acmo/modules/dashboard/top_offers.d.ts.map +1 -1
  106. package/lib/typescript/commonjs/src/index.d.ts +6 -8
  107. package/lib/typescript/commonjs/src/index.d.ts.map +1 -1
  108. package/lib/typescript/module/src/acmo/core/helpers/launcher.d.ts +3 -0
  109. package/lib/typescript/module/src/acmo/core/helpers/launcher.d.ts.map +1 -0
  110. package/lib/typescript/module/src/acmo/core/storage/storage.d.ts.map +1 -1
  111. package/lib/typescript/module/src/acmo/modules/dashboard/components/active_offers_button.d.ts +9 -0
  112. package/lib/typescript/module/src/acmo/modules/dashboard/components/active_offers_button.d.ts.map +1 -0
  113. package/lib/typescript/module/src/acmo/modules/dashboard/components/custom_card.d.ts.map +1 -1
  114. package/lib/typescript/module/src/acmo/modules/dashboard/components/custom_scroller.d.ts +17 -0
  115. package/lib/typescript/module/src/acmo/modules/dashboard/components/custom_scroller.d.ts.map +1 -0
  116. package/lib/typescript/module/src/acmo/modules/dashboard/components/custom_shimmer.d.ts +11 -0
  117. package/lib/typescript/module/src/acmo/modules/dashboard/components/custom_shimmer.d.ts.map +1 -0
  118. package/lib/typescript/module/src/acmo/modules/dashboard/components/offer_card.d.ts +12 -0
  119. package/lib/typescript/module/src/acmo/modules/dashboard/components/offer_card.d.ts.map +1 -0
  120. package/lib/typescript/module/src/acmo/modules/dashboard/components/offer_list_item.d.ts +15 -0
  121. package/lib/typescript/module/src/acmo/modules/dashboard/components/offer_list_item.d.ts.map +1 -0
  122. package/lib/typescript/module/src/acmo/modules/dashboard/components/premium_empty_widget.d.ts +7 -0
  123. package/lib/typescript/module/src/acmo/modules/dashboard/components/premium_empty_widget.d.ts.map +1 -0
  124. package/lib/typescript/module/src/acmo/modules/dashboard/components/premium_loading.d.ts +9 -0
  125. package/lib/typescript/module/src/acmo/modules/dashboard/components/premium_loading.d.ts.map +1 -0
  126. package/lib/typescript/module/src/acmo/modules/dashboard/repository.d.ts +2 -1
  127. package/lib/typescript/module/src/acmo/modules/dashboard/repository.d.ts.map +1 -1
  128. package/lib/typescript/module/src/acmo/modules/dashboard/top_offers.d.ts +8 -7
  129. package/lib/typescript/module/src/acmo/modules/dashboard/top_offers.d.ts.map +1 -1
  130. package/lib/typescript/module/src/index.d.ts +6 -8
  131. package/lib/typescript/module/src/index.d.ts.map +1 -1
  132. package/package.json +3 -2
  133. package/readme.md +8 -8
  134. package/src/acmo/core/helpers/launcher.ts +14 -0
  135. package/src/acmo/core/types/types.d.ts +11 -13
  136. package/src/acmo/modules/dashboard/components/active_offers_button.tsx +61 -0
  137. package/src/acmo/modules/dashboard/components/custom_card.tsx +5 -8
  138. package/src/acmo/modules/dashboard/components/custom_scroller.tsx +164 -0
  139. package/src/acmo/modules/dashboard/components/custom_shimmer.tsx +75 -0
  140. package/src/acmo/modules/dashboard/components/offer_card.tsx +248 -0
  141. package/src/acmo/modules/dashboard/components/offer_list_item.tsx +225 -0
  142. package/src/acmo/modules/dashboard/components/premium_empty_widget.tsx +76 -0
  143. package/src/acmo/modules/dashboard/components/premium_header.tsx +8 -8
  144. package/src/acmo/modules/dashboard/components/premium_loading.tsx +78 -0
  145. package/src/acmo/modules/dashboard/repository.ts +121 -46
  146. package/src/acmo/modules/dashboard/top_offers.tsx +89 -52
  147. package/src/assets/images/angle_up.png +0 -0
  148. package/src/assets/images/diamond.png +0 -0
  149. package/src/assets/images/info.png +0 -0
  150. package/src/assets/images/info_icon.png +0 -0
  151. package/src/assets/images/premium-emptybg.jpeg +0 -0
  152. package/src/assets/images/rank_1.png +0 -0
  153. package/src/assets/images/rank_2.png +0 -0
  154. package/src/assets/images/rank_3.png +0 -0
  155. package/src/assets/images/rank_4.png +0 -0
  156. package/src/assets/images/rank_5.png +0 -0
  157. package/src/index.tsx +19 -23
  158. package/android/src/main/java/com/tyradssdk/TyradsSdkComposeViewManager.kt +0 -112
  159. package/lib/commonjs/acmo/core/marquee.js.map +0 -1
  160. package/lib/commonjs/acmo/modules/dashboard/components/auto_scroller.js +0 -87
  161. package/lib/commonjs/acmo/modules/dashboard/components/auto_scroller.js.map +0 -1
  162. package/lib/commonjs/acmo/modules/dashboard/components/my_games_button.js +0 -48
  163. package/lib/commonjs/acmo/modules/dashboard/components/my_games_button.js.map +0 -1
  164. package/lib/commonjs/acmo/modules/dashboard/components/offer_info_section.js +0 -158
  165. package/lib/commonjs/acmo/modules/dashboard/components/offer_info_section.js.map +0 -1
  166. package/lib/commonjs/acmo/modules/dashboard/components/premium_option_1.js +0 -181
  167. package/lib/commonjs/acmo/modules/dashboard/components/premium_option_1.js.map +0 -1
  168. package/lib/commonjs/acmo/modules/dashboard/components/premium_option_2.js +0 -102
  169. package/lib/commonjs/acmo/modules/dashboard/components/premium_option_2.js.map +0 -1
  170. package/lib/commonjs/acmo/modules/dashboard/components/premium_option_3.js +0 -41
  171. package/lib/commonjs/acmo/modules/dashboard/components/premium_option_3.js.map +0 -1
  172. package/lib/commonjs/acmo/modules/dashboard/components/premium_option_4.js +0 -214
  173. package/lib/commonjs/acmo/modules/dashboard/components/premium_option_4.js.map +0 -1
  174. package/lib/module/acmo/core/marquee.js +0 -54
  175. package/lib/module/acmo/core/marquee.js.map +0 -1
  176. package/lib/module/acmo/modules/dashboard/components/auto_scroller.js +0 -81
  177. package/lib/module/acmo/modules/dashboard/components/auto_scroller.js.map +0 -1
  178. package/lib/module/acmo/modules/dashboard/components/my_games_button.js +0 -43
  179. package/lib/module/acmo/modules/dashboard/components/my_games_button.js.map +0 -1
  180. package/lib/module/acmo/modules/dashboard/components/offer_info_section.js +0 -153
  181. package/lib/module/acmo/modules/dashboard/components/offer_info_section.js.map +0 -1
  182. package/lib/module/acmo/modules/dashboard/components/premium_option_1.js +0 -176
  183. package/lib/module/acmo/modules/dashboard/components/premium_option_1.js.map +0 -1
  184. package/lib/module/acmo/modules/dashboard/components/premium_option_2.js +0 -97
  185. package/lib/module/acmo/modules/dashboard/components/premium_option_2.js.map +0 -1
  186. package/lib/module/acmo/modules/dashboard/components/premium_option_3.js +0 -36
  187. package/lib/module/acmo/modules/dashboard/components/premium_option_3.js.map +0 -1
  188. package/lib/module/acmo/modules/dashboard/components/premium_option_4.js +0 -209
  189. package/lib/module/acmo/modules/dashboard/components/premium_option_4.js.map +0 -1
  190. package/lib/typescript/commonjs/src/acmo/core/marquee.d.ts +0 -11
  191. package/lib/typescript/commonjs/src/acmo/core/marquee.d.ts.map +0 -1
  192. package/lib/typescript/commonjs/src/acmo/modules/dashboard/components/auto_scroller.d.ts +0 -10
  193. package/lib/typescript/commonjs/src/acmo/modules/dashboard/components/auto_scroller.d.ts.map +0 -1
  194. package/lib/typescript/commonjs/src/acmo/modules/dashboard/components/my_games_button.d.ts +0 -8
  195. package/lib/typescript/commonjs/src/acmo/modules/dashboard/components/my_games_button.d.ts.map +0 -1
  196. package/lib/typescript/commonjs/src/acmo/modules/dashboard/components/offer_info_section.d.ts +0 -11
  197. package/lib/typescript/commonjs/src/acmo/modules/dashboard/components/offer_info_section.d.ts.map +0 -1
  198. package/lib/typescript/commonjs/src/acmo/modules/dashboard/components/premium_option_1.d.ts +0 -9
  199. package/lib/typescript/commonjs/src/acmo/modules/dashboard/components/premium_option_1.d.ts.map +0 -1
  200. package/lib/typescript/commonjs/src/acmo/modules/dashboard/components/premium_option_2.d.ts +0 -9
  201. package/lib/typescript/commonjs/src/acmo/modules/dashboard/components/premium_option_2.d.ts.map +0 -1
  202. package/lib/typescript/commonjs/src/acmo/modules/dashboard/components/premium_option_3.d.ts +0 -9
  203. package/lib/typescript/commonjs/src/acmo/modules/dashboard/components/premium_option_3.d.ts.map +0 -1
  204. package/lib/typescript/commonjs/src/acmo/modules/dashboard/components/premium_option_4.d.ts +0 -9
  205. package/lib/typescript/commonjs/src/acmo/modules/dashboard/components/premium_option_4.d.ts.map +0 -1
  206. package/lib/typescript/module/src/acmo/core/marquee.d.ts +0 -11
  207. package/lib/typescript/module/src/acmo/core/marquee.d.ts.map +0 -1
  208. package/lib/typescript/module/src/acmo/modules/dashboard/components/auto_scroller.d.ts +0 -10
  209. package/lib/typescript/module/src/acmo/modules/dashboard/components/auto_scroller.d.ts.map +0 -1
  210. package/lib/typescript/module/src/acmo/modules/dashboard/components/my_games_button.d.ts +0 -8
  211. package/lib/typescript/module/src/acmo/modules/dashboard/components/my_games_button.d.ts.map +0 -1
  212. package/lib/typescript/module/src/acmo/modules/dashboard/components/offer_info_section.d.ts +0 -11
  213. package/lib/typescript/module/src/acmo/modules/dashboard/components/offer_info_section.d.ts.map +0 -1
  214. package/lib/typescript/module/src/acmo/modules/dashboard/components/premium_option_1.d.ts +0 -9
  215. package/lib/typescript/module/src/acmo/modules/dashboard/components/premium_option_1.d.ts.map +0 -1
  216. package/lib/typescript/module/src/acmo/modules/dashboard/components/premium_option_2.d.ts +0 -9
  217. package/lib/typescript/module/src/acmo/modules/dashboard/components/premium_option_2.d.ts.map +0 -1
  218. package/lib/typescript/module/src/acmo/modules/dashboard/components/premium_option_3.d.ts +0 -9
  219. package/lib/typescript/module/src/acmo/modules/dashboard/components/premium_option_3.d.ts.map +0 -1
  220. package/lib/typescript/module/src/acmo/modules/dashboard/components/premium_option_4.d.ts +0 -9
  221. package/lib/typescript/module/src/acmo/modules/dashboard/components/premium_option_4.d.ts.map +0 -1
  222. package/src/acmo/core/marquee.tsx +0 -62
  223. package/src/acmo/modules/dashboard/components/auto_scroller.tsx +0 -85
  224. package/src/acmo/modules/dashboard/components/my_games_button.tsx +0 -40
  225. package/src/acmo/modules/dashboard/components/offer_info_section.tsx +0 -139
  226. package/src/acmo/modules/dashboard/components/premium_option_1.tsx +0 -156
  227. package/src/acmo/modules/dashboard/components/premium_option_2.tsx +0 -100
  228. package/src/acmo/modules/dashboard/components/premium_option_3.tsx +0 -42
  229. package/src/acmo/modules/dashboard/components/premium_option_4.tsx +0 -185
@@ -0,0 +1,257 @@
1
+ "use strict";
2
+
3
+ import numeral from 'numeral';
4
+ import React, { useState } from 'react';
5
+ import { View, Text, Image, StyleSheet, TouchableOpacity, ActivityIndicator } from 'react-native';
6
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
7
+ const AcmoOfferCard = ({
8
+ item,
9
+ onButtonClick,
10
+ currencySaleModel,
11
+ premiumColor,
12
+ isLoading,
13
+ onTap
14
+ }) => {
15
+ const [loading, setLoading] = useState(isLoading);
16
+ const bonusMultiplier = currencySaleModel?.multiplier ?? 1;
17
+ const itemHeight = 132;
18
+ const handleClick = async () => {
19
+ if (loading) return;
20
+ setLoading(true);
21
+ await onButtonClick();
22
+ setLoading(false);
23
+ };
24
+ return /*#__PURE__*/_jsx(TouchableOpacity, {
25
+ activeOpacity: 0.9,
26
+ style: styles.container,
27
+ onPress: () => {
28
+ if (!loading && onTap) onTap();
29
+ },
30
+ children: /*#__PURE__*/_jsxs(View, {
31
+ style: styles.cardShadow,
32
+ children: [/*#__PURE__*/_jsxs(View, {
33
+ style: [styles.imageContainer, {
34
+ height: itemHeight
35
+ }],
36
+ children: [/*#__PURE__*/_jsx(Image, {
37
+ source: {
38
+ uri: item.creative.creativePacks[0]?.creatives[0]?.fileUrl || ''
39
+ },
40
+ style: styles.image
41
+ }), item.premium && /*#__PURE__*/_jsx(View, {
42
+ style: styles.diamondIcon,
43
+ children: /*#__PURE__*/_jsx(Image, {
44
+ style: {
45
+ width: 12,
46
+ height: 12,
47
+ objectFit: 'contain',
48
+ tintColor: 'white'
49
+ },
50
+ source: require('../../../../assets/images/diamond.png')
51
+ })
52
+ })]
53
+ }), /*#__PURE__*/_jsxs(View, {
54
+ style: styles.detailCard,
55
+ children: [/*#__PURE__*/_jsxs(View, {
56
+ style: styles.header,
57
+ children: [/*#__PURE__*/_jsx(Image, {
58
+ source: {
59
+ uri: item.app.thumbnail
60
+ },
61
+ style: styles.appIcon
62
+ }), /*#__PURE__*/_jsx(Text, {
63
+ style: styles.title,
64
+ children: item.app.title
65
+ }), /*#__PURE__*/_jsxs(View, {
66
+ style: styles.payoutSection,
67
+ children: [currencySaleModel?.multiplier && /*#__PURE__*/_jsx(Text, {
68
+ style: styles.strikePayout,
69
+ children: numeral(item.campaignPayout.totalPlayablePayoutConverted).format("0.00a").toUpperCase()
70
+ }), /*#__PURE__*/_jsxs(View, {
71
+ style: styles.payoutRow,
72
+ children: [/*#__PURE__*/_jsx(Image, {
73
+ source: {
74
+ uri: item.currency.adUnitCurrencyIcon
75
+ },
76
+ style: styles.currencyIcon
77
+ }), /*#__PURE__*/_jsx(Text, {
78
+ style: styles.payoutText,
79
+ children: numeral(item.campaignPayout.totalPlayablePayoutConverted * bonusMultiplier).format("0.00a").toUpperCase()
80
+ })]
81
+ })]
82
+ }), /*#__PURE__*/_jsx(TouchableOpacity, {
83
+ onPress: onTap,
84
+ disabled: loading,
85
+ children: /*#__PURE__*/_jsx(Image, {
86
+ source: require('../../../../assets/images/info_icon.png'),
87
+ style: styles.infoIcon
88
+ })
89
+ })]
90
+ }), /*#__PURE__*/_jsx(TouchableOpacity, {
91
+ style: [styles.button, loading && styles.buttonDisabled, {
92
+ backgroundColor: loading ? '#888' : premiumColor || '#1C90DF'
93
+ }],
94
+ onPress: handleClick,
95
+ disabled: loading,
96
+ children: loading ? /*#__PURE__*/_jsx(ActivityIndicator, {
97
+ color: "white"
98
+ }) : /*#__PURE__*/_jsx(Text, {
99
+ style: styles.buttonText,
100
+ children: "Play Now"
101
+ })
102
+ })]
103
+ }), currencySaleModel?.multiplier && /*#__PURE__*/_jsx(View, {
104
+ style: [styles.bonusBadge, {
105
+ backgroundColor: `${premiumColor}` || '#1C90DF'
106
+ }],
107
+ children: /*#__PURE__*/_jsxs(Text, {
108
+ style: styles.bonusText,
109
+ children: [currencySaleModel?.multiplier.toFixed(1), "x Bonus"]
110
+ })
111
+ }), currencySaleModel?.multiplier && /*#__PURE__*/_jsx(View, {
112
+ style: [styles.trianlge, {
113
+ backgroundColor: `${premiumColor}cc` || '#1C90DF'
114
+ }]
115
+ })]
116
+ })
117
+ }, item.campaignId);
118
+ };
119
+ const styles = StyleSheet.create({
120
+ container: {
121
+ margin: 16,
122
+ width: "100%"
123
+ },
124
+ cardShadow: {
125
+ borderRadius: 16,
126
+ backgroundColor: 'white',
127
+ shadowColor: 'black',
128
+ shadowOffset: {
129
+ width: 0,
130
+ height: 16
131
+ },
132
+ shadowOpacity: 0.06,
133
+ shadowRadius: 18,
134
+ elevation: 4
135
+ },
136
+ imageContainer: {
137
+ borderTopLeftRadius: 16,
138
+ borderTopRightRadius: 16,
139
+ overflow: 'hidden'
140
+ },
141
+ image: {
142
+ width: '100%',
143
+ height: '100%',
144
+ resizeMode: 'cover'
145
+ },
146
+ diamondIcon: {
147
+ position: 'absolute',
148
+ top: 16,
149
+ right: 16,
150
+ backgroundColor: '#1E2020DD',
151
+ width: 28,
152
+ height: 28,
153
+ borderRadius: 8,
154
+ justifyContent: 'center',
155
+ alignItems: 'center'
156
+ },
157
+ diamondText: {
158
+ color: 'white',
159
+ fontSize: 14
160
+ },
161
+ detailCard: {
162
+ padding: 16
163
+ },
164
+ header: {
165
+ flexDirection: 'row',
166
+ justifyContent: 'space-between',
167
+ alignItems: 'center'
168
+ },
169
+ appIcon: {
170
+ width: 38,
171
+ height: 38,
172
+ borderRadius: 8,
173
+ marginRight: 8
174
+ },
175
+ title: {
176
+ flex: 1,
177
+ fontWeight: '600',
178
+ fontSize: 14
179
+ },
180
+ payoutSection: {
181
+ alignItems: 'flex-end'
182
+ },
183
+ strikePayout: {
184
+ textDecorationLine: 'line-through',
185
+ color: '#454646',
186
+ fontSize: 12
187
+ },
188
+ payoutRow: {
189
+ flexDirection: 'row',
190
+ alignItems: 'center'
191
+ },
192
+ currencyIcon: {
193
+ width: 16,
194
+ height: 16,
195
+ marginRight: 4
196
+ },
197
+ payoutText: {
198
+ fontWeight: '700',
199
+ fontSize: 14
200
+ },
201
+ infoIcon: {
202
+ width: 16,
203
+ height: 16,
204
+ marginLeft: 8
205
+ },
206
+ button: {
207
+ marginTop: 12,
208
+ height: 42,
209
+ borderRadius: 8,
210
+ justifyContent: 'center',
211
+ alignItems: 'center'
212
+ },
213
+ buttonDisabled: {
214
+ backgroundColor: '#e0e2e7'
215
+ },
216
+ buttonText: {
217
+ color: 'white',
218
+ fontWeight: '600',
219
+ fontSize: 14
220
+ },
221
+ bonusBadge: {
222
+ position: 'absolute',
223
+ top: 16,
224
+ left: -6,
225
+ paddingVertical: 8,
226
+ paddingHorizontal: 14,
227
+ borderTopRightRadius: 100,
228
+ borderTopLeftRadius: 10,
229
+ borderBottomRightRadius: 100,
230
+ shadowColor: 'black',
231
+ shadowOffset: {
232
+ width: 0,
233
+ height: 8
234
+ },
235
+ shadowOpacity: 0.3,
236
+ shadowRadius: 10,
237
+ backgroundColor: 'transparent'
238
+ },
239
+ trianlge: {
240
+ position: 'absolute',
241
+ top: 46.6,
242
+ left: -7.4,
243
+ zIndex: -10,
244
+ width: 20,
245
+ height: 10,
246
+ transform: [{
247
+ rotate: '65deg'
248
+ }]
249
+ },
250
+ bonusText: {
251
+ color: 'white',
252
+ fontWeight: '700',
253
+ fontSize: 12
254
+ }
255
+ });
256
+ export default AcmoOfferCard;
257
+ //# sourceMappingURL=offer_card.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["numeral","React","useState","View","Text","Image","StyleSheet","TouchableOpacity","ActivityIndicator","jsx","_jsx","jsxs","_jsxs","AcmoOfferCard","item","onButtonClick","currencySaleModel","premiumColor","isLoading","onTap","loading","setLoading","bonusMultiplier","multiplier","itemHeight","handleClick","activeOpacity","style","styles","container","onPress","children","cardShadow","imageContainer","height","source","uri","creative","creativePacks","creatives","fileUrl","image","premium","diamondIcon","width","objectFit","tintColor","require","detailCard","header","app","thumbnail","appIcon","title","payoutSection","strikePayout","campaignPayout","totalPlayablePayoutConverted","format","toUpperCase","payoutRow","currency","adUnitCurrencyIcon","currencyIcon","payoutText","disabled","infoIcon","button","buttonDisabled","backgroundColor","color","buttonText","bonusBadge","bonusText","toFixed","trianlge","campaignId","create","margin","borderRadius","shadowColor","shadowOffset","shadowOpacity","shadowRadius","elevation","borderTopLeftRadius","borderTopRightRadius","overflow","resizeMode","position","top","right","justifyContent","alignItems","diamondText","fontSize","padding","flexDirection","marginRight","flex","fontWeight","textDecorationLine","marginLeft","marginTop","left","paddingVertical","paddingHorizontal","borderBottomRightRadius","zIndex","transform","rotate"],"sourceRoot":"../../../../../../src","sources":["acmo/modules/dashboard/components/offer_card.tsx"],"mappings":"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","ignoreList":[]}
@@ -0,0 +1,191 @@
1
+ "use strict";
2
+
3
+ import React from 'react';
4
+ import { View, Text, TouchableOpacity, Image, StyleSheet, ActivityIndicator } from 'react-native';
5
+ import numeral from 'numeral';
6
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
7
+ const rankIcons = [require('../../../../assets/images/rank_1.png'), require('../../../../assets/images/rank_2.png'), require('../../../../assets/images/rank_3.png'), require('../../../../assets/images/rank_4.png'), require('../../../../assets/images/rank_5.png')];
8
+ export const AcmoOfferListItem = ({
9
+ offer,
10
+ currencySales,
11
+ onButtonTap,
12
+ onPress,
13
+ index,
14
+ colorPremium,
15
+ colorPremiumFg,
16
+ loadingIndex,
17
+ setLoadingIndex
18
+ }) => {
19
+ const bonusMultiplier = currencySales?.multiplier ?? 1;
20
+ const isLoading = loadingIndex === index;
21
+ const anyLoading = loadingIndex != null;
22
+ return /*#__PURE__*/_jsx(TouchableOpacity, {
23
+ disabled: anyLoading,
24
+ onPress: onPress,
25
+ style: styles.itemContainer,
26
+ activeOpacity: 0.75,
27
+ children: /*#__PURE__*/_jsxs(View, {
28
+ style: styles.container,
29
+ children: [/*#__PURE__*/_jsx(Image, {
30
+ source: rankIcons[index],
31
+ style: styles.rankIcon
32
+ }), /*#__PURE__*/_jsx(Image, {
33
+ source: {
34
+ uri: offer.app.thumbnail
35
+ },
36
+ style: styles.icon
37
+ }), /*#__PURE__*/_jsxs(View, {
38
+ style: styles.details,
39
+ children: [currencySales && /*#__PURE__*/_jsx(View, {
40
+ style: [styles.bonusBadge, {
41
+ backgroundColor: `${colorPremium}20`
42
+ }],
43
+ children: /*#__PURE__*/_jsxs(Text, {
44
+ style: [styles.bonusText, {
45
+ color: colorPremium
46
+ }],
47
+ children: [bonusMultiplier, "x BONUS"]
48
+ })
49
+ }), /*#__PURE__*/_jsx(Text, {
50
+ numberOfLines: 1,
51
+ style: styles.title,
52
+ ellipsizeMode: "tail",
53
+ children: offer.app.title
54
+ }), /*#__PURE__*/_jsxs(View, {
55
+ style: styles.payoutRow,
56
+ children: [currencySales && /*#__PURE__*/_jsx(Text, {
57
+ style: styles.strikeText,
58
+ children: numeral(offer.campaignPayout.totalPlayablePayoutConverted).format('0.00a')
59
+ }), /*#__PURE__*/_jsx(Image, {
60
+ source: {
61
+ uri: offer.currency.adUnitCurrencyIcon
62
+ },
63
+ style: styles.currencyIcon
64
+ }), /*#__PURE__*/_jsx(Text, {
65
+ style: styles.payoutText,
66
+ children: numeral(offer.campaignPayout.totalPlayablePayoutConverted * bonusMultiplier).format('0.00a')
67
+ })]
68
+ })]
69
+ }), /*#__PURE__*/_jsxs(TouchableOpacity, {
70
+ disabled: anyLoading,
71
+ style: [styles.button, {
72
+ backgroundColor: anyLoading ? '#e0e2e7' : colorPremium
73
+ }],
74
+ onPress: async () => {
75
+ setLoadingIndex(index);
76
+ await onButtonTap();
77
+ setLoadingIndex(null);
78
+ },
79
+ children: [isLoading ? /*#__PURE__*/_jsx(ActivityIndicator, {
80
+ size: "small",
81
+ color: "#a3a9b6"
82
+ }) : null, /*#__PURE__*/_jsx(Text, {
83
+ style: [styles.buttonText, {
84
+ color: anyLoading ? '#a3a9b6' : colorPremiumFg ?? '#fff',
85
+ marginLeft: isLoading ? 8 : 0
86
+ }],
87
+ children: "Play"
88
+ })]
89
+ })]
90
+ })
91
+ });
92
+ };
93
+ const styles = StyleSheet.create({
94
+ itemContainer: {
95
+ flexDirection: 'row',
96
+ flex: 1,
97
+ width: '100%',
98
+ justifyContent: 'space-between',
99
+ alignItems: 'center',
100
+ paddingHorizontal: 16,
101
+ paddingVertical: 8
102
+ },
103
+ container: {
104
+ flexDirection: 'row',
105
+ marginVertical: 2,
106
+ paddingHorizontal: 0,
107
+ width: '100%',
108
+ position: 'relative'
109
+ },
110
+ rankIcon: {
111
+ position: 'absolute',
112
+ zIndex: 99,
113
+ left: -10,
114
+ top: -8,
115
+ width: 24,
116
+ height: 24,
117
+ resizeMode: 'contain'
118
+ },
119
+ row: {
120
+ flexDirection: 'row',
121
+ alignItems: 'center',
122
+ backgroundColor: '#fff',
123
+ borderRadius: 8,
124
+ padding: 10,
125
+ elevation: 2
126
+ },
127
+ icon: {
128
+ width: 54,
129
+ height: 54,
130
+ borderRadius: 4,
131
+ marginRight: 10
132
+ },
133
+ details: {
134
+ flex: 1,
135
+ justifyContent: 'center'
136
+ },
137
+ bonusBadge: {
138
+ alignSelf: 'flex-start',
139
+ paddingHorizontal: 8,
140
+ paddingVertical: 2,
141
+ borderRadius: 16,
142
+ marginBottom: 4
143
+ },
144
+ bonusText: {
145
+ fontSize: 10,
146
+ fontWeight: '700'
147
+ },
148
+ title: {
149
+ fontSize: 12,
150
+ fontWeight: '500',
151
+ marginBottom: 4,
152
+ color: '#323434'
153
+ },
154
+ payoutRow: {
155
+ flexDirection: 'row',
156
+ alignItems: 'center',
157
+ gap: 10
158
+ },
159
+ strikeText: {
160
+ fontSize: 12,
161
+ textDecorationLine: 'line-through',
162
+ color: '#323434',
163
+ fontWeight: '300'
164
+ },
165
+ currencyIcon: {
166
+ width: 14,
167
+ height: 14,
168
+ marginHorizontal: 4
169
+ },
170
+ payoutText: {
171
+ fontSize: 12,
172
+ fontWeight: '700',
173
+ color: '#323434'
174
+ },
175
+ button: {
176
+ marginLeft: 4,
177
+ paddingHorizontal: 12,
178
+ height: 42,
179
+ minWidth: 75,
180
+ justifyContent: 'center',
181
+ alignItems: 'center',
182
+ borderRadius: 8,
183
+ flexDirection: 'row'
184
+ },
185
+ buttonText: {
186
+ fontSize: 14,
187
+ fontWeight: '600',
188
+ color: '#fff'
189
+ }
190
+ });
191
+ //# sourceMappingURL=offer_list_item.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["React","View","Text","TouchableOpacity","Image","StyleSheet","ActivityIndicator","numeral","jsx","_jsx","jsxs","_jsxs","rankIcons","require","AcmoOfferListItem","offer","currencySales","onButtonTap","onPress","index","colorPremium","colorPremiumFg","loadingIndex","setLoadingIndex","bonusMultiplier","multiplier","isLoading","anyLoading","disabled","style","styles","itemContainer","activeOpacity","children","container","source","rankIcon","uri","app","thumbnail","icon","details","bonusBadge","backgroundColor","bonusText","color","numberOfLines","title","ellipsizeMode","payoutRow","strikeText","campaignPayout","totalPlayablePayoutConverted","format","currency","adUnitCurrencyIcon","currencyIcon","payoutText","button","size","buttonText","marginLeft","create","flexDirection","flex","width","justifyContent","alignItems","paddingHorizontal","paddingVertical","marginVertical","position","zIndex","left","top","height","resizeMode","row","borderRadius","padding","elevation","marginRight","alignSelf","marginBottom","fontSize","fontWeight","gap","textDecorationLine","marginHorizontal","minWidth"],"sourceRoot":"../../../../../../src","sources":["acmo/modules/dashboard/components/offer_list_item.tsx"],"mappings":"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","ignoreList":[]}
@@ -0,0 +1,78 @@
1
+ "use strict";
2
+
3
+ import React from 'react';
4
+ import { View, Text, TouchableOpacity, StyleSheet, ImageBackground } from 'react-native';
5
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
6
+ const PremiumEmptyView = ({
7
+ onContinue,
8
+ colorPremium
9
+ }) => {
10
+ return /*#__PURE__*/_jsx(View, {
11
+ style: styles.container,
12
+ children: /*#__PURE__*/_jsx(ImageBackground, {
13
+ source: require('../../../../assets/images/premium-emptybg.jpeg'),
14
+ style: styles.backgroundImage,
15
+ imageStyle: styles.imageBorderRadius,
16
+ children: /*#__PURE__*/_jsxs(View, {
17
+ style: styles.content,
18
+ children: [/*#__PURE__*/_jsx(Text, {
19
+ style: [styles.title, {
20
+ color: 'white',
21
+ fontFamily: 'Poppins_600SemiBold'
22
+ }],
23
+ children: 'Keep Playing!\nExciting Rewards Await!'
24
+ }), /*#__PURE__*/_jsx(TouchableOpacity, {
25
+ style: [styles.button, {
26
+ backgroundColor: 'white'
27
+ }],
28
+ onPress: onContinue,
29
+ activeOpacity: 0.8,
30
+ children: /*#__PURE__*/_jsx(Text, {
31
+ style: [styles.buttonText, {
32
+ color: colorPremium ?? '#1C90DF',
33
+ fontWeight: 'bold',
34
+ fontSize: 12
35
+ }],
36
+ children: "Continue Playing"
37
+ })
38
+ })]
39
+ })
40
+ })
41
+ });
42
+ };
43
+ const styles = StyleSheet.create({
44
+ container: {
45
+ width: '100%'
46
+ },
47
+ backgroundImage: {
48
+ width: '100%',
49
+ borderRadius: 16,
50
+ overflow: 'hidden'
51
+ },
52
+ imageBorderRadius: {
53
+ borderRadius: 16
54
+ },
55
+ content: {
56
+ paddingVertical: 22,
57
+ paddingHorizontal: 30,
58
+ justifyContent: 'center',
59
+ alignItems: 'center'
60
+ },
61
+ title: {
62
+ textAlign: 'center',
63
+ fontWeight: '600',
64
+ marginBottom: 16
65
+ },
66
+ button: {
67
+ minWidth: '100%',
68
+ height: 34,
69
+ borderRadius: 8,
70
+ justifyContent: 'center',
71
+ alignItems: 'center'
72
+ },
73
+ buttonText: {
74
+ fontWeight: '600'
75
+ }
76
+ });
77
+ export default PremiumEmptyView;
78
+ //# sourceMappingURL=premium_empty_widget.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["React","View","Text","TouchableOpacity","StyleSheet","ImageBackground","jsx","_jsx","jsxs","_jsxs","PremiumEmptyView","onContinue","colorPremium","style","styles","container","children","source","require","backgroundImage","imageStyle","imageBorderRadius","content","title","color","fontFamily","button","backgroundColor","onPress","activeOpacity","buttonText","fontWeight","fontSize","create","width","borderRadius","overflow","paddingVertical","paddingHorizontal","justifyContent","alignItems","textAlign","marginBottom","minWidth","height"],"sourceRoot":"../../../../../../src","sources":["acmo/modules/dashboard/components/premium_empty_widget.tsx"],"mappings":";;AAAA,OAAOA,KAAK,MAAM,OAAO;AACzB,SAASC,IAAI,EAAEC,IAAI,EAAEC,gBAAgB,EAAEC,UAAU,EAAEC,eAAe,QAAQ,cAAc;AAAC,SAAAC,GAAA,IAAAC,IAAA,EAAAC,IAAA,IAAAC,KAAA;AAEzF,MAAMC,gBAA6E,GAAGA,CAAC;EAAEC,UAAU;EAAEC;AAAY,CAAC,KAAK;EAErH,oBACEL,IAAA,CAACN,IAAI;IAACY,KAAK,EAAEC,MAAM,CAACC,SAAU;IAAAC,QAAA,eAC5BT,IAAA,CAACF,eAAe;MACdY,MAAM,EAAEC,OAAO,CAAC,gDAAgD,CAAE;MAClEL,KAAK,EAAEC,MAAM,CAACK,eAAgB;MAC9BC,UAAU,EAAEN,MAAM,CAACO,iBAAkB;MAAAL,QAAA,eAErCP,KAAA,CAACR,IAAI;QAACY,KAAK,EAAEC,MAAM,CAACQ,OAAQ;QAAAN,QAAA,gBAC1BT,IAAA,CAACL,IAAI;UAACW,KAAK,EAAE,CAACC,MAAM,CAACS,KAAK,EAAE;YAAEC,KAAK,EAAE,OAAO;YAAEC,UAAU,EAAE;UAAsB,CAAC,CAAE;UAAAT,QAAA,EAChF;QAAwC,CACrC,CAAC,eACPT,IAAA,CAACJ,gBAAgB;UACfU,KAAK,EAAE,CAACC,MAAM,CAACY,MAAM,EAAE;YAAEC,eAAe,EAAE;UAAQ,CAAC,CAAE;UACrDC,OAAO,EAAEjB,UAAW;UACpBkB,aAAa,EAAE,GAAI;UAAAb,QAAA,eAEnBT,IAAA,CAACL,IAAI;YACHW,KAAK,EAAE,CACLC,MAAM,CAACgB,UAAU,EACjB;cACEN,KAAK,EAAEZ,YAAY,IAAI,SAAS;cAChCmB,UAAU,EAAE,MAAM;cAClBC,QAAQ,EAAE;YACZ,CAAC,CACD;YAAAhB,QAAA,EACH;UAED,CAAM;QAAC,CACS,CAAC;MAAA,CACf;IAAC,CACQ;EAAC,CACd,CAAC;AAEX,CAAC;AAED,MAAMF,MAAM,GAAGV,UAAU,CAAC6B,MAAM,CAAC;EAC/BlB,SAAS,EAAE;IACTmB,KAAK,EAAE;EACT,CAAC;EACDf,eAAe,EAAE;IACfe,KAAK,EAAE,MAAM;IACbC,YAAY,EAAE,EAAE;IAChBC,QAAQ,EAAE;EACZ,CAAC;EACDf,iBAAiB,EAAE;IACjBc,YAAY,EAAE;EAChB,CAAC;EACDb,OAAO,EAAE;IACPe,eAAe,EAAE,EAAE;IACnBC,iBAAiB,EAAE,EAAE;IACrBC,cAAc,EAAE,QAAQ;IACxBC,UAAU,EAAE;EACd,CAAC;EACDjB,KAAK,EAAE;IACLkB,SAAS,EAAE,QAAQ;IACnBV,UAAU,EAAE,KAAK;IACjBW,YAAY,EAAE;EAChB,CAAC;EACDhB,MAAM,EAAE;IACNiB,QAAQ,EAAE,MAAM;IAChBC,MAAM,EAAE,EAAE;IACVT,YAAY,EAAE,CAAC;IACfI,cAAc,EAAE,QAAQ;IACxBC,UAAU,EAAE;EACd,CAAC;EACDV,UAAU,EAAE;IACVC,UAAU,EAAE;EACd;AACF,CAAC,CAAC;AAEF,eAAerB,gBAAgB","ignoreList":[]}
@@ -17,19 +17,18 @@ const PremiumHeaderSection = ({
17
17
  children: [/*#__PURE__*/_jsxs(View, {
18
18
  style: styles.leftContainer,
19
19
  children: [/*#__PURE__*/_jsx(View, {
20
- style: [styles.starContainer, {
21
- backgroundColor: premiumColor || '#1C90DF'
22
- }],
20
+ style: styles.starContainer,
23
21
  children: /*#__PURE__*/_jsx(Image, {
24
- source: require('../../../../assets/images/star_pointed.png'),
22
+ source: require('../../../../assets/images/diamond.png'),
25
23
  style: [styles.starIcon, {
26
- tintColor: 'white'
24
+ tintColor: premiumColor
27
25
  }]
28
26
  })
29
27
  }), /*#__PURE__*/_jsx(Text, {
30
- style: styles.headerText,
28
+ style: [styles.headerText, {
29
+ color: premiumColor
30
+ }],
31
31
  numberOfLines: 1,
32
- adjustsFontSizeToFit: true,
33
32
  ellipsizeMode: "tail",
34
33
  children: t('dashboard.suggested_offers')
35
34
  })]
@@ -43,8 +42,11 @@ const PremiumHeaderSection = ({
43
42
  numberOfLines: 1,
44
43
  children: t('dashboard.more_offers')
45
44
  }), /*#__PURE__*/_jsx(Image, {
46
- source: require('../../../../assets/images/right_arrow.png'),
45
+ source: require('../../../../assets/images/angle_up.png'),
47
46
  style: {
47
+ transform: [{
48
+ rotate: '90deg'
49
+ }],
48
50
  width: 11,
49
51
  height: 11,
50
52
  objectFit: 'contain',
@@ -68,7 +70,7 @@ const styles = StyleSheet.create({
68
70
  justifyContent: 'space-between',
69
71
  alignItems: 'center',
70
72
  paddingHorizontal: 16,
71
- paddingVertical: 6
73
+ paddingTop: 10
72
74
  },
73
75
  leftContainer: {
74
76
  flexDirection: 'row',
@@ -81,7 +83,7 @@ const styles = StyleSheet.create({
81
83
  },
82
84
  headerText: {
83
85
  marginLeft: 8,
84
- fontSize: 16,
86
+ fontSize: 14,
85
87
  fontWeight: 'bold',
86
88
  flex: 1
87
89
  },
@@ -1 +1 @@
1
- {"version":3,"names":["React","View","Text","Image","TouchableOpacity","StyleSheet","useTranslation","jsx","_jsx","jsxs","_jsxs","PremiumHeaderSection","showMore","premiumColor","onShowOffers","t","style","styles","headerContainer","children","leftContainer","starContainer","backgroundColor","source","require","starIcon","tintColor","headerText","numberOfLines","adjustsFontSizeToFit","ellipsizeMode","rightContainer","onPress","moreOffersText","color","width","height","objectFit","marginLeft","create","borderRadius","justifyContent","alignItems","flexDirection","paddingHorizontal","paddingVertical","flex","fontSize","fontWeight"],"sourceRoot":"../../../../../../src","sources":["acmo/modules/dashboard/components/premium_header.tsx"],"mappings":"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","ignoreList":[]}
1
+ {"version":3,"names":["React","View","Text","Image","TouchableOpacity","StyleSheet","useTranslation","jsx","_jsx","jsxs","_jsxs","PremiumHeaderSection","showMore","premiumColor","onShowOffers","t","style","styles","headerContainer","children","leftContainer","starContainer","source","require","starIcon","tintColor","headerText","color","numberOfLines","ellipsizeMode","rightContainer","onPress","moreOffersText","transform","rotate","width","height","objectFit","marginLeft","create","borderRadius","justifyContent","alignItems","flexDirection","paddingHorizontal","paddingTop","flex","fontSize","fontWeight"],"sourceRoot":"../../../../../../src","sources":["acmo/modules/dashboard/components/premium_header.tsx"],"mappings":"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","ignoreList":[]}