@nypl/design-system-react-components 2.0.0 → 2.1.0-rc

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 (284) hide show
  1. package/README.md +466 -17
  2. package/dist/design-system-react-components.cjs +528 -0
  3. package/dist/design-system-react-components.js +37957 -0
  4. package/dist/src/components/Accordion/Accordion.d.ts +29 -0
  5. package/dist/src/components/AlphabetFilter/AlphabetFilter.d.ts +23 -0
  6. package/dist/src/components/AudioPlayer/AudioPlayer.d.ts +43 -0
  7. package/dist/src/components/Breadcrumbs/Breadcrumbs.d.ts +24 -0
  8. package/dist/src/components/Button/Button.d.ts +35 -0
  9. package/dist/src/components/ButtonGroup/ButtonGroup.d.ts +25 -0
  10. package/dist/src/components/Card/Card.d.ts +55 -0
  11. package/dist/src/components/Checkbox/Checkbox.d.ts +47 -0
  12. package/dist/src/components/CheckboxGroup/CheckboxGroup.d.ts +51 -0
  13. package/dist/src/components/ComponentWrapper/ComponentWrapper.d.ts +31 -0
  14. package/dist/src/components/DatePicker/DatePicker.d.ts +82 -0
  15. package/dist/src/components/FeaturedContent/FeaturedContent.d.ts +29 -0
  16. package/dist/src/components/FeedbackBox/FeedbackBox.d.ts +64 -0
  17. package/dist/src/components/FeedbackBox/useFeedbackBoxReducer.d.ts +19 -0
  18. package/dist/src/components/Fieldset/Fieldset.d.ts +24 -0
  19. package/dist/src/components/Form/Form.d.ts +31 -0
  20. package/dist/src/components/Grid/SimpleGrid.d.ts +20 -0
  21. package/dist/src/components/Heading/Heading.d.ts +42 -0
  22. package/dist/src/components/HelperErrorText/HelperErrorText.d.ts +34 -0
  23. package/dist/src/components/Hero/Hero.d.ts +49 -0
  24. package/dist/src/components/HorizontalRule/HorizontalRule.d.ts +11 -0
  25. package/dist/src/components/Icons/Icon.d.ts +41 -0
  26. package/dist/src/components/Icons/IconSvgs.d.ts +196 -0
  27. package/dist/src/components/Icons/iconVariables.d.ts +6 -0
  28. package/dist/src/components/Image/Image.d.ts +68 -0
  29. package/dist/src/components/Label/Label.d.ts +25 -0
  30. package/dist/src/components/Link/Link.d.ts +32 -0
  31. package/dist/src/components/List/List.d.ts +43 -0
  32. package/dist/src/components/Logo/Logo.d.ts +29 -0
  33. package/dist/src/components/Logo/LogoSvgs.d.ts +166 -0
  34. package/dist/src/components/Logo/logoVariables.d.ts +2 -0
  35. package/dist/src/components/Modal/Modal.d.ts +35 -0
  36. package/dist/src/components/NewsletterSignup/NewsletterSignup.d.ts +46 -0
  37. package/dist/src/components/Notification/Notification.d.ts +52 -0
  38. package/dist/src/components/Pagination/Pagination.d.ts +27 -0
  39. package/dist/src/components/ProgressIndicator/ProgressIndicator.d.ts +32 -0
  40. package/dist/src/components/Radio/Radio.d.ts +43 -0
  41. package/dist/src/components/RadioGroup/RadioGroup.d.ts +51 -0
  42. package/dist/src/components/SearchBar/SearchBar.d.ts +58 -0
  43. package/dist/src/components/Select/Select.d.ts +59 -0
  44. package/dist/src/components/SkeletonLoader/SkeletonLoader.d.ts +42 -0
  45. package/dist/src/components/SkipNavigation/SkipNavigation.d.ts +19 -0
  46. package/dist/src/components/Slider/Slider.d.ts +65 -0
  47. package/dist/src/components/SocialMediaLinks/SocialMediaLinks.d.ts +42 -0
  48. package/dist/src/components/SocialMediaLinks/SocialMediaLinksUtils.d.ts +7 -0
  49. package/dist/src/components/StatusBadge/StatusBadge.d.ts +19 -0
  50. package/dist/src/components/StructuredContent/StructuredContent.d.ts +30 -0
  51. package/dist/src/components/StyleGuide/ColorCard.d.ts +348 -0
  52. package/dist/src/components/StyledList/StyledList.d.ts +26 -0
  53. package/dist/src/components/Table/Table.d.ts +32 -0
  54. package/dist/src/components/Tabs/Tabs.d.ts +28 -0
  55. package/dist/src/components/TagSet/TagSet.d.ts +24 -0
  56. package/dist/src/components/TagSet/TagSetExplore.d.ts +28 -0
  57. package/dist/src/components/TagSet/TagSetFilter.d.ts +25 -0
  58. package/dist/src/components/TagSet/TooltipWrapper.d.ts +9 -0
  59. package/dist/src/components/Template/Template.d.ts +140 -0
  60. package/dist/src/components/Text/Text.d.ts +27 -0
  61. package/dist/src/components/TextInput/TextInput.d.ts +92 -0
  62. package/dist/src/components/Toggle/Toggle.d.ts +43 -0
  63. package/dist/src/components/Tooltip/Tooltip.d.ts +17 -0
  64. package/dist/src/components/VideoPlayer/VideoPlayer.d.ts +42 -0
  65. package/dist/src/helpers/getSectionColors.d.ts +8 -0
  66. package/dist/src/helpers/types.d.ts +50 -0
  67. package/dist/src/hooks/useCarouselStyles.d.ts +17 -0
  68. package/dist/src/hooks/useCloseDropDown.d.ts +7 -0
  69. package/dist/src/hooks/useNYPLBreakpoints.d.ts +13 -0
  70. package/dist/src/hooks/useNYPLTheme.d.ts +75 -0
  71. package/dist/src/hooks/useStateWithDependencies.d.ts +8 -0
  72. package/dist/src/hooks/useWindowSize.d.ts +10 -0
  73. package/dist/src/index.d.ts +87 -0
  74. package/dist/src/theme/components/accordion.d.ts +34 -0
  75. package/dist/src/theme/components/alphabetFilter.d.ts +40 -0
  76. package/dist/src/theme/components/audioPlayer.d.ts +16 -0
  77. package/dist/src/theme/components/breadcrumb.d.ts +158 -0
  78. package/dist/src/theme/components/button.d.ts +152 -0
  79. package/dist/src/theme/components/buttonGroup.d.ts +11 -0
  80. package/dist/src/theme/components/card.d.ts +485 -0
  81. package/dist/src/theme/components/checkbox.d.ts +178 -0
  82. package/dist/src/theme/components/checkboxGroup.d.ts +14 -0
  83. package/dist/src/theme/components/componentWrapper.d.ts +12 -0
  84. package/dist/src/theme/components/customTable.d.ts +739 -0
  85. package/dist/src/theme/components/datePicker.d.ts +17 -0
  86. package/dist/src/theme/components/featuredContent.d.ts +70 -0
  87. package/dist/src/theme/components/feedbackBox.d.ts +100 -0
  88. package/dist/src/theme/components/fieldset.d.ts +24 -0
  89. package/dist/src/theme/components/filterBar.d.ts +46 -0
  90. package/dist/src/theme/components/global.d.ts +141 -0
  91. package/dist/src/theme/components/globalMixins.d.ts +40 -0
  92. package/dist/src/theme/components/heading.d.ts +372 -0
  93. package/dist/src/theme/components/helperErrorText.d.ts +18 -0
  94. package/dist/src/theme/components/hero.d.ts +639 -0
  95. package/dist/src/theme/components/horizontalRule.d.ts +18 -0
  96. package/dist/src/theme/components/icon.d.ts +62251 -0
  97. package/dist/src/theme/components/image.d.ts +754 -0
  98. package/dist/src/theme/components/label.d.ts +22 -0
  99. package/dist/src/theme/components/link.d.ts +152 -0
  100. package/dist/src/theme/components/list.d.ts +230 -0
  101. package/dist/src/theme/components/logo.d.ts +477 -0
  102. package/dist/src/theme/components/modal.d.ts +27 -0
  103. package/dist/src/theme/components/multiSelect.d.ts +29 -0
  104. package/dist/src/theme/components/multiSelectMenuButton.d.ts +99 -0
  105. package/dist/src/theme/components/newsletterSignup.d.ts +93 -0
  106. package/dist/src/theme/components/notification.d.ts +137 -0
  107. package/dist/src/theme/components/pagination.d.ts +19 -0
  108. package/dist/src/theme/components/progressIndicator.d.ts +69 -0
  109. package/dist/src/theme/components/radio.d.ts +202 -0
  110. package/dist/src/theme/components/radioGroup.d.ts +14 -0
  111. package/dist/src/theme/components/searchBar.d.ts +34 -0
  112. package/dist/src/theme/components/select.d.ts +126 -0
  113. package/dist/src/theme/components/skeletonLoader.d.ts +105 -0
  114. package/dist/src/theme/components/skipNavigation.d.ts +28 -0
  115. package/dist/src/theme/components/slider.d.ts +78 -0
  116. package/dist/src/theme/components/socialmedialinks.d.ts +192 -0
  117. package/dist/src/theme/components/statusBadge.d.ts +37 -0
  118. package/dist/src/theme/components/structuredContent.d.ts +454 -0
  119. package/dist/src/theme/components/styledList.d.ts +51 -0
  120. package/dist/src/theme/components/tabs.d.ts +172 -0
  121. package/dist/src/theme/components/tagSet.d.ts +154 -0
  122. package/dist/src/theme/components/template.d.ts +98 -0
  123. package/dist/src/theme/components/text.d.ts +59 -0
  124. package/dist/src/theme/components/textInput.d.ts +360 -0
  125. package/dist/src/theme/components/toggle.d.ts +129 -0
  126. package/dist/src/theme/components/tooltip.d.ts +21 -0
  127. package/dist/src/theme/components/videoPlayer.d.ts +47 -0
  128. package/dist/src/theme/foundations/breakpoints.d.ts +23 -0
  129. package/dist/src/theme/foundations/colors.d.ts +3 -0
  130. package/dist/src/theme/foundations/global.d.ts +68 -0
  131. package/dist/src/theme/foundations/radii.d.ts +11 -0
  132. package/dist/src/theme/foundations/shadows.d.ts +4 -0
  133. package/dist/src/theme/foundations/spacing.d.ts +96 -0
  134. package/dist/src/theme/foundations/typography.d.ts +8 -0
  135. package/dist/src/theme/index.d.ts +20 -0
  136. package/dist/src/theme/internalChakraProvider.d.ts +67 -0
  137. package/dist/src/theme/provider.d.ts +4 -0
  138. package/dist/src/theme/types.d.ts +1 -0
  139. package/dist/src/utils/colorUtils.d.ts +5 -0
  140. package/dist/src/utils/interfaces.d.ts +5 -0
  141. package/dist/src/utils/utils.d.ts +42 -0
  142. package/dist/styles.css +1 -0
  143. package/package.json +132 -24
  144. package/CHANGELOG.md +0 -139
  145. package/dist/design-system-react-components.min.js +0 -23
  146. package/dist/design-system-react-components.min.js.map +0 -1
  147. package/lib/components/00-base/Container/Container.d.ts +0 -6
  148. package/lib/components/00-base/Container/Container.js +0 -19
  149. package/lib/components/00-base/Container/Modal.d.ts +0 -12
  150. package/lib/components/00-base/Container/Modal.js +0 -29
  151. package/lib/components/00-base/Container/Modal.stories.d.ts +0 -7
  152. package/lib/components/00-base/Container/Modal.stories.js +0 -20
  153. package/lib/components/00-base/Placeholder.d.ts +0 -10
  154. package/lib/components/00-base/Placeholder.js +0 -23
  155. package/lib/components/00-base/SectionName.d.ts +0 -4
  156. package/lib/components/00-base/SectionName.js +0 -16
  157. package/lib/components/01-atoms/Button/Button.d.ts +0 -52
  158. package/lib/components/01-atoms/Button/Button.js +0 -76
  159. package/lib/components/01-atoms/Button/Button.stories.d.ts +0 -14
  160. package/lib/components/01-atoms/Button/Button.stories.js +0 -33
  161. package/lib/components/01-atoms/Button/ButtonTypes.d.ts +0 -10
  162. package/lib/components/01-atoms/Button/ButtonTypes.js +0 -14
  163. package/lib/components/01-atoms/Forms/Checkbox.d.ts +0 -21
  164. package/lib/components/01-atoms/Forms/Checkbox.js +0 -27
  165. package/lib/components/01-atoms/Forms/Checkbox.stories.d.ts +0 -7
  166. package/lib/components/01-atoms/Forms/Checkbox.stories.js +0 -23
  167. package/lib/components/01-atoms/Forms/DateRangeForm.d.ts +0 -31
  168. package/lib/components/01-atoms/Forms/DateRangeForm.js +0 -27
  169. package/lib/components/01-atoms/Forms/DateRangeForm.stories.d.ts +0 -9
  170. package/lib/components/01-atoms/Forms/DateRangeForm.stories.js +0 -23
  171. package/lib/components/01-atoms/Forms/FormDropdown.d.ts +0 -22
  172. package/lib/components/01-atoms/Forms/FormDropdown.js +0 -64
  173. package/lib/components/01-atoms/Forms/FormDropdown.stories.d.ts +0 -8
  174. package/lib/components/01-atoms/Forms/FormDropdown.stories.js +0 -22
  175. package/lib/components/01-atoms/Forms/HelperErrorText.d.ts +0 -26
  176. package/lib/components/01-atoms/Forms/HelperErrorText.js +0 -29
  177. package/lib/components/01-atoms/Forms/HelperErrorText.stories.d.ts +0 -9
  178. package/lib/components/01-atoms/Forms/HelperErrorText.stories.js +0 -23
  179. package/lib/components/01-atoms/Forms/Input.d.ts +0 -47
  180. package/lib/components/01-atoms/Forms/Input.js +0 -39
  181. package/lib/components/01-atoms/Forms/Input.stories.d.ts +0 -10
  182. package/lib/components/01-atoms/Forms/Input.stories.js +0 -22
  183. package/lib/components/01-atoms/Forms/Label.d.ts +0 -19
  184. package/lib/components/01-atoms/Forms/Label.js +0 -22
  185. package/lib/components/01-atoms/Forms/Label.stories.d.ts +0 -7
  186. package/lib/components/01-atoms/Forms/Label.stories.js +0 -20
  187. package/lib/components/01-atoms/Forms/TextField.d.ts +0 -26
  188. package/lib/components/01-atoms/Forms/TextField.js +0 -36
  189. package/lib/components/01-atoms/Forms/TextField.stories.d.ts +0 -7
  190. package/lib/components/01-atoms/Forms/TextField.stories.js +0 -20
  191. package/lib/components/01-atoms/Images/Icons/Icon.d.ts +0 -14
  192. package/lib/components/01-atoms/Images/Icons/Icon.js +0 -38
  193. package/lib/components/01-atoms/Images/Image/Image.d.ts +0 -8
  194. package/lib/components/01-atoms/Images/Image/Image.js +0 -32
  195. package/lib/components/01-atoms/Images/Image/Image.stories.d.ts +0 -8
  196. package/lib/components/01-atoms/Images/Image/Image.stories.js +0 -24
  197. package/lib/components/01-atoms/Links/BasicLink.d.ts +0 -15
  198. package/lib/components/01-atoms/Links/BasicLink.js +0 -50
  199. package/lib/components/01-atoms/Links/BasicLink.stories.d.ts +0 -8
  200. package/lib/components/01-atoms/Links/BasicLink.stories.js +0 -21
  201. package/lib/components/01-atoms/Links/IconLink.d.ts +0 -13
  202. package/lib/components/01-atoms/Links/IconLink.js +0 -44
  203. package/lib/components/01-atoms/Links/IconLink.stories.d.ts +0 -10
  204. package/lib/components/01-atoms/Links/IconLink.stories.js +0 -24
  205. package/lib/components/01-atoms/Links/Link.d.ts +0 -13
  206. package/lib/components/01-atoms/Links/Link.js +0 -51
  207. package/lib/components/01-atoms/Links/UnderlineLink.d.ts +0 -11
  208. package/lib/components/01-atoms/Links/UnderlineLink.js +0 -29
  209. package/lib/components/01-atoms/Links/UnderlineLink.stories.d.ts +0 -8
  210. package/lib/components/01-atoms/Links/UnderlineLink.stories.js +0 -21
  211. package/lib/components/01-atoms/Text/Headings/Heading.d.ts +0 -16
  212. package/lib/components/01-atoms/Text/Headings/Heading.js +0 -40
  213. package/lib/components/01-atoms/Text/Headings/Heading.stories.d.ts +0 -12
  214. package/lib/components/01-atoms/Text/Headings/Heading.stories.js +0 -35
  215. package/lib/components/01-atoms/Text/Headings/RNSectionTitle.d.ts +0 -2
  216. package/lib/components/01-atoms/Text/Headings/RNSectionTitle.js +0 -18
  217. package/lib/components/01-atoms/Text/Headings/RNSectionTitle.stories.d.ts +0 -7
  218. package/lib/components/01-atoms/Text/Headings/RNSectionTitle.stories.js +0 -24
  219. package/lib/components/01-atoms/Text/Text/BodyText.d.ts +0 -12
  220. package/lib/components/01-atoms/Text/Text/BodyText.js +0 -73
  221. package/lib/components/01-atoms/Text/Text/BodyText.stories.d.ts +0 -14
  222. package/lib/components/01-atoms/Text/Text/BodyText.stories.js +0 -54
  223. package/lib/components/02-molecules/Cards/EditionCard.d.ts +0 -31
  224. package/lib/components/02-molecules/Cards/EditionCard.js +0 -51
  225. package/lib/components/02-molecules/Cards/EditionCard.stories.d.ts +0 -13
  226. package/lib/components/02-molecules/Cards/EditionCard.stories.js +0 -26
  227. package/lib/components/02-molecules/Cards/SearchResultItem.d.ts +0 -17
  228. package/lib/components/02-molecules/Cards/SearchResultItem.js +0 -40
  229. package/lib/components/02-molecules/Cards/SearchResultItem.stories.d.ts +0 -8
  230. package/lib/components/02-molecules/Cards/SearchResultItem.stories.js +0 -31
  231. package/lib/components/02-molecules/Dropdown/Dropdown.d.ts +0 -21
  232. package/lib/components/02-molecules/Dropdown/Dropdown.js +0 -55
  233. package/lib/components/02-molecules/Dropdown/Dropdown.stories.d.ts +0 -14
  234. package/lib/components/02-molecules/Dropdown/Dropdown.stories.js +0 -33
  235. package/lib/components/02-molecules/Headings/SectionTitle.d.ts +0 -17
  236. package/lib/components/02-molecules/Headings/SectionTitle.js +0 -42
  237. package/lib/components/02-molecules/Headings/SectionTitle.stories.d.ts +0 -8
  238. package/lib/components/02-molecules/Headings/SectionTitle.stories.js +0 -20
  239. package/lib/components/02-molecules/Menus/Breadcrumbs/Breadcrumbs.d.ts +0 -14
  240. package/lib/components/02-molecules/Menus/Breadcrumbs/Breadcrumbs.js +0 -51
  241. package/lib/components/02-molecules/Menus/Breadcrumbs/Breadcrumbs.stories.d.ts +0 -8
  242. package/lib/components/02-molecules/Menus/Breadcrumbs/Breadcrumbs.stories.js +0 -30
  243. package/lib/components/02-molecules/Menus/Pagination/Pagination.d.ts +0 -11
  244. package/lib/components/02-molecules/Menus/Pagination/Pagination.js +0 -57
  245. package/lib/components/02-molecules/Menus/Pagination/Pagination.stories.d.ts +0 -7
  246. package/lib/components/02-molecules/Menus/Pagination/Pagination.stories.js +0 -20
  247. package/lib/components/02-molecules/SearchBar/SearchBar.d.ts +0 -26
  248. package/lib/components/02-molecules/SearchBar/SearchBar.js +0 -69
  249. package/lib/components/02-molecules/SearchBar/SearchBar.stories.d.ts +0 -11
  250. package/lib/components/02-molecules/SearchBar/SearchBar.stories.js +0 -24
  251. package/lib/components/03-organisms/Accordion/Accordion.d.ts +0 -19
  252. package/lib/components/03-organisms/Accordion/Accordion.js +0 -41
  253. package/lib/components/03-organisms/Accordion/Accordion.stories.d.ts +0 -7
  254. package/lib/components/03-organisms/Accordion/Accordion.stories.js +0 -30
  255. package/lib/components/03-organisms/Headers/HeaderImgRight.d.ts +0 -12
  256. package/lib/components/03-organisms/Headers/HeaderImgRight.js +0 -32
  257. package/lib/components/03-organisms/Headers/HeaderImgRight.stories.d.ts +0 -7
  258. package/lib/components/03-organisms/Headers/HeaderImgRight.stories.js +0 -19
  259. package/lib/components/03-organisms/Headers/RNHeaderWithSearch.d.ts +0 -19
  260. package/lib/components/03-organisms/Headers/RNHeaderWithSearch.js +0 -27
  261. package/lib/components/03-organisms/Headers/RNHeaderWithSearch.stories.d.ts +0 -7
  262. package/lib/components/03-organisms/Headers/RNHeaderWithSearch.stories.js +0 -26
  263. package/lib/components/03-organisms/Hero/Hero.d.ts +0 -31
  264. package/lib/components/03-organisms/Hero/Hero.js +0 -62
  265. package/lib/components/03-organisms/Hero/Hero.stories.d.ts +0 -11
  266. package/lib/components/03-organisms/Hero/Hero.stories.js +0 -35
  267. package/lib/components/03-organisms/Hero/HeroTypes.d.ts +0 -6
  268. package/lib/components/03-organisms/Hero/HeroTypes.js +0 -9
  269. package/lib/components/03-organisms/List/UnorderedList.d.ts +0 -18
  270. package/lib/components/03-organisms/List/UnorderedList.js +0 -28
  271. package/lib/components/03-organisms/List/UnorderedList.stories.d.ts +0 -11
  272. package/lib/components/03-organisms/List/UnorderedList.stories.js +0 -73
  273. package/lib/components/03-organisms/SearchPromo/SearchPromo.d.ts +0 -22
  274. package/lib/components/03-organisms/SearchPromo/SearchPromo.js +0 -30
  275. package/lib/components/03-organisms/SearchPromo/SearchPromo.stories.d.ts +0 -8
  276. package/lib/components/03-organisms/SearchPromo/SearchPromo.stories.js +0 -28
  277. package/lib/helpers/hoc/WithOneChild.d.ts +0 -8
  278. package/lib/helpers/hoc/WithOneChild.js +0 -63
  279. package/lib/index.d.ts +0 -24
  280. package/lib/index.js +0 -51
  281. package/lib/utils/bem.d.ts +0 -1
  282. package/lib/utils/bem.js +0 -35
  283. package/tsd.d.ts +0 -4
  284. package/webpack.prod.js +0 -38
@@ -0,0 +1,639 @@
1
+ declare const Hero: {
2
+ baseStyle: {
3
+ bgColor: string;
4
+ _dark: {
5
+ bgColor: string;
6
+ };
7
+ };
8
+ variants: {
9
+ primary: {
10
+ alignItems: string;
11
+ backgroundSize: string;
12
+ backgroundPosition: string;
13
+ display: string;
14
+ flexFlow: {
15
+ base: string;
16
+ md: string;
17
+ };
18
+ justifyContent: string;
19
+ minHeight: string;
20
+ content: {
21
+ bg: string;
22
+ color: string;
23
+ flex: {
24
+ base: string;
25
+ md: string;
26
+ };
27
+ maxWidth: {
28
+ md: string;
29
+ };
30
+ paddingTop: string;
31
+ paddingBottom: string;
32
+ paddingEnd: string;
33
+ paddingStart: string;
34
+ a: {
35
+ color: string;
36
+ display: string;
37
+ };
38
+ bodyText: {
39
+ marginBottom: string;
40
+ };
41
+ _dark: {
42
+ bgColor: string;
43
+ color: string;
44
+ };
45
+ };
46
+ heading: {
47
+ color: string;
48
+ };
49
+ };
50
+ secondary: {
51
+ heading: {
52
+ color: string;
53
+ _before: {
54
+ bg: string;
55
+ content: string;
56
+ height: string;
57
+ left: string;
58
+ position: string;
59
+ width: string;
60
+ zIndex: string;
61
+ };
62
+ _dark: {
63
+ color: string;
64
+ _before: {
65
+ bg: string;
66
+ };
67
+ };
68
+ marginBottom: string;
69
+ flex: string;
70
+ marginTop: string;
71
+ paddingBottom: string;
72
+ position: string;
73
+ zIndex: string;
74
+ order: string;
75
+ };
76
+ overflowX: string;
77
+ content: {
78
+ paddingEnd: string;
79
+ paddingStart: string;
80
+ display: string;
81
+ flexFlow: {
82
+ base: string;
83
+ md: string;
84
+ };
85
+ marginY: string;
86
+ marginX: string;
87
+ maxWidth: string;
88
+ padding: string;
89
+ width: string;
90
+ };
91
+ imgWrapper: {
92
+ marginEnd: {
93
+ base: string;
94
+ md: string;
95
+ };
96
+ marginStart: {
97
+ base: string;
98
+ md: string;
99
+ };
100
+ flex: {
101
+ base: string;
102
+ md: string;
103
+ };
104
+ order: {
105
+ base: string;
106
+ md: string;
107
+ };
108
+ img: {
109
+ height: string;
110
+ minWidth: string;
111
+ objectFit: string;
112
+ width: string;
113
+ };
114
+ };
115
+ bodyText: {
116
+ paddingBottom: string;
117
+ paddingEnd: {
118
+ md: string;
119
+ };
120
+ paddingTop: string;
121
+ flex: {
122
+ md: string;
123
+ };
124
+ order: {
125
+ base: string;
126
+ md: string;
127
+ };
128
+ };
129
+ };
130
+ secondaryBooksAndMore: {
131
+ heading: {
132
+ color: string;
133
+ _before: {
134
+ bg: string;
135
+ content: string;
136
+ height: string;
137
+ left: string;
138
+ position: string;
139
+ width: string;
140
+ zIndex: string;
141
+ };
142
+ _dark: {
143
+ color: string;
144
+ _before: {
145
+ bg: string;
146
+ };
147
+ };
148
+ marginBottom: string;
149
+ flex: string;
150
+ marginTop: string;
151
+ paddingBottom: string;
152
+ position: string;
153
+ zIndex: string;
154
+ order: string;
155
+ };
156
+ overflowX: string;
157
+ content: {
158
+ paddingEnd: string;
159
+ paddingStart: string;
160
+ display: string;
161
+ flexFlow: {
162
+ base: string;
163
+ md: string;
164
+ };
165
+ marginY: string;
166
+ marginX: string;
167
+ maxWidth: string;
168
+ padding: string;
169
+ width: string;
170
+ };
171
+ imgWrapper: {
172
+ marginEnd: {
173
+ base: string;
174
+ md: string;
175
+ };
176
+ marginStart: {
177
+ base: string;
178
+ md: string;
179
+ };
180
+ flex: {
181
+ base: string;
182
+ md: string;
183
+ };
184
+ order: {
185
+ base: string;
186
+ md: string;
187
+ };
188
+ img: {
189
+ height: string;
190
+ minWidth: string;
191
+ objectFit: string;
192
+ width: string;
193
+ };
194
+ };
195
+ bodyText: {
196
+ paddingBottom: string;
197
+ paddingEnd: {
198
+ md: string;
199
+ };
200
+ paddingTop: string;
201
+ flex: {
202
+ md: string;
203
+ };
204
+ order: {
205
+ base: string;
206
+ md: string;
207
+ };
208
+ };
209
+ };
210
+ secondaryLocations: {
211
+ heading: {
212
+ color: string;
213
+ _before: {
214
+ bg: string;
215
+ content: string;
216
+ height: string;
217
+ left: string;
218
+ position: string;
219
+ width: string;
220
+ zIndex: string;
221
+ };
222
+ _dark: {
223
+ color: string;
224
+ _before: {
225
+ bg: string;
226
+ };
227
+ };
228
+ marginBottom: string;
229
+ flex: string;
230
+ marginTop: string;
231
+ paddingBottom: string;
232
+ position: string;
233
+ zIndex: string;
234
+ order: string;
235
+ };
236
+ overflowX: string;
237
+ content: {
238
+ paddingEnd: string;
239
+ paddingStart: string;
240
+ display: string;
241
+ flexFlow: {
242
+ base: string;
243
+ md: string;
244
+ };
245
+ marginY: string;
246
+ marginX: string;
247
+ maxWidth: string;
248
+ padding: string;
249
+ width: string;
250
+ };
251
+ imgWrapper: {
252
+ marginEnd: {
253
+ base: string;
254
+ md: string;
255
+ };
256
+ marginStart: {
257
+ base: string;
258
+ md: string;
259
+ };
260
+ flex: {
261
+ base: string;
262
+ md: string;
263
+ };
264
+ order: {
265
+ base: string;
266
+ md: string;
267
+ };
268
+ img: {
269
+ height: string;
270
+ minWidth: string;
271
+ objectFit: string;
272
+ width: string;
273
+ };
274
+ };
275
+ bodyText: {
276
+ paddingBottom: string;
277
+ paddingEnd: {
278
+ md: string;
279
+ };
280
+ paddingTop: string;
281
+ flex: {
282
+ md: string;
283
+ };
284
+ order: {
285
+ base: string;
286
+ md: string;
287
+ };
288
+ };
289
+ };
290
+ secondaryResearch: {
291
+ heading: {
292
+ color: string;
293
+ _before: {
294
+ bg: string;
295
+ content: string;
296
+ height: string;
297
+ left: string;
298
+ position: string;
299
+ width: string;
300
+ zIndex: string;
301
+ };
302
+ _dark: {
303
+ color: string;
304
+ _before: {
305
+ bg: string;
306
+ };
307
+ };
308
+ marginBottom: string;
309
+ flex: string;
310
+ marginTop: string;
311
+ paddingBottom: string;
312
+ position: string;
313
+ zIndex: string;
314
+ order: string;
315
+ };
316
+ overflowX: string;
317
+ content: {
318
+ paddingEnd: string;
319
+ paddingStart: string;
320
+ display: string;
321
+ flexFlow: {
322
+ base: string;
323
+ md: string;
324
+ };
325
+ marginY: string;
326
+ marginX: string;
327
+ maxWidth: string;
328
+ padding: string;
329
+ width: string;
330
+ };
331
+ imgWrapper: {
332
+ marginEnd: {
333
+ base: string;
334
+ md: string;
335
+ };
336
+ marginStart: {
337
+ base: string;
338
+ md: string;
339
+ };
340
+ flex: {
341
+ base: string;
342
+ md: string;
343
+ };
344
+ order: {
345
+ base: string;
346
+ md: string;
347
+ };
348
+ img: {
349
+ height: string;
350
+ minWidth: string;
351
+ objectFit: string;
352
+ width: string;
353
+ };
354
+ };
355
+ bodyText: {
356
+ paddingBottom: string;
357
+ paddingEnd: {
358
+ md: string;
359
+ };
360
+ paddingTop: string;
361
+ flex: {
362
+ md: string;
363
+ };
364
+ order: {
365
+ base: string;
366
+ md: string;
367
+ };
368
+ };
369
+ };
370
+ secondaryWhatsOn: {
371
+ heading: {
372
+ color: string;
373
+ _before: {
374
+ bg: string;
375
+ content: string;
376
+ height: string;
377
+ left: string;
378
+ position: string;
379
+ width: string;
380
+ zIndex: string;
381
+ };
382
+ _dark: {
383
+ color: string;
384
+ _before: {
385
+ bg: string;
386
+ };
387
+ };
388
+ marginBottom: string;
389
+ flex: string;
390
+ marginTop: string;
391
+ paddingBottom: string;
392
+ position: string;
393
+ zIndex: string;
394
+ order: string;
395
+ };
396
+ overflowX: string;
397
+ content: {
398
+ paddingEnd: string;
399
+ paddingStart: string;
400
+ display: string;
401
+ flexFlow: {
402
+ base: string;
403
+ md: string;
404
+ };
405
+ marginY: string;
406
+ marginX: string;
407
+ maxWidth: string;
408
+ padding: string;
409
+ width: string;
410
+ };
411
+ imgWrapper: {
412
+ marginEnd: {
413
+ base: string;
414
+ md: string;
415
+ };
416
+ marginStart: {
417
+ base: string;
418
+ md: string;
419
+ };
420
+ flex: {
421
+ base: string;
422
+ md: string;
423
+ };
424
+ order: {
425
+ base: string;
426
+ md: string;
427
+ };
428
+ img: {
429
+ height: string;
430
+ minWidth: string;
431
+ objectFit: string;
432
+ width: string;
433
+ };
434
+ };
435
+ bodyText: {
436
+ paddingBottom: string;
437
+ paddingEnd: {
438
+ md: string;
439
+ };
440
+ paddingTop: string;
441
+ flex: {
442
+ md: string;
443
+ };
444
+ order: {
445
+ base: string;
446
+ md: string;
447
+ };
448
+ };
449
+ };
450
+ tertiary: {
451
+ bg: string;
452
+ content: {
453
+ color: string;
454
+ display: string;
455
+ flexFlow: string;
456
+ px: string;
457
+ py: {
458
+ base: string;
459
+ xl: string;
460
+ };
461
+ p: {
462
+ marginBottom: string;
463
+ marginTop: {
464
+ base: string;
465
+ xl: string;
466
+ };
467
+ };
468
+ _dark: {
469
+ p: {
470
+ color: string;
471
+ };
472
+ };
473
+ marginY: string;
474
+ marginX: string;
475
+ maxWidth: string;
476
+ padding: string;
477
+ width: string;
478
+ };
479
+ heading: {
480
+ color: string;
481
+ marginBottom: string;
482
+ _lastChild: {
483
+ marginBottom: string;
484
+ };
485
+ };
486
+ p: {
487
+ marginBottom: string;
488
+ };
489
+ _dark: {
490
+ bg: string;
491
+ };
492
+ };
493
+ campaign: {
494
+ alignItems: string;
495
+ backgroundSize: string;
496
+ backgroundPosition: string;
497
+ display: string;
498
+ justifyContent: string;
499
+ marginBottom: string[];
500
+ minHeight: string;
501
+ overflow: string;
502
+ padding: {
503
+ base: string;
504
+ md: string;
505
+ };
506
+ position: string;
507
+ content: {
508
+ alignItems: string;
509
+ bg: string;
510
+ color: string;
511
+ display: string;
512
+ flexFlow: {
513
+ base: string;
514
+ lg: string;
515
+ };
516
+ minHeight: string;
517
+ flex: {
518
+ md: string;
519
+ };
520
+ maxWidth: {
521
+ md: string;
522
+ };
523
+ position: {
524
+ md: string;
525
+ };
526
+ top: {
527
+ md: string;
528
+ };
529
+ _dark: {
530
+ bg: string;
531
+ color: string;
532
+ };
533
+ };
534
+ heading: {
535
+ color: string;
536
+ };
537
+ a: {
538
+ color: string;
539
+ display: string;
540
+ };
541
+ img: {
542
+ clip: string;
543
+ height: {
544
+ base: string;
545
+ md: string;
546
+ };
547
+ overflow: string;
548
+ position: {
549
+ base: string;
550
+ md: string;
551
+ };
552
+ width: {
553
+ base: string;
554
+ md: string;
555
+ };
556
+ wordWrap: string;
557
+ };
558
+ imgWrapper: {
559
+ backgroundPosition: string;
560
+ backgroundSize: string;
561
+ minHeight: string;
562
+ width: {
563
+ base: string;
564
+ lg: string;
565
+ };
566
+ };
567
+ interior: {
568
+ alignSelf: string;
569
+ maxWidth: {
570
+ md: string;
571
+ };
572
+ padding: {
573
+ base: string;
574
+ md: string;
575
+ };
576
+ width: {
577
+ base: string;
578
+ lg: string;
579
+ };
580
+ };
581
+ };
582
+ fiftyFifty: {
583
+ content: {
584
+ alignItems: string;
585
+ display: string;
586
+ flexFlow: {
587
+ base: string;
588
+ lg: string;
589
+ };
590
+ marginY: string;
591
+ marginX: string;
592
+ maxWidth: string;
593
+ padding: string;
594
+ width: string;
595
+ };
596
+ imgWrapper: {
597
+ backgroundPosition: string;
598
+ backgroundSize: string;
599
+ minHeight: string;
600
+ width: {
601
+ base: string;
602
+ lg: string;
603
+ };
604
+ };
605
+ img: {
606
+ clip: string;
607
+ height: {
608
+ base: string;
609
+ md: string;
610
+ };
611
+ overflow: string;
612
+ position: {
613
+ base: string;
614
+ md: string;
615
+ };
616
+ width: {
617
+ base: string;
618
+ md: string;
619
+ };
620
+ wordWrap: string;
621
+ };
622
+ bodyText: {
623
+ alignSelf: string;
624
+ maxWidth: {
625
+ md: string;
626
+ };
627
+ padding: {
628
+ base: string;
629
+ md: string;
630
+ };
631
+ width: {
632
+ base: string;
633
+ lg: string;
634
+ };
635
+ };
636
+ };
637
+ };
638
+ };
639
+ export default Hero;
@@ -0,0 +1,18 @@
1
+ interface HorizontalRuleBaseStyle {
2
+ align: string;
3
+ }
4
+ declare const HorizontalRule: {
5
+ baseStyle: ({ align }: HorizontalRuleBaseStyle) => {
6
+ bg: string;
7
+ border: string;
8
+ height: string;
9
+ marginBottom: string;
10
+ marginTop: string;
11
+ marginStart: string | number;
12
+ marginEnd: string | number;
13
+ _dark: {
14
+ bg: string;
15
+ };
16
+ };
17
+ };
18
+ export default HorizontalRule;