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,113 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.default = void 0;
7
+ var _react = _interopRequireDefault(require("react"));
8
+ var _Themed = require("../../../Components/Themed");
9
+ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
10
+ const DateTimePicker = ({
11
+ value,
12
+ onChange,
13
+ label,
14
+ onFocusPosition
15
+ }) => {
16
+ const formatDateForInput = date => {
17
+ const year = date.getFullYear();
18
+ const month = String(date.getMonth() + 1).padStart(2, '0');
19
+ const day = String(date.getDate()).padStart(2, '0');
20
+ return `${year}-${month}-${day}`;
21
+ };
22
+ const formatTimeForInput = date => {
23
+ const hours = String(date.getHours()).padStart(2, '0');
24
+ const minutes = String(date.getMinutes()).padStart(2, '0');
25
+ return `${hours}:${minutes}`;
26
+ };
27
+ const handleDateChange = dateString => {
28
+ if (!dateString) return;
29
+ const parts = dateString.split('-').map(Number);
30
+ if (parts.length !== 3) return;
31
+ const [year, month, day] = parts;
32
+ if (year === undefined || month === undefined || day === undefined) return;
33
+ const newDate = new Date(value);
34
+ newDate.setFullYear(year);
35
+ newDate.setMonth(month - 1);
36
+ newDate.setDate(day);
37
+ onChange(newDate);
38
+ };
39
+ const handleTimeChange = timeString => {
40
+ if (!timeString) return;
41
+ const parts = timeString.split(':').map(Number);
42
+ if (parts.length !== 2) return;
43
+ const [hours, minutes] = parts;
44
+ if (hours === undefined || minutes === undefined) return;
45
+ const newDate = new Date(value);
46
+ newDate.setHours(hours);
47
+ newDate.setMinutes(minutes);
48
+ onChange(newDate);
49
+ };
50
+ return /*#__PURE__*/_react.default.createElement(_Themed.View, {
51
+ transparent: true
52
+ }, label && /*#__PURE__*/_react.default.createElement(_Themed.Text, {
53
+ theme: "h2",
54
+ style: {
55
+ marginBottom: 8
56
+ }
57
+ }, label), /*#__PURE__*/_react.default.createElement(_Themed.View, {
58
+ transparent: true,
59
+ style: {
60
+ flexDirection: 'row'
61
+ }
62
+ }, /*#__PURE__*/_react.default.createElement(_Themed.View, {
63
+ transparent: true,
64
+ style: {
65
+ flex: 1,
66
+ marginRight: 5
67
+ }
68
+ }, /*#__PURE__*/_react.default.createElement(_Themed.Text, {
69
+ theme: "description",
70
+ style: {
71
+ marginBottom: 4,
72
+ fontSize: 12
73
+ }
74
+ }, "Date"), /*#__PURE__*/_react.default.createElement(_Themed.TextInput, {
75
+ value: formatDateForInput(value),
76
+ onFocusPosition: onFocusPosition,
77
+ placeholder: "YYYY-MM-DD",
78
+ onChangeText: handleDateChange,
79
+ style: {
80
+ padding: 12,
81
+ borderRadius: 8
82
+ }
83
+ })), /*#__PURE__*/_react.default.createElement(_Themed.View, {
84
+ transparent: true,
85
+ style: {
86
+ flex: 1,
87
+ marginLeft: 5
88
+ }
89
+ }, /*#__PURE__*/_react.default.createElement(_Themed.Text, {
90
+ theme: "description",
91
+ style: {
92
+ marginBottom: 4,
93
+ fontSize: 12
94
+ }
95
+ }, "Time"), /*#__PURE__*/_react.default.createElement(_Themed.TextInput, {
96
+ value: formatTimeForInput(value),
97
+ onFocusPosition: onFocusPosition,
98
+ placeholder: "HH:MM",
99
+ onChangeText: handleTimeChange,
100
+ style: {
101
+ padding: 12,
102
+ borderRadius: 8
103
+ }
104
+ }))), /*#__PURE__*/_react.default.createElement(_Themed.Text, {
105
+ theme: "description",
106
+ style: {
107
+ marginTop: 4,
108
+ fontSize: 11
109
+ }
110
+ }, "Selected: ", value.toLocaleString()));
111
+ };
112
+ var _default = exports.default = DateTimePicker;
113
+ //# sourceMappingURL=DateTimePicker.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["_react","_interopRequireDefault","require","_Themed","e","__esModule","default","DateTimePicker","value","onChange","label","onFocusPosition","formatDateForInput","date","year","getFullYear","month","String","getMonth","padStart","day","getDate","formatTimeForInput","hours","getHours","minutes","getMinutes","handleDateChange","dateString","parts","split","map","Number","length","undefined","newDate","Date","setFullYear","setMonth","setDate","handleTimeChange","timeString","setHours","setMinutes","createElement","View","transparent","Text","theme","style","marginBottom","flexDirection","flex","marginRight","fontSize","TextInput","placeholder","onChangeText","padding","borderRadius","marginLeft","marginTop","toLocaleString","_default","exports"],"sourceRoot":"../../../../../src","sources":["NotificationManager/components/shared/DateTimePicker.tsx"],"mappings":"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","ignoreList":[]}
@@ -0,0 +1,191 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.default = void 0;
7
+ var _react = _interopRequireDefault(require("react"));
8
+ var _reactNative = require("react-native");
9
+ var _Themed = require("../../../Components/Themed");
10
+ var _useColors = require("../../../constants/useColors");
11
+ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
12
+ const GroupSelector = ({
13
+ visible,
14
+ onClose,
15
+ onSelectGroup,
16
+ groups,
17
+ loading = false,
18
+ selectedGroup,
19
+ showCustomOption = true,
20
+ customGroup
21
+ }) => {
22
+ const Colors = (0, _useColors.useColors)();
23
+ if (!visible) return null;
24
+
25
+ // Combine custom group with regular groups if enabled
26
+ const allGroups = showCustomOption && customGroup ? [customGroup, ...groups] : groups;
27
+ return /*#__PURE__*/_react.default.createElement(_Themed.View, {
28
+ type: "blur",
29
+ style: {
30
+ position: 'absolute',
31
+ top: 0,
32
+ left: 0,
33
+ right: 0,
34
+ bottom: 0,
35
+ padding: 20
36
+ }
37
+ }, /*#__PURE__*/_react.default.createElement(_Themed.View, {
38
+ float: true,
39
+ style: {
40
+ flex: 1
41
+ }
42
+ }, /*#__PURE__*/_react.default.createElement(_Themed.View, {
43
+ type: "header",
44
+ style: {
45
+ flexDirection: 'row',
46
+ alignItems: 'center',
47
+ padding: 10,
48
+ borderTopRightRadius: 8,
49
+ borderTopLeftRadius: 8
50
+ }
51
+ }, /*#__PURE__*/_react.default.createElement(_Themed.View, {
52
+ transparent: true,
53
+ style: {
54
+ flex: 1
55
+ }
56
+ }, /*#__PURE__*/_react.default.createElement(_Themed.Text, {
57
+ theme: "h1"
58
+ }, "Notification Groups"), /*#__PURE__*/_react.default.createElement(_Themed.Text, {
59
+ theme: "description",
60
+ style: {
61
+ marginTop: 3
62
+ }
63
+ }, "Select a group to send to"))), /*#__PURE__*/_react.default.createElement(_Themed.View, {
64
+ style: {
65
+ flex: 1
66
+ }
67
+ }, loading ? /*#__PURE__*/_react.default.createElement(_Themed.View, {
68
+ style: {
69
+ padding: 40,
70
+ alignItems: 'center'
71
+ }
72
+ }, /*#__PURE__*/_react.default.createElement(_reactNative.ActivityIndicator, {
73
+ size: "large",
74
+ color: Colors.text.action
75
+ })) : /*#__PURE__*/_react.default.createElement(_reactNative.FlatList, {
76
+ data: allGroups,
77
+ keyExtractor: item => item.notification_group_id,
78
+ renderItem: ({
79
+ item
80
+ }) => {
81
+ const isSelected = selectedGroup?.notification_group_id === item.notification_group_id;
82
+ const isCustom = item.notification_group_id === 'custom_group';
83
+ return /*#__PURE__*/_react.default.createElement(_reactNative.TouchableOpacity, {
84
+ onPress: () => {
85
+ onSelectGroup(item);
86
+ onClose();
87
+ },
88
+ style: {
89
+ padding: 15,
90
+ borderBottomWidth: 1,
91
+ borderColor: Colors.borders.light,
92
+ backgroundColor: isSelected ? Colors.views.header : 'transparent'
93
+ }
94
+ }, /*#__PURE__*/_react.default.createElement(_Themed.View, {
95
+ transparent: true
96
+ }, /*#__PURE__*/_react.default.createElement(_Themed.View, {
97
+ transparent: true,
98
+ style: {
99
+ flexDirection: 'row',
100
+ alignItems: 'center',
101
+ justifyContent: 'space-between'
102
+ }
103
+ }, /*#__PURE__*/_react.default.createElement(_Themed.View, {
104
+ transparent: true,
105
+ style: {
106
+ flexDirection: 'row',
107
+ alignItems: 'center',
108
+ flex: 1
109
+ }
110
+ }, /*#__PURE__*/_react.default.createElement(_Themed.Text, {
111
+ theme: "h1"
112
+ }, item.name), isCustom && /*#__PURE__*/_react.default.createElement(_Themed.View, {
113
+ transparent: true,
114
+ style: {
115
+ marginLeft: 8,
116
+ paddingHorizontal: 6,
117
+ paddingVertical: 2,
118
+ backgroundColor: Colors.buttons.background.action,
119
+ borderRadius: 4
120
+ }
121
+ }, /*#__PURE__*/_react.default.createElement(_Themed.Text, {
122
+ theme: "description",
123
+ color: Colors.text.white,
124
+ style: {
125
+ fontSize: 10
126
+ }
127
+ }, "CUSTOM")), isSelected && /*#__PURE__*/_react.default.createElement(_Themed.View, {
128
+ transparent: true,
129
+ style: {
130
+ marginLeft: 8,
131
+ paddingHorizontal: 6,
132
+ paddingVertical: 2,
133
+ backgroundColor: Colors.text.success,
134
+ borderRadius: 4
135
+ }
136
+ }, /*#__PURE__*/_react.default.createElement(_Themed.Text, {
137
+ theme: "description",
138
+ color: Colors.text.white,
139
+ style: {
140
+ fontSize: 10
141
+ }
142
+ }, "SELECTED"))), item.player_count !== undefined && /*#__PURE__*/_react.default.createElement(_Themed.View, {
143
+ transparent: true,
144
+ style: {
145
+ marginLeft: 8,
146
+ paddingHorizontal: 8,
147
+ paddingVertical: 4,
148
+ backgroundColor: Colors.views.header,
149
+ borderRadius: 4
150
+ }
151
+ }, /*#__PURE__*/_react.default.createElement(_Themed.Text, {
152
+ theme: "description",
153
+ style: {
154
+ fontSize: 12,
155
+ fontWeight: '600'
156
+ }
157
+ }, item.player_count.toLocaleString(), " users"))), item.description && /*#__PURE__*/_react.default.createElement(_Themed.Text, {
158
+ theme: "description",
159
+ style: {
160
+ marginTop: 4
161
+ }
162
+ }, item.description)));
163
+ },
164
+ ListEmptyComponent: /*#__PURE__*/_react.default.createElement(_Themed.View, {
165
+ style: {
166
+ padding: 40,
167
+ alignItems: 'center'
168
+ }
169
+ }, /*#__PURE__*/_react.default.createElement(_Themed.Text, {
170
+ theme: "description"
171
+ }, "No groups found"))
172
+ })), /*#__PURE__*/_react.default.createElement(_Themed.View, {
173
+ type: "footer",
174
+ style: {
175
+ flexDirection: 'row',
176
+ alignItems: 'center',
177
+ padding: 10,
178
+ borderBottomRightRadius: 8,
179
+ borderBottomLeftRadius: 8
180
+ }
181
+ }, /*#__PURE__*/_react.default.createElement(_Themed.Button, {
182
+ style: {
183
+ flex: 1
184
+ },
185
+ type: "close",
186
+ title: "CLOSE",
187
+ onPress: onClose
188
+ }))));
189
+ };
190
+ var _default = exports.default = GroupSelector;
191
+ //# sourceMappingURL=GroupSelector.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["_react","_interopRequireDefault","require","_reactNative","_Themed","_useColors","e","__esModule","default","GroupSelector","visible","onClose","onSelectGroup","groups","loading","selectedGroup","showCustomOption","customGroup","Colors","useColors","allGroups","createElement","View","type","style","position","top","left","right","bottom","padding","float","flex","flexDirection","alignItems","borderTopRightRadius","borderTopLeftRadius","transparent","Text","theme","marginTop","ActivityIndicator","size","color","text","action","FlatList","data","keyExtractor","item","notification_group_id","renderItem","isSelected","isCustom","TouchableOpacity","onPress","borderBottomWidth","borderColor","borders","light","backgroundColor","views","header","justifyContent","name","marginLeft","paddingHorizontal","paddingVertical","buttons","background","borderRadius","white","fontSize","success","player_count","undefined","fontWeight","toLocaleString","description","ListEmptyComponent","borderBottomRightRadius","borderBottomLeftRadius","Button","title","_default","exports"],"sourceRoot":"../../../../../src","sources":["NotificationManager/components/shared/GroupSelector.tsx"],"mappings":"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","ignoreList":[]}