@scrippsproduct/networks-ui-library 1.1.0-alpha.1 → 1.1.0-alpha.10

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 (338) hide show
  1. package/dist/Carousel.module-CNJzZW2-.mjs +14 -0
  2. package/dist/{ChoicesItem-CGIr6Qga.mjs → ChoicesItem-CT9fXB0I.mjs} +22 -23
  3. package/dist/PageHero.module-BM0IV1P5.mjs +8 -0
  4. package/dist/ResultsTable.module-1zxhXaem.mjs +14 -0
  5. package/dist/{SocialShareButton-BXGVUD-z.mjs → SocialShareButton-BMhRS9Qr.mjs} +12 -7
  6. package/dist/assets/AdBlock.css +1 -1
  7. package/dist/assets/AirDateFormatter.css +1 -1
  8. package/dist/assets/AnchorTag.css +1 -1
  9. package/dist/assets/BasicGridModule.css +1 -1
  10. package/dist/assets/Button.css +1 -1
  11. package/dist/assets/Carousel.css +1 -1
  12. package/dist/assets/ChannelSearch.css +1 -1
  13. package/dist/assets/ChoicesItem.css +1 -1
  14. package/dist/assets/ContentHero.css +1 -1
  15. package/dist/assets/CtaBlock.css +1 -1
  16. package/dist/assets/CustomDataList.css +1 -1
  17. package/dist/assets/DateNavigation.css +1 -1
  18. package/dist/assets/DeviceAndPlatformLists.css +1 -1
  19. package/dist/assets/Figure2.css +1 -1
  20. package/dist/assets/FindUs.css +1 -1
  21. package/dist/assets/GradientButton.css +1 -1
  22. package/dist/assets/ImageCard.css +1 -1
  23. package/dist/assets/InlineNavigation.css +1 -1
  24. package/dist/assets/LogoListItem.css +1 -1
  25. package/dist/assets/ModalContainer.css +1 -1
  26. package/dist/assets/PageHero.css +1 -1
  27. package/dist/assets/ProgramAirdate.css +1 -1
  28. package/dist/assets/PromotionBlock.css +1 -1
  29. package/dist/assets/ResultsTable.css +1 -1
  30. package/dist/assets/ScheduleLayout.css +1 -0
  31. package/dist/assets/ScheduleList.css +1 -1
  32. package/dist/assets/ShowAboutLayout.css +1 -1
  33. package/dist/assets/ShowSlide.css +1 -1
  34. package/dist/assets/SocialLinks.css +1 -1
  35. package/dist/assets/TextSlide.css +1 -1
  36. package/dist/assets/TwoColumnSlide.css +1 -1
  37. package/dist/assets/UpcomingList.css +1 -1
  38. package/dist/components/AdBlock/AdBlock.d.ts +20 -1
  39. package/dist/components/AdBlock/AdBlock.js +118 -83
  40. package/dist/components/AdBlock/index.d.ts +2 -1
  41. package/dist/components/AdjustableTwoColumnGrid/AdjustableTwoColumnGrid.d.ts +7 -1
  42. package/dist/components/AdjustableTwoColumnGrid/AdjustableTwoColumnGrid.js +17 -12
  43. package/dist/components/AdjustableTwoColumnGrid/index.d.ts +2 -1
  44. package/dist/components/AirDateFormatter/AirDateFormatter.d.ts +5 -4
  45. package/dist/components/AirDateFormatter/AirDateFormatter.js +21 -22
  46. package/dist/components/AirDateFormatter/index.d.ts +2 -1
  47. package/dist/components/AnchorTag/AnchorTag.d.ts +10 -1
  48. package/dist/components/AnchorTag/AnchorTag.js +22 -23
  49. package/dist/components/AnchorTag/index.d.ts +2 -1
  50. package/dist/components/BCVideoPlayer/BCVideoPlayer.d.ts +19 -12
  51. package/dist/components/BCVideoPlayer/BCVideoPlayer.js +39 -37
  52. package/dist/components/BCVideoPlayer/index.d.ts +2 -1
  53. package/dist/components/BasicGridModule/BasicGridModule.d.ts +19 -17
  54. package/dist/components/BasicGridModule/BasicGridModule.js +57 -51
  55. package/dist/components/BasicGridModule/index.d.ts +2 -1
  56. package/dist/components/Button/Button.d.ts +18 -17
  57. package/dist/components/Button/Button.js +31 -32
  58. package/dist/components/Button/index.d.ts +2 -1
  59. package/dist/components/ButtonAnchor/ButtonAnchor.d.ts +5 -5
  60. package/dist/components/ButtonAnchor/ButtonAnchor.js +7 -5
  61. package/dist/components/ButtonAnchor/index.d.ts +2 -1
  62. package/dist/components/Carousel/Carousel.js +1 -1
  63. package/dist/components/Carousel/index.d.ts +2 -1
  64. package/dist/components/Carousel/navigations/Pagination.js +12 -10
  65. package/dist/components/CarouselSlide/CarouselSlide.js +25 -87
  66. package/dist/components/CarouselSlide/slide-layouts/ImageCard/ImageCard.d.ts +1 -1
  67. package/dist/components/CarouselSlide/slide-layouts/ImageCard/ImageCard.js +3 -4
  68. package/dist/components/CarouselSlide/slide-layouts/Show/ShowSlide.d.ts +18 -16
  69. package/dist/components/CarouselSlide/slide-layouts/Show/ShowSlide.js +49 -34
  70. package/dist/components/CarouselSlide/slide-layouts/Text/TextSlide.js +5 -5
  71. package/dist/components/CarouselSlide/slide-layouts/TwoColumn/TwoColumnSlide.d.ts +5 -4
  72. package/dist/components/CarouselSlide/slide-layouts/TwoColumn/TwoColumnSlide.js +10 -11
  73. package/dist/components/CarouselSlide/slide-layouts/Video/VideoSlide.d.ts +8 -1
  74. package/dist/components/CarouselSlide/slide-layouts/Video/VideoSlide.js +19 -15
  75. package/dist/components/CastInfoLayout/CastInfoLayout.d.ts +16 -1
  76. package/dist/components/CastInfoLayout/CastInfoLayout.js +31 -21
  77. package/dist/components/ChannelSearch/ChannelSearch.d.ts +18 -16
  78. package/dist/components/ChannelSearch/ChannelSearch.js +80 -63
  79. package/dist/components/ChannelSearch/index.d.ts +2 -1
  80. package/dist/components/ChoicesItem/ChoicesItem.d.ts +7 -4
  81. package/dist/components/ChoicesItem/ChoicesItem.js +3 -4
  82. package/dist/components/ChoicesItem/index.d.ts +2 -1
  83. package/dist/components/ChoicesItem/index.js +1 -1
  84. package/dist/components/ChoicesList/ChoicesList.d.ts +4 -3
  85. package/dist/components/ChoicesList/ChoicesList.js +3 -4
  86. package/dist/components/ChoicesList/index.d.ts +2 -1
  87. package/dist/components/Concat/Concat.d.ts +4 -3
  88. package/dist/components/Concat/Concat.js +5 -5
  89. package/dist/components/Concat/index.d.ts +2 -1
  90. package/dist/components/CreateChoiceList/CreateChoiceList.d.ts +7 -5
  91. package/dist/components/CreateChoiceList/CreateChoiceList.js +38 -9
  92. package/dist/components/CreateChoiceList/index.d.ts +2 -1
  93. package/dist/components/CtaBlock/CtaBlock.d.ts +13 -15
  94. package/dist/components/CtaBlock/CtaBlock.js +23 -22
  95. package/dist/components/CtaBlock/index.d.ts +2 -1
  96. package/dist/components/CustomDataList/CustomDataList.d.ts +12 -10
  97. package/dist/components/CustomDataList/CustomDataList.js +200 -174
  98. package/dist/components/CustomDataList/index.d.ts +2 -1
  99. package/dist/components/CustomSelect/CustomSelect.d.ts +16 -13
  100. package/dist/components/CustomSelect/CustomSelect.js +224 -154
  101. package/dist/components/CustomSelect/index.d.ts +2 -1
  102. package/dist/components/DateNavigation/DateNavigation.d.ts +1 -4
  103. package/dist/components/DateNavigation/DateNavigation.js +125 -82
  104. package/dist/components/DateNavigation/index.d.ts +2 -1
  105. package/dist/components/DatePicker/index.d.ts +2 -1
  106. package/dist/components/DeviceAndPlatformLists/DeviceAndPlatformLists.d.ts +14 -4
  107. package/dist/components/DeviceAndPlatformLists/DeviceAndPlatformLists.js +40 -33
  108. package/dist/components/DeviceAndPlatformLists/index.d.ts +2 -1
  109. package/dist/components/DrawerNavigation/DrawerNavigation.d.ts +21 -1
  110. package/dist/components/DrawerNavigation/DrawerNavigation.js +75 -56
  111. package/dist/components/DrawerNavigation/index.d.ts +2 -1
  112. package/dist/components/EqualSizeFlexRow/EqualSizeFlexRow.d.ts +6 -5
  113. package/dist/components/EqualSizeFlexRow/EqualSizeFlexRow.js +18 -14
  114. package/dist/components/EqualSizeFlexRow/index.d.ts +2 -1
  115. package/dist/components/EqualSizeGrid/EqualSizeGrid.d.ts +7 -6
  116. package/dist/components/EqualSizeGrid/EqualSizeGrid.js +17 -12
  117. package/dist/components/EqualSizeGrid/index.d.ts +2 -1
  118. package/dist/components/ErrorHandler/ErrorHandler.d.ts +5 -4
  119. package/dist/components/ErrorHandler/ErrorHandler.js +3 -4
  120. package/dist/components/ErrorHandler/index.d.ts +2 -1
  121. package/dist/components/FeaturedList/FeaturedList.d.ts +8 -6
  122. package/dist/components/FeaturedList/FeaturedList.js +44 -36
  123. package/dist/components/FeaturedList/index.d.ts +2 -1
  124. package/dist/components/Figure/Figure.d.ts +5 -4
  125. package/dist/components/Figure/Figure.js +8 -9
  126. package/dist/components/Figure/index.d.ts +2 -1
  127. package/dist/components/FindUs/FindUs.d.ts +24 -1
  128. package/dist/components/FindUs/FindUs.js +70 -63
  129. package/dist/components/FindUs/index.d.ts +2 -1
  130. package/dist/components/FooterNavigation/FooterNavigation.d.ts +9 -3
  131. package/dist/components/FooterNavigation/FooterNavigation.js +10 -11
  132. package/dist/components/FooterNavigation/index.d.ts +2 -1
  133. package/dist/components/GenericList/GenericList.d.ts +6 -5
  134. package/dist/components/GenericList/GenericList.js +13 -14
  135. package/dist/components/GenericList/index.d.ts +2 -1
  136. package/dist/components/GetAirdateWrapper/GetAirdateWrapper.d.ts +9 -8
  137. package/dist/components/GetAirdateWrapper/GetAirdateWrapper.js +46 -30
  138. package/dist/components/GetAirdateWrapper/index.d.ts +2 -1
  139. package/dist/components/GradientButton/GradientButton.d.ts +15 -14
  140. package/dist/components/GradientButton/GradientButton.js +37 -40
  141. package/dist/components/GradientButton/index.d.ts +2 -1
  142. package/dist/components/GridList/GridList.d.ts +6 -5
  143. package/dist/components/GridList/GridList.js +14 -10
  144. package/dist/components/GridList/index.d.ts +2 -1
  145. package/dist/components/ImageCard/ImageCard.d.ts +27 -1
  146. package/dist/components/ImageCard/ImageCard.js +59 -58
  147. package/dist/components/ImageCard/ImageCardCore.d.ts +6 -2
  148. package/dist/components/ImageCard/ImageCardCore.js +115 -89
  149. package/dist/components/ImageReplacementAnchor/ImageReplacementAnchor.d.ts +11 -14
  150. package/dist/components/ImageReplacementAnchor/ImageReplacementAnchor.js +25 -18
  151. package/dist/components/InfoPanel/InfoPanel.d.ts +10 -8
  152. package/dist/components/InfoPanel/InfoPanel.js +2 -2
  153. package/dist/components/InfoPanel/index.d.ts +2 -1
  154. package/dist/components/InlineNavigation/InlineNavigation.d.ts +7 -5
  155. package/dist/components/InlineNavigation/InlineNavigation.js +13 -10
  156. package/dist/components/Input/Input.d.ts +10 -9
  157. package/dist/components/Input/Input.js +47 -40
  158. package/dist/components/Input/index.d.ts +2 -1
  159. package/dist/components/InstructionsList/InstructionsList.d.ts +5 -4
  160. package/dist/components/InstructionsList/InstructionsList.js +20 -10
  161. package/dist/components/InstructionsList/index.d.ts +2 -1
  162. package/dist/components/Loading/Loading.d.ts +8 -7
  163. package/dist/components/Loading/Loading.js +25 -20
  164. package/dist/components/Loading/index.d.ts +2 -1
  165. package/dist/components/LoadingV2/LoadingV2.d.ts +7 -6
  166. package/dist/components/LoadingV2/LoadingV2.js +31 -21
  167. package/dist/components/LoadingV2/index.d.ts +2 -1
  168. package/dist/components/LogoListItem/LogoListItem.d.ts +7 -6
  169. package/dist/components/LogoListItem/LogoListItem.js +34 -17
  170. package/dist/components/LogoListItem/index.d.ts +2 -1
  171. package/dist/components/LogoNavigation/LogoNavigation.d.ts +13 -4
  172. package/dist/components/LogoNavigation/LogoNavigation.js +23 -18
  173. package/dist/components/LogoNavigation/index.d.ts +2 -1
  174. package/dist/components/ModalContainer/ModalContainer.d.ts +8 -8
  175. package/dist/components/ModalContainer/ModalContainer.js +84 -72
  176. package/dist/components/ModalContainer/index.d.ts +2 -1
  177. package/dist/components/MultiLayeredFigure/MultiLayeredFigure.d.ts +6 -5
  178. package/dist/components/MultiLayeredFigure/MultiLayeredFigure.js +13 -10
  179. package/dist/components/MultiLayeredFigure/index.d.ts +2 -1
  180. package/dist/components/NavList/NavList.d.ts +9 -7
  181. package/dist/components/NavList/NavList.js +56 -20
  182. package/dist/components/NavList/index.d.ts +2 -1
  183. package/dist/components/Overlay/Overlay.d.ts +5 -5
  184. package/dist/components/Overlay/Overlay.js +8 -5
  185. package/dist/components/PageHero/PageHero.d.ts +6 -5
  186. package/dist/components/PageHero/PageHero.js +29 -16
  187. package/dist/components/PageHero/index.d.ts +2 -1
  188. package/dist/components/PageHero/page-hero-layouts/ContentHero/ContentHero.d.ts +2 -13
  189. package/dist/components/PageHero/page-hero-layouts/ContentHero/ContentHero.js +17 -10
  190. package/dist/components/PageHero/page-hero-layouts/ContentHero/index.d.ts +2 -1
  191. package/dist/components/PageHero/page-hero-layouts/IONShow/IONShowHero.d.ts +7 -5
  192. package/dist/components/PageHero/page-hero-layouts/IONShow/IONShowHero.js +108 -42
  193. package/dist/components/PageHero/page-hero-layouts/IONShow/index.d.ts +2 -1
  194. package/dist/components/PageHero/page-hero-layouts/ImageOnly/ImageOnlyHero.d.ts +2 -12
  195. package/dist/components/PageHero/page-hero-layouts/ImageOnly/ImageOnlyHero.js +13 -7
  196. package/dist/components/PageHero/page-hero-layouts/ImageOnly/index.d.ts +2 -1
  197. package/dist/components/PageHero/page-hero-layouts/page-hero.d.js +1 -0
  198. package/dist/components/ProgramAirdate/ProgramAirdate.d.ts +14 -10
  199. package/dist/components/ProgramAirdate/ProgramAirdate.js +72 -67
  200. package/dist/components/ProgramAirdate/index.d.ts +2 -1
  201. package/dist/components/PromotionBlock/PromotionBlock.d.ts +11 -4
  202. package/dist/components/PromotionBlock/PromotionBlock.js +36 -26
  203. package/dist/components/PromotionBlock/index.d.ts +2 -1
  204. package/dist/components/PromotionsRowBlock/PromotionsRowBlock.d.ts +5 -4
  205. package/dist/components/PromotionsRowBlock/PromotionsRowBlock.js +8 -6
  206. package/dist/components/PromotionsRowBlock/index.d.ts +2 -1
  207. package/dist/components/PromotionsRowModule/PromotionsRowModule.d.ts +25 -5
  208. package/dist/components/PromotionsRowModule/PromotionsRowModule.js +48 -48
  209. package/dist/components/PromotionsRowModule/index.d.ts +2 -1
  210. package/dist/components/RescanInstructions/RescanInstructions.d.ts +3 -3
  211. package/dist/components/RescanInstructions/RescanInstructions.js +29 -18
  212. package/dist/components/RescanInstructions/index.d.ts +2 -1
  213. package/dist/components/ResponsiveImage/ResponsiveImage.d.ts +13 -12
  214. package/dist/components/ResponsiveImage/ResponsiveImage.js +16 -20
  215. package/dist/components/ResponsiveImage/index.d.ts +2 -1
  216. package/dist/components/ResultsTable/ResultsTable.d.ts +10 -6
  217. package/dist/components/ResultsTable/ResultsTable.js +21 -16
  218. package/dist/components/ResultsTable/index.d.ts +2 -1
  219. package/dist/components/ResultsTableBody/ResultsTableBody.d.ts +9 -5
  220. package/dist/components/ResultsTableBody/ResultsTableBody.js +21 -16
  221. package/dist/components/ResultsTableBody/index.d.ts +2 -1
  222. package/dist/components/ResultsTableHeader/ResultsTableHeader.d.ts +7 -3
  223. package/dist/components/ResultsTableHeader/ResultsTableHeader.js +4 -5
  224. package/dist/components/ResultsTableHeader/index.d.ts +2 -1
  225. package/dist/components/ScheduleLayout/ScheduleContext.d.ts +27 -0
  226. package/dist/components/ScheduleLayout/ScheduleContext.js +1931 -0
  227. package/dist/components/ScheduleLayout/ScheduleLayout.d.ts +16 -5
  228. package/dist/components/ScheduleLayout/ScheduleLayout.js +98 -24
  229. package/dist/components/ScheduleLayout/index.d.ts +2 -1
  230. package/dist/components/ScheduleLayout/useScheduleContext.d.ts +15 -0
  231. package/dist/components/ScheduleLayout/useScheduleContext.js +12 -0
  232. package/dist/components/ScheduleList/ScheduleList.d.ts +5 -5
  233. package/dist/components/ScheduleList/ScheduleList.js +162 -60
  234. package/dist/components/ScheduleList/index.d.ts +2 -1
  235. package/dist/components/ScheduleList/schedule-list-items/AirDateSegment.d.ts +6 -4
  236. package/dist/components/ScheduleList/schedule-list-items/AirDateSegment.js +28 -17
  237. package/dist/components/ScheduleList/schedule-list-items/MovieItem.d.ts +9 -7
  238. package/dist/components/ScheduleList/schedule-list-items/MovieItem.js +46 -34
  239. package/dist/components/ScheduleList/schedule-list-items/SeriesItem.d.ts +9 -7
  240. package/dist/components/ScheduleList/schedule-list-items/SeriesItem.js +48 -32
  241. package/dist/components/ScheduleList/schedule-list-items/SportsItem.d.ts +9 -7
  242. package/dist/components/ScheduleList/schedule-list-items/SportsItem.js +46 -34
  243. package/dist/components/SectionedContent/SectionedContent.d.ts +11 -3
  244. package/dist/components/SectionedContent/SectionedContent.js +14 -15
  245. package/dist/components/SectionedContent/index.d.ts +2 -1
  246. package/dist/components/Select/Select.d.ts +15 -11
  247. package/dist/components/Select/Select.js +21 -21
  248. package/dist/components/Select/index.d.ts +2 -1
  249. package/dist/components/ShowAboutContent/ShowAboutContent.d.ts +10 -8
  250. package/dist/components/ShowAboutContent/ShowAboutContent.js +27 -28
  251. package/dist/components/ShowAboutContent/index.d.ts +2 -1
  252. package/dist/components/ShowAboutLayout/ShowAboutLayout.d.ts +10 -8
  253. package/dist/components/ShowAboutLayout/ShowAboutLayout.js +91 -42
  254. package/dist/components/ShowAboutLayout/index.d.ts +2 -1
  255. package/dist/components/SocialLinks/SocialLinks.d.ts +15 -9
  256. package/dist/components/SocialLinks/SocialLinks.js +192 -138
  257. package/dist/components/SocialShareBlock/SocialShareBlock.d.ts +9 -8
  258. package/dist/components/SocialShareBlock/SocialShareBlock.js +20 -22
  259. package/dist/components/SocialShareBlock/index.d.ts +2 -1
  260. package/dist/components/SocialShareButton/SocialShareButton.d.ts +8 -7
  261. package/dist/components/SocialShareButton/SocialShareButton.js +3 -4
  262. package/dist/components/SocialShareButton/index.d.ts +2 -1
  263. package/dist/components/SocialShareButton/index.js +1 -1
  264. package/dist/components/StringList/StringList.d.ts +6 -5
  265. package/dist/components/StringList/StringList.js +16 -12
  266. package/dist/components/StringList/index.d.ts +2 -1
  267. package/dist/components/TabContent/TabContent.d.ts +5 -4
  268. package/dist/components/TabContent/TabContent.js +9 -7
  269. package/dist/components/TabContent/index.d.ts +2 -1
  270. package/dist/components/TabNavigation/TabNavigation.d.ts +7 -5
  271. package/dist/components/TabNavigation/TabNavigation.js +58 -53
  272. package/dist/components/TabNavigation/index.d.ts +2 -1
  273. package/dist/components/TabbedContent/TabbedContent.d.ts +20 -4
  274. package/dist/components/TabbedContent/TabbedContent.js +24 -8
  275. package/dist/components/TabbedContent/index.d.ts +2 -1
  276. package/dist/components/TextArea/TextArea.d.ts +9 -1
  277. package/dist/components/TextArea/TextArea.js +13 -13
  278. package/dist/components/TextArea/index.d.ts +2 -1
  279. package/dist/components/UpcomingList/UpcomingList.d.ts +5 -4
  280. package/dist/components/UpcomingList/UpcomingList.js +55 -41
  281. package/dist/containers/GetFeatruedListContainer.d.ts +22 -15
  282. package/dist/containers/GetFeatruedListContainer.js +16 -16
  283. package/dist/containers/NowPlayingContainer.d.ts +17 -15
  284. package/dist/containers/NowPlayingContainer.js +18 -16
  285. package/dist/custom-elements.d.js +1 -0
  286. package/dist/data-resources/FakeDataResource.d.ts +77 -68
  287. package/dist/data-resources/FakeDataResource.js +244 -142
  288. package/dist/error-boundries/BlankErrorBoundry.d.ts +14 -9
  289. package/dist/error-boundries/BlankErrorBoundry.js +5 -5
  290. package/dist/error-boundries/GeneralErrorBoundry.d.ts +15 -10
  291. package/dist/error-boundries/GeneralErrorBoundry.js +10 -10
  292. package/dist/hooks/{useGetSchedule.d.ts → getSchedule.d.ts} +12 -4
  293. package/dist/hooks/getSchedule.js +62 -0
  294. package/dist/hooks/useGetUpcoming.d.ts +8 -6
  295. package/dist/hooks/useGetUpcoming.js +22 -25
  296. package/dist/icons/Facebook.js +6 -6
  297. package/dist/icons/Tiktok.js +15 -7
  298. package/dist/icons/Twitter.js +7 -7
  299. package/dist/index.d.ts +1 -0
  300. package/dist/index.js +35 -33
  301. package/dist/logger-C0N7U0YY.mjs +67 -0
  302. package/dist/settings.js +6 -5
  303. package/dist/utils/Redirect.d.ts +2 -2
  304. package/dist/utils/analytics.js +1 -1
  305. package/dist/utils/date-helpers.d.ts +3 -2
  306. package/dist/utils/date-helpers.js +26 -26
  307. package/dist/utils/events.js +8 -6
  308. package/dist/utils/getFeaturedList.d.ts +28 -8
  309. package/dist/utils/getFeaturedList.js +58 -45
  310. package/dist/utils/getFeaturedListImages.d.ts +15 -5
  311. package/dist/utils/getFeaturedListImages.js +27 -16
  312. package/dist/utils/getOnNowProgram.d.ts +17 -3
  313. package/dist/utils/getOnNowProgram.js +106 -68
  314. package/dist/utils/getSchedule.d.ts +8 -6
  315. package/dist/utils/getSchedule.js +6 -1
  316. package/dist/utils/getUpcomingPrograms.d.ts +10 -7
  317. package/dist/utils/getUpcomingPrograms.js +5 -4
  318. package/dist/utils/getViewingPlatforms.d.ts +6 -16
  319. package/dist/utils/getViewingPlatforms.js +14 -11
  320. package/dist/utils/gtm.js +1 -1
  321. package/dist/utils/helpers.d.ts +9 -9
  322. package/dist/utils/helpers.js +69 -65
  323. package/dist/utils/program-helpers.d.ts +14 -20
  324. package/dist/utils/program-helpers.js +9 -8
  325. package/dist/utils/series-helpers.d.ts +14 -20
  326. package/dist/utils/series-helpers.js +9 -8
  327. package/package.json +19 -14
  328. package/dist/Carousel.module-DOrBKQEQ.mjs +0 -14
  329. package/dist/PageHero.module-BdV8z_Xv.mjs +0 -8
  330. package/dist/ResultsTable.module-B7M9y7hd.mjs +0 -14
  331. package/dist/components/CarouselSlide/slide-layouts/NetworkCallout/NetworkCalloutSlide.stories.d.ts +0 -28
  332. package/dist/components/CarouselSlide/slide-layouts/NetworkCallout/NetworkCalloutSlide.stories.js +0 -42
  333. package/dist/components/CarouselSlide/slide-layouts/Show/ShowSlide.stories.d.ts +0 -170
  334. package/dist/components/CarouselSlide/slide-layouts/Show/ShowSlide.stories.js +0 -193
  335. package/dist/components/CarouselSlide/slide-layouts/TwoColumn/TwoColumnSlide.stories.d.ts +0 -17
  336. package/dist/components/CarouselSlide/slide-layouts/TwoColumn/TwoColumnSlide.stories.js +0 -49
  337. package/dist/facebook-HCcA1M1m.mjs +0 -54
  338. package/dist/hooks/useGetSchedule.js +0 -58
@@ -1,9 +1,9 @@
1
- const l = [
2
- {
1
+ const a = {
2
+ metadata: {
3
3
  name: "Streaming Devices",
4
4
  slug: "streaming-devices"
5
5
  },
6
- [
6
+ items: [
7
7
  {
8
8
  id: 1,
9
9
  image_url: "https://iontelevision.com/static/global/samsung-tv-plus-logo.png",
@@ -29,12 +29,12 @@ const l = [
29
29
  link: "#"
30
30
  }
31
31
  ]
32
- ], a = [
33
- {
32
+ }, l = {
33
+ metadata: {
34
34
  name: "Smart TVs",
35
35
  slug: "smart-tvs"
36
36
  },
37
- [
37
+ items: [
38
38
  {
39
39
  id: 5,
40
40
  image_url: "https://iontelevision.com/static/global/samsung-tv-plus-logo.png",
@@ -78,12 +78,12 @@ const l = [
78
78
  link: "#"
79
79
  }
80
80
  ]
81
- ], e = [
82
- {
81
+ }, t = {
82
+ metadata: {
83
83
  name: "Audio Platforms",
84
84
  slug: "audio-platforms"
85
85
  },
86
- [
86
+ items: [
87
87
  {
88
88
  id: 12,
89
89
  image_url: "https://iontelevision.com/static/global/samsung-tv-plus-logo.png",
@@ -103,12 +103,12 @@ const l = [
103
103
  link: "#"
104
104
  }
105
105
  ]
106
- ], t = [
107
- {
106
+ }, e = {
107
+ metadata: {
108
108
  name: "Video Platforms",
109
109
  slug: "video-platforms"
110
110
  },
111
- [
111
+ items: [
112
112
  {
113
113
  id: 15,
114
114
  image_url: "https://iontelevision.com/static/global/samsung-tv-plus-logo.png",
@@ -194,12 +194,12 @@ const l = [
194
194
  link: "#"
195
195
  }
196
196
  ]
197
- ], o = [
198
- {
197
+ }, s = {
198
+ metadata: {
199
199
  name: "Mobile Devices",
200
200
  slug: "mobile-devices"
201
201
  },
202
- [
202
+ items: [
203
203
  {
204
204
  id: 29,
205
205
  image_url: "https://iontelevision.com/static/global/samsung-tv-plus-logo.png",
@@ -213,22 +213,22 @@ const l = [
213
213
  link: "#"
214
214
  }
215
215
  ]
216
- ], i = /* @__PURE__ */ new Map([
217
- [l[0], [...l[1]]],
218
- [a[0], [...a[1]]],
219
- [e[0], [...e[1]]],
220
- [t[0], [...t[1]]],
221
- [o[0], [...o[1]]]
216
+ }, o = /* @__PURE__ */ new Map([
217
+ [a.metadata, [...a.items]],
218
+ [l.metadata, [...l.items]],
219
+ [t.metadata, [...t.items]],
220
+ [e.metadata, [...e.items]],
221
+ [s.metadata, [...s.items]]
222
+ ]), i = /* @__PURE__ */ new Map([
223
+ [e.metadata, [...e.items]],
224
+ [a.metadata, [...a.items]],
225
+ [l.metadata, [...l.items]],
226
+ [t.metadata, [...t.items]],
227
+ [s.metadata, [...s.items]]
222
228
  ]), n = /* @__PURE__ */ new Map([
223
- [t[0], [...t[1]]],
224
- [l[0], [...l[1]]],
225
- [a[0], [...a[1]]],
226
- [e[0], [...e[1]]],
227
- [o[0], [...o[1]]]
228
- ]), s = /* @__PURE__ */ new Map([
229
- [l[0], [...l[1]]],
230
- [a[0], [...a[1]]],
231
- [e[0], [...e[1]]]
229
+ [a.metadata, [...a.items]],
230
+ [l.metadata, [...l.items]],
231
+ [t.metadata, [...t.items]]
232
232
  ]), u = {
233
233
  network: "Court TV",
234
234
  platform: [
@@ -318,375 +318,477 @@ const l = [
318
318
  }
319
319
  ]
320
320
  }, r = [
321
- { label: "Alabama", value: "al" },
322
- { label: "Alaska", value: "ak" },
323
- { label: "Arizona", value: "az" },
324
- { label: "Arkansas", value: "ar" },
325
- { label: "California", value: "ca" },
326
- { label: "Colorado", value: "co" },
327
- { label: "Connecticut", value: "ct" },
328
- { label: "Delaware", value: "de" },
329
- { label: "District Of Columbia", value: "dc" },
330
- { label: "Florida", value: "fl" },
331
- { label: "Georgia", value: "ga" },
332
- { label: "Hawaii", value: "hi" },
333
- { label: "Idaho", value: "id" },
334
- { label: "Illinois", value: "il" },
335
- { label: "Indiana", value: "in" },
336
- { label: "Iowa", value: "ia" },
337
- { label: "Kansas", value: "ks" },
338
- { label: "Kentucky", value: "ky" },
339
- { label: "Louisiana", value: "la" },
340
- { label: "Maine", value: "me" },
341
- { label: "Maryland", value: "md" },
342
- { label: "Massachusetts", value: "ma" },
343
- { label: "Michigan", value: "mi" },
344
- { label: "Minnesota", value: "mn" },
345
- { label: "Mississippi", value: "ms" },
346
- { label: "Missouri", value: "mo" },
347
- { label: "Montana", value: "mt" },
348
- { label: "Nebraska", value: "ne" },
349
- { label: "Nevada", value: "nv" },
350
- { label: "New Hampshire", value: "nh" },
351
- { label: "New Jersey", value: "nj" },
352
- { label: "New Mexico", value: "nm" },
353
- { label: "New York", value: "ny" },
354
- { label: "North Carolina", value: "nc" },
355
- { label: "North Dakota", value: "nd" },
356
- { label: "Ohio", value: "oh" },
357
- { label: "Oklahoma", value: "ok" },
358
- { label: "Oregon", value: "or" },
359
- { label: "Pennsylvania", value: "pa" },
360
- { label: "Rhode Island", value: "ri" },
361
- { label: "South Carolina", value: "sc" },
362
- { label: "South Dakota", value: "sd" },
363
- { label: "Tennessee", value: "tn" },
364
- { label: "Texas", value: "tx" },
365
- { label: "Utah", value: "ut" },
366
- { label: "Vermont", value: "vt" },
367
- { label: "Virginia", value: "va" },
368
- { label: "Washington", value: "wa" },
369
- { label: "West Virginia", value: "wv" },
370
- { label: "Wisconsin", value: "wi" },
371
- { label: "Wyoming", value: "wy" }
372
- ], p = [
321
+ { label: "Alabama", value: "al", parent_id: null, id: 1, subcategories: [], status: "normal" },
322
+ { label: "Alaska", value: "ak", parent_id: null, id: 2, subcategories: [], status: "normal" },
323
+ { label: "Arizona", value: "az", parent_id: null, id: 3, subcategories: [], status: "normal" },
324
+ { label: "Arkansas", value: "ar", parent_id: null, id: 4, subcategories: [], status: "normal" },
325
+ { label: "California", value: "ca", parent_id: null, id: 5, subcategories: [], status: "normal" },
326
+ { label: "Colorado", value: "co", parent_id: null, id: 6, subcategories: [], status: "normal" },
327
+ { label: "Connecticut", value: "ct", parent_id: null, id: 7, subcategories: [], status: "normal" },
328
+ { label: "Delaware", value: "de", parent_id: null, id: 8, subcategories: [], status: "normal" },
329
+ { label: "District Of Columbia", value: "dc", parent_id: null, id: 9, subcategories: [], status: "normal" },
330
+ { label: "Florida", value: "fl", parent_id: null, id: 10, subcategories: [], status: "normal" },
331
+ { label: "Georgia", value: "ga", parent_id: null, id: 11, subcategories: [], status: "normal" },
332
+ { label: "Hawaii", value: "hi", parent_id: null, id: 12, subcategories: [], status: "normal" },
333
+ { label: "Idaho", value: "id", parent_id: null, id: 13, subcategories: [], status: "normal" },
334
+ { label: "Illinois", value: "il", parent_id: null, id: 14, subcategories: [], status: "normal" },
335
+ { label: "Indiana", value: "in", parent_id: null, id: 15, subcategories: [], status: "normal" },
336
+ { label: "Iowa", value: "ia", parent_id: null, id: 16, subcategories: [], status: "normal" },
337
+ { label: "Kansas", value: "ks", parent_id: null, id: 17, subcategories: [], status: "normal" },
338
+ { label: "Kentucky", value: "ky", parent_id: null, id: 18, subcategories: [], status: "normal" },
339
+ { label: "Louisiana", value: "la", parent_id: null, id: 19, subcategories: [], status: "normal" },
340
+ { label: "Maine", value: "me", parent_id: null, id: 20, subcategories: [], status: "normal" },
341
+ { label: "Maryland", value: "md", parent_id: null, id: 21, subcategories: [], status: "normal" },
342
+ { label: "Massachusetts", value: "ma", parent_id: null, id: 22, subcategories: [], status: "normal" },
343
+ { label: "Michigan", value: "mi", parent_id: null, id: 23, subcategories: [], status: "normal" },
344
+ { label: "Minnesota", value: "mn", parent_id: null, id: 24, subcategories: [], status: "normal" },
345
+ { label: "Mississippi", value: "ms", parent_id: null, id: 25, subcategories: [], status: "normal" },
346
+ { label: "Missouri", value: "mo", parent_id: null, id: 26, subcategories: [], status: "normal" },
347
+ { label: "Montana", value: "mt", parent_id: null, id: 27, subcategories: [], status: "normal" },
348
+ { label: "Nebraska", value: "ne", parent_id: null, id: 28, subcategories: [], status: "normal" },
349
+ { label: "Nevada", value: "nv", parent_id: null, id: 29, subcategories: [], status: "normal" },
350
+ { label: "New Hampshire", value: "nh", parent_id: null, id: 30, subcategories: [], status: "normal" },
351
+ { label: "New Jersey", value: "nj", parent_id: null, id: 31, subcategories: [], status: "normal" },
352
+ { label: "New Mexico", value: "nm", parent_id: null, id: 32, subcategories: [], status: "normal" },
353
+ { label: "New York", value: "ny", parent_id: null, id: 33, subcategories: [], status: "normal" },
354
+ { label: "North Carolina", value: "nc", parent_id: null, id: 34, subcategories: [], status: "normal" },
355
+ { label: "North Dakota", value: "nd", parent_id: null, id: 35, subcategories: [], status: "normal" },
356
+ { label: "Ohio", value: "oh", parent_id: null, id: 36, subcategories: [], status: "normal" },
357
+ { label: "Oklahoma", value: "ok", parent_id: null, id: 37, subcategories: [], status: "normal" },
358
+ { label: "Oregon", value: "or", parent_id: null, id: 38, subcategories: [], status: "normal" },
359
+ { label: "Pennsylvania", value: "pa", parent_id: null, id: 39, subcategories: [], status: "normal" },
360
+ { label: "Rhode Island", value: "ri", parent_id: null, id: 40, subcategories: [], status: "normal" },
361
+ { label: "South Carolina", value: "sc", parent_id: null, id: 41, subcategories: [], status: "normal" },
362
+ { label: "South Dakota", value: "sd", parent_id: null, id: 42, subcategories: [], status: "normal" },
363
+ { label: "Tennessee", value: "tn", parent_id: null, id: 43, subcategories: [], status: "normal" },
364
+ { label: "Texas", value: "tx", parent_id: null, id: 44, subcategories: [], status: "normal" },
365
+ { label: "Utah", value: "ut", parent_id: null, id: 45, subcategories: [], status: "normal" },
366
+ { label: "Vermont", value: "vt", parent_id: null, id: 46, subcategories: [], status: "normal" },
367
+ { label: "Virginia", value: "va", parent_id: null, id: 47, subcategories: [], status: "normal" },
368
+ { label: "Washington", value: "wa", parent_id: null, id: 48, subcategories: [], status: "normal" },
369
+ { label: "West Virginia", value: "wv", parent_id: null, id: 49, subcategories: [], status: "normal" },
370
+ { label: "Wisconsin", value: "wi", parent_id: null, id: 50, subcategories: [], status: "normal" },
371
+ { label: "Wyoming", value: "wy", parent_id: null, id: 51, subcategories: [], status: "normal" }
372
+ ], g = [
373
373
  {
374
374
  parent_id: null,
375
375
  label: "Alabama",
376
376
  value: "al",
377
- id: 1
377
+ id: 1,
378
+ subcategories: [],
379
+ status: "normal"
378
380
  },
379
381
  {
380
382
  parent_id: null,
381
383
  label: "Alaska",
382
384
  value: "ak",
383
- id: 2
385
+ id: 2,
386
+ subcategories: [],
387
+ status: "normal"
384
388
  },
385
389
  {
386
390
  parent_id: null,
387
391
  label: "Arizona",
388
392
  value: "az",
389
- id: 3
393
+ id: 3,
394
+ subcategories: [],
395
+ status: "normal"
390
396
  },
391
397
  {
392
398
  parent_id: null,
393
399
  label: "Arkansas",
394
400
  value: "ar",
395
- id: 4
401
+ id: 4,
402
+ subcategories: [],
403
+ status: "normal"
396
404
  },
397
405
  {
398
406
  parent_id: null,
399
407
  label: "California",
400
408
  value: "ca",
401
- id: 5
409
+ id: 5,
410
+ subcategories: [],
411
+ status: "normal"
402
412
  },
403
413
  {
404
414
  parent_id: null,
405
415
  label: "Colorado",
406
416
  value: "co",
407
- id: 6
417
+ id: 6,
418
+ subcategories: [],
419
+ status: "normal"
408
420
  },
409
421
  {
410
422
  parent_id: null,
411
423
  label: "Connecticut",
412
424
  value: "ct",
413
- id: 7
425
+ id: 7,
426
+ subcategories: [],
427
+ status: "normal"
414
428
  },
415
429
  {
416
430
  parent_id: null,
417
431
  label: "Delaware",
418
432
  value: "de",
419
- id: 8
433
+ id: 8,
434
+ subcategories: [],
435
+ status: "normal"
420
436
  },
421
437
  {
422
438
  parent_id: null,
423
439
  label: "District Of Columbia",
424
440
  value: "dc",
425
- id: 10
441
+ id: 10,
442
+ subcategories: [],
443
+ status: "normal"
426
444
  },
427
445
  {
428
446
  parent_id: null,
429
447
  label: "Florida",
430
448
  value: "fl",
431
- id: 11
449
+ id: 11,
450
+ subcategories: [],
451
+ status: "normal"
432
452
  },
433
453
  {
434
454
  parent_id: null,
435
455
  label: "Georgia",
436
456
  value: "ga",
437
- id: 12
457
+ id: 12,
458
+ subcategories: [],
459
+ status: "normal"
438
460
  },
439
461
  {
440
462
  parent_id: null,
441
463
  label: "Hawaii",
442
464
  value: "hi",
443
- id: 13
465
+ id: 13,
466
+ subcategories: [],
467
+ status: "normal"
444
468
  },
445
469
  {
446
470
  parent_id: null,
447
471
  label: "Idaho",
448
472
  value: "id",
449
- id: 14
473
+ id: 14,
474
+ subcategories: [],
475
+ status: "normal"
450
476
  },
451
477
  {
452
478
  parent_id: null,
453
479
  label: "Illinois",
454
480
  value: "il",
455
- id: 15
481
+ id: 15,
482
+ subcategories: [],
483
+ status: "normal"
456
484
  },
457
485
  {
458
486
  parent_id: null,
459
487
  label: "Indiana",
460
488
  value: "in",
461
- id: 16
489
+ id: 16,
490
+ subcategories: [],
491
+ status: "normal"
462
492
  },
463
493
  {
464
494
  parent_id: null,
465
495
  label: "Iowa",
466
496
  value: "ia",
467
- id: 17
497
+ id: 17,
498
+ subcategories: [],
499
+ status: "normal"
468
500
  },
469
501
  {
470
502
  parent_id: null,
471
503
  label: "Kansas",
472
504
  value: "ks",
473
- id: 18
505
+ id: 18,
506
+ subcategories: [],
507
+ status: "normal"
474
508
  },
475
509
  {
476
510
  parent_id: null,
477
511
  label: "Kentucky",
478
512
  value: "ky",
479
- id: 19
513
+ id: 19,
514
+ subcategories: [],
515
+ status: "normal"
480
516
  },
481
517
  {
482
518
  parent_id: null,
483
519
  label: "Louisiana",
484
520
  value: "la",
485
- id: 20
521
+ id: 20,
522
+ subcategories: [],
523
+ status: "normal"
486
524
  },
487
525
  {
488
526
  parent_id: null,
489
527
  label: "Maine",
490
528
  value: "me",
491
- id: 21
529
+ id: 21,
530
+ subcategories: [],
531
+ status: "normal"
492
532
  },
493
533
  {
494
534
  parent_id: null,
495
535
  label: "Maryland",
496
536
  value: "md",
497
- id: 22
537
+ id: 22,
538
+ subcategories: [],
539
+ status: "normal"
498
540
  },
499
541
  {
500
542
  parent_id: null,
501
543
  label: "Massachusetts",
502
544
  value: "ma",
503
- id: 23
545
+ id: 23,
546
+ subcategories: [],
547
+ status: "normal"
504
548
  },
505
549
  {
506
550
  parent_id: null,
507
551
  label: "Michigan",
508
552
  value: "mi",
509
- id: 24
553
+ id: 24,
554
+ subcategories: [],
555
+ status: "normal"
510
556
  },
511
557
  {
512
558
  parent_id: null,
513
559
  label: "Minnesota",
514
560
  value: "mn",
515
- id: 25
561
+ id: 25,
562
+ subcategories: [],
563
+ status: "normal"
516
564
  },
517
565
  {
518
566
  parent_id: null,
519
567
  label: "Mississippi",
520
568
  value: "ms",
521
- id: 26
569
+ id: 26,
570
+ subcategories: [],
571
+ status: "normal"
522
572
  },
523
573
  {
524
574
  parent_id: null,
525
575
  label: "Missouri",
526
576
  value: "mo",
527
- id: 27
577
+ id: 27,
578
+ subcategories: [],
579
+ status: "normal"
528
580
  },
529
581
  {
530
582
  parent_id: null,
531
583
  label: "Montana",
532
584
  value: "mt",
533
- id: 28
585
+ id: 28,
586
+ subcategories: [],
587
+ status: "normal"
534
588
  },
535
589
  {
536
590
  parent_id: null,
537
591
  label: "Nebraska",
538
592
  value: "ne",
539
- id: 29
593
+ id: 29,
594
+ subcategories: [],
595
+ status: "normal"
540
596
  },
541
597
  {
542
598
  parent_id: null,
543
599
  label: "Nevada",
544
600
  value: "nv",
545
- id: 30
601
+ id: 30,
602
+ subcategories: [],
603
+ status: "normal"
546
604
  },
547
605
  {
548
606
  parent_id: null,
549
607
  label: "New Hampshire",
550
608
  value: "nh",
551
- id: 31
609
+ id: 31,
610
+ subcategories: [],
611
+ status: "normal"
552
612
  },
553
613
  {
554
614
  parent_id: null,
555
615
  label: "New Jersey",
556
616
  value: "nj",
557
- id: 32
617
+ id: 32,
618
+ subcategories: [],
619
+ status: "normal"
558
620
  },
559
621
  {
560
622
  parent_id: null,
561
623
  label: "New Mexico",
562
624
  value: "nm",
563
- id: 33
625
+ id: 33,
626
+ subcategories: [],
627
+ status: "normal"
564
628
  },
565
629
  {
566
630
  parent_id: null,
567
631
  label: "New York",
568
632
  value: "ny",
569
- id: 34
633
+ id: 34,
634
+ subcategories: [],
635
+ status: "normal"
570
636
  },
571
637
  {
572
638
  parent_id: null,
573
639
  label: "North Carolina",
574
640
  value: "nc",
575
- id: 35
641
+ id: 35,
642
+ subcategories: [],
643
+ status: "normal"
576
644
  },
577
645
  {
578
646
  parent_id: null,
579
647
  label: "North Dakota",
580
648
  value: "nd",
581
- id: 36
649
+ id: 36,
650
+ subcategories: [],
651
+ status: "normal"
582
652
  },
583
653
  {
584
654
  parent_id: null,
585
655
  label: "Ohio",
586
656
  value: "oh",
587
- id: 37
657
+ id: 37,
658
+ subcategories: [],
659
+ status: "normal"
588
660
  },
589
661
  {
590
662
  parent_id: null,
591
663
  label: "Oklahoma",
592
664
  value: "ok",
593
- id: 38
665
+ id: 38,
666
+ subcategories: [],
667
+ status: "normal"
594
668
  },
595
669
  {
596
670
  parent_id: null,
597
671
  label: "Oregon",
598
672
  value: "or",
599
- id: 39
673
+ id: 39,
674
+ subcategories: [],
675
+ status: "normal"
600
676
  },
601
677
  {
602
678
  parent_id: null,
603
679
  label: "Pennsylvania",
604
680
  value: "pa",
605
- id: 40
681
+ id: 40,
682
+ subcategories: [],
683
+ status: "normal"
606
684
  },
607
685
  {
608
686
  parent_id: null,
609
687
  label: "Rhode Island",
610
688
  value: "ri",
611
- id: 41
689
+ id: 41,
690
+ subcategories: [],
691
+ status: "normal"
612
692
  },
613
693
  {
614
694
  parent_id: null,
615
695
  label: "South Carolina",
616
696
  value: "sc",
617
- id: 42
697
+ id: 42,
698
+ subcategories: [],
699
+ status: "normal"
618
700
  },
619
701
  {
620
702
  parent_id: null,
621
703
  label: "South Dakota",
622
704
  value: "sd",
623
- id: 43
705
+ id: 43,
706
+ subcategories: [],
707
+ status: "normal"
624
708
  },
625
709
  {
626
710
  parent_id: null,
627
711
  label: "Tennessee",
628
712
  value: "tn",
629
- id: 44
713
+ id: 44,
714
+ subcategories: [],
715
+ status: "normal"
630
716
  },
631
717
  {
632
718
  parent_id: null,
633
719
  label: "Texas",
634
720
  value: "tx",
635
- id: 45
721
+ id: 45,
722
+ subcategories: [],
723
+ status: "normal"
636
724
  },
637
725
  {
638
726
  parent_id: null,
639
727
  label: "Utah",
640
728
  value: "ut",
641
- id: 46
729
+ id: 46,
730
+ subcategories: [],
731
+ status: "normal"
642
732
  },
643
733
  {
644
734
  parent_id: null,
645
735
  label: "Vermont",
646
736
  value: "vt",
647
- id: 47
737
+ id: 47,
738
+ subcategories: [],
739
+ status: "normal"
648
740
  },
649
741
  {
650
742
  parent_id: null,
651
743
  label: "Virginia",
652
744
  value: "va",
653
- id: 48
745
+ id: 48,
746
+ subcategories: [],
747
+ status: "normal"
654
748
  },
655
749
  {
656
750
  parent_id: null,
657
751
  label: "Washington",
658
752
  value: "wa",
659
- id: 49
753
+ id: 49,
754
+ subcategories: [],
755
+ status: "normal"
660
756
  },
661
757
  {
662
758
  parent_id: null,
663
759
  label: "West Virginia",
664
760
  value: "wv",
665
- id: 50
761
+ id: 50,
762
+ subcategories: [],
763
+ status: "normal"
666
764
  },
667
765
  {
668
766
  parent_id: null,
669
767
  label: "Wisconsin",
670
768
  value: "wi",
671
- id: 51
769
+ id: 51,
770
+ subcategories: [],
771
+ status: "normal"
672
772
  },
673
773
  {
674
774
  parent_id: null,
675
775
  label: "Wyoming",
676
776
  value: "wy",
677
- id: 52
777
+ id: 52,
778
+ subcategories: [],
779
+ status: "normal"
678
780
  }
679
781
  ];
680
782
  export {
681
- e as audio_platforms,
682
- o as mobile_devices,
683
- i as platform_resources,
684
- n as platform_resources_video_platforms_first,
685
- s as small_platform_resouces,
686
- a as smart_tvs,
783
+ t as audio_platforms,
784
+ s as mobile_devices,
785
+ o as platform_resources,
786
+ i as platform_resources_video_platforms_first,
787
+ n as small_platform_resouces,
788
+ l as smart_tvs,
687
789
  r as stateOptions,
688
- p as statesForCustomList,
689
- l as streaming_devices,
690
- t as video_platforms,
790
+ g as statesForCustomList,
791
+ a as streaming_devices,
792
+ e as video_platforms,
691
793
  u as wp_platform_resources
692
794
  };