be-components 7.6.3 → 7.6.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (309) hide show
  1. package/lib/commonjs/Components/Spring.js +9 -52
  2. package/lib/commonjs/Components/Spring.js.map +1 -1
  3. package/lib/commonjs/NotificationManager/NotificationManagerTabs.js +188 -0
  4. package/lib/commonjs/NotificationManager/NotificationManagerTabs.js.map +1 -0
  5. package/lib/commonjs/NotificationManager/api/index.js +237 -7
  6. package/lib/commonjs/NotificationManager/api/index.js.map +1 -1
  7. package/lib/commonjs/NotificationManager/components/GroupManagement.js +1038 -0
  8. package/lib/commonjs/NotificationManager/components/GroupManagement.js.map +1 -0
  9. package/lib/commonjs/NotificationManager/components/JobManagement.js +783 -0
  10. package/lib/commonjs/NotificationManager/components/JobManagement.js.map +1 -0
  11. package/lib/commonjs/NotificationManager/components/ScheduleNotification.js +407 -0
  12. package/lib/commonjs/NotificationManager/components/ScheduleNotification.js.map +1 -0
  13. package/lib/commonjs/NotificationManager/components/index.js +56 -0
  14. package/lib/commonjs/NotificationManager/components/index.js.map +1 -0
  15. package/lib/commonjs/NotificationManager/components/shared/DateTimePicker.js +113 -0
  16. package/lib/commonjs/NotificationManager/components/shared/DateTimePicker.js.map +1 -0
  17. package/lib/commonjs/NotificationManager/components/shared/GroupSelector.js +191 -0
  18. package/lib/commonjs/NotificationManager/components/shared/GroupSelector.js.map +1 -0
  19. package/lib/commonjs/NotificationManager/components/shared/NotificationBuilderForm.js +509 -0
  20. package/lib/commonjs/NotificationManager/components/shared/NotificationBuilderForm.js.map +1 -0
  21. package/lib/commonjs/NotificationManager/components/shared/StatusBadge.js +69 -0
  22. package/lib/commonjs/NotificationManager/components/shared/StatusBadge.js.map +1 -0
  23. package/lib/commonjs/NotificationManager/index.js +38 -23
  24. package/lib/commonjs/NotificationManager/index.js.map +1 -1
  25. package/lib/commonjs/Notifications/index.js +2 -2
  26. package/lib/commonjs/Notifications/index.js.map +1 -1
  27. package/lib/commonjs/ProfileManager/Components/BettorVouch.js +1 -1
  28. package/lib/commonjs/ProfileManager/Components/BettorVouch.js.map +1 -1
  29. package/lib/commonjs/SocialComponents/PostCard/index.js +1 -1
  30. package/lib/commonjs/SocialComponents/PostCard/index.js.map +1 -1
  31. package/lib/commonjs/index.js +7 -0
  32. package/lib/commonjs/index.js.map +1 -1
  33. package/lib/commonjs/types.d.js +2 -0
  34. package/lib/commonjs/types.d.js.map +1 -1
  35. package/lib/module/Components/Spring.js +10 -53
  36. package/lib/module/Components/Spring.js.map +1 -1
  37. package/lib/module/NotificationManager/NotificationManagerTabs.js +180 -0
  38. package/lib/module/NotificationManager/NotificationManagerTabs.js.map +1 -0
  39. package/lib/module/NotificationManager/api/index.js +237 -7
  40. package/lib/module/NotificationManager/api/index.js.map +1 -1
  41. package/lib/module/NotificationManager/components/GroupManagement.js +1030 -0
  42. package/lib/module/NotificationManager/components/GroupManagement.js.map +1 -0
  43. package/lib/module/NotificationManager/components/JobManagement.js +775 -0
  44. package/lib/module/NotificationManager/components/JobManagement.js.map +1 -0
  45. package/lib/module/NotificationManager/components/ScheduleNotification.js +399 -0
  46. package/lib/module/NotificationManager/components/ScheduleNotification.js.map +1 -0
  47. package/lib/module/NotificationManager/components/index.js +8 -0
  48. package/lib/module/NotificationManager/components/index.js.map +1 -0
  49. package/lib/module/NotificationManager/components/shared/DateTimePicker.js +106 -0
  50. package/lib/module/NotificationManager/components/shared/DateTimePicker.js.map +1 -0
  51. package/lib/module/NotificationManager/components/shared/GroupSelector.js +184 -0
  52. package/lib/module/NotificationManager/components/shared/GroupSelector.js.map +1 -0
  53. package/lib/module/NotificationManager/components/shared/NotificationBuilderForm.js +501 -0
  54. package/lib/module/NotificationManager/components/shared/NotificationBuilderForm.js.map +1 -0
  55. package/lib/module/NotificationManager/components/shared/StatusBadge.js +62 -0
  56. package/lib/module/NotificationManager/components/shared/StatusBadge.js.map +1 -0
  57. package/lib/module/NotificationManager/index.js +32 -23
  58. package/lib/module/NotificationManager/index.js.map +1 -1
  59. package/lib/module/Notifications/index.js +2 -2
  60. package/lib/module/Notifications/index.js.map +1 -1
  61. package/lib/module/ProfileManager/Components/BettorVouch.js +1 -1
  62. package/lib/module/ProfileManager/Components/BettorVouch.js.map +1 -1
  63. package/lib/module/SocialComponents/PostCard/index.js +1 -1
  64. package/lib/module/SocialComponents/PostCard/index.js.map +1 -1
  65. package/lib/module/index.js +2 -1
  66. package/lib/module/index.js.map +1 -1
  67. package/lib/module/types.d.js +2 -0
  68. package/lib/module/types.d.js.map +1 -1
  69. package/lib/typescript/lib/commonjs/Components/Spring.d.ts +1 -5
  70. package/lib/typescript/lib/commonjs/Components/Spring.d.ts.map +1 -1
  71. package/lib/typescript/lib/commonjs/NotificationManager/NotificationManagerTabs.d.ts +17 -0
  72. package/lib/typescript/lib/commonjs/NotificationManager/NotificationManagerTabs.d.ts.map +1 -0
  73. package/lib/typescript/lib/commonjs/NotificationManager/api/index.d.ts +75 -2
  74. package/lib/typescript/lib/commonjs/NotificationManager/api/index.d.ts.map +1 -1
  75. package/lib/typescript/lib/commonjs/NotificationManager/components/GroupManagement.d.ts +6 -0
  76. package/lib/typescript/lib/commonjs/NotificationManager/components/GroupManagement.d.ts.map +1 -0
  77. package/lib/typescript/lib/commonjs/NotificationManager/components/JobManagement.d.ts +7 -0
  78. package/lib/typescript/lib/commonjs/NotificationManager/components/JobManagement.d.ts.map +1 -0
  79. package/lib/typescript/lib/commonjs/NotificationManager/components/ScheduleNotification.d.ts +8 -0
  80. package/lib/typescript/lib/commonjs/NotificationManager/components/ScheduleNotification.d.ts.map +1 -0
  81. package/lib/typescript/lib/commonjs/NotificationManager/components/index.d.ts +9 -0
  82. package/lib/typescript/lib/commonjs/NotificationManager/components/index.d.ts.map +1 -0
  83. package/lib/typescript/lib/commonjs/NotificationManager/components/shared/DateTimePicker.d.ts +9 -0
  84. package/lib/typescript/lib/commonjs/NotificationManager/components/shared/DateTimePicker.d.ts.map +1 -0
  85. package/lib/typescript/lib/commonjs/NotificationManager/components/shared/GroupSelector.d.ts +13 -0
  86. package/lib/typescript/lib/commonjs/NotificationManager/components/shared/GroupSelector.d.ts.map +1 -0
  87. package/lib/typescript/lib/commonjs/NotificationManager/components/shared/NotificationBuilderForm.d.ts +10 -0
  88. package/lib/typescript/lib/commonjs/NotificationManager/components/shared/NotificationBuilderForm.d.ts.map +1 -0
  89. package/lib/typescript/lib/commonjs/NotificationManager/components/shared/StatusBadge.d.ts +6 -0
  90. package/lib/typescript/lib/commonjs/NotificationManager/components/shared/StatusBadge.d.ts.map +1 -0
  91. package/lib/typescript/lib/commonjs/NotificationManager/index.d.ts +76 -2
  92. package/lib/typescript/lib/commonjs/NotificationManager/index.d.ts.map +1 -1
  93. package/lib/typescript/lib/commonjs/index.d.ts +76 -2
  94. package/lib/typescript/lib/commonjs/index.d.ts.map +1 -1
  95. package/lib/typescript/lib/module/AdServer/index.d.ts +1 -3
  96. package/lib/typescript/lib/module/AdServer/index.d.ts.map +1 -1
  97. package/lib/typescript/lib/module/Authenticator/Components/AuthStrategyIdentifier.d.ts +1 -3
  98. package/lib/typescript/lib/module/Authenticator/Components/AuthStrategyIdentifier.d.ts.map +1 -1
  99. package/lib/typescript/lib/module/Authenticator/Components/LoginForm.d.ts +1 -3
  100. package/lib/typescript/lib/module/Authenticator/Components/LoginForm.d.ts.map +1 -1
  101. package/lib/typescript/lib/module/Authenticator/Components/StrategyForm.d.ts +1 -3
  102. package/lib/typescript/lib/module/Authenticator/Components/StrategyForm.d.ts.map +1 -1
  103. package/lib/typescript/lib/module/BetRouter/components/admin/LeagueContests.d.ts +1 -3
  104. package/lib/typescript/lib/module/BetRouter/components/admin/LeagueContests.d.ts.map +1 -1
  105. package/lib/typescript/lib/module/BetRouter/components/admin/LeagueParticipants.d.ts +1 -3
  106. package/lib/typescript/lib/module/BetRouter/components/admin/LeagueParticipants.d.ts.map +1 -1
  107. package/lib/typescript/lib/module/BetRouter/index.d.ts +1 -3
  108. package/lib/typescript/lib/module/BetRouter/index.d.ts.map +1 -1
  109. package/lib/typescript/lib/module/Bracket/components/BracketCompetitionCard.d.ts +1 -3
  110. package/lib/typescript/lib/module/Bracket/components/BracketCompetitionCard.d.ts.map +1 -1
  111. package/lib/typescript/lib/module/Bracket/components/BracketCompetitionSelector.d.ts +1 -3
  112. package/lib/typescript/lib/module/Bracket/components/BracketCompetitionSelector.d.ts.map +1 -1
  113. package/lib/typescript/lib/module/Bracket/components/EditPlayerBracket.d.ts +1 -3
  114. package/lib/typescript/lib/module/Bracket/components/EditPlayerBracket.d.ts.map +1 -1
  115. package/lib/typescript/lib/module/Bracket/components/Navigator.d.ts +1 -3
  116. package/lib/typescript/lib/module/Bracket/components/Navigator.d.ts.map +1 -1
  117. package/lib/typescript/lib/module/Bracket/components/PlayerBracketManager.d.ts +1 -3
  118. package/lib/typescript/lib/module/Bracket/components/PlayerBracketManager.d.ts.map +1 -1
  119. package/lib/typescript/lib/module/Bracket/components/RoomHome.d.ts +1 -3
  120. package/lib/typescript/lib/module/Bracket/components/RoomHome.d.ts.map +1 -1
  121. package/lib/typescript/lib/module/Campaign/components/AutoManager.d.ts +1 -3
  122. package/lib/typescript/lib/module/Campaign/components/AutoManager.d.ts.map +1 -1
  123. package/lib/typescript/lib/module/Campaign/components/ProgressTimer.d.ts +1 -3
  124. package/lib/typescript/lib/module/Campaign/components/ProgressTimer.d.ts.map +1 -1
  125. package/lib/typescript/lib/module/Checkout/components/ItemSummaryCard.d.ts +1 -3
  126. package/lib/typescript/lib/module/Checkout/components/ItemSummaryCard.d.ts.map +1 -1
  127. package/lib/typescript/lib/module/Competition/components/AthleteMarketCard.d.ts +1 -3
  128. package/lib/typescript/lib/module/Competition/components/AthleteMarketCard.d.ts.map +1 -1
  129. package/lib/typescript/lib/module/Competition/components/CompetitionCard.d.ts +1 -3
  130. package/lib/typescript/lib/module/Competition/components/CompetitionCard.d.ts.map +1 -1
  131. package/lib/typescript/lib/module/Competition/components/CompetitionInfoCard.d.ts +1 -3
  132. package/lib/typescript/lib/module/Competition/components/CompetitionInfoCard.d.ts.map +1 -1
  133. package/lib/typescript/lib/module/Competition/components/CompetitionLeaderboard.d.ts +1 -3
  134. package/lib/typescript/lib/module/Competition/components/CompetitionLeaderboard.d.ts.map +1 -1
  135. package/lib/typescript/lib/module/Competition/components/CompetitionPlay.d.ts +1 -3
  136. package/lib/typescript/lib/module/Competition/components/CompetitionPlay.d.ts.map +1 -1
  137. package/lib/typescript/lib/module/Competition/components/CompetitionTypeCard.d.ts +1 -3
  138. package/lib/typescript/lib/module/Competition/components/CompetitionTypeCard.d.ts.map +1 -1
  139. package/lib/typescript/lib/module/Competition/components/MatchMarketCard.d.ts +1 -3
  140. package/lib/typescript/lib/module/Competition/components/MatchMarketCard.d.ts.map +1 -1
  141. package/lib/typescript/lib/module/Competition/components/TeamEventCard.d.ts +1 -3
  142. package/lib/typescript/lib/module/Competition/components/TeamEventCard.d.ts.map +1 -1
  143. package/lib/typescript/lib/module/CompetitionManager/components/CompetitionInfoForm.d.ts +1 -3
  144. package/lib/typescript/lib/module/CompetitionManager/components/CompetitionInfoForm.d.ts.map +1 -1
  145. package/lib/typescript/lib/module/CompetitionManager/components/CompetitionMatchMarketCard.d.ts +1 -3
  146. package/lib/typescript/lib/module/CompetitionManager/components/CompetitionMatchMarketCard.d.ts.map +1 -1
  147. package/lib/typescript/lib/module/CompetitionManager/components/CompetitionSettingsForm.d.ts +1 -3
  148. package/lib/typescript/lib/module/CompetitionManager/components/CompetitionSettingsForm.d.ts.map +1 -1
  149. package/lib/typescript/lib/module/CompetitionManager/components/ContestSettingsForm.d.ts +1 -3
  150. package/lib/typescript/lib/module/CompetitionManager/components/ContestSettingsForm.d.ts.map +1 -1
  151. package/lib/typescript/lib/module/CompetitionSeasonManager/components/CreateSeasonForm.d.ts +1 -3
  152. package/lib/typescript/lib/module/CompetitionSeasonManager/components/CreateSeasonForm.d.ts.map +1 -1
  153. package/lib/typescript/lib/module/CompetitionSeasonManager/components/SeasonInfoForm.d.ts +1 -3
  154. package/lib/typescript/lib/module/CompetitionSeasonManager/components/SeasonInfoForm.d.ts.map +1 -1
  155. package/lib/typescript/lib/module/CompetitionSeasonManager/components/SeasonSettingsForm.d.ts +1 -3
  156. package/lib/typescript/lib/module/CompetitionSeasonManager/components/SeasonSettingsForm.d.ts.map +1 -1
  157. package/lib/typescript/lib/module/Components/Spring.d.ts +3 -1126
  158. package/lib/typescript/lib/module/Components/Spring.d.ts.map +1 -1
  159. package/lib/typescript/lib/module/EventComponents/TeamProfile/index.d.ts +1 -3
  160. package/lib/typescript/lib/module/EventComponents/TeamProfile/index.d.ts.map +1 -1
  161. package/lib/typescript/lib/module/FlashMarket/components/MarketTimer.d.ts +1 -3
  162. package/lib/typescript/lib/module/FlashMarket/components/MarketTimer.d.ts.map +1 -1
  163. package/lib/typescript/lib/module/FlashMarket/components/ProgressTimer.d.ts +1 -3
  164. package/lib/typescript/lib/module/FlashMarket/components/ProgressTimer.d.ts.map +1 -1
  165. package/lib/typescript/lib/module/FlashMarket/index.d.ts +1 -3
  166. package/lib/typescript/lib/module/FlashMarket/index.d.ts.map +1 -1
  167. package/lib/typescript/lib/module/Guide/index.d.ts +1 -3
  168. package/lib/typescript/lib/module/Guide/index.d.ts.map +1 -1
  169. package/lib/typescript/lib/module/Leaders/components/LeaderboardCard.d.ts +1 -3
  170. package/lib/typescript/lib/module/Leaders/components/LeaderboardCard.d.ts.map +1 -1
  171. package/lib/typescript/lib/module/MarketComponents/components/BetScopeIndicator.d.ts +1 -3
  172. package/lib/typescript/lib/module/MarketComponents/components/BetScopeIndicator.d.ts.map +1 -1
  173. package/lib/typescript/lib/module/MarketComponents/components/EventScoringCard.d.ts +1 -3
  174. package/lib/typescript/lib/module/MarketComponents/components/EventScoringCard.d.ts.map +1 -1
  175. package/lib/typescript/lib/module/MarketComponents/components/MatchMarket/index.d.ts +1 -3
  176. package/lib/typescript/lib/module/MarketComponents/components/MatchMarket/index.d.ts.map +1 -1
  177. package/lib/typescript/lib/module/MarketComponents/components/OrderGradeBar.d.ts +1 -3
  178. package/lib/typescript/lib/module/MarketComponents/components/OrderGradeBar.d.ts.map +1 -1
  179. package/lib/typescript/lib/module/MarketComponents/components/TeamEventMarket/index.d.ts +1 -3
  180. package/lib/typescript/lib/module/MarketComponents/components/TeamEventMarket/index.d.ts.map +1 -1
  181. package/lib/typescript/lib/module/MarketMaker/components/ManageFundForm.d.ts +1 -3
  182. package/lib/typescript/lib/module/MarketMaker/components/ManageFundForm.d.ts.map +1 -1
  183. package/lib/typescript/lib/module/MarketMaker/components/OrderForm.d.ts +1 -3
  184. package/lib/typescript/lib/module/MarketMaker/components/OrderForm.d.ts.map +1 -1
  185. package/lib/typescript/lib/module/MarketMaker/components/SetMarketForm.d.ts +1 -3
  186. package/lib/typescript/lib/module/MarketMaker/components/SetMarketForm.d.ts.map +1 -1
  187. package/lib/typescript/lib/module/NotificationManager/NotificationManagerTabs.d.ts +17 -0
  188. package/lib/typescript/lib/module/NotificationManager/NotificationManagerTabs.d.ts.map +1 -0
  189. package/lib/typescript/lib/module/NotificationManager/api/index.d.ts +75 -2
  190. package/lib/typescript/lib/module/NotificationManager/api/index.d.ts.map +1 -1
  191. package/lib/typescript/lib/module/NotificationManager/components/GroupManagement.d.ts +6 -0
  192. package/lib/typescript/lib/module/NotificationManager/components/GroupManagement.d.ts.map +1 -0
  193. package/lib/typescript/lib/module/NotificationManager/components/JobManagement.d.ts +7 -0
  194. package/lib/typescript/lib/module/NotificationManager/components/JobManagement.d.ts.map +1 -0
  195. package/lib/typescript/lib/module/NotificationManager/components/ScheduleNotification.d.ts +8 -0
  196. package/lib/typescript/lib/module/NotificationManager/components/ScheduleNotification.d.ts.map +1 -0
  197. package/lib/typescript/lib/module/NotificationManager/components/index.d.ts +8 -0
  198. package/lib/typescript/lib/module/NotificationManager/components/index.d.ts.map +1 -0
  199. package/lib/typescript/lib/module/NotificationManager/components/shared/DateTimePicker.d.ts +9 -0
  200. package/lib/typescript/lib/module/NotificationManager/components/shared/DateTimePicker.d.ts.map +1 -0
  201. package/lib/typescript/lib/module/NotificationManager/components/shared/GroupSelector.d.ts +13 -0
  202. package/lib/typescript/lib/module/NotificationManager/components/shared/GroupSelector.d.ts.map +1 -0
  203. package/lib/typescript/lib/module/NotificationManager/components/shared/NotificationBuilderForm.d.ts +10 -0
  204. package/lib/typescript/lib/module/NotificationManager/components/shared/NotificationBuilderForm.d.ts.map +1 -0
  205. package/lib/typescript/lib/module/NotificationManager/components/shared/StatusBadge.d.ts +6 -0
  206. package/lib/typescript/lib/module/NotificationManager/components/shared/StatusBadge.d.ts.map +1 -0
  207. package/lib/typescript/lib/module/NotificationManager/index.d.ts +1 -0
  208. package/lib/typescript/lib/module/NotificationManager/index.d.ts.map +1 -1
  209. package/lib/typescript/lib/module/Observer/Observer.d.ts +1 -3
  210. package/lib/typescript/lib/module/Observer/Observer.d.ts.map +1 -1
  211. package/lib/typescript/lib/module/PlayerRecommender/components/ContactsSelector.d.ts +1 -3
  212. package/lib/typescript/lib/module/PlayerRecommender/components/ContactsSelector.d.ts.map +1 -1
  213. package/lib/typescript/lib/module/Premium/components/ALaCartePremium.d.ts +1 -3
  214. package/lib/typescript/lib/module/Premium/components/ALaCartePremium.d.ts.map +1 -1
  215. package/lib/typescript/lib/module/RankingsCard/index.d.ts +1 -3
  216. package/lib/typescript/lib/module/RankingsCard/index.d.ts.map +1 -1
  217. package/lib/typescript/lib/module/SocialComponents/FormattedTextInput/components/TagSelector.d.ts +1 -3
  218. package/lib/typescript/lib/module/SocialComponents/FormattedTextInput/components/TagSelector.d.ts.map +1 -1
  219. package/lib/typescript/lib/module/SocialComponents/GifSelector/WebSelector.d.ts +1 -3
  220. package/lib/typescript/lib/module/SocialComponents/GifSelector/WebSelector.d.ts.map +1 -1
  221. package/lib/typescript/lib/module/SocialComponents/PlayerFollowButton.d.ts +1 -3
  222. package/lib/typescript/lib/module/SocialComponents/PlayerFollowButton.d.ts.map +1 -1
  223. package/lib/typescript/lib/module/SocialComponents/PlayerProfile/components/PostsList.d.ts +1 -3
  224. package/lib/typescript/lib/module/SocialComponents/PlayerProfile/components/PostsList.d.ts.map +1 -1
  225. package/lib/typescript/lib/module/SocialComponents/PostCard/components/DraftTextViewer.d.ts +1 -3
  226. package/lib/typescript/lib/module/SocialComponents/PostCard/components/DraftTextViewer.d.ts.map +1 -1
  227. package/lib/typescript/lib/module/SocialComponents/Poster/index.d.ts +1 -3
  228. package/lib/typescript/lib/module/SocialComponents/Poster/index.d.ts.map +1 -1
  229. package/lib/typescript/lib/module/Socket/index.d.ts +1 -3
  230. package/lib/typescript/lib/module/Socket/index.d.ts.map +1 -1
  231. package/lib/typescript/lib/module/Squares/components/BoardStats.d.ts +1 -3
  232. package/lib/typescript/lib/module/Squares/components/BoardStats.d.ts.map +1 -1
  233. package/lib/typescript/lib/module/Squares/components/Countdown.d.ts +1 -3
  234. package/lib/typescript/lib/module/Squares/components/Countdown.d.ts.map +1 -1
  235. package/lib/typescript/lib/module/Squares/components/EventCard.d.ts +1 -3
  236. package/lib/typescript/lib/module/Squares/components/EventCard.d.ts.map +1 -1
  237. package/lib/typescript/lib/module/Squares/components/MySquaresCard.d.ts +1 -3
  238. package/lib/typescript/lib/module/Squares/components/MySquaresCard.d.ts.map +1 -1
  239. package/lib/typescript/lib/module/Squares/components/MyStatsCard.d.ts +1 -3
  240. package/lib/typescript/lib/module/Squares/components/MyStatsCard.d.ts.map +1 -1
  241. package/lib/typescript/lib/module/Squares/components/OfferForm.d.ts +1 -3
  242. package/lib/typescript/lib/module/Squares/components/OfferForm.d.ts.map +1 -1
  243. package/lib/typescript/lib/module/Squares/components/PrizeCard.d.ts +1 -3
  244. package/lib/typescript/lib/module/Squares/components/PrizeCard.d.ts.map +1 -1
  245. package/lib/typescript/lib/module/Squares/components/ResultsCard.d.ts +1 -3
  246. package/lib/typescript/lib/module/Squares/components/ResultsCard.d.ts.map +1 -1
  247. package/lib/typescript/lib/module/Squares/components/SquareOfferCard.d.ts +1 -3
  248. package/lib/typescript/lib/module/Squares/components/SquareOfferCard.d.ts.map +1 -1
  249. package/lib/typescript/lib/module/Squares/components/SquareOwners.d.ts +1 -3
  250. package/lib/typescript/lib/module/Squares/components/SquareOwners.d.ts.map +1 -1
  251. package/lib/typescript/lib/module/Squares/components/SquaresBoard.d.ts +1 -3
  252. package/lib/typescript/lib/module/Squares/components/SquaresBoard.d.ts.map +1 -1
  253. package/lib/typescript/lib/module/Squares/components/SquaresDetails.d.ts +1 -3
  254. package/lib/typescript/lib/module/Squares/components/SquaresDetails.d.ts.map +1 -1
  255. package/lib/typescript/lib/module/Wallet/components/ItemOrderDetailCard.d.ts +1 -3
  256. package/lib/typescript/lib/module/Wallet/components/ItemOrderDetailCard.d.ts.map +1 -1
  257. package/lib/typescript/lib/module/Wallet/components/VerifyACHAccount.d.ts +1 -3
  258. package/lib/typescript/lib/module/Wallet/components/VerifyACHAccount.d.ts.map +1 -1
  259. package/lib/typescript/lib/module/Wallet/components/WalletSettings.d.ts +1 -3
  260. package/lib/typescript/lib/module/Wallet/components/WalletSettings.d.ts.map +1 -1
  261. package/lib/typescript/lib/module/index.d.ts +2 -1
  262. package/lib/typescript/lib/module/index.d.ts.map +1 -1
  263. package/lib/typescript/src/Components/AutoPageFlatList.d.ts +1 -1
  264. package/lib/typescript/src/Components/AutoPageFlatList.d.ts.map +1 -1
  265. package/lib/typescript/src/Components/Spring.d.ts +1 -1
  266. package/lib/typescript/src/Components/Spring.d.ts.map +1 -1
  267. package/lib/typescript/src/NotificationManager/NotificationManagerTabs.d.ts +20 -0
  268. package/lib/typescript/src/NotificationManager/NotificationManagerTabs.d.ts.map +1 -0
  269. package/lib/typescript/src/NotificationManager/api/index.d.ts +132 -3
  270. package/lib/typescript/src/NotificationManager/api/index.d.ts.map +1 -1
  271. package/lib/typescript/src/NotificationManager/components/GroupManagement.d.ts +8 -0
  272. package/lib/typescript/src/NotificationManager/components/GroupManagement.d.ts.map +1 -0
  273. package/lib/typescript/src/NotificationManager/components/JobManagement.d.ts +9 -0
  274. package/lib/typescript/src/NotificationManager/components/JobManagement.d.ts.map +1 -0
  275. package/lib/typescript/src/NotificationManager/components/ScheduleNotification.d.ts +10 -0
  276. package/lib/typescript/src/NotificationManager/components/ScheduleNotification.d.ts.map +1 -0
  277. package/lib/typescript/src/NotificationManager/components/index.d.ts +8 -0
  278. package/lib/typescript/src/NotificationManager/components/index.d.ts.map +1 -0
  279. package/lib/typescript/src/NotificationManager/components/shared/DateTimePicker.d.ts +12 -0
  280. package/lib/typescript/src/NotificationManager/components/shared/DateTimePicker.d.ts.map +1 -0
  281. package/lib/typescript/src/NotificationManager/components/shared/GroupSelector.d.ts +16 -0
  282. package/lib/typescript/src/NotificationManager/components/shared/GroupSelector.d.ts.map +1 -0
  283. package/lib/typescript/src/NotificationManager/components/shared/NotificationBuilderForm.d.ts +12 -0
  284. package/lib/typescript/src/NotificationManager/components/shared/NotificationBuilderForm.d.ts.map +1 -0
  285. package/lib/typescript/src/NotificationManager/components/shared/StatusBadge.d.ts +8 -0
  286. package/lib/typescript/src/NotificationManager/components/shared/StatusBadge.d.ts.map +1 -0
  287. package/lib/typescript/src/NotificationManager/index.d.ts +1 -0
  288. package/lib/typescript/src/NotificationManager/index.d.ts.map +1 -1
  289. package/lib/typescript/src/index.d.ts +2 -1
  290. package/lib/typescript/src/index.d.ts.map +1 -1
  291. package/package.json +36 -35
  292. package/src/Components/AutoPageFlatList.tsx +1 -1
  293. package/src/Components/Spring.tsx +13 -44
  294. package/src/NotificationManager/NotificationManagerTabs.tsx +178 -0
  295. package/src/NotificationManager/api/index.ts +240 -7
  296. package/src/NotificationManager/components/GroupManagement.tsx +854 -0
  297. package/src/NotificationManager/components/JobManagement.tsx +569 -0
  298. package/src/NotificationManager/components/ScheduleNotification.tsx +388 -0
  299. package/src/NotificationManager/components/index.ts +7 -0
  300. package/src/NotificationManager/components/shared/DateTimePicker.tsx +94 -0
  301. package/src/NotificationManager/components/shared/GroupSelector.tsx +130 -0
  302. package/src/NotificationManager/components/shared/NotificationBuilderForm.tsx +364 -0
  303. package/src/NotificationManager/components/shared/StatusBadge.tsx +72 -0
  304. package/src/NotificationManager/index.tsx +43 -24
  305. package/src/Notifications/index.tsx +2 -2
  306. package/src/ProfileManager/Components/BettorVouch.tsx +1 -1
  307. package/src/SocialComponents/PostCard/index.tsx +1 -1
  308. package/src/index.tsx +2 -0
  309. package/src/types.d.ts +38 -3
@@ -0,0 +1,6 @@
1
+ export default StatusBadge;
2
+ declare function StatusBadge({ status }: {
3
+ status: any;
4
+ }): React.DetailedReactHTMLElement<React.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>;
5
+ import React from 'react';
6
+ //# sourceMappingURL=StatusBadge.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"StatusBadge.d.ts","sourceRoot":"","sources":["../../../../../../module/NotificationManager/components/shared/StatusBadge.js"],"names":[],"mappings":";AAGA;;kGAwDC;kBA3DiB,OAAO"}
@@ -1,4 +1,5 @@
1
1
  export default NotificationManager;
2
+ export { default as NotificationManagerTabs } from "./NotificationManagerTabs";
2
3
  declare function NotificationManager({ player_ids, me, float, header_style, footer_style, notification_type, default_path_name, onFocusPosition, default_params, onComplete, onClose }: {
3
4
  player_ids: any;
4
5
  me: any;
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../module/NotificationManager/index.js"],"names":[],"mappings":";AAmBA;;;;;;;;;;;;kGA+mCC;gCA9nCoD,OAAO;oCAAP,OAAO;kBAJR,OAAO"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../module/NotificationManager/index.js"],"names":[],"mappings":";;AAmBA;;;;;;;;;;;;kGAunCC;gCAtoCoD,OAAO;oCAAP,OAAO;kBAJR,OAAO"}
@@ -4,8 +4,6 @@ declare function BEAnalyticsObserver({ source, session_id, distinct_id, onDevice
4
4
  session_id: any;
5
5
  distinct_id: any;
6
6
  onDeviceDetect: any;
7
- }): React.FunctionComponentElement<{
8
- children?: React.ReactNode | undefined;
9
- }>;
7
+ }): React.FunctionComponentElement<React.FragmentProps>;
10
8
  import React from 'react';
11
9
  //# sourceMappingURL=Observer.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"Observer.d.ts","sourceRoot":"","sources":["../../../../module/Observer/Observer.js"],"names":[],"mappings":";AAIA;;;;;;;GA6CC;kBAjD0C,OAAO"}
1
+ {"version":3,"file":"Observer.d.ts","sourceRoot":"","sources":["../../../../module/Observer/Observer.js"],"names":[],"mappings":";AAIA;;;;;wDA6CC;kBAjD0C,OAAO"}
@@ -4,8 +4,6 @@ declare function ContactsSelector({ player_id, referral_code, onSelectContact, o
4
4
  referral_code: any;
5
5
  onSelectContact: any;
6
6
  onInviteContacts: any;
7
- }): React.FunctionComponentElement<{
8
- children?: React.ReactNode | undefined;
9
- }> | React.DetailedReactHTMLElement<React.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>;
7
+ }): React.FunctionComponentElement<React.FragmentProps> | React.DetailedReactHTMLElement<React.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>;
10
8
  import React from 'react';
11
9
  //# sourceMappingURL=ContactsSelector.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"ContactsSelector.d.ts","sourceRoot":"","sources":["../../../../../module/PlayerRecommender/components/ContactsSelector.js"],"names":[],"mappings":";AAYA;;;;;;;mGAiXC;kBA7X0C,OAAO"}
1
+ {"version":3,"file":"ContactsSelector.d.ts","sourceRoot":"","sources":["../../../../../module/PlayerRecommender/components/ContactsSelector.js"],"names":[],"mappings":";AAYA;;;;;wJAiXC;kBA7X0C,OAAO"}
@@ -11,7 +11,5 @@ declare function ALaCartePremium({ style, player, premium_item, player_premium_i
11
11
  player_premium_item: any;
12
12
  onPurchaseItem: any;
13
13
  onViewPremium: any;
14
- }): React.FunctionComponentElement<{
15
- children?: React.ReactNode | undefined;
16
- }> | React.DetailedReactHTMLElement<React.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>;
14
+ }): React.FunctionComponentElement<React.FragmentProps> | React.DetailedReactHTMLElement<React.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>;
17
15
  //# sourceMappingURL=ALaCartePremium.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"ALaCartePremium.d.ts","sourceRoot":"","sources":["../../../../../module/Premium/components/ALaCartePremium.js"],"names":[],"mappings":"AAKO;;;GAmFN;;kBAxF+B,OAAO;AAyFvC;;;;;;;;;mGAsNC"}
1
+ {"version":3,"file":"ALaCartePremium.d.ts","sourceRoot":"","sources":["../../../../../module/Premium/components/ALaCartePremium.js"],"names":[],"mappings":"AAKO;;;GAmFN;;kBAxF+B,OAAO;AAyFvC;;;;;;;wJAsNC"}
@@ -2,8 +2,6 @@ export default RankingsCard;
2
2
  declare function RankingsCard({ league_id, team_id }: {
3
3
  league_id: any;
4
4
  team_id: any;
5
- }): React.FunctionComponentElement<{
6
- children?: React.ReactNode | undefined;
7
- }> | React.FunctionComponentElement<React.RefAttributes<any>>;
5
+ }): React.FunctionComponentElement<React.FragmentProps> | React.FunctionComponentElement<React.RefAttributes<any>>;
8
6
  import React from 'react';
9
7
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../module/RankingsCard/index.js"],"names":[],"mappings":";AAQA;;;;;8DAooBC;kBA5oB0C,OAAO"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../module/RankingsCard/index.js"],"names":[],"mappings":";AAQA;;;mHAooBC;kBA5oB0C,OAAO"}
@@ -7,8 +7,6 @@ declare function TagSelector({ width, type, visible, working_tag, onFocusPositio
7
7
  onFocusPosition: any;
8
8
  onSelectTag: any;
9
9
  onCancel: any;
10
- }): React.FunctionComponentElement<{
11
- children?: React.ReactNode | undefined;
12
- }> | React.DetailedReactHTMLElement<React.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>;
10
+ }): React.FunctionComponentElement<React.FragmentProps> | React.DetailedReactHTMLElement<React.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>;
13
11
  import React from 'react';
14
12
  //# sourceMappingURL=TagSelector.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"TagSelector.d.ts","sourceRoot":"","sources":["../../../../../../module/SocialComponents/FormattedTextInput/components/TagSelector.js"],"names":[],"mappings":";AAOA;;;;;;;;;;mGAkLC;kBAzL0C,OAAO"}
1
+ {"version":3,"file":"TagSelector.d.ts","sourceRoot":"","sources":["../../../../../../module/SocialComponents/FormattedTextInput/components/TagSelector.js"],"names":[],"mappings":";AAOA;;;;;;;;wJAkLC;kBAzL0C,OAAO"}
@@ -4,9 +4,7 @@ declare const _default: React.MemoExoticComponent<({ isVisible, gifSelect, close
4
4
  closeModal: any;
5
5
  view_mode: any;
6
6
  width: any;
7
- }) => React.FunctionComponentElement<{
8
- children?: React.ReactNode | undefined;
9
- }> | React.CElement<import("react-native").ModalProps, Modal>>;
7
+ }) => React.FunctionComponentElement<React.FragmentProps> | React.CElement<import("react-native").ModalProps, Modal>>;
10
8
  export default _default;
11
9
  import React from 'react';
12
10
  import { Modal } from 'react-native';
@@ -1 +1 @@
1
- {"version":3,"file":"WebSelector.d.ts","sourceRoot":"","sources":["../../../../../module/SocialComponents/GifSelector/WebSelector.js"],"names":[],"mappings":";;;;;;;;;;kBAAuD,OAAO;sBAclB,cAAc"}
1
+ {"version":3,"file":"WebSelector.d.ts","sourceRoot":"","sources":["../../../../../module/SocialComponents/GifSelector/WebSelector.js"],"names":[],"mappings":";;;;;;;;kBAAuD,OAAO;sBAclB,cAAc"}
@@ -6,8 +6,6 @@ declare function PlayerFollowButton({ player_id, loading, style, follower, follo
6
6
  follower: any;
7
7
  following: any;
8
8
  onFollowingUpdate: any;
9
- }): React.FunctionComponentElement<{
10
- children?: React.ReactNode | undefined;
11
- }> | React.DetailedReactHTMLElement<React.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>;
9
+ }): React.FunctionComponentElement<React.FragmentProps> | React.DetailedReactHTMLElement<React.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>;
12
10
  import React from 'react';
13
11
  //# sourceMappingURL=PlayerFollowButton.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"PlayerFollowButton.d.ts","sourceRoot":"","sources":["../../../../module/SocialComponents/PlayerFollowButton.js"],"names":[],"mappings":";AAIA;;;;;;;;;mGA2EC;kBA/EiB,OAAO"}
1
+ {"version":3,"file":"PlayerFollowButton.d.ts","sourceRoot":"","sources":["../../../../module/SocialComponents/PlayerFollowButton.js"],"names":[],"mappings":";AAIA;;;;;;;wJA2EC;kBA/EiB,OAAO"}
@@ -1,8 +1,6 @@
1
1
  declare const _default: React.MemoExoticComponent<({ viewing_player }: {
2
2
  viewing_player: any;
3
- }) => React.FunctionComponentElement<{
4
- children?: React.ReactNode | undefined;
5
- }>>;
3
+ }) => React.FunctionComponentElement<React.FragmentProps>>;
6
4
  export default _default;
7
5
  import React from 'react';
8
6
  //# sourceMappingURL=PostsList.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"PostsList.d.ts","sourceRoot":"","sources":["../../../../../../module/SocialComponents/PlayerProfile/components/PostsList.js"],"names":[],"mappings":";;;;;;kBAAkB,OAAO"}
1
+ {"version":3,"file":"PostsList.d.ts","sourceRoot":"","sources":["../../../../../../module/SocialComponents/PlayerProfile/components/PostsList.js"],"names":[],"mappings":";;;;kBAAkB,OAAO"}
@@ -3,9 +3,7 @@ declare function DraftTextViewer({ post_id, formatted_body, text_fallback }: {
3
3
  post_id: any;
4
4
  formatted_body: any;
5
5
  text_fallback: any;
6
- }): React.FunctionComponentElement<{
7
- children?: React.ReactNode | undefined;
8
- }> | React.CElement<import("react-native").ViewProps, View>;
6
+ }): React.FunctionComponentElement<React.FragmentProps> | React.CElement<import("react-native").ViewProps, View>;
9
7
  import React from 'react';
10
8
  import { View } from 'react-native';
11
9
  //# sourceMappingURL=DraftTextViewer.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"DraftTextViewer.d.ts","sourceRoot":"","sources":["../../../../../../module/SocialComponents/PostCard/components/DraftTextViewer.js"],"names":[],"mappings":";AAMA;;;;;;4DA0CC;kBAhD0C,OAAO;qBAC7B,cAAc"}
1
+ {"version":3,"file":"DraftTextViewer.d.ts","sourceRoot":"","sources":["../../../../../../module/SocialComponents/PostCard/components/DraftTextViewer.js"],"names":[],"mappings":";AAMA;;;;iHA0CC;kBAhD0C,OAAO;qBAC7B,cAAc"}
@@ -6,8 +6,6 @@ declare function Poster({ width, post_id, insets, onCreatePost, onSelectImage, o
6
6
  onCreatePost: any;
7
7
  onSelectImage: any;
8
8
  onClose: any;
9
- }): React.FunctionComponentElement<{
10
- children?: React.ReactNode | undefined;
11
- }> | React.DetailedReactHTMLElement<React.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>;
9
+ }): React.FunctionComponentElement<React.FragmentProps> | React.DetailedReactHTMLElement<React.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>;
12
10
  import React from 'react';
13
11
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../module/SocialComponents/Poster/index.js"],"names":[],"mappings":";AAWA;;;;;;;;;mGAmTC;kBA9T0C,OAAO"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../module/SocialComponents/Poster/index.js"],"names":[],"mappings":";AAWA;;;;;;;wJAmTC;kBA9T0C,OAAO"}
@@ -7,9 +7,7 @@ declare function SocketManager({ access_token, distinct_id, group_id, onSocketEv
7
7
  subscribed_events: any;
8
8
  onConnect: any;
9
9
  onDisconnect: any;
10
- }): React.FunctionComponentElement<{
11
- children?: React.ReactNode | undefined;
12
- }> | React.CElement<import("react-native").ActivityIndicatorProps, ActivityIndicator>;
10
+ }): React.FunctionComponentElement<React.FragmentProps> | React.CElement<import("react-native").ActivityIndicatorProps, ActivityIndicator>;
13
11
  import React from "react";
14
12
  import { ActivityIndicator } from 'react-native';
15
13
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../module/Socket/index.js"],"names":[],"mappings":";AAIA;;;;;;;;;;sFAsJC;kBAzJ0C,OAAO;kCACN,cAAc"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../module/Socket/index.js"],"names":[],"mappings":";AAIA;;;;;;;;2IAsJC;kBAzJ0C,OAAO;kCACN,cAAc"}
@@ -5,8 +5,6 @@ declare function BoardStats({ hidden, disable_collapse, squares_competition, squ
5
5
  squares_competition: any;
6
6
  squares: any;
7
7
  player_squares: any;
8
- }): React.FunctionComponentElement<{
9
- children?: React.ReactNode | undefined;
10
- }> | React.DetailedReactHTMLElement<React.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>;
8
+ }): React.FunctionComponentElement<React.FragmentProps> | React.DetailedReactHTMLElement<React.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>;
11
9
  import React from "react";
12
10
  //# sourceMappingURL=BoardStats.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"BoardStats.d.ts","sourceRoot":"","sources":["../../../../../module/Squares/components/BoardStats.js"],"names":[],"mappings":";AAIA;;;;;;;;mGAqIC;kBAxI+B,OAAO"}
1
+ {"version":3,"file":"BoardStats.d.ts","sourceRoot":"","sources":["../../../../../module/Squares/components/BoardStats.js"],"names":[],"mappings":";AAIA;;;;;;wJAqIC;kBAxI+B,OAAO"}
@@ -3,9 +3,7 @@ declare function Countdown({ end_datetime, label, onTimesUp }: {
3
3
  end_datetime: any;
4
4
  label: any;
5
5
  onTimesUp: any;
6
- }): React.FunctionComponentElement<{
7
- children?: React.ReactNode | undefined;
8
- }> | React.CElement<import("react-native").ViewProps, View>;
6
+ }): React.FunctionComponentElement<React.FragmentProps> | React.CElement<import("react-native").ViewProps, View>;
9
7
  import React from "react";
10
8
  import { View } from 'react-native';
11
9
  //# sourceMappingURL=Countdown.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"Countdown.d.ts","sourceRoot":"","sources":["../../../../../module/Squares/components/Countdown.js"],"names":[],"mappings":";AAKA;;;;;;4DAyDC;kBA9D0C,OAAO;qBAC7B,cAAc"}
1
+ {"version":3,"file":"Countdown.d.ts","sourceRoot":"","sources":["../../../../../module/Squares/components/Countdown.js"],"names":[],"mappings":";AAKA;;;;iHAyDC;kBA9D0C,OAAO;qBAC7B,cAAc"}
@@ -4,8 +4,6 @@ declare function EventCard({ hidden, disable_collapse, event, league }: {
4
4
  disable_collapse: any;
5
5
  event: any;
6
6
  league: any;
7
- }): React.FunctionComponentElement<{
8
- children?: React.ReactNode | undefined;
9
- }> | React.DetailedReactHTMLElement<React.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>;
7
+ }): React.FunctionComponentElement<React.FragmentProps> | React.DetailedReactHTMLElement<React.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>;
10
8
  import React from "react";
11
9
  //# sourceMappingURL=EventCard.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"EventCard.d.ts","sourceRoot":"","sources":["../../../../../module/Squares/components/EventCard.js"],"names":[],"mappings":";AAOA;;;;;;;mGA+IC;kBAlJ+B,OAAO"}
1
+ {"version":3,"file":"EventCard.d.ts","sourceRoot":"","sources":["../../../../../module/Squares/components/EventCard.js"],"names":[],"mappings":";AAOA;;;;;wJA+IC;kBAlJ+B,OAAO"}
@@ -10,8 +10,6 @@ declare function MySquaresCard({ hidden, disable_collapse, player_squares, squar
10
10
  my_square_values: any;
11
11
  comp_status: any;
12
12
  onSquareOffer: any;
13
- }): React.FunctionComponentElement<{
14
- children?: React.ReactNode | undefined;
15
- }> | React.DetailedReactHTMLElement<React.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>;
13
+ }): React.FunctionComponentElement<React.FragmentProps> | React.DetailedReactHTMLElement<React.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>;
16
14
  import React from 'react';
17
15
  //# sourceMappingURL=MySquaresCard.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"MySquaresCard.d.ts","sourceRoot":"","sources":["../../../../../module/Squares/components/MySquaresCard.js"],"names":[],"mappings":";AAOA;;;;;;;;;;;;;mGAgIC;kBArI+B,OAAO"}
1
+ {"version":3,"file":"MySquaresCard.d.ts","sourceRoot":"","sources":["../../../../../module/Squares/components/MySquaresCard.js"],"names":[],"mappings":";AAOA;;;;;;;;;;;wJAgIC;kBArI+B,OAAO"}
@@ -12,8 +12,6 @@ declare function MyStatsCard({ hidden, disable_collapse, player_id, squares_expe
12
12
  squares: any;
13
13
  square_results: any;
14
14
  onSquareBid: any;
15
- }): React.FunctionComponentElement<{
16
- children?: React.ReactNode | undefined;
17
- }> | React.DetailedReactHTMLElement<React.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>;
15
+ }): React.FunctionComponentElement<React.FragmentProps> | React.DetailedReactHTMLElement<React.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>;
18
16
  import React from "react";
19
17
  //# sourceMappingURL=MyStatsCard.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"MyStatsCard.d.ts","sourceRoot":"","sources":["../../../../../module/Squares/components/MyStatsCard.js"],"names":[],"mappings":";AAMA;;;;;;;;;;;;;;;mGA0WC;kBA9W+B,OAAO"}
1
+ {"version":3,"file":"MyStatsCard.d.ts","sourceRoot":"","sources":["../../../../../module/Squares/components/MyStatsCard.js"],"names":[],"mappings":";AAMA;;;;;;;;;;;;;wJA0WC;kBA9W+B,OAAO"}
@@ -13,8 +13,6 @@ declare function OfferForm({ player_id, player_balance, market_type, squares, su
13
13
  onOfferAmountChange: any;
14
14
  onClearOffers: any;
15
15
  onSubmitOffer: any;
16
- }): React.FunctionComponentElement<{
17
- children?: React.ReactNode | undefined;
18
- }> | React.DetailedReactHTMLElement<React.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>;
16
+ }): React.FunctionComponentElement<React.FragmentProps> | React.DetailedReactHTMLElement<React.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>;
19
17
  import React from 'react';
20
18
  //# sourceMappingURL=OfferForm.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"OfferForm.d.ts","sourceRoot":"","sources":["../../../../../module/Squares/components/OfferForm.js"],"names":[],"mappings":";AAKA;;;;;;;;;;;;;;;;mGAmKC;kBAxKiB,OAAO"}
1
+ {"version":3,"file":"OfferForm.d.ts","sourceRoot":"","sources":["../../../../../module/Squares/components/OfferForm.js"],"names":[],"mappings":";AAKA;;;;;;;;;;;;;;wJAmKC;kBAxKiB,OAAO"}
@@ -6,8 +6,6 @@ declare function PrizeCard({ hidden, disable_collapse, event, square_prizes, pla
6
6
  square_prizes: any;
7
7
  players: any;
8
8
  squares: any;
9
- }): React.FunctionComponentElement<{
10
- children?: React.ReactNode | undefined;
11
- }> | React.DetailedReactHTMLElement<React.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>;
9
+ }): React.FunctionComponentElement<React.FragmentProps> | React.DetailedReactHTMLElement<React.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>;
12
10
  import React from 'react';
13
11
  //# sourceMappingURL=PrizeCard.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"PrizeCard.d.ts","sourceRoot":"","sources":["../../../../../module/Squares/components/PrizeCard.js"],"names":[],"mappings":";AAOA;;;;;;;;;mGAqLC;kBA5L+B,OAAO"}
1
+ {"version":3,"file":"PrizeCard.d.ts","sourceRoot":"","sources":["../../../../../module/Squares/components/PrizeCard.js"],"names":[],"mappings":";AAOA;;;;;;;wJAqLC;kBA5L+B,OAAO"}
@@ -7,8 +7,6 @@ declare function ResultsCard({ hidden, disable_collapse, square_results, squares
7
7
  home_abbr: any;
8
8
  away_abbr: any;
9
9
  onPlayerSelect: any;
10
- }): React.FunctionComponentElement<{
11
- children?: React.ReactNode | undefined;
12
- }> | React.DetailedReactHTMLElement<React.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>;
10
+ }): React.FunctionComponentElement<React.FragmentProps> | React.DetailedReactHTMLElement<React.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>;
13
11
  import React from "react";
14
12
  //# sourceMappingURL=ResultsCard.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"ResultsCard.d.ts","sourceRoot":"","sources":["../../../../../module/Squares/components/ResultsCard.js"],"names":[],"mappings":";AAOA;;;;;;;;;;mGA8GC;kBAjH+B,OAAO"}
1
+ {"version":3,"file":"ResultsCard.d.ts","sourceRoot":"","sources":["../../../../../module/Squares/components/ResultsCard.js"],"names":[],"mappings":";AAOA;;;;;;;;wJA8GC;kBAjH+B,OAAO"}
@@ -8,8 +8,6 @@ declare function SquareOfferCard({ player_id, offer_owner, square, player_square
8
8
  away_abbr: any;
9
9
  home_abbr: any;
10
10
  onRequestAuthenticate: any;
11
- }): React.FunctionComponentElement<{
12
- children?: React.ReactNode | undefined;
13
- }> | React.DetailedReactHTMLElement<React.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>;
11
+ }): React.FunctionComponentElement<React.FragmentProps> | React.DetailedReactHTMLElement<React.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>;
14
12
  import React from 'react';
15
13
  //# sourceMappingURL=SquareOfferCard.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"SquareOfferCard.d.ts","sourceRoot":"","sources":["../../../../../module/Squares/components/SquareOfferCard.js"],"names":[],"mappings":";AAMA;;;;;;;;;;;mGAgNC;kBAtN+B,OAAO"}
1
+ {"version":3,"file":"SquareOfferCard.d.ts","sourceRoot":"","sources":["../../../../../module/Squares/components/SquareOfferCard.js"],"names":[],"mappings":";AAMA;;;;;;;;;wJAgNC;kBAtN+B,OAAO"}
@@ -5,8 +5,6 @@ declare function SquareOwnersCard({ hidden, disable_collapse, player_squares, pl
5
5
  player_squares: any;
6
6
  players: any;
7
7
  onPlayerSelect: any;
8
- }): React.FunctionComponentElement<{
9
- children?: React.ReactNode | undefined;
10
- }> | React.DetailedReactHTMLElement<React.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>;
8
+ }): React.FunctionComponentElement<React.FragmentProps> | React.DetailedReactHTMLElement<React.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>;
11
9
  import React from 'react';
12
10
  //# sourceMappingURL=SquareOwners.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"SquareOwners.d.ts","sourceRoot":"","sources":["../../../../../module/Squares/components/SquareOwners.js"],"names":[],"mappings":";AAMA;;;;;;;;mGA2HC;kBA9H+B,OAAO"}
1
+ {"version":3,"file":"SquareOwners.d.ts","sourceRoot":"","sources":["../../../../../module/Squares/components/SquareOwners.js"],"names":[],"mappings":";AAMA;;;;;;wJA2HC;kBA9H+B,OAAO"}
@@ -13,9 +13,7 @@ declare const _default: React.MemoExoticComponent<({ hidden, disable_collapse, p
13
13
  onRefreshCompetition: any;
14
14
  onSquareBid: any;
15
15
  onSquareOffer: any;
16
- }) => React.FunctionComponentElement<{
17
- children?: React.ReactNode | undefined;
18
- }> | React.DetailedReactHTMLElement<React.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>>;
16
+ }) => React.FunctionComponentElement<React.FragmentProps> | React.DetailedReactHTMLElement<React.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>>;
19
17
  export default _default;
20
18
  import React from "react";
21
19
  //# sourceMappingURL=SquaresBoard.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"SquaresBoard.d.ts","sourceRoot":"","sources":["../../../../../module/Squares/components/SquaresBoard.js"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;kBAK2C,OAAO"}
1
+ {"version":3,"file":"SquaresBoard.d.ts","sourceRoot":"","sources":["../../../../../module/Squares/components/SquaresBoard.js"],"names":[],"mappings":";;;;;;;;;;;;;;;;;kBAK2C,OAAO"}
@@ -5,8 +5,6 @@ declare function SquaresDetails({ hidden, disable_collapse, squares_competition,
5
5
  squares_competition: any;
6
6
  squares_type: any;
7
7
  squares_payout_type: any;
8
- }): React.FunctionComponentElement<{
9
- children?: React.ReactNode | undefined;
10
- }> | React.DetailedReactHTMLElement<React.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>;
8
+ }): React.FunctionComponentElement<React.FragmentProps> | React.DetailedReactHTMLElement<React.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>;
11
9
  import React from "react";
12
10
  //# sourceMappingURL=SquaresDetails.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"SquaresDetails.d.ts","sourceRoot":"","sources":["../../../../../module/Squares/components/SquaresDetails.js"],"names":[],"mappings":";AAKA;;;;;;;;mGA+FC;kBAlG+B,OAAO"}
1
+ {"version":3,"file":"SquaresDetails.d.ts","sourceRoot":"","sources":["../../../../../module/Squares/components/SquaresDetails.js"],"names":[],"mappings":";AAKA;;;;;;wJA+FC;kBAlG+B,OAAO"}
@@ -1,8 +1,6 @@
1
1
  export default ItemOrderDetails;
2
2
  declare function ItemOrderDetails({ item_order }: {
3
3
  item_order: any;
4
- }): React.FunctionComponentElement<{
5
- children?: React.ReactNode | undefined;
6
- }> | React.DetailedReactHTMLElement<React.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>;
4
+ }): React.FunctionComponentElement<React.FragmentProps> | React.DetailedReactHTMLElement<React.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>;
7
5
  import React from "react";
8
6
  //# sourceMappingURL=ItemOrderDetailCard.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"ItemOrderDetailCard.d.ts","sourceRoot":"","sources":["../../../../../module/Wallet/components/ItemOrderDetailCard.js"],"names":[],"mappings":";AAMA;;;;mGA4IC;kBAlJ0C,OAAO"}
1
+ {"version":3,"file":"ItemOrderDetailCard.d.ts","sourceRoot":"","sources":["../../../../../module/Wallet/components/ItemOrderDetailCard.js"],"names":[],"mappings":";AAMA;;wJA4IC;kBAlJ0C,OAAO"}
@@ -4,8 +4,6 @@ declare function VerifyACHAccount({ account, onClose, onUpdateAccount, onFocusPo
4
4
  onClose: any;
5
5
  onUpdateAccount: any;
6
6
  onFocusPosition: any;
7
- }): React.FunctionComponentElement<{
8
- children?: React.ReactNode | undefined;
9
- }> | React.DetailedReactHTMLElement<React.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>;
7
+ }): React.FunctionComponentElement<React.FragmentProps> | React.DetailedReactHTMLElement<React.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>;
10
8
  import React from 'react';
11
9
  //# sourceMappingURL=VerifyACHAccount.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"VerifyACHAccount.d.ts","sourceRoot":"","sources":["../../../../../module/Wallet/components/VerifyACHAccount.js"],"names":[],"mappings":";AAMA;;;;;;;mGAmKC;kBAzK+B,OAAO"}
1
+ {"version":3,"file":"VerifyACHAccount.d.ts","sourceRoot":"","sources":["../../../../../module/Wallet/components/VerifyACHAccount.js"],"names":[],"mappings":";AAMA;;;;;wJAmKC;kBAzK+B,OAAO"}
@@ -5,8 +5,6 @@ declare function WalletSettings({ player, my_referral, deposit_limit, withdraw_l
5
5
  deposit_limit: any;
6
6
  withdraw_limit: any;
7
7
  onClose: any;
8
- }): React.FunctionComponentElement<{
9
- children?: React.ReactNode | undefined;
10
- }> | React.DetailedReactHTMLElement<React.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>;
8
+ }): React.FunctionComponentElement<React.FragmentProps> | React.DetailedReactHTMLElement<React.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>;
11
9
  import React from "react";
12
10
  //# sourceMappingURL=WalletSettings.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"WalletSettings.d.ts","sourceRoot":"","sources":["../../../../../module/Wallet/components/WalletSettings.js"],"names":[],"mappings":";AAOA;;;;;;;;mGA4ZC;kBAna+B,OAAO"}
1
+ {"version":3,"file":"WalletSettings.d.ts","sourceRoot":"","sources":["../../../../../module/Wallet/components/WalletSettings.js"],"names":[],"mappings":";AAOA;;;;;;wJA4ZC;kBAna+B,OAAO"}
@@ -3,6 +3,7 @@ import Observer from './Observer';
3
3
  import MyAction from './MyAction';
4
4
  import CreateEmbed from './PartnerPortal/components/CreateEmbed';
5
5
  import ReferralCodeManager from './PartnerPortal/components/ReferralCodeManager';
6
+ import NotificationManagerTabs from './NotificationManager/NotificationManagerTabs';
6
7
  import BetRouter from './BetRouter/index';
7
8
  import CreateEngagement from './CreateEngagement';
8
9
  import DiscordConnectionManager from './Discord';
@@ -76,6 +77,6 @@ import SeasonCard from './Engage/components/SeasonCard';
76
77
  import NotificationManager from './NotificationManager';
77
78
  import { NotificationApi } from './NotificationManager/api';
78
79
  import { NotificationHelpers } from './NotificationManager/api';
79
- export { Authenticator, Observer, MyAction, CreateEmbed, ReferralCodeManager, BetRouter, CreateEngagement, DiscordConnectionManager, BEEventApi, FlashCampaignManager, BettorBotDashboard, EmbedManager, RankingsCard, ManageFlashMarket, BELinkApi, PartnerPortal, SquaresManager, GuideView, BetMatch, ManageFilter, Ticker, Premium, CreateGroupWizard, LeaderboardCard, GroupComponent, LocationTracker, BEClarity, FlashMarket, ContactsCard, PlayerRecommender, GolfScoreboard, ContactsSelector, Campaign, BEPostHog, ManageBracketCompetitionForm, NotificationModule, FlashHolder, useNotifications, ClaritySmartEvents, ProfileManager, CompetitionManager, Components, SocialComponents, APIOverrides, LinearGradient, usePlayerLocation, BettorSearch, Colors, MyWallet, Share, Checkout, MarketComponents, EventComponents, PollCampaign, PollCampaignApi, PollApi, MarketMaker, CompetitionModule, SeasonManager, CreateCompetitionForm, CreateSeasonForm, SeasonModule, AdminCompetitionList, AdServer, Leaderboard, AdProvider, BracketRoom, SquaresModule, SocketManager, PromotedOrder, EngageModule, CompetitionCard, SquaresCompetitionCard, BracketCompetitionCard, SeasonCard, NotificationManager, NotificationApi, NotificationHelpers };
80
+ export { Authenticator, Observer, MyAction, CreateEmbed, ReferralCodeManager, NotificationManagerTabs, BetRouter, CreateEngagement, DiscordConnectionManager, BEEventApi, FlashCampaignManager, BettorBotDashboard, EmbedManager, RankingsCard, ManageFlashMarket, BELinkApi, PartnerPortal, SquaresManager, GuideView, BetMatch, ManageFilter, Ticker, Premium, CreateGroupWizard, LeaderboardCard, GroupComponent, LocationTracker, BEClarity, FlashMarket, ContactsCard, PlayerRecommender, GolfScoreboard, ContactsSelector, Campaign, BEPostHog, ManageBracketCompetitionForm, NotificationModule, FlashHolder, useNotifications, ClaritySmartEvents, ProfileManager, CompetitionManager, Components, SocialComponents, APIOverrides, LinearGradient, usePlayerLocation, BettorSearch, Colors, MyWallet, Share, Checkout, MarketComponents, EventComponents, PollCampaign, PollCampaignApi, PollApi, MarketMaker, CompetitionModule, SeasonManager, CreateCompetitionForm, CreateSeasonForm, SeasonModule, AdminCompetitionList, AdServer, Leaderboard, AdProvider, BracketRoom, SquaresModule, SocketManager, PromotedOrder, EngageModule, CompetitionCard, SquaresCompetitionCard, BracketCompetitionCard, SeasonCard, NotificationManager, NotificationApi, NotificationHelpers };
80
81
  export { LivePriceChart, BaseLineChart, TradeChartAdapter } from "./Charts";
81
82
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../module/index.js"],"names":[],"mappings":"0BAE0B,iBAAiB;qBAOK,YAAY;qBA6DvC,YAAY;wBAHT,wCAAwC;gCAChC,gDAAgD;sBAM1D,mBAAmB;6BAbZ,oBAAoB;qCAEZ,WAAW;2BAtDA,YAAY;iCA4D3B,iDAAiD;+BAEnD,aAAa;yBALnB,yCAAyC;yBATzC,gBAAgB;8BAOX,4CAA4C;0BAvD1B,YAAY;0BAwDlC,iBAAiB;2BAHhB,kBAAkB;sBAJvB,SAAS;qBALV,YAAY;yBAER,oCAAoC;mBAb1C,UAAU;oBAYT,WAAW;8BAMD,sCAAsC;4BAhBxC,sCAAsC;2BAevC,SAAS;4BA3BR,mBAAmB;sBAoBzB,WAAW;wBAHT,eAAe;yBAHd,4CAA4C;8BADvC,qBAAqB;2BAGxB,kBAAkB;6BADhB,iDAAiD;qBANzD,YAAY;sBAUX,WAAW;yCAXQ,mDAAmD;+BAF7D,iBAAiB;wBAYxB,2BAA2B;iCAXlB,kCAAkC;+BAiBpC,uBAAuB;2BArD3B,kBAAkB;+BAmBd,sBAAsB;4BAlBzB,cAAc;kCACR,oBAAoB;6BACzB,gBAAgB;+BACd,sBAAsB;kCAMnB,kCAAkC;yBAH3C,gBAAgB;mBAFtB,oBAAoB;qBAGlB,UAAU;kBAoBb,SAAS;qBAnBN,YAAY;6BAiBJ,oBAAoB;4BACrB,mBAAmB;yBAhBtB,QAAQ;gCACQ,YAAY;wBAAZ,YAAY;wBAkB7B,eAAe;8BAjBT,eAAe;0BAUnB,4BAA4B;kCAHpB,uDAAuD;6BAK5D,wDAAwD;yBAD5D,qBAAqB;iCAHb,sDAAsD;qBAPlD,YAAY;wBA0BzB,WAAW;2BA1BE,YAAY;wBACzB,WAAW;0BAET,WAAW;0BADX,UAAU;0BAEV,iBAAiB;yBAIlB,UAAU;4BASP,qCAAqC;mCAC9B,4CAA4C;mCAC5C,4CAA4C;uBACxD,gCAAgC;gCAmCvB,uBAAuB;gCACF,2BAA2B;oCAA3B,2BAA2B"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../module/index.js"],"names":[],"mappings":"0BAE0B,iBAAiB;qBAOK,YAAY;qBA6DvC,YAAY;wBAHT,wCAAwC;gCAChC,gDAAgD;oCAO5C,+CAA+C;sBAD7D,mBAAmB;6BAbZ,oBAAoB;qCAEZ,WAAW;2BAtDA,YAAY;iCA4D3B,iDAAiD;+BAEnD,aAAa;yBALnB,yCAAyC;yBATzC,gBAAgB;8BAOX,4CAA4C;0BAvD1B,YAAY;0BAwDlC,iBAAiB;2BAHhB,kBAAkB;sBAJvB,SAAS;qBALV,YAAY;yBAER,oCAAoC;mBAb1C,UAAU;oBAYT,WAAW;8BAMD,sCAAsC;4BAhBxC,sCAAsC;2BAevC,SAAS;4BA3BR,mBAAmB;sBAoBzB,WAAW;wBAHT,eAAe;yBAHd,4CAA4C;8BADvC,qBAAqB;2BAGxB,kBAAkB;6BADhB,iDAAiD;qBANzD,YAAY;sBAUX,WAAW;yCAXQ,mDAAmD;+BAF7D,iBAAiB;wBAYxB,2BAA2B;iCAXlB,kCAAkC;+BAiBpC,uBAAuB;2BArD3B,kBAAkB;+BAmBd,sBAAsB;4BAlBzB,cAAc;kCACR,oBAAoB;6BACzB,gBAAgB;+BACd,sBAAsB;kCAMnB,kCAAkC;yBAH3C,gBAAgB;mBAFtB,oBAAoB;qBAGlB,UAAU;kBAoBb,SAAS;qBAnBN,YAAY;6BAiBJ,oBAAoB;4BACrB,mBAAmB;yBAhBtB,QAAQ;gCACQ,YAAY;wBAAZ,YAAY;wBAkB7B,eAAe;8BAjBT,eAAe;0BAUnB,4BAA4B;kCAHpB,uDAAuD;6BAK5D,wDAAwD;yBAD5D,qBAAqB;iCAHb,sDAAsD;qBAPlD,YAAY;wBA0BzB,WAAW;2BA1BE,YAAY;wBACzB,WAAW;0BAET,WAAW;0BADX,UAAU;0BAEV,iBAAiB;yBAIlB,UAAU;4BASP,qCAAqC;mCAC9B,4CAA4C;mCAC5C,4CAA4C;uBACxD,gCAAgC;gCAmCvB,uBAAuB;gCACF,2BAA2B;oCAA3B,2BAA2B"}
@@ -5,7 +5,7 @@ interface AutoPageFlatListProps<T> {
5
5
  renderItem: ({ item, index }: {
6
6
  item: T;
7
7
  index: number;
8
- }) => JSX.Element;
8
+ }) => any;
9
9
  horizontal?: boolean;
10
10
  time_on_page?: number;
11
11
  itemHeight?: number;
@@ -1 +1 @@
1
- {"version":3,"file":"AutoPageFlatList.d.ts","sourceRoot":"","sources":["../../../../src/Components/AutoPageFlatList.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAsC,MAAM,OAAO,CAAC;AAQ3D,UAAU,qBAAqB,CAAC,CAAC;IAC/B,IAAI,EAAE,CAAC,EAAE,CAAC;IACV,SAAS,EAAC,MAAM,CAAC;IACjB,UAAU,EAAE,CAAC,EAAE,IAAI,EAAE,KAAK,EAAE,EAAE;QAAE,IAAI,EAAE,CAAC,CAAC;QAAC,KAAK,EAAC,MAAM,CAAA;KAAE,KAAK,GAAG,CAAC,OAAO,CAAC;IACxE,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB;AAED,iBAAS,gBAAgB,CAAC,CAAC,EAAE,EAC3B,SAAS,EACT,IAAI,EACJ,UAAU,EACV,UAAkB,EAClB,YAAY,EACZ,UAAgB,EAChB,SAAe,GAChB,EAAE,qBAAqB,CAAC,CAAC,CAAC,qBA2D1B;AAaD,eAAe,gBAAgB,CAAC"}
1
+ {"version":3,"file":"AutoPageFlatList.d.ts","sourceRoot":"","sources":["../../../../src/Components/AutoPageFlatList.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAsC,MAAM,OAAO,CAAC;AAQ3D,UAAU,qBAAqB,CAAC,CAAC;IAC/B,IAAI,EAAE,CAAC,EAAE,CAAC;IACV,SAAS,EAAC,MAAM,CAAC;IACjB,UAAU,EAAE,CAAC,EAAE,IAAI,EAAE,KAAK,EAAE,EAAE;QAAE,IAAI,EAAE,CAAC,CAAC;QAAC,KAAK,EAAC,MAAM,CAAA;KAAE,KAAK,GAAG,CAAC;IAChE,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB;AAED,iBAAS,gBAAgB,CAAC,CAAC,EAAE,EAC3B,SAAS,EACT,IAAI,EACJ,UAAU,EACV,UAAkB,EAClB,YAAY,EACZ,UAAgB,EAChB,SAAe,GAChB,EAAE,qBAAqB,CAAC,CAAC,CAAC,qBA2D1B;AAaD,eAAe,gBAAgB,CAAC"}
@@ -7,6 +7,6 @@ type SpringViewProps = {
7
7
  to: number;
8
8
  children: any;
9
9
  };
10
- declare const SpringView: ({ style, children, from, to, slide, onResolve }: SpringViewProps) => React.JSX.Element;
10
+ declare const SpringView: ({ style, children }: SpringViewProps) => React.JSX.Element;
11
11
  export default SpringView;
12
12
  //# sourceMappingURL=Spring.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"Spring.d.ts","sourceRoot":"","sources":["../../../../src/Components/Spring.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAK1B,KAAK,eAAe,GAAG;IACnB,KAAK,CAAC,EAAE,GAAG,CAAC;IACZ,KAAK,EAAE,UAAU,GAAC,YAAY,CAAA;IAC9B,IAAI,EAAE,MAAM,CAAC;IACb,SAAS,CAAC,EAAC,MAAM,IAAI,CAAC;IACtB,EAAE,EAAC,MAAM,CAAC;IACV,QAAQ,EAAE,GAAG,CAAA;CAChB,CAAA;AACD,QAAA,MAAM,UAAU,GAAI,iDAAgD,eAAe,sBAgDlF,CAAA;AAED,eAAe,UAAU,CAAA"}
1
+ {"version":3,"file":"Spring.d.ts","sourceRoot":"","sources":["../../../../src/Components/Spring.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAI1B,KAAK,eAAe,GAAG;IACnB,KAAK,CAAC,EAAE,GAAG,CAAC;IACZ,KAAK,EAAE,UAAU,GAAC,YAAY,CAAA;IAC9B,IAAI,EAAE,MAAM,CAAC;IACb,SAAS,CAAC,EAAC,MAAM,IAAI,CAAC;IACtB,EAAE,EAAC,MAAM,CAAC;IACV,QAAQ,EAAE,GAAG,CAAA;CAChB,CAAA;AACD,QAAA,MAAM,UAAU,GAAI,qBAAoB,eAAe,sBAkBtD,CAAA;AAED,eAAe,UAAU,CAAA"}
@@ -0,0 +1,20 @@
1
+ import React from 'react';
2
+ import { type ViewStyle } from 'react-native';
3
+ import type { NotificationManagerTab, MyPlayerProps, FocusPositionProps, PlayerNotificationProps } from '../types';
4
+ interface NotificationManagerTabsProps {
5
+ player_ids?: string[];
6
+ me: MyPlayerProps;
7
+ header_style?: ViewStyle;
8
+ footer_style?: ViewStyle;
9
+ float?: boolean;
10
+ notification_type?: 'order_notifications' | 'competition_notifications' | 'social_notifications';
11
+ default_path_name?: string;
12
+ default_params?: Record<string, string>;
13
+ onFocusPosition?: (pos: FocusPositionProps) => void;
14
+ onComplete?: (notification: PlayerNotificationProps) => void;
15
+ onClose?: () => void;
16
+ defaultTab?: NotificationManagerTab;
17
+ }
18
+ declare const NotificationManagerTabs: ({ player_ids, me, header_style, footer_style, float, notification_type, default_path_name, default_params, onFocusPosition, onComplete, onClose, defaultTab }: NotificationManagerTabsProps) => React.JSX.Element;
19
+ export default NotificationManagerTabs;
20
+ //# sourceMappingURL=NotificationManagerTabs.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"NotificationManagerTabs.d.ts","sourceRoot":"","sources":["../../../../src/NotificationManager/NotificationManagerTabs.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAmB,MAAM,OAAO,CAAC;AACxC,OAAO,EAAoB,KAAK,SAAS,EAAE,MAAM,cAAc,CAAC;AAQhE,OAAO,KAAK,EAAE,sBAAsB,EAAE,aAAa,EAAE,kBAAkB,EAAwB,uBAAuB,EAAE,MAAM,UAAU,CAAC;AAEzI,UAAU,4BAA4B;IAClC,UAAU,CAAC,EAAE,MAAM,EAAE,CAAC;IACtB,EAAE,EAAE,aAAa,CAAC;IAClB,YAAY,CAAC,EAAE,SAAS,CAAC;IACzB,YAAY,CAAC,EAAE,SAAS,CAAC;IACzB,KAAK,CAAC,EAAE,OAAO,CAAC;IAChB,iBAAiB,CAAC,EAAE,qBAAqB,GAAG,2BAA2B,GAAG,sBAAsB,CAAC;IACjG,iBAAiB,CAAC,EAAE,MAAM,CAAC;IAC3B,cAAc,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;IACxC,eAAe,CAAC,EAAE,CAAC,GAAG,EAAE,kBAAkB,KAAK,IAAI,CAAC;IACpD,UAAU,CAAC,EAAE,CAAC,YAAY,EAAE,uBAAuB,KAAK,IAAI,CAAC;IAC7D,OAAO,CAAC,EAAE,MAAM,IAAI,CAAC;IACrB,UAAU,CAAC,EAAE,sBAAsB,CAAC;CACvC;AAED,QAAA,MAAM,uBAAuB,GAAI,+JAa9B,4BAA4B,sBAwI9B,CAAC;AAEF,eAAe,uBAAuB,CAAC"}