related-ui-components 1.9.6 → 1.9.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.
Files changed (562) hide show
  1. package/README.md +200 -0
  2. package/lib/commonjs/app.js +161 -0
  3. package/lib/commonjs/app.js.map +1 -0
  4. package/lib/commonjs/assets/components/BannerWithDetails.png +0 -0
  5. package/lib/commonjs/assets/components/DealCard-Horizontal.png +0 -0
  6. package/lib/commonjs/assets/components/DealCard-Vertical.png +0 -0
  7. package/lib/commonjs/assets/components/DealCard-floating.png +0 -0
  8. package/lib/commonjs/assets/components/DealCard-nested.png +0 -0
  9. package/lib/commonjs/assets/components/Filters.png +0 -0
  10. package/lib/commonjs/assets/components/Popup-1.png +0 -0
  11. package/lib/commonjs/assets/components/Popup-2.png +0 -0
  12. package/lib/commonjs/assets/components/Popup-3.png +0 -0
  13. package/lib/commonjs/assets/components/RedemptionOption-Horizontal.png +0 -0
  14. package/lib/commonjs/assets/components/RedemptionOption-Vertical.png +0 -0
  15. package/lib/commonjs/assets/components/SimpleBanner.png +0 -0
  16. package/lib/commonjs/assets/components/SimpleTrendingCard.png +0 -0
  17. package/lib/commonjs/assets/components/SimpleTrendingCardV2.png +0 -0
  18. package/lib/commonjs/assets/components/UnlockRewards-1.png +0 -0
  19. package/lib/commonjs/assets/components/UnlockRewards-2.png +0 -0
  20. package/lib/commonjs/assets/fonts/SpaceMono-Regular.ttf +0 -0
  21. package/lib/commonjs/assets/images/adaptive-icon.png +0 -0
  22. package/lib/commonjs/assets/images/face.jpg +0 -0
  23. package/lib/commonjs/assets/images/favicon.png +0 -0
  24. package/lib/commonjs/assets/images/giftvoucher.jpg +0 -0
  25. package/lib/commonjs/assets/images/icon.png +0 -0
  26. package/lib/commonjs/assets/images/insta.webp +0 -0
  27. package/lib/commonjs/assets/images/muse.jpg +0 -0
  28. package/lib/commonjs/assets/images/namshi-banner.png +0 -0
  29. package/lib/commonjs/assets/images/namshi.webp +0 -0
  30. package/lib/commonjs/assets/images/partial-react-logo.png +0 -0
  31. package/lib/commonjs/assets/images/pb-logo.jpg +0 -0
  32. package/lib/commonjs/assets/images/pb.jpg +0 -0
  33. package/lib/commonjs/assets/images/react-logo.png +0 -0
  34. package/lib/commonjs/assets/images/react-logo@2x.png +0 -0
  35. package/lib/commonjs/assets/images/react-logo@3x.png +0 -0
  36. package/lib/commonjs/assets/images/scratch_foreground.png +0 -0
  37. package/lib/commonjs/assets/images/splash-icon.png +0 -0
  38. package/lib/commonjs/assets/images/upgrade.png +0 -0
  39. package/lib/commonjs/components/Badges/Badge.js +67 -0
  40. package/lib/commonjs/components/Badges/Badge.js.map +1 -0
  41. package/lib/commonjs/components/Badges/README.md +98 -0
  42. package/lib/commonjs/components/Badges/index.js +29 -0
  43. package/lib/commonjs/components/Badges/index.js.map +1 -0
  44. package/lib/commonjs/components/Banner/Banner.js +138 -0
  45. package/lib/commonjs/components/Banner/Banner.js.map +1 -0
  46. package/lib/commonjs/components/Banner/BannerWithDetails.js +120 -0
  47. package/lib/commonjs/components/Banner/BannerWithDetails.js.map +1 -0
  48. package/lib/commonjs/components/Banner/README.md +101 -0
  49. package/lib/commonjs/components/Banner/index.js +48 -0
  50. package/lib/commonjs/components/Banner/index.js.map +1 -0
  51. package/lib/commonjs/components/BrandIcon/BrandIcon.js +115 -0
  52. package/lib/commonjs/components/BrandIcon/BrandIcon.js.map +1 -0
  53. package/lib/commonjs/components/BrandIcon/index.js +29 -0
  54. package/lib/commonjs/components/BrandIcon/index.js.map +1 -0
  55. package/lib/commonjs/components/Button/Button.js +124 -0
  56. package/lib/commonjs/components/Button/Button.js.map +1 -0
  57. package/lib/commonjs/components/Button/index.js +29 -0
  58. package/lib/commonjs/components/Button/index.js.map +1 -0
  59. package/lib/commonjs/components/Card/Card.js +116 -0
  60. package/lib/commonjs/components/Card/Card.js.map +1 -0
  61. package/lib/commonjs/components/Card/CardContent.js +42 -0
  62. package/lib/commonjs/components/Card/CardContent.js.map +1 -0
  63. package/lib/commonjs/components/Card/CardFooter.js +34 -0
  64. package/lib/commonjs/components/Card/CardFooter.js.map +1 -0
  65. package/lib/commonjs/components/Card/CardHeader.js +79 -0
  66. package/lib/commonjs/components/Card/CardHeader.js.map +1 -0
  67. package/lib/commonjs/components/Card/CardImage.js +52 -0
  68. package/lib/commonjs/components/Card/CardImage.js.map +1 -0
  69. package/lib/commonjs/components/Card/index.js +98 -0
  70. package/lib/commonjs/components/Card/index.js.map +1 -0
  71. package/lib/commonjs/components/Card/templates/DealCard.js +194 -0
  72. package/lib/commonjs/components/Card/templates/DealCard.js.map +1 -0
  73. package/lib/commonjs/components/Card/templates/DealCardWithBackgroundImage.js +237 -0
  74. package/lib/commonjs/components/Card/templates/DealCardWithBackgroundImage.js.map +1 -0
  75. package/lib/commonjs/components/Card/templates/README.md +233 -0
  76. package/lib/commonjs/components/Card/templates/SimpleTrendingCard.js +59 -0
  77. package/lib/commonjs/components/Card/templates/SimpleTrendingCard.js.map +1 -0
  78. package/lib/commonjs/components/Card/types.js +6 -0
  79. package/lib/commonjs/components/Card/types.js.map +1 -0
  80. package/lib/commonjs/components/CloseIcon/CloseIcon.js +75 -0
  81. package/lib/commonjs/components/CloseIcon/CloseIcon.js.map +1 -0
  82. package/lib/commonjs/components/CloseIcon/index.js +29 -0
  83. package/lib/commonjs/components/CloseIcon/index.js.map +1 -0
  84. package/lib/commonjs/components/DateRangePicker/DateRangePicker.js +358 -0
  85. package/lib/commonjs/components/DateRangePicker/DateRangePicker.js.map +1 -0
  86. package/lib/commonjs/components/DateRangePicker/index.js +4 -0
  87. package/lib/commonjs/components/DateRangePicker/index.js.map +1 -0
  88. package/lib/commonjs/components/Filters/Filters.js +345 -0
  89. package/lib/commonjs/components/Filters/Filters.js.map +1 -0
  90. package/lib/commonjs/components/Filters/PointsRangeSelector.js +264 -0
  91. package/lib/commonjs/components/Filters/PointsRangeSelector.js.map +1 -0
  92. package/lib/commonjs/components/Filters/README.md +212 -0
  93. package/lib/commonjs/components/Filters/index.js +48 -0
  94. package/lib/commonjs/components/Filters/index.js.map +1 -0
  95. package/lib/commonjs/components/Input/Input.js +161 -0
  96. package/lib/commonjs/components/Input/Input.js.map +1 -0
  97. package/lib/commonjs/components/Input/README.md +128 -0
  98. package/lib/commonjs/components/Input/index.js +29 -0
  99. package/lib/commonjs/components/Input/index.js.map +1 -0
  100. package/lib/commonjs/components/LockOverlay/LockOverlay.js +65 -0
  101. package/lib/commonjs/components/LockOverlay/LockOverlay.js.map +1 -0
  102. package/lib/commonjs/components/LockOverlay/index.js +29 -0
  103. package/lib/commonjs/components/LockOverlay/index.js.map +1 -0
  104. package/lib/commonjs/components/Marquee/Marquee.js +105 -0
  105. package/lib/commonjs/components/Marquee/Marquee.js.map +1 -0
  106. package/lib/commonjs/components/Marquee/index.js +29 -0
  107. package/lib/commonjs/components/Marquee/index.js.map +1 -0
  108. package/lib/commonjs/components/NumericStepper/NumericStepper.js +103 -0
  109. package/lib/commonjs/components/NumericStepper/NumericStepper.js.map +1 -0
  110. package/lib/commonjs/components/NumericStepper/index.js +29 -0
  111. package/lib/commonjs/components/NumericStepper/index.js.map +1 -0
  112. package/lib/commonjs/components/Popup/Popup.js +342 -0
  113. package/lib/commonjs/components/Popup/Popup.js.map +1 -0
  114. package/lib/commonjs/components/Popup/README.md +133 -0
  115. package/lib/commonjs/components/Popup/index.js +29 -0
  116. package/lib/commonjs/components/Popup/index.js.map +1 -0
  117. package/lib/commonjs/components/ProgressBar/ProgressBar.js +125 -0
  118. package/lib/commonjs/components/ProgressBar/ProgressBar.js.map +1 -0
  119. package/lib/commonjs/components/ProgressBar/index.js +29 -0
  120. package/lib/commonjs/components/ProgressBar/index.js.map +1 -0
  121. package/lib/commonjs/components/RedeemedVoucher/RedeemedVoucherSheet.js +459 -0
  122. package/lib/commonjs/components/RedeemedVoucher/RedeemedVoucherSheet.js.map +1 -0
  123. package/lib/commonjs/components/RedeemedVoucher/index.js +29 -0
  124. package/lib/commonjs/components/RedeemedVoucher/index.js.map +1 -0
  125. package/lib/commonjs/components/RedemptionOption/README.md +148 -0
  126. package/lib/commonjs/components/RedemptionOption/RedemptionOption.js +132 -0
  127. package/lib/commonjs/components/RedemptionOption/RedemptionOption.js.map +1 -0
  128. package/lib/commonjs/components/RedemptionOption/index.js +29 -0
  129. package/lib/commonjs/components/RedemptionOption/index.js.map +1 -0
  130. package/lib/commonjs/components/ScratchCard/README.md +119 -0
  131. package/lib/commonjs/components/ScratchCard/ScratchCard.js +222 -0
  132. package/lib/commonjs/components/ScratchCard/ScratchCard.js.map +1 -0
  133. package/lib/commonjs/components/ScratchCard/ScratchCardContent.js +28 -0
  134. package/lib/commonjs/components/ScratchCard/ScratchCardContent.js.map +1 -0
  135. package/lib/commonjs/components/ScratchCard/index.js +48 -0
  136. package/lib/commonjs/components/ScratchCard/index.js.map +1 -0
  137. package/lib/commonjs/components/SelectAmount/SelectAmount.js +189 -0
  138. package/lib/commonjs/components/SelectAmount/SelectAmount.js.map +1 -0
  139. package/lib/commonjs/components/SelectAmount/index.js +4 -0
  140. package/lib/commonjs/components/SelectAmount/index.js.map +1 -0
  141. package/lib/commonjs/components/Skeleton/Shimmer.js +75 -0
  142. package/lib/commonjs/components/Skeleton/Shimmer.js.map +1 -0
  143. package/lib/commonjs/components/Skeleton/SkeletonElement.js +36 -0
  144. package/lib/commonjs/components/Skeleton/SkeletonElement.js.map +1 -0
  145. package/lib/commonjs/components/Skeleton/index.js +48 -0
  146. package/lib/commonjs/components/Skeleton/index.js.map +1 -0
  147. package/lib/commonjs/components/Suggestions/SuggestionList.js +98 -0
  148. package/lib/commonjs/components/Suggestions/SuggestionList.js.map +1 -0
  149. package/lib/commonjs/components/TravelBooking/CarRentalForm.js +370 -0
  150. package/lib/commonjs/components/TravelBooking/CarRentalForm.js.map +1 -0
  151. package/lib/commonjs/components/TravelBooking/FlightForm.js +347 -0
  152. package/lib/commonjs/components/TravelBooking/FlightForm.js.map +1 -0
  153. package/lib/commonjs/components/TravelBooking/FlightSummary.js +257 -0
  154. package/lib/commonjs/components/TravelBooking/FlightSummary.js.map +1 -0
  155. package/lib/commonjs/components/TravelBooking/HotelForm.js +290 -0
  156. package/lib/commonjs/components/TravelBooking/HotelForm.js.map +1 -0
  157. package/lib/commonjs/components/TravelBooking/HotelSummary.js +246 -0
  158. package/lib/commonjs/components/TravelBooking/HotelSummary.js.map +1 -0
  159. package/lib/commonjs/components/TravelBooking/README.md +421 -0
  160. package/lib/commonjs/components/TravelBooking/SummaryBar.js +181 -0
  161. package/lib/commonjs/components/TravelBooking/SummaryBar.js.map +1 -0
  162. package/lib/commonjs/components/TravelBooking/TabSelector.js +115 -0
  163. package/lib/commonjs/components/TravelBooking/TabSelector.js.map +1 -0
  164. package/lib/commonjs/components/TravelBooking/TravelBooking.js +261 -0
  165. package/lib/commonjs/components/TravelBooking/TravelBooking.js.map +1 -0
  166. package/lib/commonjs/components/TravelBooking/index.js +22 -0
  167. package/lib/commonjs/components/TravelBooking/index.js.map +1 -0
  168. package/lib/commonjs/components/TravelBooking/types.js +15 -0
  169. package/lib/commonjs/components/TravelBooking/types.js.map +1 -0
  170. package/lib/commonjs/components/UnlockRewards/README.md +187 -0
  171. package/lib/commonjs/components/UnlockRewards/RewardItem.js +129 -0
  172. package/lib/commonjs/components/UnlockRewards/RewardItem.js.map +1 -0
  173. package/lib/commonjs/components/UnlockRewards/UnlockRewards.js +230 -0
  174. package/lib/commonjs/components/UnlockRewards/UnlockRewards.js.map +1 -0
  175. package/lib/commonjs/components/UnlockRewards/index.js +48 -0
  176. package/lib/commonjs/components/UnlockRewards/index.js.map +1 -0
  177. package/lib/commonjs/components/Wheel/README.md +141 -0
  178. package/lib/commonjs/components/Wheel/Wheel.js +361 -0
  179. package/lib/commonjs/components/Wheel/Wheel.js.map +1 -0
  180. package/lib/commonjs/components/Wheel/index.js +29 -0
  181. package/lib/commonjs/components/Wheel/index.js.map +1 -0
  182. package/lib/commonjs/components/index.js +204 -0
  183. package/lib/commonjs/components/index.js.map +1 -0
  184. package/lib/commonjs/constants/BRANDS.js +58 -0
  185. package/lib/commonjs/constants/BRANDS.js.map +1 -0
  186. package/lib/commonjs/index.js +28 -0
  187. package/lib/commonjs/index.js.map +1 -0
  188. package/lib/commonjs/theme/Colors.js +154 -0
  189. package/lib/commonjs/theme/Colors.js.map +1 -0
  190. package/lib/commonjs/theme/ThemeContext.js +57 -0
  191. package/lib/commonjs/theme/ThemeContext.js.map +1 -0
  192. package/lib/commonjs/theme/index.js +28 -0
  193. package/lib/commonjs/theme/index.js.map +1 -0
  194. package/lib/module/theme/ThemeContext.js +7 -2
  195. package/lib/module/theme/ThemeContext.js.map +1 -1
  196. package/lib/typescript/lib/commonjs/app.d.ts +4 -0
  197. package/lib/typescript/lib/commonjs/app.d.ts.map +1 -0
  198. package/lib/typescript/lib/commonjs/components/Badges/Badge.d.ts +14 -0
  199. package/lib/typescript/lib/commonjs/components/Badges/Badge.d.ts.map +1 -0
  200. package/lib/typescript/lib/commonjs/components/Badges/index.d.ts +3 -0
  201. package/lib/typescript/lib/commonjs/components/Badges/index.d.ts.map +1 -0
  202. package/lib/typescript/lib/commonjs/components/Banner/Banner.d.ts +24 -0
  203. package/lib/typescript/lib/commonjs/components/Banner/Banner.d.ts.map +1 -0
  204. package/lib/typescript/lib/commonjs/components/Banner/BannerWithDetails.d.ts +16 -0
  205. package/lib/typescript/lib/commonjs/components/Banner/BannerWithDetails.d.ts.map +1 -0
  206. package/lib/typescript/lib/commonjs/components/Banner/index.d.ts +4 -0
  207. package/lib/typescript/lib/commonjs/components/Banner/index.d.ts.map +1 -0
  208. package/lib/typescript/lib/commonjs/components/BrandIcon/BrandIcon.d.ts +18 -0
  209. package/lib/typescript/lib/commonjs/components/BrandIcon/BrandIcon.d.ts.map +1 -0
  210. package/lib/typescript/lib/commonjs/components/BrandIcon/index.d.ts +3 -0
  211. package/lib/typescript/lib/commonjs/components/BrandIcon/index.d.ts.map +1 -0
  212. package/lib/typescript/lib/commonjs/components/Button/Button.d.ts +17 -0
  213. package/lib/typescript/lib/commonjs/components/Button/Button.d.ts.map +1 -0
  214. package/lib/typescript/lib/commonjs/components/Button/index.d.ts +3 -0
  215. package/lib/typescript/lib/commonjs/components/Button/index.d.ts.map +1 -0
  216. package/lib/typescript/lib/commonjs/components/Card/Card.d.ts +17 -0
  217. package/lib/typescript/lib/commonjs/components/Card/Card.d.ts.map +1 -0
  218. package/lib/typescript/lib/commonjs/components/Card/CardContent.d.ts +8 -0
  219. package/lib/typescript/lib/commonjs/components/Card/CardContent.d.ts.map +1 -0
  220. package/lib/typescript/lib/commonjs/components/Card/CardFooter.d.ts +9 -0
  221. package/lib/typescript/lib/commonjs/components/Card/CardFooter.d.ts.map +1 -0
  222. package/lib/typescript/lib/commonjs/components/Card/CardHeader.d.ts +14 -0
  223. package/lib/typescript/lib/commonjs/components/Card/CardHeader.d.ts.map +1 -0
  224. package/lib/typescript/lib/commonjs/components/Card/CardImage.d.ts +12 -0
  225. package/lib/typescript/lib/commonjs/components/Card/CardImage.d.ts.map +1 -0
  226. package/lib/typescript/lib/commonjs/components/Card/index.d.ts +10 -0
  227. package/lib/typescript/lib/commonjs/components/Card/index.d.ts.map +1 -0
  228. package/lib/typescript/lib/commonjs/components/Card/templates/DealCard.d.ts +30 -0
  229. package/lib/typescript/lib/commonjs/components/Card/templates/DealCard.d.ts.map +1 -0
  230. package/lib/typescript/lib/commonjs/components/Card/templates/DealCardWithBackgroundImage.d.ts +37 -0
  231. package/lib/typescript/lib/commonjs/components/Card/templates/DealCardWithBackgroundImage.d.ts.map +1 -0
  232. package/lib/typescript/lib/commonjs/components/Card/templates/SimpleTrendingCard.d.ts +12 -0
  233. package/lib/typescript/lib/commonjs/components/Card/templates/SimpleTrendingCard.d.ts.map +1 -0
  234. package/lib/typescript/lib/commonjs/components/Card/types.d.ts +2 -0
  235. package/lib/typescript/lib/commonjs/components/Card/types.d.ts.map +1 -0
  236. package/lib/typescript/lib/commonjs/components/CloseIcon/CloseIcon.d.ts +14 -0
  237. package/lib/typescript/lib/commonjs/components/CloseIcon/CloseIcon.d.ts.map +1 -0
  238. package/lib/typescript/lib/commonjs/components/CloseIcon/index.d.ts +3 -0
  239. package/lib/typescript/lib/commonjs/components/CloseIcon/index.d.ts.map +1 -0
  240. package/lib/typescript/lib/commonjs/components/DateRangePicker/DateRangePicker.d.ts +20 -0
  241. package/lib/typescript/lib/commonjs/components/DateRangePicker/DateRangePicker.d.ts.map +1 -0
  242. package/lib/typescript/lib/commonjs/components/DateRangePicker/index.d.ts.map +1 -0
  243. package/lib/typescript/lib/commonjs/components/Filters/Filters.d.ts +56 -0
  244. package/lib/typescript/lib/commonjs/components/Filters/Filters.d.ts.map +1 -0
  245. package/lib/typescript/lib/commonjs/components/Filters/PointsRangeSelector.d.ts +27 -0
  246. package/lib/typescript/lib/commonjs/components/Filters/PointsRangeSelector.d.ts.map +1 -0
  247. package/lib/typescript/lib/commonjs/components/Filters/index.d.ts +4 -0
  248. package/lib/typescript/lib/commonjs/components/Filters/index.d.ts.map +1 -0
  249. package/lib/typescript/lib/commonjs/components/Input/Input.d.ts +4 -0
  250. package/lib/typescript/lib/commonjs/components/Input/Input.d.ts.map +1 -0
  251. package/lib/typescript/lib/commonjs/components/Input/index.d.ts +3 -0
  252. package/lib/typescript/lib/commonjs/components/Input/index.d.ts.map +1 -0
  253. package/lib/typescript/lib/commonjs/components/LockOverlay/LockOverlay.d.ts +15 -0
  254. package/lib/typescript/lib/commonjs/components/LockOverlay/LockOverlay.d.ts.map +1 -0
  255. package/lib/typescript/lib/commonjs/components/LockOverlay/index.d.ts +3 -0
  256. package/lib/typescript/lib/commonjs/components/LockOverlay/index.d.ts.map +1 -0
  257. package/lib/typescript/lib/commonjs/components/Marquee/Marquee.d.ts +14 -0
  258. package/lib/typescript/lib/commonjs/components/Marquee/Marquee.d.ts.map +1 -0
  259. package/lib/typescript/lib/commonjs/components/Marquee/index.d.ts +3 -0
  260. package/lib/typescript/lib/commonjs/components/Marquee/index.d.ts.map +1 -0
  261. package/lib/typescript/lib/commonjs/components/NumericStepper/NumericStepper.d.ts +16 -0
  262. package/lib/typescript/lib/commonjs/components/NumericStepper/NumericStepper.d.ts.map +1 -0
  263. package/lib/typescript/lib/commonjs/components/NumericStepper/index.d.ts +3 -0
  264. package/lib/typescript/lib/commonjs/components/NumericStepper/index.d.ts.map +1 -0
  265. package/lib/typescript/lib/commonjs/components/Popup/Popup.d.ts +39 -0
  266. package/lib/typescript/lib/commonjs/components/Popup/Popup.d.ts.map +1 -0
  267. package/lib/typescript/lib/commonjs/components/Popup/index.d.ts +3 -0
  268. package/lib/typescript/lib/commonjs/components/Popup/index.d.ts.map +1 -0
  269. package/lib/typescript/lib/commonjs/components/ProgressBar/ProgressBar.d.ts +22 -0
  270. package/lib/typescript/lib/commonjs/components/ProgressBar/ProgressBar.d.ts.map +1 -0
  271. package/lib/typescript/lib/commonjs/components/ProgressBar/index.d.ts +3 -0
  272. package/lib/typescript/lib/commonjs/components/ProgressBar/index.d.ts.map +1 -0
  273. package/lib/typescript/lib/commonjs/components/RedeemedVoucher/RedeemedVoucherSheet.d.ts +4 -0
  274. package/lib/typescript/lib/commonjs/components/RedeemedVoucher/RedeemedVoucherSheet.d.ts.map +1 -0
  275. package/lib/typescript/lib/commonjs/components/RedeemedVoucher/index.d.ts +3 -0
  276. package/lib/typescript/lib/commonjs/components/RedeemedVoucher/index.d.ts.map +1 -0
  277. package/lib/typescript/lib/commonjs/components/RedemptionOption/RedemptionOption.d.ts +23 -0
  278. package/lib/typescript/lib/commonjs/components/RedemptionOption/RedemptionOption.d.ts.map +1 -0
  279. package/lib/typescript/lib/commonjs/components/RedemptionOption/index.d.ts +3 -0
  280. package/lib/typescript/lib/commonjs/components/RedemptionOption/index.d.ts.map +1 -0
  281. package/lib/typescript/lib/commonjs/components/ScratchCard/ScratchCard.d.ts +19 -0
  282. package/lib/typescript/lib/commonjs/components/ScratchCard/ScratchCard.d.ts.map +1 -0
  283. package/lib/typescript/lib/commonjs/components/ScratchCard/ScratchCardContent.d.ts +7 -0
  284. package/lib/typescript/lib/commonjs/components/ScratchCard/ScratchCardContent.d.ts.map +1 -0
  285. package/lib/typescript/lib/commonjs/components/ScratchCard/index.d.ts +4 -0
  286. package/lib/typescript/lib/commonjs/components/ScratchCard/index.d.ts.map +1 -0
  287. package/lib/typescript/lib/commonjs/components/SelectAmount/SelectAmount.d.ts +29 -0
  288. package/lib/typescript/lib/commonjs/components/SelectAmount/SelectAmount.d.ts.map +1 -0
  289. package/lib/typescript/lib/commonjs/components/SelectAmount/index.d.ts.map +1 -0
  290. package/lib/typescript/lib/commonjs/components/Skeleton/Shimmer.d.ts +11 -0
  291. package/lib/typescript/lib/commonjs/components/Skeleton/Shimmer.d.ts.map +1 -0
  292. package/lib/typescript/lib/commonjs/components/Skeleton/SkeletonElement.d.ts +10 -0
  293. package/lib/typescript/lib/commonjs/components/Skeleton/SkeletonElement.d.ts.map +1 -0
  294. package/lib/typescript/lib/commonjs/components/Skeleton/index.d.ts +4 -0
  295. package/lib/typescript/lib/commonjs/components/Skeleton/index.d.ts.map +1 -0
  296. package/lib/typescript/lib/commonjs/components/Suggestions/SuggestionList.d.ts +12 -0
  297. package/lib/typescript/lib/commonjs/components/Suggestions/SuggestionList.d.ts.map +1 -0
  298. package/lib/typescript/lib/commonjs/components/TravelBooking/CarRentalForm.d.ts +52 -0
  299. package/lib/typescript/lib/commonjs/components/TravelBooking/CarRentalForm.d.ts.map +1 -0
  300. package/lib/typescript/lib/commonjs/components/TravelBooking/FlightForm.d.ts +47 -0
  301. package/lib/typescript/lib/commonjs/components/TravelBooking/FlightForm.d.ts.map +1 -0
  302. package/lib/typescript/lib/commonjs/components/TravelBooking/FlightSummary.d.ts +32 -0
  303. package/lib/typescript/lib/commonjs/components/TravelBooking/FlightSummary.d.ts.map +1 -0
  304. package/lib/typescript/lib/commonjs/components/TravelBooking/HotelForm.d.ts +45 -0
  305. package/lib/typescript/lib/commonjs/components/TravelBooking/HotelForm.d.ts.map +1 -0
  306. package/lib/typescript/lib/commonjs/components/TravelBooking/HotelSummary.d.ts +36 -0
  307. package/lib/typescript/lib/commonjs/components/TravelBooking/HotelSummary.d.ts.map +1 -0
  308. package/lib/typescript/lib/commonjs/components/TravelBooking/SummaryBar.d.ts +12 -0
  309. package/lib/typescript/lib/commonjs/components/TravelBooking/SummaryBar.d.ts.map +1 -0
  310. package/lib/typescript/lib/commonjs/components/TravelBooking/TabSelector.d.ts +15 -0
  311. package/lib/typescript/lib/commonjs/components/TravelBooking/TabSelector.d.ts.map +1 -0
  312. package/lib/typescript/lib/commonjs/components/TravelBooking/TravelBooking.d.ts +47 -0
  313. package/lib/typescript/lib/commonjs/components/TravelBooking/TravelBooking.d.ts.map +1 -0
  314. package/lib/typescript/lib/commonjs/components/TravelBooking/index.d.ts.map +1 -0
  315. package/lib/typescript/lib/commonjs/components/TravelBooking/types.d.ts +3 -0
  316. package/lib/typescript/lib/commonjs/components/TravelBooking/types.d.ts.map +1 -0
  317. package/lib/typescript/lib/commonjs/components/UnlockRewards/RewardItem.d.ts +23 -0
  318. package/lib/typescript/lib/commonjs/components/UnlockRewards/RewardItem.d.ts.map +1 -0
  319. package/lib/typescript/lib/commonjs/components/UnlockRewards/UnlockRewards.d.ts +41 -0
  320. package/lib/typescript/lib/commonjs/components/UnlockRewards/UnlockRewards.d.ts.map +1 -0
  321. package/lib/typescript/lib/commonjs/components/UnlockRewards/index.d.ts +4 -0
  322. package/lib/typescript/lib/commonjs/components/UnlockRewards/index.d.ts.map +1 -0
  323. package/lib/typescript/lib/commonjs/components/Wheel/Wheel.d.ts +25 -0
  324. package/lib/typescript/lib/commonjs/components/Wheel/Wheel.d.ts.map +1 -0
  325. package/lib/typescript/lib/commonjs/components/Wheel/index.d.ts +3 -0
  326. package/lib/typescript/lib/commonjs/components/Wheel/index.d.ts.map +1 -0
  327. package/lib/typescript/lib/commonjs/components/index.d.ts +2 -0
  328. package/lib/typescript/lib/commonjs/components/index.d.ts.map +1 -0
  329. package/lib/typescript/lib/commonjs/constants/BRANDS.d.ts +14 -0
  330. package/lib/typescript/lib/commonjs/constants/BRANDS.d.ts.map +1 -0
  331. package/lib/typescript/lib/commonjs/index.d.ts +2 -0
  332. package/lib/typescript/lib/commonjs/index.d.ts.map +1 -0
  333. package/lib/typescript/lib/commonjs/theme/Colors.d.ts +110 -0
  334. package/lib/typescript/lib/commonjs/theme/Colors.d.ts.map +1 -0
  335. package/lib/typescript/lib/commonjs/theme/ThemeContext.d.ts +11 -0
  336. package/lib/typescript/lib/commonjs/theme/ThemeContext.d.ts.map +1 -0
  337. package/lib/typescript/lib/commonjs/theme/index.d.ts +2 -0
  338. package/lib/typescript/lib/commonjs/theme/index.d.ts.map +1 -0
  339. package/lib/typescript/src/app.d.ts.map +1 -0
  340. package/lib/typescript/src/components/Badges/Badge.d.ts.map +1 -0
  341. package/lib/typescript/src/components/Badges/index.d.ts.map +1 -0
  342. package/lib/typescript/src/components/Banner/Banner.d.ts.map +1 -0
  343. package/lib/typescript/src/components/Banner/BannerWithDetails.d.ts.map +1 -0
  344. package/lib/typescript/src/components/Banner/index.d.ts.map +1 -0
  345. package/lib/typescript/src/components/BrandIcon/BrandIcon.d.ts.map +1 -0
  346. package/lib/typescript/src/components/BrandIcon/index.d.ts.map +1 -0
  347. package/lib/typescript/src/components/Button/Button.d.ts.map +1 -0
  348. package/lib/typescript/src/components/Button/index.d.ts.map +1 -0
  349. package/lib/typescript/src/components/Card/Card.d.ts.map +1 -0
  350. package/lib/typescript/src/components/Card/CardContent.d.ts.map +1 -0
  351. package/lib/typescript/src/components/Card/CardFooter.d.ts.map +1 -0
  352. package/lib/typescript/src/components/Card/CardHeader.d.ts.map +1 -0
  353. package/lib/typescript/src/components/Card/CardImage.d.ts.map +1 -0
  354. package/lib/typescript/src/components/Card/index.d.ts.map +1 -0
  355. package/lib/typescript/src/components/Card/templates/DealCard.d.ts.map +1 -0
  356. package/lib/typescript/src/components/Card/templates/DealCardWithBackgroundImage.d.ts.map +1 -0
  357. package/lib/typescript/src/components/Card/templates/SimpleTrendingCard.d.ts.map +1 -0
  358. package/lib/typescript/src/components/Card/types.d.ts.map +1 -0
  359. package/lib/typescript/src/components/CloseIcon/CloseIcon.d.ts.map +1 -0
  360. package/lib/typescript/src/components/CloseIcon/index.d.ts.map +1 -0
  361. package/lib/typescript/src/components/DateRangePicker/DateRangePicker.d.ts.map +1 -0
  362. package/lib/typescript/src/components/DateRangePicker/index.d.ts +2 -0
  363. package/lib/typescript/src/components/DateRangePicker/index.d.ts.map +1 -0
  364. package/lib/typescript/src/components/Filters/Filters.d.ts.map +1 -0
  365. package/lib/typescript/src/components/Filters/PointsRangeSelector.d.ts.map +1 -0
  366. package/lib/typescript/src/components/Filters/index.d.ts.map +1 -0
  367. package/lib/typescript/src/components/Input/Input.d.ts.map +1 -0
  368. package/lib/typescript/src/components/Input/index.d.ts.map +1 -0
  369. package/lib/typescript/src/components/LockOverlay/LockOverlay.d.ts.map +1 -0
  370. package/lib/typescript/src/components/LockOverlay/index.d.ts.map +1 -0
  371. package/lib/typescript/src/components/Marquee/Marquee.d.ts.map +1 -0
  372. package/lib/typescript/src/components/Marquee/index.d.ts.map +1 -0
  373. package/lib/typescript/src/components/NumericStepper/NumericStepper.d.ts.map +1 -0
  374. package/lib/typescript/src/components/NumericStepper/index.d.ts.map +1 -0
  375. package/lib/typescript/src/components/Popup/Popup.d.ts.map +1 -0
  376. package/lib/typescript/src/components/Popup/index.d.ts.map +1 -0
  377. package/lib/typescript/src/components/ProgressBar/ProgressBar.d.ts.map +1 -0
  378. package/lib/typescript/src/components/ProgressBar/index.d.ts.map +1 -0
  379. package/lib/typescript/src/components/RedeemedVoucher/RedeemedVoucherSheet.d.ts.map +1 -0
  380. package/lib/typescript/src/components/RedeemedVoucher/index.d.ts.map +1 -0
  381. package/lib/typescript/src/components/RedemptionOption/RedemptionOption.d.ts.map +1 -0
  382. package/lib/typescript/src/components/RedemptionOption/index.d.ts.map +1 -0
  383. package/lib/typescript/src/components/ScratchCard/ScratchCard.d.ts.map +1 -0
  384. package/lib/typescript/src/components/ScratchCard/ScratchCardContent.d.ts.map +1 -0
  385. package/lib/typescript/src/components/ScratchCard/index.d.ts.map +1 -0
  386. package/lib/typescript/src/components/SelectAmount/SelectAmount.d.ts.map +1 -0
  387. package/lib/typescript/src/components/SelectAmount/index.d.ts +2 -0
  388. package/lib/typescript/src/components/SelectAmount/index.d.ts.map +1 -0
  389. package/lib/typescript/src/components/Skeleton/Shimmer.d.ts.map +1 -0
  390. package/lib/typescript/src/components/Skeleton/SkeletonElement.d.ts.map +1 -0
  391. package/lib/typescript/src/components/Skeleton/index.d.ts.map +1 -0
  392. package/lib/typescript/src/components/Suggestions/SuggestionList.d.ts.map +1 -0
  393. package/lib/typescript/src/components/TravelBooking/CarRentalForm.d.ts.map +1 -0
  394. package/lib/typescript/src/components/TravelBooking/FlightForm.d.ts.map +1 -0
  395. package/lib/typescript/src/components/TravelBooking/FlightSummary.d.ts.map +1 -0
  396. package/lib/typescript/src/components/TravelBooking/HotelForm.d.ts.map +1 -0
  397. package/lib/typescript/src/components/TravelBooking/HotelSummary.d.ts.map +1 -0
  398. package/lib/typescript/src/components/TravelBooking/SummaryBar.d.ts.map +1 -0
  399. package/lib/typescript/src/components/TravelBooking/TabSelector.d.ts.map +1 -0
  400. package/lib/typescript/src/components/TravelBooking/TravelBooking.d.ts.map +1 -0
  401. package/lib/typescript/src/components/TravelBooking/index.d.ts +2 -0
  402. package/lib/typescript/src/components/TravelBooking/index.d.ts.map +1 -0
  403. package/lib/typescript/src/components/TravelBooking/types.d.ts.map +1 -0
  404. package/lib/typescript/src/components/UnlockRewards/RewardItem.d.ts.map +1 -0
  405. package/lib/typescript/src/components/UnlockRewards/UnlockRewards.d.ts.map +1 -0
  406. package/lib/typescript/src/components/UnlockRewards/index.d.ts.map +1 -0
  407. package/lib/typescript/src/components/Wheel/Wheel.d.ts.map +1 -0
  408. package/lib/typescript/src/components/Wheel/index.d.ts.map +1 -0
  409. package/lib/typescript/src/components/index.d.ts.map +1 -0
  410. package/lib/typescript/src/constants/BRANDS.d.ts.map +1 -0
  411. package/lib/typescript/src/index.d.ts.map +1 -0
  412. package/lib/typescript/src/theme/Colors.d.ts.map +1 -0
  413. package/lib/typescript/{theme → src/theme}/ThemeContext.d.ts +2 -0
  414. package/lib/typescript/src/theme/ThemeContext.d.ts.map +1 -0
  415. package/lib/typescript/src/theme/index.d.ts.map +1 -0
  416. package/package.json +3 -3
  417. package/src/theme/ThemeContext.tsx +8 -0
  418. package/lib/typescript/app.d.ts.map +0 -1
  419. package/lib/typescript/components/Badges/Badge.d.ts.map +0 -1
  420. package/lib/typescript/components/Badges/index.d.ts.map +0 -1
  421. package/lib/typescript/components/Banner/Banner.d.ts.map +0 -1
  422. package/lib/typescript/components/Banner/BannerWithDetails.d.ts.map +0 -1
  423. package/lib/typescript/components/Banner/index.d.ts.map +0 -1
  424. package/lib/typescript/components/BrandIcon/BrandIcon.d.ts.map +0 -1
  425. package/lib/typescript/components/BrandIcon/index.d.ts.map +0 -1
  426. package/lib/typescript/components/Button/Button.d.ts.map +0 -1
  427. package/lib/typescript/components/Button/index.d.ts.map +0 -1
  428. package/lib/typescript/components/Card/Card.d.ts.map +0 -1
  429. package/lib/typescript/components/Card/CardContent.d.ts.map +0 -1
  430. package/lib/typescript/components/Card/CardFooter.d.ts.map +0 -1
  431. package/lib/typescript/components/Card/CardHeader.d.ts.map +0 -1
  432. package/lib/typescript/components/Card/CardImage.d.ts.map +0 -1
  433. package/lib/typescript/components/Card/index.d.ts.map +0 -1
  434. package/lib/typescript/components/Card/templates/DealCard.d.ts.map +0 -1
  435. package/lib/typescript/components/Card/templates/DealCardWithBackgroundImage.d.ts.map +0 -1
  436. package/lib/typescript/components/Card/templates/SimpleTrendingCard.d.ts.map +0 -1
  437. package/lib/typescript/components/Card/types.d.ts.map +0 -1
  438. package/lib/typescript/components/CloseIcon/CloseIcon.d.ts.map +0 -1
  439. package/lib/typescript/components/CloseIcon/index.d.ts.map +0 -1
  440. package/lib/typescript/components/DateRangePicker/DateRangePicker.d.ts.map +0 -1
  441. package/lib/typescript/components/DateRangePicker/index.d.ts.map +0 -1
  442. package/lib/typescript/components/Filters/Filters.d.ts.map +0 -1
  443. package/lib/typescript/components/Filters/PointsRangeSelector.d.ts.map +0 -1
  444. package/lib/typescript/components/Filters/index.d.ts.map +0 -1
  445. package/lib/typescript/components/Input/Input.d.ts.map +0 -1
  446. package/lib/typescript/components/Input/index.d.ts.map +0 -1
  447. package/lib/typescript/components/LockOverlay/LockOverlay.d.ts.map +0 -1
  448. package/lib/typescript/components/LockOverlay/index.d.ts.map +0 -1
  449. package/lib/typescript/components/Marquee/Marquee.d.ts.map +0 -1
  450. package/lib/typescript/components/Marquee/index.d.ts.map +0 -1
  451. package/lib/typescript/components/NumericStepper/NumericStepper.d.ts.map +0 -1
  452. package/lib/typescript/components/NumericStepper/index.d.ts.map +0 -1
  453. package/lib/typescript/components/Popup/Popup.d.ts.map +0 -1
  454. package/lib/typescript/components/Popup/index.d.ts.map +0 -1
  455. package/lib/typescript/components/ProgressBar/ProgressBar.d.ts.map +0 -1
  456. package/lib/typescript/components/ProgressBar/index.d.ts.map +0 -1
  457. package/lib/typescript/components/RedeemedVoucher/RedeemedVoucherSheet.d.ts.map +0 -1
  458. package/lib/typescript/components/RedeemedVoucher/index.d.ts.map +0 -1
  459. package/lib/typescript/components/RedemptionOption/RedemptionOption.d.ts.map +0 -1
  460. package/lib/typescript/components/RedemptionOption/index.d.ts.map +0 -1
  461. package/lib/typescript/components/ScratchCard/ScratchCard.d.ts.map +0 -1
  462. package/lib/typescript/components/ScratchCard/ScratchCardContent.d.ts.map +0 -1
  463. package/lib/typescript/components/ScratchCard/index.d.ts.map +0 -1
  464. package/lib/typescript/components/SelectAmount/SelectAmount.d.ts.map +0 -1
  465. package/lib/typescript/components/SelectAmount/index.d.ts.map +0 -1
  466. package/lib/typescript/components/Skeleton/Shimmer.d.ts.map +0 -1
  467. package/lib/typescript/components/Skeleton/SkeletonElement.d.ts.map +0 -1
  468. package/lib/typescript/components/Skeleton/index.d.ts.map +0 -1
  469. package/lib/typescript/components/Suggestions/SuggestionList.d.ts.map +0 -1
  470. package/lib/typescript/components/TravelBooking/CarRentalForm.d.ts.map +0 -1
  471. package/lib/typescript/components/TravelBooking/FlightForm.d.ts.map +0 -1
  472. package/lib/typescript/components/TravelBooking/FlightSummary.d.ts.map +0 -1
  473. package/lib/typescript/components/TravelBooking/HotelForm.d.ts.map +0 -1
  474. package/lib/typescript/components/TravelBooking/HotelSummary.d.ts.map +0 -1
  475. package/lib/typescript/components/TravelBooking/SummaryBar.d.ts.map +0 -1
  476. package/lib/typescript/components/TravelBooking/TabSelector.d.ts.map +0 -1
  477. package/lib/typescript/components/TravelBooking/TravelBooking.d.ts.map +0 -1
  478. package/lib/typescript/components/TravelBooking/index.d.ts.map +0 -1
  479. package/lib/typescript/components/TravelBooking/types.d.ts.map +0 -1
  480. package/lib/typescript/components/UnlockRewards/RewardItem.d.ts.map +0 -1
  481. package/lib/typescript/components/UnlockRewards/UnlockRewards.d.ts.map +0 -1
  482. package/lib/typescript/components/UnlockRewards/index.d.ts.map +0 -1
  483. package/lib/typescript/components/Wheel/Wheel.d.ts.map +0 -1
  484. package/lib/typescript/components/Wheel/index.d.ts.map +0 -1
  485. package/lib/typescript/components/index.d.ts.map +0 -1
  486. package/lib/typescript/constants/BRANDS.d.ts.map +0 -1
  487. package/lib/typescript/index.d.ts.map +0 -1
  488. package/lib/typescript/theme/Colors.d.ts.map +0 -1
  489. package/lib/typescript/theme/ThemeContext.d.ts.map +0 -1
  490. package/lib/typescript/theme/index.d.ts.map +0 -1
  491. /package/lib/typescript/{components → lib/commonjs/components}/DateRangePicker/index.d.ts +0 -0
  492. /package/lib/typescript/{components → lib/commonjs/components}/SelectAmount/index.d.ts +0 -0
  493. /package/lib/typescript/{components → lib/commonjs/components}/TravelBooking/index.d.ts +0 -0
  494. /package/lib/typescript/{app.d.ts → src/app.d.ts} +0 -0
  495. /package/lib/typescript/{components → src/components}/Badges/Badge.d.ts +0 -0
  496. /package/lib/typescript/{components → src/components}/Badges/index.d.ts +0 -0
  497. /package/lib/typescript/{components → src/components}/Banner/Banner.d.ts +0 -0
  498. /package/lib/typescript/{components → src/components}/Banner/BannerWithDetails.d.ts +0 -0
  499. /package/lib/typescript/{components → src/components}/Banner/index.d.ts +0 -0
  500. /package/lib/typescript/{components → src/components}/BrandIcon/BrandIcon.d.ts +0 -0
  501. /package/lib/typescript/{components → src/components}/BrandIcon/index.d.ts +0 -0
  502. /package/lib/typescript/{components → src/components}/Button/Button.d.ts +0 -0
  503. /package/lib/typescript/{components → src/components}/Button/index.d.ts +0 -0
  504. /package/lib/typescript/{components → src/components}/Card/Card.d.ts +0 -0
  505. /package/lib/typescript/{components → src/components}/Card/CardContent.d.ts +0 -0
  506. /package/lib/typescript/{components → src/components}/Card/CardFooter.d.ts +0 -0
  507. /package/lib/typescript/{components → src/components}/Card/CardHeader.d.ts +0 -0
  508. /package/lib/typescript/{components → src/components}/Card/CardImage.d.ts +0 -0
  509. /package/lib/typescript/{components → src/components}/Card/index.d.ts +0 -0
  510. /package/lib/typescript/{components → src/components}/Card/templates/DealCard.d.ts +0 -0
  511. /package/lib/typescript/{components → src/components}/Card/templates/DealCardWithBackgroundImage.d.ts +0 -0
  512. /package/lib/typescript/{components → src/components}/Card/templates/SimpleTrendingCard.d.ts +0 -0
  513. /package/lib/typescript/{components → src/components}/Card/types.d.ts +0 -0
  514. /package/lib/typescript/{components → src/components}/CloseIcon/CloseIcon.d.ts +0 -0
  515. /package/lib/typescript/{components → src/components}/CloseIcon/index.d.ts +0 -0
  516. /package/lib/typescript/{components → src/components}/DateRangePicker/DateRangePicker.d.ts +0 -0
  517. /package/lib/typescript/{components → src/components}/Filters/Filters.d.ts +0 -0
  518. /package/lib/typescript/{components → src/components}/Filters/PointsRangeSelector.d.ts +0 -0
  519. /package/lib/typescript/{components → src/components}/Filters/index.d.ts +0 -0
  520. /package/lib/typescript/{components → src/components}/Input/Input.d.ts +0 -0
  521. /package/lib/typescript/{components → src/components}/Input/index.d.ts +0 -0
  522. /package/lib/typescript/{components → src/components}/LockOverlay/LockOverlay.d.ts +0 -0
  523. /package/lib/typescript/{components → src/components}/LockOverlay/index.d.ts +0 -0
  524. /package/lib/typescript/{components → src/components}/Marquee/Marquee.d.ts +0 -0
  525. /package/lib/typescript/{components → src/components}/Marquee/index.d.ts +0 -0
  526. /package/lib/typescript/{components → src/components}/NumericStepper/NumericStepper.d.ts +0 -0
  527. /package/lib/typescript/{components → src/components}/NumericStepper/index.d.ts +0 -0
  528. /package/lib/typescript/{components → src/components}/Popup/Popup.d.ts +0 -0
  529. /package/lib/typescript/{components → src/components}/Popup/index.d.ts +0 -0
  530. /package/lib/typescript/{components → src/components}/ProgressBar/ProgressBar.d.ts +0 -0
  531. /package/lib/typescript/{components → src/components}/ProgressBar/index.d.ts +0 -0
  532. /package/lib/typescript/{components → src/components}/RedeemedVoucher/RedeemedVoucherSheet.d.ts +0 -0
  533. /package/lib/typescript/{components → src/components}/RedeemedVoucher/index.d.ts +0 -0
  534. /package/lib/typescript/{components → src/components}/RedemptionOption/RedemptionOption.d.ts +0 -0
  535. /package/lib/typescript/{components → src/components}/RedemptionOption/index.d.ts +0 -0
  536. /package/lib/typescript/{components → src/components}/ScratchCard/ScratchCard.d.ts +0 -0
  537. /package/lib/typescript/{components → src/components}/ScratchCard/ScratchCardContent.d.ts +0 -0
  538. /package/lib/typescript/{components → src/components}/ScratchCard/index.d.ts +0 -0
  539. /package/lib/typescript/{components → src/components}/SelectAmount/SelectAmount.d.ts +0 -0
  540. /package/lib/typescript/{components → src/components}/Skeleton/Shimmer.d.ts +0 -0
  541. /package/lib/typescript/{components → src/components}/Skeleton/SkeletonElement.d.ts +0 -0
  542. /package/lib/typescript/{components → src/components}/Skeleton/index.d.ts +0 -0
  543. /package/lib/typescript/{components → src/components}/Suggestions/SuggestionList.d.ts +0 -0
  544. /package/lib/typescript/{components → src/components}/TravelBooking/CarRentalForm.d.ts +0 -0
  545. /package/lib/typescript/{components → src/components}/TravelBooking/FlightForm.d.ts +0 -0
  546. /package/lib/typescript/{components → src/components}/TravelBooking/FlightSummary.d.ts +0 -0
  547. /package/lib/typescript/{components → src/components}/TravelBooking/HotelForm.d.ts +0 -0
  548. /package/lib/typescript/{components → src/components}/TravelBooking/HotelSummary.d.ts +0 -0
  549. /package/lib/typescript/{components → src/components}/TravelBooking/SummaryBar.d.ts +0 -0
  550. /package/lib/typescript/{components → src/components}/TravelBooking/TabSelector.d.ts +0 -0
  551. /package/lib/typescript/{components → src/components}/TravelBooking/TravelBooking.d.ts +0 -0
  552. /package/lib/typescript/{components → src/components}/TravelBooking/types.d.ts +0 -0
  553. /package/lib/typescript/{components → src/components}/UnlockRewards/RewardItem.d.ts +0 -0
  554. /package/lib/typescript/{components → src/components}/UnlockRewards/UnlockRewards.d.ts +0 -0
  555. /package/lib/typescript/{components → src/components}/UnlockRewards/index.d.ts +0 -0
  556. /package/lib/typescript/{components → src/components}/Wheel/Wheel.d.ts +0 -0
  557. /package/lib/typescript/{components → src/components}/Wheel/index.d.ts +0 -0
  558. /package/lib/typescript/{components → src/components}/index.d.ts +0 -0
  559. /package/lib/typescript/{constants → src/constants}/BRANDS.d.ts +0 -0
  560. /package/lib/typescript/{index.d.ts → src/index.d.ts} +0 -0
  561. /package/lib/typescript/{theme → src/theme}/Colors.d.ts +0 -0
  562. /package/lib/typescript/{theme → src/theme}/index.d.ts +0 -0
@@ -0,0 +1,194 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.default = void 0;
7
+ var _react = _interopRequireDefault(require("react"));
8
+ var _reactNative = require("react-native");
9
+ var _expoImage = require("expo-image");
10
+ var _Card = _interopRequireDefault(require("../Card.js"));
11
+ var _ThemeContext = require("../../../theme/ThemeContext.js");
12
+ var _ProgressBar = _interopRequireDefault(require("../../ProgressBar/ProgressBar.js"));
13
+ var _CardHeader = _interopRequireDefault(require("../CardHeader.js"));
14
+ var _CardFooter = _interopRequireDefault(require("../CardFooter.js"));
15
+ var _LockOverlay = _interopRequireDefault(require("../../LockOverlay/LockOverlay.js"));
16
+ var _jsxRuntime = require("react/jsx-runtime");
17
+ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
18
+ const DealCard = ({
19
+ imageSource,
20
+ onPress,
21
+ label,
22
+ labelContainerStyle,
23
+ labelStyle,
24
+ dealDescription,
25
+ dealDescriptionStyle,
26
+ dealPrice,
27
+ dealPriceStyle,
28
+ dealProviderName,
29
+ dealProviderNameStyle,
30
+ progressBar,
31
+ progressBarText,
32
+ progressBarTextPosition,
33
+ progressBarTextAlign,
34
+ progressValue,
35
+ progressHeight,
36
+ progressWidth,
37
+ remainingProgressColor,
38
+ progressColor,
39
+ style,
40
+ width,
41
+ variant = "horizontal",
42
+ isRTL = false,
43
+ overlayVisible = false
44
+ }) => {
45
+ const {
46
+ theme,
47
+ isRTL: rtl
48
+ } = (0, _ThemeContext.useTheme)();
49
+ isRTL = rtl;
50
+ const {
51
+ width: screenWidth
52
+ } = (0, _reactNative.useWindowDimensions)();
53
+ const isVertical = variant === "vertical";
54
+ const imageSize = Math.min(110, 110);
55
+ const cardPadding = 12;
56
+ const fontSize = screenWidth < 360 ? 14 : 16;
57
+ const calculatedProgressWidth = progressWidth || (typeof width === "number" ? width * 0.4 : screenWidth * 0.3);
58
+ const containerFlexDirection = isVertical ? "column" : isRTL ? "row-reverse" : "row";
59
+ const textContainerStyle = {
60
+ flex: isVertical ? 0 : 1,
61
+ ...(isVertical ? {
62
+ paddingLeft: cardPadding,
63
+ paddingRight: cardPadding
64
+ } : isRTL ? {
65
+ paddingLeft: cardPadding
66
+ } : {
67
+ paddingRight: cardPadding
68
+ })
69
+ };
70
+ const renderDealPrice = () => {
71
+ return /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Text, {
72
+ style: [{
73
+ textAlign: "right",
74
+ fontSize: fontSize,
75
+ fontWeight: "bold",
76
+ marginBottom: 3,
77
+ color: theme.text
78
+ }, isRTL && {
79
+ textAlign: "left"
80
+ }, dealPriceStyle],
81
+ children: dealPrice
82
+ });
83
+ };
84
+ return /*#__PURE__*/(0, _jsxRuntime.jsxs)(_Card.default, {
85
+ onPress: onPress,
86
+ variant: "filled",
87
+ backgroundColor: theme.surface,
88
+ style: [{
89
+ borderRadius: 16,
90
+ overflow: "hidden",
91
+ alignItems: isVertical ? "stretch" : "center",
92
+ flexDirection: containerFlexDirection
93
+ }, typeof width === "number" && {
94
+ width
95
+ }, style],
96
+ children: [/*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNative.View, {
97
+ style: isVertical ? {
98
+ position: "relative",
99
+ marginHorizontal: cardPadding,
100
+ marginVertical: cardPadding,
101
+ borderRadius: 10,
102
+ overflow: "hidden"
103
+ } : {
104
+ position: "relative",
105
+ marginLeft: cardPadding,
106
+ marginRight: cardPadding,
107
+ borderRadius: 10,
108
+ overflow: "hidden"
109
+ },
110
+ children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_expoImage.Image, {
111
+ source: imageSource,
112
+ style: isVertical ? {
113
+ height: 200,
114
+ width: "100%",
115
+ borderRadius: 10,
116
+ alignSelf: "center",
117
+ resizeMode: "cover"
118
+ } : {
119
+ width: imageSize,
120
+ height: imageSize,
121
+ borderRadius: 10,
122
+ alignSelf: "center",
123
+ resizeMode: "cover"
124
+ }
125
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)(_LockOverlay.default, {
126
+ onPress: onPress,
127
+ visible: overlayVisible
128
+ })]
129
+ }), /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNative.View, {
130
+ style: textContainerStyle,
131
+ children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_CardHeader.default, {
132
+ title: dealProviderName,
133
+ subtitle: dealDescription,
134
+ subtitleStyle: [isRTL && {
135
+ textAlign: "right"
136
+ }, dealDescriptionStyle],
137
+ titleStyle: [isRTL && {
138
+ textAlign: "right"
139
+ }, dealProviderNameStyle],
140
+ style: {
141
+ paddingLeft: 0,
142
+ paddingRight: 0
143
+ }
144
+ }), /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNative.View, {
145
+ style: {
146
+ marginTop: 10,
147
+ marginBottom: 15
148
+ },
149
+ children: [renderDealPrice(), /*#__PURE__*/(0, _jsxRuntime.jsxs)(_CardFooter.default, {
150
+ justifyContent: "space-between",
151
+ style: [{
152
+ padding: 0
153
+ }, isRTL && {
154
+ flexDirection: "row-reverse"
155
+ }],
156
+ children: [label && /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.View, {
157
+ style: [{
158
+ backgroundColor: theme.primary,
159
+ paddingVertical: 5,
160
+ paddingHorizontal: 8,
161
+ borderRadius: 10
162
+ }, labelContainerStyle],
163
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Text, {
164
+ style: [{
165
+ color: theme.onPrimary,
166
+ fontSize: 14
167
+ }, labelStyle],
168
+ children: label
169
+ })
170
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.View, {
171
+ children: progressBar && /*#__PURE__*/(0, _jsxRuntime.jsx)(_ProgressBar.default, {
172
+ progress: progressValue,
173
+ remainingColor: remainingProgressColor,
174
+ progressColor: progressColor,
175
+ height: progressHeight || (screenWidth < 360 ? 10 : 14),
176
+ width: calculatedProgressWidth,
177
+ textPosition: progressBarTextPosition,
178
+ text: progressBarText,
179
+ showText: progressBarText != null,
180
+ textAlign: isRTL && progressBarTextAlign == null ? "right" : progressBarTextAlign,
181
+ isRTL: isRTL,
182
+ textStyle: {
183
+ fontSize: screenWidth < 360 ? 8 : 10,
184
+ color: theme.text
185
+ }
186
+ })
187
+ })]
188
+ })]
189
+ })]
190
+ })]
191
+ });
192
+ };
193
+ var _default = exports.default = DealCard;
194
+ //# sourceMappingURL=DealCard.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["_react","_interopRequireDefault","require","_reactNative","_expoImage","_Card","_ThemeContext","_ProgressBar","_CardHeader","_CardFooter","_LockOverlay","_jsxRuntime","e","__esModule","default","DealCard","imageSource","onPress","label","labelContainerStyle","labelStyle","dealDescription","dealDescriptionStyle","dealPrice","dealPriceStyle","dealProviderName","dealProviderNameStyle","progressBar","progressBarText","progressBarTextPosition","progressBarTextAlign","progressValue","progressHeight","progressWidth","remainingProgressColor","progressColor","style","width","variant","isRTL","overlayVisible","theme","rtl","useTheme","screenWidth","useWindowDimensions","isVertical","imageSize","Math","min","cardPadding","fontSize","calculatedProgressWidth","containerFlexDirection","textContainerStyle","flex","paddingLeft","paddingRight","renderDealPrice","jsx","Text","textAlign","fontWeight","marginBottom","color","text","children","jsxs","backgroundColor","surface","borderRadius","overflow","alignItems","flexDirection","View","position","marginHorizontal","marginVertical","marginLeft","marginRight","Image","source","height","alignSelf","resizeMode","visible","title","subtitle","subtitleStyle","titleStyle","marginTop","justifyContent","padding","primary","paddingVertical","paddingHorizontal","onPrimary","progress","remainingColor","textPosition","showText","textStyle","_default","exports"],"sourceRoot":"..\\..\\..\\..\\..\\src","sources":["components/Card/templates/DealCard.tsx"],"mappings":"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","ignoreList":[]}
@@ -0,0 +1,237 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.default = void 0;
7
+ var _react = _interopRequireWildcard(require("react"));
8
+ var _reactNative = require("react-native");
9
+ var _Card = _interopRequireDefault(require("../Card.js"));
10
+ var _CardHeader = _interopRequireDefault(require("../CardHeader.js"));
11
+ var _CardContent = _interopRequireDefault(require("../CardContent.js"));
12
+ var _ThemeContext = require("../../../theme/ThemeContext.js");
13
+ var _CardFooter = _interopRequireDefault(require("../CardFooter.js"));
14
+ var _ProgressBar = _interopRequireDefault(require("../../ProgressBar/ProgressBar.js"));
15
+ var _LockOverlay = _interopRequireDefault(require("../../LockOverlay/LockOverlay.js"));
16
+ var _jsxRuntime = require("react/jsx-runtime");
17
+ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
18
+ function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function (e) { return e ? t : r; })(e); }
19
+ function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
20
+ const DealCardWithBackgroundImage = ({
21
+ backgroundImage,
22
+ onPress,
23
+ label,
24
+ labelContainerStyle,
25
+ labelStyle,
26
+ actionIconDefault,
27
+ actionIconActive,
28
+ onActionPress,
29
+ innerCardStyle,
30
+ // Use the prop directly
31
+ dealDescription,
32
+ dealDescriptionStyle,
33
+ dealPrice,
34
+ dealPriceStyle,
35
+ dealProviderName,
36
+ dealProviderNameStyle,
37
+ progressBar,
38
+ progressBarText,
39
+ progressBarTextPosition,
40
+ progressBarTextAlign,
41
+ progressValue,
42
+ progressHeight,
43
+ progressWidth,
44
+ remainingProgressColor,
45
+ progressColor,
46
+ innerCardVariant = "nested",
47
+ style,
48
+ width = "100%",
49
+ isRTL: initialIsRTL = false,
50
+ // Renamed to avoid conflict
51
+ overlayVisible = false,
52
+ overlayCover = "background",
53
+ borderRadius = 8,
54
+ onOverlayPress
55
+ }) => {
56
+ const {
57
+ theme,
58
+ isRTL: themeIsRTL
59
+ } = (0, _ThemeContext.useTheme)(); // Use theme's RTL
60
+ const isRTL = themeIsRTL; // Prioritize theme's RTL setting
61
+
62
+ const [isActive, setIsActive] = (0, _react.useState)(false);
63
+ const handleActionPress = () => {
64
+ if (!actionIconActive) return;
65
+ setIsActive(!isActive);
66
+ if (onActionPress) {
67
+ onActionPress(!isActive);
68
+ }
69
+ };
70
+ const labelContent = label && /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.View, {
71
+ style: [{
72
+ backgroundColor: theme.surface,
73
+ paddingVertical: 5,
74
+ paddingHorizontal: 8,
75
+ borderRadius: 10
76
+ }, labelContainerStyle],
77
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Text, {
78
+ style: [{
79
+ color: theme.onSurface
80
+ }, labelStyle],
81
+ children: label
82
+ })
83
+ });
84
+ const actionContent = /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.TouchableOpacity, {
85
+ onPress: handleActionPress,
86
+ hitSlop: {
87
+ top: 30,
88
+ left: 30,
89
+ bottom: 30,
90
+ right: 30
91
+ },
92
+ children: isActive ? actionIconActive : actionIconDefault
93
+ });
94
+ const headerLeft = isRTL ? actionContent : labelContent;
95
+ const headerRight = isRTL ? labelContent : actionContent;
96
+ const mainCardBorderRadius = borderRadius;
97
+ const defaultInnerCardBorderRadius = 30; // Renamed for clarity
98
+ const defaultFloatingBottomOffset = -30; // Define default floating offset
99
+
100
+ // Flatten the innerCardStyle to easily access properties
101
+ const flatInnerCardStyle = _reactNative.StyleSheet.flatten(innerCardStyle);
102
+
103
+ // Determine the actual bottom offset for the floating inner card
104
+ let actualFloatingBottomOffset = defaultFloatingBottomOffset;
105
+ if (innerCardVariant === "floating" && flatInnerCardStyle && typeof flatInnerCardStyle.bottom === "number") {
106
+ actualFloatingBottomOffset = flatInnerCardStyle.bottom;
107
+ }
108
+ const getVariantStyle = () => {
109
+ if (innerCardVariant === "floating") {
110
+ return {
111
+ position: "absolute",
112
+ bottom: actualFloatingBottomOffset,
113
+ width: "100%",
114
+ marginHorizontal: 0,
115
+ marginVertical: 0,
116
+ paddingBottom: progressBar || dealPrice ? 0 : 20,
117
+ borderRadius: 20
118
+ };
119
+ }
120
+ return {};
121
+ };
122
+ const computedInnerCardStyle = [{
123
+ borderRadius: defaultInnerCardBorderRadius,
124
+ marginVertical: 8,
125
+ marginHorizontal: 16
126
+ }, getVariantStyle(), flatInnerCardStyle];
127
+ const finalInnerBorderRadius = flatInnerCardStyle?.borderRadius ?? (innerCardVariant === "floating" ? 20 : defaultInnerCardBorderRadius);
128
+ const overlayStyle = {
129
+ position: "absolute",
130
+ top: 0,
131
+ left: 0,
132
+ right: 0,
133
+ zIndex: 100,
134
+ bottom: innerCardVariant === "floating" ? actualFloatingBottomOffset : 0,
135
+ borderTopLeftRadius: mainCardBorderRadius,
136
+ borderTopRightRadius: mainCardBorderRadius,
137
+ borderBottomLeftRadius: innerCardVariant === "floating" ? finalInnerBorderRadius : mainCardBorderRadius,
138
+ borderBottomRightRadius: innerCardVariant === "floating" ? finalInnerBorderRadius : mainCardBorderRadius,
139
+ overflow: "hidden"
140
+ };
141
+ return /*#__PURE__*/(0, _jsxRuntime.jsxs)(_Card.default, {
142
+ onPress: () => {
143
+ if (overlayVisible) {
144
+ onOverlayPress?.();
145
+ return;
146
+ }
147
+ onPress?.();
148
+ },
149
+ style: [{
150
+ height: 300,
151
+ position: "relative",
152
+ borderRadius: mainCardBorderRadius,
153
+ overflow: "hidden"
154
+ }, style, {
155
+ width
156
+ }],
157
+ backgroundImage: {
158
+ source: backgroundImage,
159
+ resizeMode: "cover"
160
+ },
161
+ children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_LockOverlay.default, {
162
+ visible: overlayVisible,
163
+ containerStyle: overlayStyle,
164
+ contentVerticalAlign: overlayCover == "background" ? "top" : "center",
165
+ onPress: onOverlayPress
166
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)(_CardHeader.default, {
167
+ left: headerLeft,
168
+ right: headerRight,
169
+ style: {
170
+ alignItems: "center",
171
+ zIndex: 1
172
+ }
173
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.View, {
174
+ style: {
175
+ flex: 1,
176
+ justifyContent: "flex-end",
177
+ zIndex: overlayCover == "background" ? 101 : 0
178
+ },
179
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_CardContent.default, {
180
+ style: {
181
+ padding: 0
182
+ },
183
+ children: /*#__PURE__*/(0, _jsxRuntime.jsxs)(_Card.default, {
184
+ backgroundColor: theme.surface,
185
+ variant: "filled",
186
+ style: computedInnerCardStyle,
187
+ children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_CardHeader.default, {
188
+ title: dealProviderName,
189
+ titleColor: theme.text,
190
+ titleStyle: [{
191
+ fontSize: 18,
192
+ textAlign: isRTL ? "right" : "left"
193
+ }, dealProviderNameStyle],
194
+ subtitle: dealDescription,
195
+ subtitleColor: theme.helper,
196
+ subtitleStyle: [{
197
+ textAlign: isRTL ? "right" : "left"
198
+ }, dealDescriptionStyle]
199
+ }), (progressBar || dealPrice) && /*#__PURE__*/(0, _jsxRuntime.jsxs)(_CardFooter.default, {
200
+ justifyContent: "space-between",
201
+ style: {
202
+ flexDirection: isRTL ? "row-reverse" : "row"
203
+ },
204
+ children: [progressBar ? /*#__PURE__*/(0, _jsxRuntime.jsx)(_ProgressBar.default, {
205
+ progress: progressValue,
206
+ remainingColor: remainingProgressColor,
207
+ progressColor: progressColor,
208
+ height: progressHeight || 14,
209
+ width: progressWidth,
210
+ textPosition: progressBarTextPosition,
211
+ text: progressBarText,
212
+ showText: progressBarText != null,
213
+ textAlign: isRTL && progressBarTextAlign == null ? "right" : progressBarTextAlign,
214
+ textStyle: {
215
+ fontSize: 10,
216
+ color: theme.text
217
+ },
218
+ isRTL: isRTL
219
+ }) : /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.View, {}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.View, {
220
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Text, {
221
+ style: [{
222
+ fontSize: 16,
223
+ color: theme.primary,
224
+ fontWeight: "bold",
225
+ textAlign: isRTL ? "left" : "right"
226
+ }, dealPriceStyle],
227
+ children: dealPrice
228
+ })
229
+ })]
230
+ })]
231
+ })
232
+ })
233
+ })]
234
+ });
235
+ };
236
+ var _default = exports.default = DealCardWithBackgroundImage;
237
+ //# sourceMappingURL=DealCardWithBackgroundImage.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["_react","_interopRequireWildcard","require","_reactNative","_Card","_interopRequireDefault","_CardHeader","_CardContent","_ThemeContext","_CardFooter","_ProgressBar","_LockOverlay","_jsxRuntime","e","__esModule","default","_getRequireWildcardCache","WeakMap","r","t","has","get","n","__proto__","a","Object","defineProperty","getOwnPropertyDescriptor","u","hasOwnProperty","call","i","set","DealCardWithBackgroundImage","backgroundImage","onPress","label","labelContainerStyle","labelStyle","actionIconDefault","actionIconActive","onActionPress","innerCardStyle","dealDescription","dealDescriptionStyle","dealPrice","dealPriceStyle","dealProviderName","dealProviderNameStyle","progressBar","progressBarText","progressBarTextPosition","progressBarTextAlign","progressValue","progressHeight","progressWidth","remainingProgressColor","progressColor","innerCardVariant","style","width","isRTL","initialIsRTL","overlayVisible","overlayCover","borderRadius","onOverlayPress","theme","themeIsRTL","useTheme","isActive","setIsActive","useState","handleActionPress","labelContent","jsx","View","backgroundColor","surface","paddingVertical","paddingHorizontal","children","Text","color","onSurface","actionContent","TouchableOpacity","hitSlop","top","left","bottom","right","headerLeft","headerRight","mainCardBorderRadius","defaultInnerCardBorderRadius","defaultFloatingBottomOffset","flatInnerCardStyle","StyleSheet","flatten","actualFloatingBottomOffset","getVariantStyle","position","marginHorizontal","marginVertical","paddingBottom","computedInnerCardStyle","finalInnerBorderRadius","overlayStyle","zIndex","borderTopLeftRadius","borderTopRightRadius","borderBottomLeftRadius","borderBottomRightRadius","overflow","jsxs","height","source","resizeMode","visible","containerStyle","contentVerticalAlign","alignItems","flex","justifyContent","padding","variant","title","titleColor","text","titleStyle","fontSize","textAlign","subtitle","subtitleColor","helper","subtitleStyle","flexDirection","progress","remainingColor","textPosition","showText","textStyle","primary","fontWeight","_default","exports"],"sourceRoot":"..\\..\\..\\..\\..\\src","sources":["components/Card/templates/DealCardWithBackgroundImage.tsx"],"mappings":"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","ignoreList":[]}