@tyrads.com/tyrads-sdk 3.0.0-beta.0 → 3.2.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.
- package/android/build.gradle +1 -1
- package/android/src/main/java/com/tyradssdk/TyradsSdkModule.kt +130 -29
- package/ios/Tyrads/AcmoAssets.swift +14 -0
- package/ios/Tyrads/ApiHeaders.swift +1 -0
- package/ios/Tyrads/InitModel.swift +3 -0
- package/ios/Tyrads/Tyrads.swift +255 -213
- package/ios/Tyrads/WebViewController.swift +195 -0
- package/ios/Tyrads/core/utils/AcmoKeyNames.swift +29 -0
- package/ios/Tyrads/core/utils/ColorExtension.swift +55 -0
- package/ios/Tyrads/core/utils/Services/LocalizationService.swift +175 -0
- package/ios/Tyrads/helpers/device_details.swift +160 -0
- package/ios/Tyrads/legal/AcmoPrivacyPage.swift +353 -0
- package/ios/Tyrads/legal/PrivacyPageController.swift +31 -0
- package/ios/Tyrads/user/AcmoUserUpdatePage.swift +302 -0
- package/ios/Tyrads/user/AcmoUsersUpdateController.swift +26 -0
- package/ios/Tyrads/user/Repository.swift +89 -0
- package/ios/TyradsSdk.mm +22 -4
- package/ios/TyradsSdk.swift +101 -31
- package/lib/commonjs/acmo/core/helpers/launcher.js +20 -0
- package/lib/commonjs/acmo/core/helpers/launcher.js.map +1 -0
- package/lib/commonjs/acmo/core/helpers/native_methods.js +37 -0
- package/lib/commonjs/acmo/core/helpers/native_methods.js.map +1 -0
- package/lib/commonjs/acmo/core/helpers/numeral.js +19 -0
- package/lib/commonjs/acmo/core/helpers/numeral.js.map +1 -0
- package/lib/commonjs/acmo/core/services/localization_service.js +164 -0
- package/lib/commonjs/acmo/core/services/localization_service.js.map +1 -0
- package/lib/commonjs/acmo/core/storage/storage.js +15 -1
- package/lib/commonjs/acmo/core/storage/storage.js.map +1 -1
- package/lib/commonjs/acmo/modules/dashboard/components/active_offers_button.js +79 -0
- package/lib/commonjs/acmo/modules/dashboard/components/active_offers_button.js.map +1 -0
- package/lib/commonjs/acmo/modules/dashboard/components/custom_card.js +7 -10
- package/lib/commonjs/acmo/modules/dashboard/components/custom_card.js.map +1 -1
- package/lib/commonjs/acmo/modules/dashboard/components/custom_scroller.js +141 -0
- package/lib/commonjs/acmo/modules/dashboard/components/custom_scroller.js.map +1 -0
- package/lib/commonjs/acmo/{core/marquee.js → modules/dashboard/components/custom_shimmer.js} +46 -34
- package/lib/commonjs/acmo/modules/dashboard/components/custom_shimmer.js.map +1 -0
- package/lib/commonjs/acmo/modules/dashboard/components/offer_card.js +263 -0
- package/lib/commonjs/acmo/modules/dashboard/components/offer_card.js.map +1 -0
- package/lib/commonjs/acmo/modules/dashboard/components/offer_list_item.js +203 -0
- package/lib/commonjs/acmo/modules/dashboard/components/offer_list_item.js.map +1 -0
- package/lib/commonjs/acmo/modules/dashboard/components/premium_empty_widget.js +87 -0
- package/lib/commonjs/acmo/modules/dashboard/components/premium_empty_widget.js.map +1 -0
- package/lib/commonjs/acmo/modules/dashboard/components/premium_header.js +16 -14
- package/lib/commonjs/acmo/modules/dashboard/components/premium_header.js.map +1 -1
- package/lib/commonjs/acmo/modules/dashboard/components/premium_loading.js +111 -0
- package/lib/commonjs/acmo/modules/dashboard/components/premium_loading.js.map +1 -0
- package/lib/commonjs/acmo/modules/dashboard/repository.js +108 -32
- package/lib/commonjs/acmo/modules/dashboard/repository.js.map +1 -1
- package/lib/commonjs/acmo/modules/dashboard/top_offers.js +85 -63
- package/lib/commonjs/acmo/modules/dashboard/top_offers.js.map +1 -1
- package/lib/commonjs/acmo/modules/localization/localization_context.js +56 -0
- package/lib/commonjs/acmo/modules/localization/localization_context.js.map +1 -0
- package/lib/commonjs/assets/images/angle_up.png +0 -0
- package/lib/commonjs/assets/images/diamond.png +0 -0
- package/lib/commonjs/assets/images/info.png +0 -0
- package/lib/commonjs/assets/images/info_icon.png +0 -0
- package/lib/commonjs/assets/images/premium-emptybg.jpeg +0 -0
- package/lib/commonjs/assets/images/rank_1.png +0 -0
- package/lib/commonjs/assets/images/rank_2.png +0 -0
- package/lib/commonjs/assets/images/rank_3.png +0 -0
- package/lib/commonjs/assets/images/rank_4.png +0 -0
- package/lib/commonjs/assets/images/rank_5.png +0 -0
- package/lib/commonjs/index.js +50 -16
- package/lib/commonjs/index.js.map +1 -1
- package/lib/module/acmo/core/helpers/launcher.js +15 -0
- package/lib/module/acmo/core/helpers/launcher.js.map +1 -0
- package/lib/module/acmo/core/helpers/native_methods.js +33 -0
- package/lib/module/acmo/core/helpers/native_methods.js.map +1 -0
- package/lib/module/acmo/core/helpers/numeral.js +14 -0
- package/lib/module/acmo/core/helpers/numeral.js.map +1 -0
- package/lib/module/acmo/core/services/localization_service.js +159 -0
- package/lib/module/acmo/core/services/localization_service.js.map +1 -0
- package/lib/module/acmo/core/storage/storage.js +13 -0
- package/lib/module/acmo/core/storage/storage.js.map +1 -1
- package/lib/module/acmo/modules/dashboard/components/active_offers_button.js +73 -0
- package/lib/module/acmo/modules/dashboard/components/active_offers_button.js.map +1 -0
- package/lib/module/acmo/modules/dashboard/components/custom_card.js +7 -10
- package/lib/module/acmo/modules/dashboard/components/custom_card.js.map +1 -1
- package/lib/module/acmo/modules/dashboard/components/custom_scroller.js +135 -0
- package/lib/module/acmo/modules/dashboard/components/custom_scroller.js.map +1 -0
- package/lib/module/acmo/modules/dashboard/components/custom_shimmer.js +66 -0
- package/lib/module/acmo/modules/dashboard/components/custom_shimmer.js.map +1 -0
- package/lib/module/acmo/modules/dashboard/components/offer_card.js +257 -0
- package/lib/module/acmo/modules/dashboard/components/offer_card.js.map +1 -0
- package/lib/module/acmo/modules/dashboard/components/offer_list_item.js +197 -0
- package/lib/module/acmo/modules/dashboard/components/offer_list_item.js.map +1 -0
- package/lib/module/acmo/modules/dashboard/components/premium_empty_widget.js +82 -0
- package/lib/module/acmo/modules/dashboard/components/premium_empty_widget.js.map +1 -0
- package/lib/module/acmo/modules/dashboard/components/premium_header.js +16 -14
- package/lib/module/acmo/modules/dashboard/components/premium_header.js.map +1 -1
- package/lib/module/acmo/modules/dashboard/components/premium_loading.js +106 -0
- package/lib/module/acmo/modules/dashboard/components/premium_loading.js.map +1 -0
- package/lib/module/acmo/modules/dashboard/repository.js +105 -30
- package/lib/module/acmo/modules/dashboard/repository.js.map +1 -1
- package/lib/module/acmo/modules/dashboard/top_offers.js +86 -64
- package/lib/module/acmo/modules/dashboard/top_offers.js.map +1 -1
- package/lib/module/acmo/modules/localization/localization_context.js +45 -0
- package/lib/module/acmo/modules/localization/localization_context.js.map +1 -0
- package/lib/module/assets/images/angle_up.png +0 -0
- package/lib/module/assets/images/diamond.png +0 -0
- package/lib/module/assets/images/info.png +0 -0
- package/lib/module/assets/images/info_icon.png +0 -0
- package/lib/module/assets/images/premium-emptybg.jpeg +0 -0
- package/lib/module/assets/images/rank_1.png +0 -0
- package/lib/module/assets/images/rank_2.png +0 -0
- package/lib/module/assets/images/rank_3.png +0 -0
- package/lib/module/assets/images/rank_4.png +0 -0
- package/lib/module/assets/images/rank_5.png +0 -0
- package/lib/module/index.js +49 -17
- package/lib/module/index.js.map +1 -1
- package/lib/typescript/commonjs/src/acmo/core/helpers/launcher.d.ts +3 -0
- package/lib/typescript/commonjs/src/acmo/core/helpers/launcher.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/acmo/core/helpers/native_methods.d.ts +6 -0
- package/lib/typescript/commonjs/src/acmo/core/helpers/native_methods.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/acmo/core/helpers/numeral.d.ts +2 -0
- package/lib/typescript/commonjs/src/acmo/core/helpers/numeral.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/acmo/core/services/localization_service.d.ts +18 -0
- package/lib/typescript/commonjs/src/acmo/core/services/localization_service.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/acmo/core/storage/storage.d.ts +1 -0
- package/lib/typescript/commonjs/src/acmo/core/storage/storage.d.ts.map +1 -1
- package/lib/typescript/commonjs/src/acmo/modules/dashboard/components/active_offers_button.d.ts +9 -0
- package/lib/typescript/commonjs/src/acmo/modules/dashboard/components/active_offers_button.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/acmo/modules/dashboard/components/custom_card.d.ts.map +1 -1
- package/lib/typescript/commonjs/src/acmo/modules/dashboard/components/custom_scroller.d.ts +17 -0
- package/lib/typescript/commonjs/src/acmo/modules/dashboard/components/custom_scroller.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/acmo/modules/dashboard/components/custom_shimmer.d.ts +11 -0
- package/lib/typescript/commonjs/src/acmo/modules/dashboard/components/custom_shimmer.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/acmo/modules/dashboard/components/offer_card.d.ts +12 -0
- package/lib/typescript/commonjs/src/acmo/modules/dashboard/components/offer_card.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/acmo/modules/dashboard/components/offer_list_item.d.ts +15 -0
- package/lib/typescript/commonjs/src/acmo/modules/dashboard/components/offer_list_item.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/acmo/modules/dashboard/components/premium_empty_widget.d.ts +7 -0
- package/lib/typescript/commonjs/src/acmo/modules/dashboard/components/premium_empty_widget.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/acmo/modules/dashboard/components/premium_header.d.ts.map +1 -1
- package/lib/typescript/commonjs/src/acmo/modules/dashboard/components/premium_loading.d.ts +8 -0
- package/lib/typescript/commonjs/src/acmo/modules/dashboard/components/premium_loading.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/acmo/modules/dashboard/repository.d.ts +2 -1
- package/lib/typescript/commonjs/src/acmo/modules/dashboard/repository.d.ts.map +1 -1
- package/lib/typescript/commonjs/src/acmo/modules/dashboard/top_offers.d.ts +8 -7
- package/lib/typescript/commonjs/src/acmo/modules/dashboard/top_offers.d.ts.map +1 -1
- package/lib/typescript/commonjs/src/acmo/modules/localization/localization_context.d.ts +14 -0
- package/lib/typescript/commonjs/src/acmo/modules/localization/localization_context.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/index.d.ts +8 -6
- package/lib/typescript/commonjs/src/index.d.ts.map +1 -1
- package/lib/typescript/module/src/acmo/core/helpers/launcher.d.ts +3 -0
- package/lib/typescript/module/src/acmo/core/helpers/launcher.d.ts.map +1 -0
- package/lib/typescript/module/src/acmo/core/helpers/native_methods.d.ts +6 -0
- package/lib/typescript/module/src/acmo/core/helpers/native_methods.d.ts.map +1 -0
- package/lib/typescript/module/src/acmo/core/helpers/numeral.d.ts +2 -0
- package/lib/typescript/module/src/acmo/core/helpers/numeral.d.ts.map +1 -0
- package/lib/typescript/module/src/acmo/core/services/localization_service.d.ts +18 -0
- package/lib/typescript/module/src/acmo/core/services/localization_service.d.ts.map +1 -0
- package/lib/typescript/module/src/acmo/core/storage/storage.d.ts +1 -0
- package/lib/typescript/module/src/acmo/core/storage/storage.d.ts.map +1 -1
- package/lib/typescript/module/src/acmo/modules/dashboard/components/active_offers_button.d.ts +9 -0
- package/lib/typescript/module/src/acmo/modules/dashboard/components/active_offers_button.d.ts.map +1 -0
- package/lib/typescript/module/src/acmo/modules/dashboard/components/custom_card.d.ts.map +1 -1
- package/lib/typescript/module/src/acmo/modules/dashboard/components/custom_scroller.d.ts +17 -0
- package/lib/typescript/module/src/acmo/modules/dashboard/components/custom_scroller.d.ts.map +1 -0
- package/lib/typescript/module/src/acmo/modules/dashboard/components/custom_shimmer.d.ts +11 -0
- package/lib/typescript/module/src/acmo/modules/dashboard/components/custom_shimmer.d.ts.map +1 -0
- package/lib/typescript/module/src/acmo/modules/dashboard/components/offer_card.d.ts +12 -0
- package/lib/typescript/module/src/acmo/modules/dashboard/components/offer_card.d.ts.map +1 -0
- package/lib/typescript/module/src/acmo/modules/dashboard/components/offer_list_item.d.ts +15 -0
- package/lib/typescript/module/src/acmo/modules/dashboard/components/offer_list_item.d.ts.map +1 -0
- package/lib/typescript/module/src/acmo/modules/dashboard/components/premium_empty_widget.d.ts +7 -0
- package/lib/typescript/module/src/acmo/modules/dashboard/components/premium_empty_widget.d.ts.map +1 -0
- package/lib/typescript/module/src/acmo/modules/dashboard/components/premium_header.d.ts.map +1 -1
- package/lib/typescript/module/src/acmo/modules/dashboard/components/premium_loading.d.ts +8 -0
- package/lib/typescript/module/src/acmo/modules/dashboard/components/premium_loading.d.ts.map +1 -0
- package/lib/typescript/module/src/acmo/modules/dashboard/repository.d.ts +2 -1
- package/lib/typescript/module/src/acmo/modules/dashboard/repository.d.ts.map +1 -1
- package/lib/typescript/module/src/acmo/modules/dashboard/top_offers.d.ts +8 -7
- package/lib/typescript/module/src/acmo/modules/dashboard/top_offers.d.ts.map +1 -1
- package/lib/typescript/module/src/acmo/modules/localization/localization_context.d.ts +14 -0
- package/lib/typescript/module/src/acmo/modules/localization/localization_context.d.ts.map +1 -0
- package/lib/typescript/module/src/index.d.ts +8 -6
- package/lib/typescript/module/src/index.d.ts.map +1 -1
- package/package.json +3 -6
- package/readme.md +8 -8
- package/src/acmo/core/helpers/launcher.ts +14 -0
- package/src/acmo/core/helpers/native_methods.ts +43 -0
- package/src/acmo/core/helpers/numeral.ts +14 -0
- package/src/acmo/core/services/localization_service.ts +200 -0
- package/src/acmo/core/storage/storage.ts +14 -0
- package/src/acmo/core/types/types.d.ts +11 -13
- package/src/acmo/modules/dashboard/components/active_offers_button.tsx +62 -0
- package/src/acmo/modules/dashboard/components/custom_card.tsx +5 -8
- package/src/acmo/modules/dashboard/components/custom_scroller.tsx +164 -0
- package/src/acmo/modules/dashboard/components/custom_shimmer.tsx +75 -0
- package/src/acmo/modules/dashboard/components/offer_card.tsx +248 -0
- package/src/acmo/modules/dashboard/components/offer_list_item.tsx +228 -0
- package/src/acmo/modules/dashboard/components/premium_empty_widget.tsx +79 -0
- package/src/acmo/modules/dashboard/components/premium_header.tsx +14 -13
- package/src/acmo/modules/dashboard/components/premium_loading.tsx +72 -0
- package/src/acmo/modules/dashboard/repository.ts +121 -46
- package/src/acmo/modules/dashboard/top_offers.tsx +105 -53
- package/src/acmo/modules/localization/localization_context.tsx +52 -0
- package/src/assets/images/angle_up.png +0 -0
- package/src/assets/images/diamond.png +0 -0
- package/src/assets/images/info.png +0 -0
- package/src/assets/images/info_icon.png +0 -0
- package/src/assets/images/premium-emptybg.jpeg +0 -0
- package/src/assets/images/rank_1.png +0 -0
- package/src/assets/images/rank_2.png +0 -0
- package/src/assets/images/rank_3.png +0 -0
- package/src/assets/images/rank_4.png +0 -0
- package/src/assets/images/rank_5.png +0 -0
- package/src/index.tsx +76 -34
- package/lib/commonjs/acmo/core/marquee.js.map +0 -1
- package/lib/commonjs/acmo/modules/dashboard/components/auto_scroller.js +0 -87
- package/lib/commonjs/acmo/modules/dashboard/components/auto_scroller.js.map +0 -1
- package/lib/commonjs/acmo/modules/dashboard/components/my_games_button.js +0 -48
- package/lib/commonjs/acmo/modules/dashboard/components/my_games_button.js.map +0 -1
- package/lib/commonjs/acmo/modules/dashboard/components/offer_info_section.js +0 -158
- package/lib/commonjs/acmo/modules/dashboard/components/offer_info_section.js.map +0 -1
- package/lib/commonjs/acmo/modules/dashboard/components/premium_option_1.js +0 -180
- package/lib/commonjs/acmo/modules/dashboard/components/premium_option_1.js.map +0 -1
- package/lib/commonjs/acmo/modules/dashboard/components/premium_option_2.js +0 -102
- package/lib/commonjs/acmo/modules/dashboard/components/premium_option_2.js.map +0 -1
- package/lib/commonjs/acmo/modules/dashboard/components/premium_option_3.js +0 -41
- package/lib/commonjs/acmo/modules/dashboard/components/premium_option_3.js.map +0 -1
- package/lib/commonjs/acmo/modules/dashboard/components/premium_option_4.js +0 -214
- package/lib/commonjs/acmo/modules/dashboard/components/premium_option_4.js.map +0 -1
- package/lib/commonjs/i18n.js +0 -112
- package/lib/commonjs/i18n.js.map +0 -1
- package/lib/module/acmo/core/marquee.js +0 -54
- package/lib/module/acmo/core/marquee.js.map +0 -1
- package/lib/module/acmo/modules/dashboard/components/auto_scroller.js +0 -81
- package/lib/module/acmo/modules/dashboard/components/auto_scroller.js.map +0 -1
- package/lib/module/acmo/modules/dashboard/components/my_games_button.js +0 -43
- package/lib/module/acmo/modules/dashboard/components/my_games_button.js.map +0 -1
- package/lib/module/acmo/modules/dashboard/components/offer_info_section.js +0 -153
- package/lib/module/acmo/modules/dashboard/components/offer_info_section.js.map +0 -1
- package/lib/module/acmo/modules/dashboard/components/premium_option_1.js +0 -174
- package/lib/module/acmo/modules/dashboard/components/premium_option_1.js.map +0 -1
- package/lib/module/acmo/modules/dashboard/components/premium_option_2.js +0 -97
- package/lib/module/acmo/modules/dashboard/components/premium_option_2.js.map +0 -1
- package/lib/module/acmo/modules/dashboard/components/premium_option_3.js +0 -36
- package/lib/module/acmo/modules/dashboard/components/premium_option_3.js.map +0 -1
- package/lib/module/acmo/modules/dashboard/components/premium_option_4.js +0 -209
- package/lib/module/acmo/modules/dashboard/components/premium_option_4.js.map +0 -1
- package/lib/module/i18n.js +0 -107
- package/lib/module/i18n.js.map +0 -1
- package/lib/typescript/commonjs/src/acmo/core/marquee.d.ts +0 -11
- package/lib/typescript/commonjs/src/acmo/core/marquee.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/acmo/modules/dashboard/components/auto_scroller.d.ts +0 -10
- package/lib/typescript/commonjs/src/acmo/modules/dashboard/components/auto_scroller.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/acmo/modules/dashboard/components/my_games_button.d.ts +0 -8
- package/lib/typescript/commonjs/src/acmo/modules/dashboard/components/my_games_button.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/acmo/modules/dashboard/components/offer_info_section.d.ts +0 -11
- package/lib/typescript/commonjs/src/acmo/modules/dashboard/components/offer_info_section.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/acmo/modules/dashboard/components/premium_option_1.d.ts +0 -9
- package/lib/typescript/commonjs/src/acmo/modules/dashboard/components/premium_option_1.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/acmo/modules/dashboard/components/premium_option_2.d.ts +0 -9
- package/lib/typescript/commonjs/src/acmo/modules/dashboard/components/premium_option_2.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/acmo/modules/dashboard/components/premium_option_3.d.ts +0 -9
- package/lib/typescript/commonjs/src/acmo/modules/dashboard/components/premium_option_3.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/acmo/modules/dashboard/components/premium_option_4.d.ts +0 -9
- package/lib/typescript/commonjs/src/acmo/modules/dashboard/components/premium_option_4.d.ts.map +0 -1
- package/lib/typescript/commonjs/src/i18n.d.ts +0 -3
- package/lib/typescript/commonjs/src/i18n.d.ts.map +0 -1
- package/lib/typescript/module/src/acmo/core/marquee.d.ts +0 -11
- package/lib/typescript/module/src/acmo/core/marquee.d.ts.map +0 -1
- package/lib/typescript/module/src/acmo/modules/dashboard/components/auto_scroller.d.ts +0 -10
- package/lib/typescript/module/src/acmo/modules/dashboard/components/auto_scroller.d.ts.map +0 -1
- package/lib/typescript/module/src/acmo/modules/dashboard/components/my_games_button.d.ts +0 -8
- package/lib/typescript/module/src/acmo/modules/dashboard/components/my_games_button.d.ts.map +0 -1
- package/lib/typescript/module/src/acmo/modules/dashboard/components/offer_info_section.d.ts +0 -11
- package/lib/typescript/module/src/acmo/modules/dashboard/components/offer_info_section.d.ts.map +0 -1
- package/lib/typescript/module/src/acmo/modules/dashboard/components/premium_option_1.d.ts +0 -9
- package/lib/typescript/module/src/acmo/modules/dashboard/components/premium_option_1.d.ts.map +0 -1
- package/lib/typescript/module/src/acmo/modules/dashboard/components/premium_option_2.d.ts +0 -9
- package/lib/typescript/module/src/acmo/modules/dashboard/components/premium_option_2.d.ts.map +0 -1
- package/lib/typescript/module/src/acmo/modules/dashboard/components/premium_option_3.d.ts +0 -9
- package/lib/typescript/module/src/acmo/modules/dashboard/components/premium_option_3.d.ts.map +0 -1
- package/lib/typescript/module/src/acmo/modules/dashboard/components/premium_option_4.d.ts +0 -9
- package/lib/typescript/module/src/acmo/modules/dashboard/components/premium_option_4.d.ts.map +0 -1
- package/lib/typescript/module/src/i18n.d.ts +0 -3
- package/lib/typescript/module/src/i18n.d.ts.map +0 -1
- package/src/acmo/core/marquee.tsx +0 -62
- package/src/acmo/modules/dashboard/components/auto_scroller.tsx +0 -85
- package/src/acmo/modules/dashboard/components/my_games_button.tsx +0 -40
- package/src/acmo/modules/dashboard/components/offer_info_section.tsx +0 -139
- package/src/acmo/modules/dashboard/components/premium_option_1.tsx +0 -163
- package/src/acmo/modules/dashboard/components/premium_option_2.tsx +0 -100
- package/src/acmo/modules/dashboard/components/premium_option_3.tsx +0 -42
- package/src/acmo/modules/dashboard/components/premium_option_4.tsx +0 -185
- package/src/i18n.ts +0 -115
@@ -1,209 +0,0 @@
|
|
1
|
-
"use strict";
|
2
|
-
|
3
|
-
import React from 'react';
|
4
|
-
import { View, Text, Image, StyleSheet, Dimensions, TouchableOpacity } from 'react-native';
|
5
|
-
import AutoScrollPagerWithIndicators from "./auto_scroller.js";
|
6
|
-
import numeral from 'numeral';
|
7
|
-
import { useTranslation } from 'react-i18next';
|
8
|
-
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
9
|
-
const {
|
10
|
-
width
|
11
|
-
} = Dimensions.get('window');
|
12
|
-
const PremiumOption4 = ({
|
13
|
-
data,
|
14
|
-
onCampaignPress,
|
15
|
-
premiumColor
|
16
|
-
}) => {
|
17
|
-
return /*#__PURE__*/_jsx(AutoScrollPagerWithIndicators, {
|
18
|
-
totalPages: data.length,
|
19
|
-
premiumColor: premiumColor,
|
20
|
-
content: page => /*#__PURE__*/_jsx(View, {
|
21
|
-
children: data[page] && /*#__PURE__*/_jsx(OfferBanner, {
|
22
|
-
details: data[page],
|
23
|
-
index: page,
|
24
|
-
premiumColor: premiumColor,
|
25
|
-
onCampaignPress: onCampaignPress
|
26
|
-
})
|
27
|
-
}, page)
|
28
|
-
});
|
29
|
-
};
|
30
|
-
const OfferBanner = ({
|
31
|
-
details,
|
32
|
-
index,
|
33
|
-
onCampaignPress,
|
34
|
-
premiumColor
|
35
|
-
}) => {
|
36
|
-
const {
|
37
|
-
t
|
38
|
-
} = useTranslation();
|
39
|
-
return /*#__PURE__*/_jsxs(View, {
|
40
|
-
style: styles.outerContainer,
|
41
|
-
children: [/*#__PURE__*/_jsxs(View, {
|
42
|
-
style: styles.bannerContainer,
|
43
|
-
children: [/*#__PURE__*/_jsx(Image, {
|
44
|
-
style: styles.bannerImage,
|
45
|
-
source: {
|
46
|
-
uri: details.fileUrl
|
47
|
-
},
|
48
|
-
resizeMode: "cover"
|
49
|
-
}), /*#__PURE__*/_jsxs(View, {
|
50
|
-
style: styles.starContainer,
|
51
|
-
children: [/*#__PURE__*/_jsx(Image, {
|
52
|
-
source: require('../../../../assets/images/premium_star.png'),
|
53
|
-
style: [styles.starIcon, {
|
54
|
-
tintColor: premiumColor || '#1C90DF'
|
55
|
-
}]
|
56
|
-
}), /*#__PURE__*/_jsx(Text, {
|
57
|
-
style: styles.index,
|
58
|
-
numberOfLines: 1,
|
59
|
-
ellipsizeMode: "tail",
|
60
|
-
children: index + 1
|
61
|
-
})]
|
62
|
-
})]
|
63
|
-
}), /*#__PURE__*/_jsxs(View, {
|
64
|
-
style: styles.titleContainer,
|
65
|
-
children: [/*#__PURE__*/_jsxs(View, {
|
66
|
-
style: {
|
67
|
-
flexDirection: 'row',
|
68
|
-
flex: 8,
|
69
|
-
width: '70%'
|
70
|
-
},
|
71
|
-
children: [/*#__PURE__*/_jsx(Image, {
|
72
|
-
style: styles.gameIcon,
|
73
|
-
source: {
|
74
|
-
uri: details.thumbnail
|
75
|
-
},
|
76
|
-
resizeMode: "cover"
|
77
|
-
}), /*#__PURE__*/_jsxs(View, {
|
78
|
-
style: {
|
79
|
-
marginLeft: 10
|
80
|
-
},
|
81
|
-
children: [/*#__PURE__*/_jsx(Text, {
|
82
|
-
style: styles.titleText,
|
83
|
-
children: details.title
|
84
|
-
}), /*#__PURE__*/_jsxs(View, {
|
85
|
-
style: styles.rewardDetails,
|
86
|
-
children: [/*#__PURE__*/_jsx(Image, {
|
87
|
-
source: {
|
88
|
-
uri: details.currency.adUnitCurrencyIcon
|
89
|
-
},
|
90
|
-
resizeMode: "contain",
|
91
|
-
style: styles.coinIcon
|
92
|
-
}), /*#__PURE__*/_jsx(Text, {
|
93
|
-
style: styles.points,
|
94
|
-
children: numeral(details.points).format("0.00a").toUpperCase()
|
95
|
-
}), /*#__PURE__*/_jsxs(Text, {
|
96
|
-
style: styles.points,
|
97
|
-
children: ['', details.currency.adUnitCurrencyName]
|
98
|
-
}), /*#__PURE__*/_jsxs(Text, {
|
99
|
-
style: styles.rewards,
|
100
|
-
children: [' ', details.rewards, " ", t('dashboard.rewards', {
|
101
|
-
count: details.rewards
|
102
|
-
})]
|
103
|
-
})]
|
104
|
-
})]
|
105
|
-
})]
|
106
|
-
}), /*#__PURE__*/_jsx(TouchableOpacity, {
|
107
|
-
onPress: () => onCampaignPress && onCampaignPress(details.campaignId),
|
108
|
-
style: [styles.playButton, {
|
109
|
-
backgroundColor: premiumColor || '#1C90DF'
|
110
|
-
}],
|
111
|
-
children: /*#__PURE__*/_jsx(Text, {
|
112
|
-
style: styles.playButtonText,
|
113
|
-
children: t('dashboard.play_button')
|
114
|
-
})
|
115
|
-
})]
|
116
|
-
})]
|
117
|
-
});
|
118
|
-
};
|
119
|
-
const styles = StyleSheet.create({
|
120
|
-
outerContainer: {},
|
121
|
-
bannerContainer: {
|
122
|
-
width: width,
|
123
|
-
height: 190
|
124
|
-
},
|
125
|
-
bannerImage: {
|
126
|
-
flex: 1,
|
127
|
-
borderRadius: 8
|
128
|
-
},
|
129
|
-
starContainer: {
|
130
|
-
position: 'absolute',
|
131
|
-
top: 10,
|
132
|
-
left: 10,
|
133
|
-
backgroundColor: 'rgba(0,0,0,0)'
|
134
|
-
},
|
135
|
-
starIcon: {
|
136
|
-
width: 30,
|
137
|
-
height: 30
|
138
|
-
},
|
139
|
-
index: {
|
140
|
-
position: 'absolute',
|
141
|
-
top: 0,
|
142
|
-
left: 0,
|
143
|
-
right: 0,
|
144
|
-
bottom: 0,
|
145
|
-
textAlign: 'center',
|
146
|
-
textAlignVertical: 'center',
|
147
|
-
color: 'white',
|
148
|
-
fontSize: 14,
|
149
|
-
fontWeight: 'bold'
|
150
|
-
},
|
151
|
-
titleContainer: {
|
152
|
-
flex: 1,
|
153
|
-
width: '91.5%',
|
154
|
-
flexDirection: 'row',
|
155
|
-
justifyContent: 'space-between',
|
156
|
-
alignItems: 'center',
|
157
|
-
padding: 8,
|
158
|
-
backgroundColor: 'rgba(0,0,0,0.5)',
|
159
|
-
position: 'absolute',
|
160
|
-
bottom: 0,
|
161
|
-
left: 0,
|
162
|
-
right: 0
|
163
|
-
},
|
164
|
-
titleText: {
|
165
|
-
color: 'white',
|
166
|
-
fontSize: 14,
|
167
|
-
fontWeight: 'bold',
|
168
|
-
marginBottom: 4
|
169
|
-
},
|
170
|
-
gameIcon: {
|
171
|
-
width: 35,
|
172
|
-
height: 35,
|
173
|
-
borderRadius: 8
|
174
|
-
},
|
175
|
-
coinIcon: {
|
176
|
-
width: 16,
|
177
|
-
height: 16
|
178
|
-
},
|
179
|
-
points: {
|
180
|
-
fontSize: 12,
|
181
|
-
marginLeft: 4,
|
182
|
-
fontWeight: 'bold',
|
183
|
-
color: 'white'
|
184
|
-
},
|
185
|
-
rewardDetails: {
|
186
|
-
flexDirection: 'row',
|
187
|
-
alignItems: 'center'
|
188
|
-
},
|
189
|
-
rewards: {
|
190
|
-
fontSize: 10,
|
191
|
-
fontStyle: 'italic',
|
192
|
-
color: 'lightgray'
|
193
|
-
},
|
194
|
-
playButton: {
|
195
|
-
paddingHorizontal: 12,
|
196
|
-
paddingVertical: 2,
|
197
|
-
height: 31,
|
198
|
-
borderRadius: 8,
|
199
|
-
alignItems: 'center',
|
200
|
-
justifyContent: 'center'
|
201
|
-
},
|
202
|
-
playButtonText: {
|
203
|
-
fontSize: 16,
|
204
|
-
fontWeight: 'bold',
|
205
|
-
color: 'white'
|
206
|
-
}
|
207
|
-
});
|
208
|
-
export default PremiumOption4;
|
209
|
-
//# sourceMappingURL=premium_option_4.js.map
|
@@ -1 +0,0 @@
|
|
1
|
-
{"version":3,"names":["React","View","Text","Image","StyleSheet","Dimensions","TouchableOpacity","AutoScrollPagerWithIndicators","numeral","useTranslation","jsx","_jsx","jsxs","_jsxs","width","get","PremiumOption4","data","onCampaignPress","premiumColor","totalPages","length","content","page","children","OfferBanner","details","index","t","style","styles","outerContainer","bannerContainer","bannerImage","source","uri","fileUrl","resizeMode","starContainer","require","starIcon","tintColor","numberOfLines","ellipsizeMode","titleContainer","flexDirection","flex","gameIcon","thumbnail","marginLeft","titleText","title","rewardDetails","currency","adUnitCurrencyIcon","coinIcon","points","format","toUpperCase","adUnitCurrencyName","rewards","count","onPress","campaignId","playButton","backgroundColor","playButtonText","create","height","borderRadius","position","top","left","right","bottom","textAlign","textAlignVertical","color","fontSize","fontWeight","justifyContent","alignItems","padding","marginBottom","fontStyle","paddingHorizontal","paddingVertical"],"sourceRoot":"../../../../../../src","sources":["acmo/modules/dashboard/components/premium_option_4.tsx"],"mappings":"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","ignoreList":[]}
|
package/lib/module/i18n.js
DELETED
@@ -1,107 +0,0 @@
|
|
1
|
-
"use strict";
|
2
|
-
|
3
|
-
import i18n from 'i18next';
|
4
|
-
import { initReactI18next } from 'react-i18next';
|
5
|
-
import AsyncStorage from '@react-native-async-storage/async-storage';
|
6
|
-
const resources = {
|
7
|
-
en: {
|
8
|
-
translation: {
|
9
|
-
"dashboard": {
|
10
|
-
"suggested_offers": "Suggested Offers",
|
11
|
-
"more_offers": "More Offers",
|
12
|
-
"my_games": "My Games",
|
13
|
-
"play_button": "Play Now",
|
14
|
-
"top_ranking": "Top {{number}}",
|
15
|
-
"rewards_one": "Reward",
|
16
|
-
"rewards_other": "Rewards"
|
17
|
-
}
|
18
|
-
}
|
19
|
-
},
|
20
|
-
es: {
|
21
|
-
translation: {
|
22
|
-
"dashboard": {
|
23
|
-
"suggested_offers": "Ofertas sugeridas",
|
24
|
-
"more_offers": "Más ofertas",
|
25
|
-
"my_games": "Mis juegos",
|
26
|
-
"play_button": "Jugar Ahora",
|
27
|
-
"top_ranking": "Los mejores {{number}}",
|
28
|
-
"rewards_one": "Recompensa",
|
29
|
-
"rewards_other": "Recompensas"
|
30
|
-
}
|
31
|
-
}
|
32
|
-
},
|
33
|
-
id: {
|
34
|
-
translation: {
|
35
|
-
"dashboard": {
|
36
|
-
"suggested_offers": "Penawaran yang Disarankan",
|
37
|
-
"more_offers": "Penawaran Lainnya",
|
38
|
-
"my_games": "Permainan Saya",
|
39
|
-
"play_button": "Mainkan Sekarang",
|
40
|
-
"top_ranking": "Top {{number}}",
|
41
|
-
"rewards_one": "Hadiah",
|
42
|
-
"rewards_other": "Hadiah"
|
43
|
-
}
|
44
|
-
}
|
45
|
-
},
|
46
|
-
in: {
|
47
|
-
translation: {
|
48
|
-
"dashboard": {
|
49
|
-
"suggested_offers": "Penawaran yang Disarankan",
|
50
|
-
"more_offers": "Penawaran Lainnya",
|
51
|
-
"my_games": "Permainan Saya",
|
52
|
-
"play_button": "Mainkan Sekarang",
|
53
|
-
"top_ranking": "Top {{number}}",
|
54
|
-
"rewards_one": "Hadiah",
|
55
|
-
"rewards_other": "Hadiah"
|
56
|
-
}
|
57
|
-
}
|
58
|
-
},
|
59
|
-
ja: {
|
60
|
-
translation: {
|
61
|
-
"dashboard": {
|
62
|
-
"suggested_offers": "おすすめのオファー",
|
63
|
-
"more_offers": "その他のオファー",
|
64
|
-
"my_games": "マイゲーム",
|
65
|
-
"play_button": "プレイ する",
|
66
|
-
"top_ranking": "トップ {{number}}",
|
67
|
-
"rewards_one": "報酬",
|
68
|
-
"rewards_other": "報酬"
|
69
|
-
}
|
70
|
-
}
|
71
|
-
},
|
72
|
-
ko: {
|
73
|
-
translation: {
|
74
|
-
"dashboard": {
|
75
|
-
"suggested_offers": "추천 제안",
|
76
|
-
"more_offers": "더 많은 제안",
|
77
|
-
"my_games": "내 게임",
|
78
|
-
"play_button": "플레이 하고",
|
79
|
-
"top_ranking": "상위 {{number}}",
|
80
|
-
"rewards_one": "보상",
|
81
|
-
"rewards_other": "보상들"
|
82
|
-
}
|
83
|
-
}
|
84
|
-
}
|
85
|
-
};
|
86
|
-
const initializeI18n = async () => {
|
87
|
-
try {
|
88
|
-
const language = await AsyncStorage.getItem('language');
|
89
|
-
const storedLanguage = JSON.parse(language);
|
90
|
-
console.log('storedLanguage', storedLanguage);
|
91
|
-
const initialLanguage = storedLanguage;
|
92
|
-
await i18n.use(initReactI18next).init({
|
93
|
-
resources,
|
94
|
-
fallbackLng: 'en',
|
95
|
-
lng: initialLanguage,
|
96
|
-
debug: __DEV__,
|
97
|
-
interpolation: {
|
98
|
-
escapeValue: false
|
99
|
-
}
|
100
|
-
});
|
101
|
-
} catch (error) {
|
102
|
-
console.error('Error initializing i18n:', error);
|
103
|
-
}
|
104
|
-
};
|
105
|
-
initializeI18n();
|
106
|
-
export default i18n;
|
107
|
-
//# sourceMappingURL=i18n.js.map
|
package/lib/module/i18n.js.map
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
{"version":3,"names":["i18n","initReactI18next","AsyncStorage","resources","en","translation","es","id","in","ja","ko","initializeI18n","language","getItem","storedLanguage","JSON","parse","console","log","initialLanguage","use","init","fallbackLng","lng","debug","__DEV__","interpolation","escapeValue","error"],"sourceRoot":"../../src","sources":["i18n.ts"],"mappings":";;AAAA,OAAOA,IAAI,MAAM,SAAS;AAC1B,SAASC,gBAAgB,QAAQ,eAAe;AAChD,OAAOC,YAAY,MAAM,2CAA2C;AAGpE,MAAMC,SAAS,GAAG;EAChBC,EAAE,EAAE;IACFC,WAAW,EAAE;MACX,WAAW,EAAE;QACX,kBAAkB,EAAE,kBAAkB;QACtC,aAAa,EAAE,aAAa;QAC5B,UAAU,EAAE,UAAU;QACtB,aAAa,EAAE,UAAU;QACzB,aAAa,EAAE,gBAAgB;QAC/B,aAAa,EAAE,QAAQ;QACvB,eAAe,EAAE;MACnB;IAGF;EACF,CAAC;EACDC,EAAE,EAAE;IACFD,WAAW,EAAE;MACX,WAAW,EAAE;QACX,kBAAkB,EAAE,mBAAmB;QACvC,aAAa,EAAE,aAAa;QAC5B,UAAU,EAAE,YAAY;QACxB,aAAa,EAAE,aAAa;QAC5B,aAAa,EAAE,wBAAwB;QACvC,aAAa,EAAE,YAAY;QAC3B,eAAe,EAAE;MACnB;IAEF;EACF,CAAC;EACDE,EAAE,EAAE;IACFF,WAAW,EAAE;MACX,WAAW,EAAE;QACX,kBAAkB,EAAE,2BAA2B;QAC/C,aAAa,EAAE,mBAAmB;QAClC,UAAU,EAAE,gBAAgB;QAC5B,aAAa,EAAE,kBAAkB;QACjC,aAAa,EAAE,gBAAgB;QAC/B,aAAa,EAAE,QAAQ;QACvB,eAAe,EAAE;MACnB;IACF;EACF,CAAC;EACDG,EAAE,EAAE;IACFH,WAAW,EAAE;MACX,WAAW,EAAE;QACX,kBAAkB,EAAE,2BAA2B;QAC/C,aAAa,EAAE,mBAAmB;QAClC,UAAU,EAAE,gBAAgB;QAC5B,aAAa,EAAE,kBAAkB;QACjC,aAAa,EAAE,gBAAgB;QAC/B,aAAa,EAAE,QAAQ;QACvB,eAAe,EAAE;MACnB;IACF;EACF,CAAC;EACDI,EAAE,EAAE;IACFJ,WAAW,EAAE;MACX,WAAW,EAAE;QACX,kBAAkB,EAAE,WAAW;QAC/B,aAAa,EAAE,UAAU;QACzB,UAAU,EAAE,OAAO;QACnB,aAAa,EAAE,QAAQ;QACvB,aAAa,EAAE,gBAAgB;QAC/B,aAAa,EAAE,IAAI;QACnB,eAAe,EAAE;MACnB;IACF;EACF,CAAC;EACDK,EAAE,EAAE;IACFL,WAAW,EAAE;MACX,WAAW,EAAE;QACX,kBAAkB,EAAE,OAAO;QAC3B,aAAa,EAAE,SAAS;QACxB,UAAU,EAAE,MAAM;QAClB,aAAa,EAAE,QAAQ;QACvB,aAAa,EAAE,eAAe;QAC9B,aAAa,EAAE,IAAI;QACnB,eAAe,EAAE;MACnB;IACF;EACF;AACF,CAAC;AAED,MAAMM,cAAc,GAAG,MAAAA,CAAA,KAAY;EACjC,IAAI;IACF,MAAMC,QAAY,GAAG,MAAMV,YAAY,CAACW,OAAO,CAAC,UAAU,CAAC;IAC3D,MAAMC,cAAsB,GAAGC,IAAI,CAACC,KAAK,CAACJ,QAAQ,CAAC;IACnDK,OAAO,CAACC,GAAG,CAAC,gBAAgB,EAAEJ,cAAc,CAAC;IAE7C,MAAMK,eAAe,GAAGL,cAAc;IACtC,MAAMd,IAAI,CACPoB,GAAG,CAACnB,gBAAgB,CAAC,CACrBoB,IAAI,CAAC;MACJlB,SAAS;MACTmB,WAAW,EAAE,IAAI;MACjBC,GAAG,EAAEJ,eAAe;MACpBK,KAAK,EAAEC,OAAO;MACdC,aAAa,EAAE;QACbC,WAAW,EAAE;MACf;IACF,CAAC,CAAC;EACN,CAAC,CAAC,OAAOC,KAAK,EAAE;IACdX,OAAO,CAACW,KAAK,CAAC,0BAA0B,EAAEA,KAAK,CAAC;EAClD;AACF,CAAC;AAEDjB,cAAc,CAAC,CAAC;AAEhB,eAAeX,IAAI","ignoreList":[]}
|
@@ -1,11 +0,0 @@
|
|
1
|
-
import React from 'react';
|
2
|
-
import { type TextStyle } from 'react-native';
|
3
|
-
interface MarqueeTextProps {
|
4
|
-
text: string;
|
5
|
-
speed?: number;
|
6
|
-
repeat?: number;
|
7
|
-
style?: TextStyle;
|
8
|
-
}
|
9
|
-
declare const MarqueeText: React.FC<MarqueeTextProps>;
|
10
|
-
export default MarqueeText;
|
11
|
-
//# sourceMappingURL=marquee.d.ts.map
|
@@ -1 +0,0 @@
|
|
1
|
-
{"version":3,"file":"marquee.d.ts","sourceRoot":"","sources":["../../../../../../src/acmo/core/marquee.tsx"],"names":[],"mappings":"AAAA,OAAO,KAA4B,MAAM,OAAO,CAAC;AACjD,OAAO,EAA0C,KAAK,SAAS,EAAE,MAAM,cAAc,CAAC;AAEtF,UAAU,gBAAgB;IACxB,IAAI,EAAE,MAAM,CAAC;IACb,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,KAAK,CAAC,EAAE,SAAS,CAAC;CACnB;AAED,QAAA,MAAM,WAAW,EAAE,KAAK,CAAC,EAAE,CAAC,gBAAgB,CAsC3C,CAAC;AAaF,eAAe,WAAW,CAAC"}
|
@@ -1,10 +0,0 @@
|
|
1
|
-
import React from 'react';
|
2
|
-
interface AutoScrollPagerWithIndicatorsProps {
|
3
|
-
totalPages: number;
|
4
|
-
delayInMillis?: number;
|
5
|
-
premiumColor?: string;
|
6
|
-
content: (index: number) => React.ReactNode;
|
7
|
-
}
|
8
|
-
declare const AutoScrollPagerWithIndicators: React.FC<AutoScrollPagerWithIndicatorsProps>;
|
9
|
-
export default AutoScrollPagerWithIndicators;
|
10
|
-
//# sourceMappingURL=auto_scroller.d.ts.map
|
package/lib/typescript/commonjs/src/acmo/modules/dashboard/components/auto_scroller.d.ts.map
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
{"version":3,"file":"auto_scroller.d.ts","sourceRoot":"","sources":["../../../../../../../../src/acmo/modules/dashboard/components/auto_scroller.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAsC,MAAM,OAAO,CAAC;AAK3D,UAAU,kCAAkC;IAC1C,UAAU,EAAE,MAAM,CAAC;IACnB,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,OAAO,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,KAAK,CAAC,SAAS,CAAC;CAC7C;AAED,QAAA,MAAM,6BAA6B,EAAE,KAAK,CAAC,EAAE,CAAC,kCAAkC,CAsD/E,CAAC;AAkBF,eAAe,6BAA6B,CAAC"}
|
package/lib/typescript/commonjs/src/acmo/modules/dashboard/components/my_games_button.d.ts.map
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
{"version":3,"file":"my_games_button.d.ts","sourceRoot":"","sources":["../../../../../../../../src/acmo/modules/dashboard/components/my_games_button.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAI1B,UAAU,kBAAkB;IAC1B,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,OAAO,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,IAAI,CAAC;CAClC;AAED,QAAA,MAAM,aAAa,EAAE,KAAK,CAAC,EAAE,CAAC,kBAAkB,CAU/C,CAAC;AAoBF,eAAe,aAAa,CAAC"}
|
package/lib/typescript/commonjs/src/acmo/modules/dashboard/components/offer_info_section.d.ts
DELETED
@@ -1,11 +0,0 @@
|
|
1
|
-
import React from 'react';
|
2
|
-
import { type ViewStyle } from "react-native";
|
3
|
-
interface OfferInfoSectionProps {
|
4
|
-
details: TransformedCampaign;
|
5
|
-
premiumColor?: string;
|
6
|
-
style?: ViewStyle;
|
7
|
-
onButtonPress: () => void;
|
8
|
-
}
|
9
|
-
declare const OfferInfoSection: React.FC<OfferInfoSectionProps>;
|
10
|
-
export default OfferInfoSection;
|
11
|
-
//# sourceMappingURL=offer_info_section.d.ts.map
|
package/lib/typescript/commonjs/src/acmo/modules/dashboard/components/offer_info_section.d.ts.map
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
{"version":3,"file":"offer_info_section.d.ts","sourceRoot":"","sources":["../../../../../../../../src/acmo/modules/dashboard/components/offer_info_section.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAA+D,KAAK,SAAS,EAAE,MAAM,cAAc,CAAC;AAO3G,UAAU,qBAAqB;IAC7B,OAAO,EAAE,mBAAmB,CAAC;IAC7B,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,KAAK,CAAC,EAAE,SAAS,CAAC;IAClB,aAAa,EAAE,MAAM,IAAI,CAAC;CAC3B;AAED,QAAA,MAAM,gBAAgB,EAAE,KAAK,CAAC,EAAE,CAAC,qBAAqB,CA0DrD,CAAC;AAiEF,eAAe,gBAAgB,CAAC"}
|
@@ -1,9 +0,0 @@
|
|
1
|
-
import React from 'react';
|
2
|
-
interface PremiumOption1Props {
|
3
|
-
data: TransformedCampaign[];
|
4
|
-
premiumColor?: string;
|
5
|
-
onCampaignPress?: (campaignId: number) => void;
|
6
|
-
}
|
7
|
-
declare const PremiumOption1: React.FC<PremiumOption1Props>;
|
8
|
-
export default PremiumOption1;
|
9
|
-
//# sourceMappingURL=premium_option_1.d.ts.map
|
package/lib/typescript/commonjs/src/acmo/modules/dashboard/components/premium_option_1.d.ts.map
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
{"version":3,"file":"premium_option_1.d.ts","sourceRoot":"","sources":["../../../../../../../../src/acmo/modules/dashboard/components/premium_option_1.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAa1B,UAAU,mBAAmB;IAC3B,IAAI,EAAE,mBAAmB,EAAE,CAAC;IAC5B,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,eAAe,CAAC,EAAE,CAAC,UAAU,EAAE,MAAM,KAAK,IAAI,CAAC;CAChD;AAED,QAAA,MAAM,cAAc,EAAE,KAAK,CAAC,EAAE,CAAC,mBAAmB,CAmEjD,CAAC;AA4EF,eAAe,cAAc,CAAC"}
|
@@ -1,9 +0,0 @@
|
|
1
|
-
import React from 'react';
|
2
|
-
interface PremiumOption2Props {
|
3
|
-
data: TransformedCampaign[];
|
4
|
-
premiumColor?: string;
|
5
|
-
onCampaignPress?: (campaignId: number) => void;
|
6
|
-
}
|
7
|
-
declare const PremiumOption2: React.FC<PremiumOption2Props>;
|
8
|
-
export default PremiumOption2;
|
9
|
-
//# sourceMappingURL=premium_option_2.d.ts.map
|
package/lib/typescript/commonjs/src/acmo/modules/dashboard/components/premium_option_2.d.ts.map
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
{"version":3,"file":"premium_option_2.d.ts","sourceRoot":"","sources":["../../../../../../../../src/acmo/modules/dashboard/components/premium_option_2.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAc1B,UAAU,mBAAmB;IAC3B,IAAI,EAAE,mBAAmB,EAAE,CAAC;IAC5B,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,eAAe,CAAC,EAAE,CAAC,UAAU,EAAE,MAAM,KAAK,IAAI,CAAC;CAChD;AAED,QAAA,MAAM,cAAc,EAAE,KAAK,CAAC,EAAE,CAAC,mBAAmB,CAsBjD,CAAC;AAyDF,eAAe,cAAc,CAAC"}
|
@@ -1,9 +0,0 @@
|
|
1
|
-
import React from 'react';
|
2
|
-
interface PremiumOption3Props {
|
3
|
-
data: TransformedCampaign[];
|
4
|
-
premiumColor?: string;
|
5
|
-
onCampaignPress?: (campaignId: number) => void;
|
6
|
-
}
|
7
|
-
declare const PremiumOption3: React.FC<PremiumOption3Props>;
|
8
|
-
export default PremiumOption3;
|
9
|
-
//# sourceMappingURL=premium_option_3.d.ts.map
|
package/lib/typescript/commonjs/src/acmo/modules/dashboard/components/premium_option_3.d.ts.map
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
{"version":3,"file":"premium_option_3.d.ts","sourceRoot":"","sources":["../../../../../../../../src/acmo/modules/dashboard/components/premium_option_3.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAK1B,UAAU,mBAAmB;IAC3B,IAAI,EAAE,mBAAmB,EAAE,CAAC;IAC5B,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,eAAe,CAAC,EAAE,CAAC,UAAU,EAAE,MAAM,KAAK,IAAI,CAAC;CAChD;AAED,QAAA,MAAM,cAAc,EAAE,KAAK,CAAC,EAAE,CAAC,mBAAmB,CA4BjD,CAAC;AAEF,eAAe,cAAc,CAAC"}
|
@@ -1,9 +0,0 @@
|
|
1
|
-
import React from 'react';
|
2
|
-
interface PremiumOption4Props {
|
3
|
-
data: TransformedCampaign[];
|
4
|
-
premiumColor?: string;
|
5
|
-
onCampaignPress?: (campaignId: number) => void;
|
6
|
-
}
|
7
|
-
declare const PremiumOption4: React.FC<PremiumOption4Props>;
|
8
|
-
export default PremiumOption4;
|
9
|
-
//# sourceMappingURL=premium_option_4.d.ts.map
|
package/lib/typescript/commonjs/src/acmo/modules/dashboard/components/premium_option_4.d.ts.map
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
{"version":3,"file":"premium_option_4.d.ts","sourceRoot":"","sources":["../../../../../../../../src/acmo/modules/dashboard/components/premium_option_4.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAe1B,UAAU,mBAAmB;IAC3B,IAAI,EAAE,mBAAmB,EAAE,CAAC;IAC5B,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,eAAe,CAAC,EAAE,CAAC,UAAU,EAAE,MAAM,KAAK,IAAI,CAAC;CAChD;AAED,QAAA,MAAM,cAAc,EAAE,KAAK,CAAC,EAAE,CAAC,mBAAmB,CAgBjD,CAAC;AAmJF,eAAe,cAAc,CAAC"}
|
@@ -1 +0,0 @@
|
|
1
|
-
{"version":3,"file":"i18n.d.ts","sourceRoot":"","sources":["../../../../src/i18n.ts"],"names":[],"mappings":"AAAA,OAAO,IAAI,MAAM,SAAS,CAAC;AAkH3B,eAAe,IAAI,CAAC"}
|
@@ -1,11 +0,0 @@
|
|
1
|
-
import React from 'react';
|
2
|
-
import { type TextStyle } from 'react-native';
|
3
|
-
interface MarqueeTextProps {
|
4
|
-
text: string;
|
5
|
-
speed?: number;
|
6
|
-
repeat?: number;
|
7
|
-
style?: TextStyle;
|
8
|
-
}
|
9
|
-
declare const MarqueeText: React.FC<MarqueeTextProps>;
|
10
|
-
export default MarqueeText;
|
11
|
-
//# sourceMappingURL=marquee.d.ts.map
|
@@ -1 +0,0 @@
|
|
1
|
-
{"version":3,"file":"marquee.d.ts","sourceRoot":"","sources":["../../../../../../src/acmo/core/marquee.tsx"],"names":[],"mappings":"AAAA,OAAO,KAA4B,MAAM,OAAO,CAAC;AACjD,OAAO,EAA0C,KAAK,SAAS,EAAE,MAAM,cAAc,CAAC;AAEtF,UAAU,gBAAgB;IACxB,IAAI,EAAE,MAAM,CAAC;IACb,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,KAAK,CAAC,EAAE,SAAS,CAAC;CACnB;AAED,QAAA,MAAM,WAAW,EAAE,KAAK,CAAC,EAAE,CAAC,gBAAgB,CAsC3C,CAAC;AAaF,eAAe,WAAW,CAAC"}
|
@@ -1,10 +0,0 @@
|
|
1
|
-
import React from 'react';
|
2
|
-
interface AutoScrollPagerWithIndicatorsProps {
|
3
|
-
totalPages: number;
|
4
|
-
delayInMillis?: number;
|
5
|
-
premiumColor?: string;
|
6
|
-
content: (index: number) => React.ReactNode;
|
7
|
-
}
|
8
|
-
declare const AutoScrollPagerWithIndicators: React.FC<AutoScrollPagerWithIndicatorsProps>;
|
9
|
-
export default AutoScrollPagerWithIndicators;
|
10
|
-
//# sourceMappingURL=auto_scroller.d.ts.map
|
@@ -1 +0,0 @@
|
|
1
|
-
{"version":3,"file":"auto_scroller.d.ts","sourceRoot":"","sources":["../../../../../../../../src/acmo/modules/dashboard/components/auto_scroller.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAsC,MAAM,OAAO,CAAC;AAK3D,UAAU,kCAAkC;IAC1C,UAAU,EAAE,MAAM,CAAC;IACnB,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,OAAO,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,KAAK,CAAC,SAAS,CAAC;CAC7C;AAED,QAAA,MAAM,6BAA6B,EAAE,KAAK,CAAC,EAAE,CAAC,kCAAkC,CAsD/E,CAAC;AAkBF,eAAe,6BAA6B,CAAC"}
|
package/lib/typescript/module/src/acmo/modules/dashboard/components/my_games_button.d.ts.map
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
{"version":3,"file":"my_games_button.d.ts","sourceRoot":"","sources":["../../../../../../../../src/acmo/modules/dashboard/components/my_games_button.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAI1B,UAAU,kBAAkB;IAC1B,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,OAAO,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,IAAI,CAAC;CAClC;AAED,QAAA,MAAM,aAAa,EAAE,KAAK,CAAC,EAAE,CAAC,kBAAkB,CAU/C,CAAC;AAoBF,eAAe,aAAa,CAAC"}
|
@@ -1,11 +0,0 @@
|
|
1
|
-
import React from 'react';
|
2
|
-
import { type ViewStyle } from "react-native";
|
3
|
-
interface OfferInfoSectionProps {
|
4
|
-
details: TransformedCampaign;
|
5
|
-
premiumColor?: string;
|
6
|
-
style?: ViewStyle;
|
7
|
-
onButtonPress: () => void;
|
8
|
-
}
|
9
|
-
declare const OfferInfoSection: React.FC<OfferInfoSectionProps>;
|
10
|
-
export default OfferInfoSection;
|
11
|
-
//# sourceMappingURL=offer_info_section.d.ts.map
|
package/lib/typescript/module/src/acmo/modules/dashboard/components/offer_info_section.d.ts.map
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
{"version":3,"file":"offer_info_section.d.ts","sourceRoot":"","sources":["../../../../../../../../src/acmo/modules/dashboard/components/offer_info_section.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAA+D,KAAK,SAAS,EAAE,MAAM,cAAc,CAAC;AAO3G,UAAU,qBAAqB;IAC7B,OAAO,EAAE,mBAAmB,CAAC;IAC7B,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,KAAK,CAAC,EAAE,SAAS,CAAC;IAClB,aAAa,EAAE,MAAM,IAAI,CAAC;CAC3B;AAED,QAAA,MAAM,gBAAgB,EAAE,KAAK,CAAC,EAAE,CAAC,qBAAqB,CA0DrD,CAAC;AAiEF,eAAe,gBAAgB,CAAC"}
|
@@ -1,9 +0,0 @@
|
|
1
|
-
import React from 'react';
|
2
|
-
interface PremiumOption1Props {
|
3
|
-
data: TransformedCampaign[];
|
4
|
-
premiumColor?: string;
|
5
|
-
onCampaignPress?: (campaignId: number) => void;
|
6
|
-
}
|
7
|
-
declare const PremiumOption1: React.FC<PremiumOption1Props>;
|
8
|
-
export default PremiumOption1;
|
9
|
-
//# sourceMappingURL=premium_option_1.d.ts.map
|
package/lib/typescript/module/src/acmo/modules/dashboard/components/premium_option_1.d.ts.map
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
{"version":3,"file":"premium_option_1.d.ts","sourceRoot":"","sources":["../../../../../../../../src/acmo/modules/dashboard/components/premium_option_1.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAa1B,UAAU,mBAAmB;IAC3B,IAAI,EAAE,mBAAmB,EAAE,CAAC;IAC5B,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,eAAe,CAAC,EAAE,CAAC,UAAU,EAAE,MAAM,KAAK,IAAI,CAAC;CAChD;AAED,QAAA,MAAM,cAAc,EAAE,KAAK,CAAC,EAAE,CAAC,mBAAmB,CAmEjD,CAAC;AA4EF,eAAe,cAAc,CAAC"}
|
@@ -1,9 +0,0 @@
|
|
1
|
-
import React from 'react';
|
2
|
-
interface PremiumOption2Props {
|
3
|
-
data: TransformedCampaign[];
|
4
|
-
premiumColor?: string;
|
5
|
-
onCampaignPress?: (campaignId: number) => void;
|
6
|
-
}
|
7
|
-
declare const PremiumOption2: React.FC<PremiumOption2Props>;
|
8
|
-
export default PremiumOption2;
|
9
|
-
//# sourceMappingURL=premium_option_2.d.ts.map
|
package/lib/typescript/module/src/acmo/modules/dashboard/components/premium_option_2.d.ts.map
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
{"version":3,"file":"premium_option_2.d.ts","sourceRoot":"","sources":["../../../../../../../../src/acmo/modules/dashboard/components/premium_option_2.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAc1B,UAAU,mBAAmB;IAC3B,IAAI,EAAE,mBAAmB,EAAE,CAAC;IAC5B,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,eAAe,CAAC,EAAE,CAAC,UAAU,EAAE,MAAM,KAAK,IAAI,CAAC;CAChD;AAED,QAAA,MAAM,cAAc,EAAE,KAAK,CAAC,EAAE,CAAC,mBAAmB,CAsBjD,CAAC;AAyDF,eAAe,cAAc,CAAC"}
|
@@ -1,9 +0,0 @@
|
|
1
|
-
import React from 'react';
|
2
|
-
interface PremiumOption3Props {
|
3
|
-
data: TransformedCampaign[];
|
4
|
-
premiumColor?: string;
|
5
|
-
onCampaignPress?: (campaignId: number) => void;
|
6
|
-
}
|
7
|
-
declare const PremiumOption3: React.FC<PremiumOption3Props>;
|
8
|
-
export default PremiumOption3;
|
9
|
-
//# sourceMappingURL=premium_option_3.d.ts.map
|
package/lib/typescript/module/src/acmo/modules/dashboard/components/premium_option_3.d.ts.map
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
{"version":3,"file":"premium_option_3.d.ts","sourceRoot":"","sources":["../../../../../../../../src/acmo/modules/dashboard/components/premium_option_3.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAK1B,UAAU,mBAAmB;IAC3B,IAAI,EAAE,mBAAmB,EAAE,CAAC;IAC5B,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,eAAe,CAAC,EAAE,CAAC,UAAU,EAAE,MAAM,KAAK,IAAI,CAAC;CAChD;AAED,QAAA,MAAM,cAAc,EAAE,KAAK,CAAC,EAAE,CAAC,mBAAmB,CA4BjD,CAAC;AAEF,eAAe,cAAc,CAAC"}
|
@@ -1,9 +0,0 @@
|
|
1
|
-
import React from 'react';
|
2
|
-
interface PremiumOption4Props {
|
3
|
-
data: TransformedCampaign[];
|
4
|
-
premiumColor?: string;
|
5
|
-
onCampaignPress?: (campaignId: number) => void;
|
6
|
-
}
|
7
|
-
declare const PremiumOption4: React.FC<PremiumOption4Props>;
|
8
|
-
export default PremiumOption4;
|
9
|
-
//# sourceMappingURL=premium_option_4.d.ts.map
|
package/lib/typescript/module/src/acmo/modules/dashboard/components/premium_option_4.d.ts.map
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
{"version":3,"file":"premium_option_4.d.ts","sourceRoot":"","sources":["../../../../../../../../src/acmo/modules/dashboard/components/premium_option_4.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAe1B,UAAU,mBAAmB;IAC3B,IAAI,EAAE,mBAAmB,EAAE,CAAC;IAC5B,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,eAAe,CAAC,EAAE,CAAC,UAAU,EAAE,MAAM,KAAK,IAAI,CAAC;CAChD;AAED,QAAA,MAAM,cAAc,EAAE,KAAK,CAAC,EAAE,CAAC,mBAAmB,CAgBjD,CAAC;AAmJF,eAAe,cAAc,CAAC"}
|
@@ -1 +0,0 @@
|
|
1
|
-
{"version":3,"file":"i18n.d.ts","sourceRoot":"","sources":["../../../../src/i18n.ts"],"names":[],"mappings":"AAAA,OAAO,IAAI,MAAM,SAAS,CAAC;AAkH3B,eAAe,IAAI,CAAC"}
|