@hellobetterdigitalnz/selwynui 0.0.1-8 → 0.0.1-80

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 (508) hide show
  1. package/package.json +10 -1
  2. package/src/Components/DataDisplay/Accordion/Accordion.stories.tsx +9 -17
  3. package/src/Components/DataDisplay/Accordion/Accordion.tsx +29 -26
  4. package/src/Components/DataDisplay/Accordion/AccordionItem.tsx +2 -2
  5. package/src/Components/DataDisplay/Accordion/AccordionProps.tsx +2 -1
  6. package/src/Components/DataDisplay/Accordion/accordion-bg-design.tsx +5 -5
  7. package/src/Components/DataDisplay/Accordion/accordion.module.scss +94 -42
  8. package/src/Components/DataDisplay/BrandBuilderTool/BrandBuilderTool.stories.tsx +53 -0
  9. package/src/Components/DataDisplay/BrandBuilderTool/BrandBuilderTool.tsx +23 -0
  10. package/src/Components/DataDisplay/BrandBuilderTool/BrandBuilderToolMain/BrandBuilderToolMain.tsx +13 -0
  11. package/src/Components/DataDisplay/BrandBuilderTool/BrandBuilderToolMain/BrandBuilderToolMainProps.tsx +7 -0
  12. package/src/Components/DataDisplay/BrandBuilderTool/BrandBuilderToolProps.tsx +9 -0
  13. package/src/Components/DataDisplay/BrandBuilderTool/BrandBuilderToolTemplate/BrandBuilderToolTemplateItem.tsx +15 -0
  14. package/src/Components/DataDisplay/BrandBuilderTool/BrandBuilderToolTemplate/BrandBuilderToolTemplateItemProps.tsx +10 -0
  15. package/src/Components/DataDisplay/BrandBuilderTool/BrandBuilderToolTemplate/BrandBuilderToolTemplateSelector.tsx +29 -0
  16. package/src/Components/DataDisplay/BrandBuilderTool/BrandBuilderToolTemplate/BrandBuilderToolTemplateSelectorProps.tsx +8 -0
  17. package/src/Components/DataDisplay/BrandBuilderTool/BrandBuilderToolUploader/BrandBuilderToolUploader.tsx +33 -0
  18. package/src/Components/DataDisplay/BrandBuilderTool/BrandBuilderToolUploader/BrandBuilderToolUploaderProps.tsx +8 -0
  19. package/src/Components/DataDisplay/BrandBuilderTool/BrandBuilderToolWrapper/BrandBuilderToolWrapper.tsx +17 -0
  20. package/src/Components/DataDisplay/BrandBuilderTool/BrandBuilderToolWrapper/BrandBuilderToolWrapperProps.tsx +8 -0
  21. package/src/Components/DataDisplay/BrandBuilderTool/BrandbuilderToolPreview/BrandBuilderToolPreview.tsx +25 -0
  22. package/src/Components/DataDisplay/BrandBuilderTool/BrandbuilderToolPreview/BrandBuilderToolPreviewProps.tsx +8 -0
  23. package/src/Components/DataDisplay/BrandBuilderTool/brandBuilder.module.scss +215 -0
  24. package/src/Components/DataDisplay/CallToActionBlock/CallToActionBlock.stories.tsx +92 -0
  25. package/src/Components/DataDisplay/CallToActionBlock/CallToActionBlock.tsx +80 -0
  26. package/src/Components/DataDisplay/CallToActionBlock/CallToActionBlockProps.tsx +18 -0
  27. package/src/Components/DataDisplay/CallToActionBlock/callToAction.module.scss +79 -0
  28. package/src/Components/DataDisplay/CallToActionBlock/callToAction.module.scss~ +78 -0
  29. package/src/Components/DataDisplay/CarouselBlock/CarouselBlock.stories.tsx +77 -0
  30. package/src/Components/DataDisplay/CarouselBlock/CarouselBlock.tsx +73 -0
  31. package/src/Components/DataDisplay/CarouselBlock/CarouselBlockProps.tsx +23 -0
  32. package/src/Components/DataDisplay/CarouselBlock/carouselBlock.module.scss +60 -0
  33. package/src/Components/DataDisplay/ChatItenaryBlock/ChatItenaryBlock.stories.tsx +128 -0
  34. package/src/Components/DataDisplay/ChatItenaryBlock/ChatItenaryBlock.tsx +257 -0
  35. package/src/Components/DataDisplay/ChatItenaryBlock/ChatItenaryBlockProps.tsx +44 -0
  36. package/src/Components/DataDisplay/ChatItenaryBlock/chatItenaryBlock.module.scss +777 -0
  37. package/src/Components/DataDisplay/ContactsBlock/ContactItem.tsx +47 -0
  38. package/src/Components/DataDisplay/ContactsBlock/ContactItemProps.tsx +10 -0
  39. package/src/Components/DataDisplay/ContactsBlock/ContactsBlock.stories.tsx +59 -0
  40. package/src/Components/DataDisplay/ContactsBlock/ContactsBlock.tsx +24 -0
  41. package/src/Components/DataDisplay/ContactsBlock/ContactsBlockProps.tsx +8 -0
  42. package/src/Components/DataDisplay/ContactsBlock/contactsBlock.module.scss +165 -0
  43. package/src/Components/DataDisplay/ContentBlock/ContentBlock.stories.tsx +107 -0
  44. package/src/Components/DataDisplay/ContentBlock/ContentBlock.tsx +36 -0
  45. package/src/Components/DataDisplay/ContentBlock/ContentBlockProps.tsx +11 -0
  46. package/src/Components/DataDisplay/ContentBlock/contentBlock.module.scss +76 -0
  47. package/src/Components/DataDisplay/DetailsCard/DetailsCard.tsx +8 -10
  48. package/src/Components/DataDisplay/DetailsCard/DetailsCardProps.tsx +0 -1
  49. package/src/Components/DataDisplay/DetailsCard/detailsCard.module.scss +3 -1
  50. package/src/Components/DataDisplay/ImageContent/ImageContent.stories.tsx +5 -11
  51. package/src/Components/DataDisplay/ImageContent/ImageContent.tsx +10 -9
  52. package/src/Components/DataDisplay/ImageContent/ImageContentProps.tsx +4 -0
  53. package/src/Components/DataDisplay/ImageContent/imageContent.module.scss +30 -14
  54. package/src/Components/DataDisplay/IntroBlock/IntroBlock.stories.tsx +1 -1
  55. package/src/Components/DataDisplay/IntroBlock/introBlock.module.scss +27 -3
  56. package/src/Components/DataDisplay/KPIBlock/KPIBlock.stories.tsx +3 -4
  57. package/src/Components/DataDisplay/KPIBlock/KPIBlock.tsx +14 -7
  58. package/src/Components/DataDisplay/KPIBlock/KPIBlockProps.tsx +6 -2
  59. package/src/Components/DataDisplay/KPIBlock/kpiBlock.module.scss +179 -16
  60. package/src/Components/DataDisplay/{Pathway/Pathway.stories.tsx → ListBlock/ListBlock.stories.tsx} +20 -18
  61. package/src/Components/DataDisplay/ListBlock/ListBlock.tsx +133 -0
  62. package/src/Components/DataDisplay/ListBlock/ListBlockProps.tsx +28 -0
  63. package/src/Components/DataDisplay/{Pathway/pathway.module.scss → ListBlock/listBlock.module.scss} +30 -6
  64. package/src/Components/DataDisplay/ListingDetailBlock/ListingDetailBlock.stories.tsx +93 -0
  65. package/src/Components/DataDisplay/ListingDetailBlock/ListingDetailBlock.tsx +74 -0
  66. package/src/Components/DataDisplay/ListingDetailBlock/ListingDetailBlockProps.tsx +23 -0
  67. package/src/Components/DataDisplay/ListingDetailBlock/listingDetailBlock.module.scss +265 -0
  68. package/src/Components/DataDisplay/Media/Media.stories.tsx +36 -0
  69. package/src/Components/DataDisplay/Media/Media.tsx +158 -0
  70. package/src/Components/DataDisplay/Media/MediaProps.tsx +8 -0
  71. package/src/Components/DataDisplay/Media/media.module.scss +16 -0
  72. package/src/Components/DataDisplay/Media/mediaVideo.scss +88 -0
  73. package/src/Components/DataDisplay/Modal/Modal.stories.tsx +89 -0
  74. package/src/Components/DataDisplay/Modal/Modal.tsx +16 -0
  75. package/src/Components/DataDisplay/Modal/ModalActions.tsx +14 -0
  76. package/src/Components/DataDisplay/Modal/ModalActionsLeft.tsx +13 -0
  77. package/src/Components/DataDisplay/Modal/ModalActionsLeftProps.tsx +8 -0
  78. package/src/Components/DataDisplay/Modal/ModalActionsProps.tsx +8 -0
  79. package/src/Components/DataDisplay/Modal/ModalActionsRight.tsx +14 -0
  80. package/src/Components/DataDisplay/Modal/ModalActionsRightProps.tsx +8 -0
  81. package/src/Components/DataDisplay/Modal/ModalBody.tsx +14 -0
  82. package/src/Components/DataDisplay/Modal/ModalBodyProps.tsx +8 -0
  83. package/src/Components/DataDisplay/Modal/ModalCurtain.tsx +6 -0
  84. package/src/Components/DataDisplay/Modal/ModalHeader.tsx +55 -0
  85. package/src/Components/DataDisplay/Modal/ModalHeaderProps.tsx +10 -0
  86. package/src/Components/DataDisplay/Modal/ModalProps.tsx +9 -0
  87. package/src/Components/DataDisplay/Modal/modal.module.scss +178 -0
  88. package/src/Components/DataDisplay/PathwayBlock/PathwayBlock.stories.tsx +27 -13
  89. package/src/Components/DataDisplay/PathwayBlock/PathwayBlock.tsx +8 -8
  90. package/src/Components/DataDisplay/PathwayBlock/PathwayBlockProps.tsx +10 -4
  91. package/src/Components/DataDisplay/PathwayBlock/pathwayBlock.module.scss +27 -23
  92. package/src/Components/DataDisplay/PromoBannerBlock/PromoBanner.stories.tsx +3 -4
  93. package/src/Components/DataDisplay/PromoBannerBlock/PromoBannerBlock.tsx +2 -6
  94. package/src/Components/DataDisplay/PromoBannerBlock/promoBanner.module.scss +12 -15
  95. package/src/Components/DataDisplay/TestimonyCard/TestimonyCard.stories.tsx +11 -5
  96. package/src/Components/DataDisplay/TestimonyCard/TestimonyCard.tsx +70 -54
  97. package/src/Components/DataDisplay/TestimonyCard/testimonyCard.module.scss +139 -70
  98. package/src/Components/DataDisplay/index.ts +87 -4
  99. package/src/Components/DataDisplay/slider.scss +43 -0
  100. package/src/Components/Form/Button/ButtonProps.tsx +1 -1
  101. package/src/Components/Form/Button/button.module.scss +2 -0
  102. package/src/Components/Form/Checkbox/Checkbox.stories.tsx +51 -0
  103. package/src/Components/Form/Checkbox/Checkbox.tsx +111 -0
  104. package/src/Components/Form/Checkbox/CheckboxProps.tsx +24 -0
  105. package/src/Components/Form/Checkbox/checkbox.module.scss +105 -0
  106. package/src/Components/Form/CheckboxSelect/CheckboxSelect.tsx +5 -0
  107. package/src/Components/Form/CheckboxSelect/CheckboxSelectItem.tsx +5 -0
  108. package/src/Components/Form/CheckboxSet/CheckboxSet.stories.tsx +100 -0
  109. package/src/Components/Form/CheckboxSet/CheckboxSet.tsx +14 -0
  110. package/src/Components/Form/CheckboxSet/CheckboxSetItem.tsx +109 -0
  111. package/src/Components/Form/CheckboxSet/CheckboxSetProps.tsx +9 -0
  112. package/src/Components/Form/CheckboxSet/checkboxSet.module.scss +19 -0
  113. package/src/Components/Form/CurrencyField/CurrencyField.stories.tsx +23 -0
  114. package/src/Components/Form/CurrencyField/CurrencyField.tsx +105 -0
  115. package/src/Components/Form/CurrencyField/CurrencyFieldProps.tsx +10 -0
  116. package/src/Components/Form/DateField/DateField.stories.tsx +22 -0
  117. package/src/Components/Form/DateField/DateField.tsx +61 -0
  118. package/src/Components/Form/DropdownBadge/DropdownBadge.stories.tsx +54 -0
  119. package/src/Components/Form/DropdownBadge/DropdownBadge.tsx +303 -0
  120. package/src/Components/Form/DropdownBadge/DropdownBadgeItem.tsx +54 -0
  121. package/src/Components/Form/DropdownBadge/DropdownBadgeItemProps.tsx +11 -0
  122. package/src/Components/Form/DropdownBadge/DropdownBadgeProps.tsx +34 -0
  123. package/src/Components/Form/DropdownBadge/DropdownBadgeSelector.tsx +17 -0
  124. package/src/Components/Form/DropdownBadge/DropdownBadgeSelectorProps.tsx +10 -0
  125. package/src/Components/Form/DropdownBadge/dropdownBadge.module.scss +195 -0
  126. package/src/Components/Form/DropdownField/CountryDropdownField/CountryDropdownField.stories.tsx +36 -0
  127. package/src/Components/Form/DropdownField/CountryDropdownField/CountryDropdownField.tsx +426 -0
  128. package/src/Components/Form/DropdownField/CountryDropdownField/CountryDropdownFieldProps.tsx +30 -0
  129. package/src/Components/Form/DropdownField/DropdownField.stories.tsx +55 -0
  130. package/src/Components/Form/DropdownField/DropdownField.tsx +245 -0
  131. package/src/Components/Form/DropdownField/DropdownFieldItem.tsx +33 -0
  132. package/src/Components/Form/DropdownField/DropdownFieldItemProps.tsx +10 -0
  133. package/src/Components/Form/DropdownField/DropdownFieldProps.tsx +39 -0
  134. package/src/Components/Form/DropdownField/DropdownFieldSelector.tsx +23 -0
  135. package/src/Components/Form/DropdownField/DropdownFieldSelectorProps.tsx +8 -0
  136. package/src/Components/Form/DropdownField/dropdown.module.scss +144 -0
  137. package/src/Components/Form/EmailField/EmailField.stories.ts +23 -0
  138. package/src/Components/Form/EmailField/EmailField.tsx +56 -0
  139. package/src/Components/Form/ErrorMessage/ErrorMessage.tsx +5 -0
  140. package/src/Components/Form/FormFieldHolder/FormFieldHolder.stories.tsx +31 -0
  141. package/src/Components/Form/FormFieldHolder/FormFieldHolder.tsx +57 -0
  142. package/src/Components/Form/FormFieldHolder/FormFieldHolderProps.tsx +16 -0
  143. package/src/Components/Form/FormFieldHolder/formHolder.module.scss +71 -0
  144. package/src/Components/Form/IconButton/IconButton.stories.tsx +45 -0
  145. package/src/Components/Form/IconButton/IconButton.tsx +65 -0
  146. package/src/Components/Form/IconButton/IconButtonProps.tsx +16 -0
  147. package/src/Components/Form/IconButton/iconButton.module.scss +157 -0
  148. package/src/Components/Form/InputProps.tsx +30 -0
  149. package/src/Components/Form/LandingPageForm/LandingPageForm.stories.tsx +110 -0
  150. package/src/Components/Form/LandingPageForm/LandingPageForm.tsx +24 -0
  151. package/src/Components/Form/LandingPageForm/LandingPageFormLeft.tsx +51 -0
  152. package/src/Components/Form/LandingPageForm/LandingPageFormLeftProps.tsx +13 -0
  153. package/src/Components/Form/LandingPageForm/LandingPageFormProps.tsx +9 -0
  154. package/src/Components/Form/LandingPageForm/LandingPageFormRight.tsx +49 -0
  155. package/src/Components/Form/LandingPageForm/LandingPageFormRightProps.tsx +14 -0
  156. package/src/Components/Form/LandingPageForm/landingPageForm.module.scss +190 -0
  157. package/src/Components/Form/LoadingInput/LoadingInput.tsx +12 -0
  158. package/src/Components/Form/LoadingInput/loadingInput.module.scss +15 -0
  159. package/src/Components/Form/MicroForm/MicroForm.stories.tsx +28 -0
  160. package/src/Components/Form/MicroForm/MicroForm.tsx +22 -0
  161. package/src/Components/Form/MicroForm/MicroFormProps.tsx +12 -0
  162. package/src/Components/Form/MicroForm/microForm.module.scss +64 -0
  163. package/src/Components/Form/MultiSelectField/MultiSelectField.stories.tsx +39 -0
  164. package/src/Components/Form/MultiSelectField/MultiSelectField.tsx +439 -0
  165. package/src/Components/Form/MultiSelectField/MultiSelectFieldItem.tsx +36 -0
  166. package/src/Components/Form/MultiSelectField/MultiSelectFieldItemProps.tsx +12 -0
  167. package/src/Components/Form/MultiSelectField/MultiSelectFieldProps.tsx +36 -0
  168. package/src/Components/Form/MultiSelectField/MultiSelectFieldTag.tsx +24 -0
  169. package/src/Components/Form/MultiSelectField/MultiSelectFieldTagProps.tsx +6 -0
  170. package/src/Components/Form/MultiSelectField/multiSelectField.module.scss +205 -0
  171. package/src/Components/Form/NumberField/NumberField.stories.ts +23 -0
  172. package/src/Components/Form/NumberField/NumberField.tsx +137 -0
  173. package/src/Components/Form/NumberField/NumberFieldProps.tsx +10 -0
  174. package/src/Components/Form/PasswordField/PasswordField.stories.tsx +22 -0
  175. package/src/Components/Form/PasswordField/PasswordField.tsx +73 -0
  176. package/src/Components/Form/PhoneField/PhoneField.stories.ts +21 -0
  177. package/src/Components/Form/PhoneField/PhoneField.tsx +55 -0
  178. package/src/Components/Form/RadioButtons/RadioButton.tsx +100 -0
  179. package/src/Components/Form/RadioButtons/RadioButtonProps.tsx +25 -0
  180. package/src/Components/Form/RadioButtons/RadioButtons.stories.tsx +92 -0
  181. package/src/Components/Form/RadioButtons/RadioButtons.tsx +18 -0
  182. package/src/Components/Form/RadioButtons/RadioButtonsProps.tsx +10 -0
  183. package/src/Components/Form/RadioButtons/radioButton.stories.scss +3 -0
  184. package/src/Components/Form/RadioButtons/radiobutton.module.scss +188 -0
  185. package/src/Components/Form/RichTextEditor/RichTextEditor.stories.ts +41 -0
  186. package/src/Components/Form/RichTextEditor/RichTextEditor.tsx +115 -0
  187. package/src/Components/Form/RichTextEditor/RichTextEditorProps.tsx +25 -0
  188. package/src/Components/Form/RichTextEditor/richTextEditor.module.scss +10 -0
  189. package/src/Components/Form/SimpleForm/SimpleForm.stories.tsx +55 -0
  190. package/src/Components/Form/SimpleForm/SimpleForm.tsx +63 -0
  191. package/src/Components/Form/SimpleForm/SimpleFormProps.tsx +13 -0
  192. package/src/Components/Form/SimpleForm/simple-form-bg-design.tsx +21 -0
  193. package/src/Components/Form/SimpleForm/simpleForm.module.scss +72 -0
  194. package/src/Components/Form/TextField/TextField.stories.ts +22 -0
  195. package/src/Components/Form/TextField/TextField.tsx +62 -0
  196. package/src/Components/Form/TextField/TextFieldProps.tsx +8 -0
  197. package/src/Components/Form/Textarea/Textarea.stories.ts +31 -0
  198. package/src/Components/Form/Textarea/Textarea.tsx +74 -0
  199. package/src/Components/Form/Textarea/TextareaProps.tsx +28 -0
  200. package/src/Components/Form/Textarea/textarea.module.scss +48 -0
  201. package/src/Components/Form/TimeField/TimeField.stories.tsx +22 -0
  202. package/src/Components/Form/TimeField/TimeField.tsx +58 -0
  203. package/src/Components/Form/ToggleSwitch/ToggleSwitch.stories.tsx +50 -0
  204. package/src/Components/Form/ToggleSwitch/ToggleSwitch.tsx +87 -0
  205. package/src/Components/Form/ToggleSwitch/ToggleSwitchProps.tsx +22 -0
  206. package/src/Components/Form/ToggleSwitch/toggleSwitch.module.scss +84 -0
  207. package/src/Components/Form/TypableDropdownField/TypableDropdownField.stories.tsx +55 -0
  208. package/src/Components/Form/TypableDropdownField/TypableDropdownField.tsx +313 -0
  209. package/src/Components/Form/TypableDropdownField/TypableDropdownFieldItem.tsx +27 -0
  210. package/src/Components/Form/TypableDropdownField/TypableDropdownFieldItemProps.tsx +9 -0
  211. package/src/Components/Form/TypableDropdownField/TypableDropdownFieldProps.tsx +38 -0
  212. package/src/Components/Form/TypableDropdownField/TypableDropdownFieldSelector.tsx +16 -0
  213. package/src/Components/Form/TypableDropdownField/TypableDropdownFieldSelectorProps.tsx +8 -0
  214. package/src/Components/Form/TypableDropdownField/typableDropdown.module.scss +185 -0
  215. package/src/Components/Form/UnitInput/UnitField.stories.ts +22 -0
  216. package/src/Components/Form/UnitInput/UnitField.tsx +129 -0
  217. package/src/Components/Form/UnitInput/UnitFieldProps.tsx +9 -0
  218. package/src/Components/Form/index.ts +42 -1
  219. package/src/Components/Form/inputs.module.scss +172 -0
  220. package/src/Components/Icons/Communication/PaperPlaneTilt/PaperPlaneTilt.tsx +37 -0
  221. package/src/Components/Icons/OfficeAndEditing/Paperclip/Paperclip.tsx +37 -0
  222. package/src/Components/Icons/SystemAndDevice/CheckCircle/CheckCircle.tsx +35 -0
  223. package/src/Components/Icons/index.ts +5 -1
  224. package/src/Components/Layout/Footer/Footer.stories.tsx +5 -7
  225. package/src/Components/Layout/Footer/Footer.tsx +1 -2
  226. package/src/Components/Layout/Footer/FooterBottom.tsx +83 -10
  227. package/src/Components/Layout/Footer/FooterBottomLeft.tsx +36 -1
  228. package/src/Components/Layout/Footer/FooterBottomLeftProps.tsx +4 -0
  229. package/src/Components/Layout/Footer/FooterBottomProps.tsx +13 -0
  230. package/src/Components/Layout/Footer/FooterMiddle.tsx +0 -4
  231. package/src/Components/Layout/Footer/FooterProps.tsx +1 -1
  232. package/src/Components/Layout/Footer/FooterTop.tsx +2 -2
  233. package/src/Components/Layout/Footer/footer.module.scss +211 -123
  234. package/src/Components/Layout/Header/Header.stories.tsx +8 -6
  235. package/src/Components/Layout/Header/Header.tsx +3 -3
  236. package/src/Components/Layout/Header/HeaderProps.tsx +1 -0
  237. package/src/Components/Layout/Header/MegaMenu/MegaMenu.tsx +156 -83
  238. package/src/Components/Layout/Header/MegaMenu/MegaMenuProps.tsx +22 -9
  239. package/src/Components/Layout/Header/MegaMenu/megaMenu.module.scss +4 -2
  240. package/src/Components/Layout/Header/MobileNavigation/MobileNavigation.tsx +4 -3
  241. package/src/Components/Layout/Header/MobileNavigation/MobileNavigationItem.tsx +7 -3
  242. package/src/Components/Layout/Header/MobileNavigation/MobileNavigationItemProps.tsx +3 -0
  243. package/src/Components/Layout/Header/MobileNavigation/MobileNavigationProps.tsx +1 -0
  244. package/src/Components/Layout/Header/MobileNavigation/MobileSubNavigation/MobileSubNavigation.tsx +10 -5
  245. package/src/Components/Layout/Header/MobileNavigation/MobileSubNavigation/MobileSubNavigationItem.tsx +8 -9
  246. package/src/Components/Layout/Header/MobileNavigation/MobileSubNavigation/MobileSubNavigationItemProps.tsx +2 -2
  247. package/src/Components/Layout/Header/MobileNavigation/MobileSubNavigation/MobileSubNavigationProps.tsx +1 -0
  248. package/src/Components/Layout/Header/MobileNavigation/mobileNavigation.module.scss +14 -1
  249. package/src/Components/Layout/Header/header.module.scss +17 -19
  250. package/src/Components/Layout/Header/header.scss +8 -0
  251. package/src/Components/Layout/HeroBanner/HeroBanner.tsx +6 -6
  252. package/src/Components/Layout/HeroBanner/heroBanner.module.scss +42 -6
  253. package/src/Components/Layout/index.ts +11 -2
  254. package/src/Components/SelwynUIProvider/SelwynUIContext.tsx +16 -0
  255. package/src/Components/SelwynUIProvider/SelwynUIProvider.tsx +46 -0
  256. package/src/Components/SelwynUIProvider/index.ts +2 -0
  257. package/src/Components/Shared/Container/Container.tsx +19 -9
  258. package/src/Components/Shared/Container/ContainerProps.tsx +7 -2
  259. package/src/Components/Shared/Container/container.module.scss +59 -7
  260. package/src/Components/Shared/ElementHolder/ElementHolderProps.tsx +1 -1
  261. package/src/Components/Shared/ElementHolder/elementHolder.module.scss +10 -5
  262. package/src/Components/Shared/PillarIcon/PillarIcon.tsx +14 -5
  263. package/src/Components/Shared/PillarLogo/PillarLogo.tsx +2 -2
  264. package/src/Components/index.ts +1 -0
  265. package/dist/App.d.ts +0 -2
  266. package/dist/Components/DataDisplay/DetailsCard/DetailsCard.d.ts +0 -3
  267. package/dist/Components/DataDisplay/DetailsCard/DetailsCardProps.d.ts +0 -10
  268. package/dist/Components/DataDisplay/ImageContent/ImageContent.d.ts +0 -3
  269. package/dist/Components/DataDisplay/ImageContent/ImageContentMaskingImages.d.ts +0 -2
  270. package/dist/Components/DataDisplay/ImageContent/ImageContentProps.d.ts +0 -27
  271. package/dist/Components/DataDisplay/IntroBlock/IntroBlock.d.ts +0 -3
  272. package/dist/Components/DataDisplay/IntroBlock/IntroBlockProps.d.ts +0 -8
  273. package/dist/Components/DataDisplay/KPIBlock/KPIBlock.d.ts +0 -3
  274. package/dist/Components/DataDisplay/KPIBlock/KPIBlockProps.d.ts +0 -11
  275. package/dist/Components/DataDisplay/Pathway/Pathway.d.ts +0 -3
  276. package/dist/Components/DataDisplay/Pathway/PathwayProps.d.ts +0 -15
  277. package/dist/Components/DataDisplay/PromoBannerBlock/PromoBannerBlock.d.ts +0 -3
  278. package/dist/Components/DataDisplay/PromoBannerBlock/PromoBannerBlockProps.d.ts +0 -14
  279. package/dist/Components/DataDisplay/PromoBannerBlock/promo-banner-bg-design.d.ts +0 -2
  280. package/dist/Components/DataDisplay/index.d.ts +0 -10
  281. package/dist/Components/Form/Button/Button.d.ts +0 -3
  282. package/dist/Components/Form/Button/ButtonProps.d.ts +0 -14
  283. package/dist/Components/Form/index.d.ts +0 -2
  284. package/dist/Components/Icons/Arrows/ArrowLeft/ArrowLeft.d.ts +0 -3
  285. package/dist/Components/Icons/Arrows/ArrowRight/ArrowRight.d.ts +0 -3
  286. package/dist/Components/Icons/Arrows/ArrowSquareOut/ArrowSquareOut.d.ts +0 -3
  287. package/dist/Components/Icons/Arrows/ArrowsDownUp/ArrowsDownUp.d.ts +0 -3
  288. package/dist/Components/Icons/Arrows/ArrowsOutCardinal/ArrowsOutCardinal.d.ts +0 -3
  289. package/dist/Components/Icons/Arrows/CaretCircleRight/CaretCircleRight.d.ts +0 -3
  290. package/dist/Components/Icons/Arrows/CaretDown/CaretDown.d.ts +0 -3
  291. package/dist/Components/Icons/Arrows/CaretLeft/CaretLeft.d.ts +0 -3
  292. package/dist/Components/Icons/Arrows/CaretRight/CaretRight.d.ts +0 -3
  293. package/dist/Components/Icons/Arrows/CaretUp/CaretUp.d.ts +0 -3
  294. package/dist/Components/Icons/Arrows/CaretUpDown/CaretUpDown.d.ts +0 -3
  295. package/dist/Components/Icons/Brands/FacebookLogo/FacebookLogo.d.ts +0 -3
  296. package/dist/Components/Icons/Brands/InstagramLogo/InstagramLogo.d.ts +0 -3
  297. package/dist/Components/Icons/Brands/LinkedinLogo/LinkedinLogo.d.ts +0 -3
  298. package/dist/Components/Icons/Brands/WindowsLogo/WindowsLogo.d.ts +0 -3
  299. package/dist/Components/Icons/Commerce/Backpack/Backpack.d.ts +0 -3
  300. package/dist/Components/Icons/Commerce/BowlSteam/BowlSteam.d.ts +0 -3
  301. package/dist/Components/Icons/Commerce/Bread/Bread.d.ts +0 -3
  302. package/dist/Components/Icons/Commerce/Cheers/Cheers.d.ts +0 -3
  303. package/dist/Components/Icons/Commerce/ChefHat/ChefHat.d.ts +0 -3
  304. package/dist/Components/Icons/Commerce/Coffee/Coffee.d.ts +0 -3
  305. package/dist/Components/Icons/Commerce/CreditCard/CreditCard.d.ts +0 -3
  306. package/dist/Components/Icons/Commerce/CurrencyDollarSimple/CurrencyDollarSimple.d.ts +0 -3
  307. package/dist/Components/Icons/Commerce/Grains/Grains.d.ts +0 -3
  308. package/dist/Components/Icons/Commerce/Scale/Scale.d.ts +0 -3
  309. package/dist/Components/Icons/Commerce/StoreFront/StoreFront.d.ts +0 -3
  310. package/dist/Components/Icons/Communication/AddressBook/AddressBook.d.ts +0 -3
  311. package/dist/Components/Icons/Communication/AddressBook/AddressBook.stories.d.ts +0 -21
  312. package/dist/Components/Icons/Communication/AsterickSimple/AsteriskSimple.d.ts +0 -3
  313. package/dist/Components/Icons/Communication/AsterickSimple/AsteriskSimple.stories.d.ts +0 -21
  314. package/dist/Components/Icons/Communication/Asterisk/Asterisk.d.ts +0 -3
  315. package/dist/Components/Icons/Communication/Asterisk/Asterisk.stories.d.ts +0 -21
  316. package/dist/Components/Icons/Communication/At/At.d.ts +0 -3
  317. package/dist/Components/Icons/Communication/At/At.stories.d.ts +0 -21
  318. package/dist/Components/Icons/Communication/Broadcast/Broadcast.d.ts +0 -3
  319. package/dist/Components/Icons/Communication/Broadcast/Broadcast.stories.d.ts +0 -21
  320. package/dist/Components/Icons/Communication/Chat/Chat.d.ts +0 -3
  321. package/dist/Components/Icons/Communication/Chat/Chat.stories.d.ts +0 -21
  322. package/dist/Components/Icons/Communication/ChatCircleText/ChatCircleText.d.ts +0 -3
  323. package/dist/Components/Icons/Communication/EnvelopeSimple/EnvelopeSimple.d.ts +0 -3
  324. package/dist/Components/Icons/Communication/Export/Export.d.ts +0 -3
  325. package/dist/Components/Icons/Communication/Phone/Phone.d.ts +0 -3
  326. package/dist/Components/Icons/Communication/ThumbsUp/ThumbsUp.d.ts +0 -3
  327. package/dist/Components/Icons/Communication/Translate/Translate.d.ts +0 -3
  328. package/dist/Components/Icons/Design/DropHalfBottom/DropHalfBottom.d.ts +0 -3
  329. package/dist/Components/Icons/Design/Eye/Eye.d.ts +0 -3
  330. package/dist/Components/Icons/Design/EyeSlash/EyeSlash.d.ts +0 -3
  331. package/dist/Components/Icons/Design/GearFine/GearFine.d.ts +0 -3
  332. package/dist/Components/Icons/Design/PencilLine/PencilLine.d.ts +0 -3
  333. package/dist/Components/Icons/Design/PencilSimple/PencilSimple.d.ts +0 -3
  334. package/dist/Components/Icons/Design/Ruler/Ruler.d.ts +0 -3
  335. package/dist/Components/Icons/Design/SquaresFour/SquaresFour.d.ts +0 -3
  336. package/dist/Components/Icons/Education/BookOpenText/BookOpenText.d.ts +0 -3
  337. package/dist/Components/Icons/Education/BookmarkSimple/BookmarkSimple.d.ts +0 -3
  338. package/dist/Components/Icons/Education/Certificate/Certificate.d.ts +0 -3
  339. package/dist/Components/Icons/Education/GraduationCap/GraduationCap.d.ts +0 -3
  340. package/dist/Components/Icons/Games/Cricket/Cricket.d.ts +0 -3
  341. package/dist/Components/Icons/Games/Football/Football.d.ts +0 -3
  342. package/dist/Components/Icons/Games/Golf/Golf.d.ts +0 -3
  343. package/dist/Components/Icons/HealthAndWellness/Barbell/Barbell.d.ts +0 -3
  344. package/dist/Components/Icons/IconProps.d.ts +0 -4
  345. package/dist/Components/Icons/MapAndTravel/Barn/Barn.d.ts +0 -3
  346. package/dist/Components/Icons/MapAndTravel/Bicycle/Bicycle.d.ts +0 -3
  347. package/dist/Components/Icons/MapAndTravel/Bus/Bus.d.ts +0 -3
  348. package/dist/Components/Icons/MapAndTravel/Car/Car.d.ts +0 -3
  349. package/dist/Components/Icons/MapAndTravel/ChargingStation/ChargingStation.d.ts +0 -3
  350. package/dist/Components/Icons/MapAndTravel/Farm/Farm.d.ts +0 -3
  351. package/dist/Components/Icons/MapAndTravel/Globe/Globe.d.ts +0 -3
  352. package/dist/Components/Icons/MapAndTravel/Goggles/Goggles.d.ts +0 -3
  353. package/dist/Components/Icons/MapAndTravel/House/House.d.ts +0 -3
  354. package/dist/Components/Icons/MapAndTravel/HouseSimple/HouseSimple.d.ts +0 -3
  355. package/dist/Components/Icons/MapAndTravel/MapPin/MapPin.d.ts +0 -3
  356. package/dist/Components/Icons/MapAndTravel/MapTriFold/MapTriFold.d.ts +0 -3
  357. package/dist/Components/Icons/MapAndTravel/Path/Path.d.ts +0 -3
  358. package/dist/Components/Icons/MapAndTravel/RoadHorizon/RoadHorizon.d.ts +0 -3
  359. package/dist/Components/Icons/MapAndTravel/SteeringWheel/SteeringWheel.d.ts +0 -3
  360. package/dist/Components/Icons/MapAndTravel/SwimmingPool/SwimmingPool.d.ts +0 -3
  361. package/dist/Components/Icons/MapAndTravel/Tram/Tram.d.ts +0 -3
  362. package/dist/Components/Icons/MapAndTravel/Van/Van.d.ts +0 -3
  363. package/dist/Components/Icons/MathsAndFinance/Calculator/Calculator.d.ts +0 -3
  364. package/dist/Components/Icons/MathsAndFinance/ChartBar/ChartBar.d.ts +0 -3
  365. package/dist/Components/Icons/MathsAndFinance/ChartBarHorizontal/ChartBarHorizontal.d.ts +0 -3
  366. package/dist/Components/Icons/MathsAndFinance/ChartLine/ChartLine.d.ts +0 -3
  367. package/dist/Components/Icons/MathsAndFinance/ChartLineUp/ChartLineUp.d.ts +0 -3
  368. package/dist/Components/Icons/MathsAndFinance/ChartPie/ChartPie.d.ts +0 -3
  369. package/dist/Components/Icons/MathsAndFinance/Minus/Minus.d.ts +0 -3
  370. package/dist/Components/Icons/MathsAndFinance/MinusCircle/MinusCircle.d.ts +0 -3
  371. package/dist/Components/Icons/MathsAndFinance/NumberSquareThree/NumberSquareThree.d.ts +0 -3
  372. package/dist/Components/Icons/MathsAndFinance/Plus/Plus.d.ts +0 -3
  373. package/dist/Components/Icons/MathsAndFinance/PlusCircle/PlusCircle.d.ts +0 -3
  374. package/dist/Components/Icons/MathsAndFinance/XIcon/XIcon.d.ts +0 -3
  375. package/dist/Components/Icons/Media/Camera/Camera.d.ts +0 -3
  376. package/dist/Components/Icons/Media/DiscoBall/DiscoBall.d.ts +0 -3
  377. package/dist/Components/Icons/Media/FilmStrip/FilmStrip.d.ts +0 -3
  378. package/dist/Components/Icons/Media/Microphone/Microphone.d.ts +0 -3
  379. package/dist/Components/Icons/Media/MusicNotes/MusicNotes.d.ts +0 -3
  380. package/dist/Components/Icons/Media/PlayCircle/PlayCircle.d.ts +0 -3
  381. package/dist/Components/Icons/Media/SlidersHorizontal/SlidersHorizontal.d.ts +0 -3
  382. package/dist/Components/Icons/Media/StopCircle/StopCircle.d.ts +0 -3
  383. package/dist/Components/Icons/Media/VideoCamera/VideoCamera.d.ts +0 -3
  384. package/dist/Components/Icons/OfficeAndEditing/BuildinfOffice/BuildingOffice.d.ts +0 -3
  385. package/dist/Components/Icons/OfficeAndEditing/Copy/Copy.d.ts +0 -3
  386. package/dist/Components/Icons/OfficeAndEditing/FileText/FileText.d.ts +0 -3
  387. package/dist/Components/Icons/OfficeAndEditing/Files/Files.d.ts +0 -3
  388. package/dist/Components/Icons/OfficeAndEditing/FloppyDisk/FloppyDisk.d.ts +0 -3
  389. package/dist/Components/Icons/OfficeAndEditing/Folder/Folder.d.ts +0 -3
  390. package/dist/Components/Icons/OfficeAndEditing/FolderSimplePlus/FolderSimplePlus.d.ts +0 -3
  391. package/dist/Components/Icons/OfficeAndEditing/Folders/Folders.d.ts +0 -3
  392. package/dist/Components/Icons/OfficeAndEditing/List/List.d.ts +0 -3
  393. package/dist/Components/Icons/OfficeAndEditing/ListBullets/ListBullets.d.ts +0 -3
  394. package/dist/Components/Icons/OfficeAndEditing/ListDashes/ListDashes.d.ts +0 -3
  395. package/dist/Components/Icons/OfficeAndEditing/Printer/Printer.d.ts +0 -3
  396. package/dist/Components/Icons/OfficeAndEditing/TextAa/TextAa.d.ts +0 -3
  397. package/dist/Components/Icons/OfficeAndEditing/TextColumns/TextColumns.d.ts +0 -3
  398. package/dist/Components/Icons/OfficeAndEditing/Trash/Trash.d.ts +0 -3
  399. package/dist/Components/Icons/OfficeAndEditing/TrashSimple/TrashSimple.d.ts +0 -3
  400. package/dist/Components/Icons/People/Person/Person.d.ts +0 -3
  401. package/dist/Components/Icons/People/PersonArmsSpread/PersonArmsSpread.d.ts +0 -3
  402. package/dist/Components/Icons/People/PersonSimpleBike/PersonSimpleBike.d.ts +0 -3
  403. package/dist/Components/Icons/People/PersonSimpleSki/PersonSimpleSki.d.ts +0 -3
  404. package/dist/Components/Icons/People/PersonSimpleWalk/PersonSimpleWalk.d.ts +0 -3
  405. package/dist/Components/Icons/People/User/User.d.ts +0 -3
  406. package/dist/Components/Icons/People/UserCircle/UserCircle.d.ts +0 -3
  407. package/dist/Components/Icons/People/UserSwitch/UserSwitch.d.ts +0 -3
  408. package/dist/Components/Icons/People/Users/Users.d.ts +0 -3
  409. package/dist/Components/Icons/SecurityAndWarnings/Info/Info.d.ts +0 -3
  410. package/dist/Components/Icons/SecurityAndWarnings/Key/Key.d.ts +0 -3
  411. package/dist/Components/Icons/SecurityAndWarnings/LockKeyOpen/LockKeyOpen.d.ts +0 -3
  412. package/dist/Components/Icons/SecurityAndWarnings/LockSimple/LockSimple.d.ts +0 -3
  413. package/dist/Components/Icons/SecurityAndWarnings/Question/Question.d.ts +0 -3
  414. package/dist/Components/Icons/SecurityAndWarnings/ShieldCheck/ShieldCheck.d.ts +0 -3
  415. package/dist/Components/Icons/SecurityAndWarnings/WarningCircle/WarningCircle.d.ts +0 -3
  416. package/dist/Components/Icons/SystemAndDevice/Bell/Bell.d.ts +0 -3
  417. package/dist/Components/Icons/SystemAndDevice/Check/Check.d.ts +0 -3
  418. package/dist/Components/Icons/SystemAndDevice/CheckSquare/CheckSquare.d.ts +0 -3
  419. package/dist/Components/Icons/SystemAndDevice/CloudCheck/CloudCheck.d.ts +0 -3
  420. package/dist/Components/Icons/SystemAndDevice/Desktop/Desktop.d.ts +0 -3
  421. package/dist/Components/Icons/SystemAndDevice/DeviceMobile/DeviceMobile.d.ts +0 -3
  422. package/dist/Components/Icons/SystemAndDevice/DotSixVertical/DotSixVertical.d.ts +0 -3
  423. package/dist/Components/Icons/SystemAndDevice/DotsSix/DotsSix.d.ts +0 -3
  424. package/dist/Components/Icons/SystemAndDevice/DotsThree/DotsThree.d.ts +0 -3
  425. package/dist/Components/Icons/SystemAndDevice/DotsThreeVertical/DotsThreeVertical.d.ts +0 -3
  426. package/dist/Components/Icons/SystemAndDevice/DownloadSimple/DownloadSimple.d.ts +0 -3
  427. package/dist/Components/Icons/SystemAndDevice/Gear/Gear.d.ts +0 -3
  428. package/dist/Components/Icons/SystemAndDevice/Link/Link.d.ts +0 -3
  429. package/dist/Components/Icons/SystemAndDevice/MagnifyingGlass/MagnifyingGlass.d.ts +0 -3
  430. package/dist/Components/Icons/SystemAndDevice/RadioButtonIcon/RadioButtonIcon.d.ts +0 -3
  431. package/dist/Components/Icons/SystemAndDevice/SignIn/SignIn.d.ts +0 -3
  432. package/dist/Components/Icons/SystemAndDevice/SignOut/SignOut.d.ts +0 -3
  433. package/dist/Components/Icons/SystemAndDevice/ToggleLeft/ToggleLeft.d.ts +0 -3
  434. package/dist/Components/Icons/SystemAndDevice/ToggleRight/ToggleRight.d.ts +0 -3
  435. package/dist/Components/Icons/Time/Calendar/Calendar.d.ts +0 -3
  436. package/dist/Components/Icons/Time/CalendarBank/CalendarBank.d.ts +0 -3
  437. package/dist/Components/Icons/Time/CalendarCheck/CalendarCheck.d.ts +0 -3
  438. package/dist/Components/Icons/Time/CalendarDots/CalendarDots.d.ts +0 -3
  439. package/dist/Components/Icons/Time/Clock/Clock.d.ts +0 -3
  440. package/dist/Components/Icons/Time/ClockCounterClockwise/ClockCounterClockwise.d.ts +0 -3
  441. package/dist/Components/Icons/WeatherAndNature/Bird/Bird.d.ts +0 -3
  442. package/dist/Components/Icons/WeatherAndNature/Campfire/Campfire.d.ts +0 -3
  443. package/dist/Components/Icons/WeatherAndNature/CloudSun/CloudSun.d.ts +0 -3
  444. package/dist/Components/Icons/WeatherAndNature/Cow/Cow.d.ts +0 -3
  445. package/dist/Components/Icons/WeatherAndNature/Dog/Dog.d.ts +0 -3
  446. package/dist/Components/Icons/WeatherAndNature/FishSimple/FishSimple.d.ts +0 -3
  447. package/dist/Components/Icons/WeatherAndNature/Flower/Flower.d.ts +0 -3
  448. package/dist/Components/Icons/WeatherAndNature/Moon/Moon.d.ts +0 -3
  449. package/dist/Components/Icons/WeatherAndNature/Mountains/Mountains.d.ts +0 -3
  450. package/dist/Components/Icons/WeatherAndNature/Plant/Plant.d.ts +0 -3
  451. package/dist/Components/Icons/WeatherAndNature/Snowflake/Snowflake.d.ts +0 -3
  452. package/dist/Components/Icons/WeatherAndNature/Sparkle/Sparkle.d.ts +0 -3
  453. package/dist/Components/Icons/WeatherAndNature/Sun/Sun.d.ts +0 -3
  454. package/dist/Components/Icons/WeatherAndNature/Tree/Tree.d.ts +0 -3
  455. package/dist/Components/Icons/index.d.ts +0 -123
  456. package/dist/Components/Layout/Footer/Footer.d.ts +0 -3
  457. package/dist/Components/Layout/Footer/FooterBottom.d.ts +0 -3
  458. package/dist/Components/Layout/Footer/FooterBottomLeft.d.ts +0 -3
  459. package/dist/Components/Layout/Footer/FooterBottomLeftProps.d.ts +0 -11
  460. package/dist/Components/Layout/Footer/FooterBottomProps.d.ts +0 -5
  461. package/dist/Components/Layout/Footer/FooterBottomRight.d.ts +0 -3
  462. package/dist/Components/Layout/Footer/FooterBottomRightProps.d.ts +0 -6
  463. package/dist/Components/Layout/Footer/FooterItem.d.ts +0 -3
  464. package/dist/Components/Layout/Footer/FooterItemProps.d.ts +0 -6
  465. package/dist/Components/Layout/Footer/FooterMiddle.d.ts +0 -3
  466. package/dist/Components/Layout/Footer/FooterMiddleProps.d.ts +0 -6
  467. package/dist/Components/Layout/Footer/FooterProps.d.ts +0 -9
  468. package/dist/Components/Layout/Footer/FooterTop.d.ts +0 -3
  469. package/dist/Components/Layout/Footer/FooterTopProps.d.ts +0 -7
  470. package/dist/Components/Layout/Footer/footer-bg-design.d.ts +0 -2
  471. package/dist/Components/Layout/Header/Header.d.ts +0 -3
  472. package/dist/Components/Layout/Header/HeaderProps.d.ts +0 -7
  473. package/dist/Components/Layout/Header/HeaderRight.d.ts +0 -3
  474. package/dist/Components/Layout/Header/HeaderRightItem.d.ts +0 -3
  475. package/dist/Components/Layout/Header/HeaderRightItemProps.d.ts +0 -11
  476. package/dist/Components/Layout/Header/HeaderRightProps.d.ts +0 -5
  477. package/dist/Components/Layout/Header/MagnifyingGlass/MagnifyingGlass.d.ts +0 -2
  478. package/dist/Components/Layout/Header/MegaMenu/MegaMenu.d.ts +0 -2
  479. package/dist/Components/Layout/Header/MegaMenu/MegaMenuProps.d.ts +0 -4
  480. package/dist/Components/Layout/HeroBanner/HeroBanner.d.ts +0 -3
  481. package/dist/Components/Layout/HeroBanner/HeroBannerProps.d.ts +0 -9
  482. package/dist/Components/Layout/HeroBanner/LargeHeroIcon.d.ts +0 -2
  483. package/dist/Components/Layout/index.d.ts +0 -22
  484. package/dist/Components/Shared/Container/Container.d.ts +0 -3
  485. package/dist/Components/Shared/Container/ContainerProps.d.ts +0 -6
  486. package/dist/Components/Shared/ElementHolder/ElementHolder.d.ts +0 -3
  487. package/dist/Components/Shared/ElementHolder/ElementHolderProps.d.ts +0 -15
  488. package/dist/Components/Shared/index.d.ts +0 -4
  489. package/dist/img/card-one.png +0 -0
  490. package/dist/img/card-three.png +0 -0
  491. package/dist/img/card-two.png +0 -0
  492. package/dist/img/footer-bg-design.svg +0 -14
  493. package/dist/img/footer-logo.svg +0 -9
  494. package/dist/img/promo-banner-image.svg +0 -9
  495. package/dist/img/visit-brand-piller.svg +0 -6
  496. package/dist/img/waikirikiri-full-logo.svg +0 -23
  497. package/dist/index.cjs.js +0 -14
  498. package/dist/index.cjs.js.map +0 -1
  499. package/dist/index.d.ts +0 -5
  500. package/dist/index.es.d.ts +0 -2
  501. package/dist/index.es.js +0 -6787
  502. package/dist/index.es.js.map +0 -1
  503. package/dist/main.d.ts +0 -0
  504. package/dist/selwynui.css +0 -1
  505. package/dist/tsconfig.app.tsbuildinfo +0 -1
  506. package/dist/vite.svg +0 -1
  507. package/src/Components/DataDisplay/Pathway/Pathway.tsx +0 -94
  508. package/src/Components/DataDisplay/Pathway/PathwayProps.tsx +0 -17
@@ -0,0 +1,36 @@
1
+ // @ts-ignore
2
+ import React from "react"
3
+ import { Meta, StoryObj } from "@storybook/react-vite";
4
+ import Media from "./Media";
5
+ import ElementHolder from "../../Shared/ElementHolder/ElementHolder";
6
+
7
+ const meta: Meta = {
8
+ title: "DataDisplay / Media",
9
+ component: Media,
10
+ parameters: {
11
+ layout: 'fullscreen',
12
+ },
13
+ tags: ["autodocs"]
14
+ }
15
+
16
+ export default meta;
17
+
18
+ type Story = StoryObj<typeof meta>;
19
+
20
+ const MediaTemplate: Story = {
21
+ render: () => {
22
+
23
+ const mediaProps = {
24
+ thumbnail: "https://images.unsplash.com/photo-1501594907352-04cda38ebc29?w=1200&h=675&fit=crop",
25
+ videoSrc: "https://commondatastorage.googleapis.com/gtv-videos-bucket/sample/BigBuckBunny.mp4"
26
+ };
27
+
28
+ return <Media pillar={'visit'} {...mediaProps} />
29
+ }
30
+ }
31
+
32
+
33
+ export const MediaComponent = {
34
+ ...MediaTemplate
35
+ };
36
+
@@ -0,0 +1,158 @@
1
+ import MediaProps from "./MediaProps.tsx";
2
+ import { useEffect, useRef } from "react";
3
+ import videojs from "video.js";
4
+ import "video.js/dist/video-js.css";
5
+ import styles from "./media.module.scss";
6
+ import './mediaVideo.scss'
7
+
8
+ const Media = ({ imageSrc, videoSrc, thumbnail, pillar }: MediaProps) => {
9
+ const videoRef = useRef<HTMLVideoElement>(null);
10
+ const playerRef = useRef<any>(null);
11
+
12
+ useEffect(() => {
13
+
14
+ if (imageSrc) {
15
+ if (playerRef.current) {
16
+ playerRef.current.dispose();
17
+ playerRef.current = null;
18
+ }
19
+ return;
20
+ }
21
+
22
+ if (!playerRef.current && videoRef.current) {
23
+ playerRef.current = videojs(videoRef.current, {
24
+ controls: true,
25
+ responsive: true,
26
+ fluid: true,
27
+ preload: "metadata",
28
+ playbackRates: false,
29
+ poster: thumbnail,
30
+ controlBar: {
31
+ volumePanel: false,
32
+ playToggle: true,
33
+ currentTimeDisplay: true,
34
+ timeDivider: true,
35
+ durationDisplay: true,
36
+ remainingTimeDisplay: false,
37
+ progressControl: true,
38
+ fullscreenToggle: true,
39
+ playbackRateMenuButton: true,
40
+ },
41
+ });
42
+
43
+ playerRef.current.ready(() => {
44
+ const bigPlayButton = playerRef.current.el().querySelector('.vjs-big-play-button');
45
+ const controlPlayBtn = playerRef.current.el().querySelector('.vjs-play-control .vjs-icon-placeholder')
46
+ const playProgress = playerRef.current.el().querySelector('.vjs-play-progress');
47
+
48
+ if (bigPlayButton) {
49
+ bigPlayButton.innerHTML = `
50
+ <svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 0 48 48" fill="none"> <path d="M13.5 7.47751V40.5225C13.5049 40.7862 13.5792 41.0439 13.7155 41.2698C13.8518 41.4956 14.0452 41.6814 14.2762 41.8086C14.5073 41.9358 14.7678 41.9999 15.0314 41.9943C15.2951 41.9887 15.5527 41.9137 15.7781 41.7769L42.7931 25.2544C43.0089 25.1238 43.1874 24.9397 43.3112 24.72C43.4351 24.5002 43.5001 24.2523 43.5001 24C43.5001 23.7478 43.4351 23.4998 43.3112 23.2801C43.1874 23.0603 43.0089 22.8762 42.7931 22.7456L15.7781 6.22314C15.5527 6.08628 15.2951 6.01128 15.0314 6.00571C14.7678 6.00013 14.5073 6.06418 14.2762 6.19139C14.0452 6.3186 13.8518 6.50448 13.7155 6.73028C13.5792 6.95608 13.5049 7.21382 13.5 7.47751Z" fill="currentColor"/> </svg>
51
+ `;
52
+ }
53
+
54
+ if(controlPlayBtn){
55
+ controlPlayBtn.innerHTML = `
56
+ <svg xmlns="http://www.w3.org/2000/svg" width="26" height="32" viewBox="0 0 26 32" fill="none">
57
+ <path d="M0 1.30896V30.691C0.00414171 30.9255 0.0670014 31.1547 0.18224 31.3554C0.297479 31.5562 0.461023 31.7215 0.656383 31.8346C0.851742 31.9477 1.07201 32.0047 1.29498 31.9997C1.51794 31.9947 1.73573 31.9281 1.92637 31.8064L24.7701 17.1153C24.9525 16.9992 25.1034 16.8355 25.2081 16.6401C25.3129 16.4448 25.3679 16.2243 25.3679 16C25.3679 15.7757 25.3129 15.5552 25.2081 15.3599C25.1034 15.1645 24.9525 15.0008 24.7701 14.8847L1.92637 0.193629C1.73573 0.0719391 1.51794 0.00525422 1.29498 0.000297978C1.07201 -0.00465826 0.851742 0.0522898 0.656383 0.1654C0.461023 0.278509 0.297479 0.443782 0.18224 0.644553C0.0670014 0.845324 0.00414171 1.0745 0 1.30896Z" fill="currentColor"/>
58
+ </svg>
59
+ `;
60
+ }
61
+
62
+ if (playProgress) {
63
+ const span = document.createElement('span');
64
+ span.className = 'vjs-progress-indicator';
65
+
66
+ span.innerHTML = `
67
+ <svg xmlns="http://www.w3.org/2000/svg" width="31" height="32" viewBox="0 0 31 32" fill="none">
68
+ <g filter="url(#filter0_d_4327_15382)">
69
+ <ellipse cx="15.0148" cy="14" rx="11.0148" ry="12" fill="currentColor"/>
70
+ </g>
71
+ <defs>
72
+ <filter id="filter0_d_4327_15382" x="0" y="0" width="30.0298" height="32" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
73
+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
74
+ <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
75
+ <feMorphology radius="2" operator="dilate" in="SourceAlpha" result="effect1_dropShadow_4327_15382"/>
76
+ <feOffset dy="2"/>
77
+ <feGaussianBlur stdDeviation="1"/>
78
+ <feComposite in2="hardAlpha" operator="out"/>
79
+ <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
80
+ <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_4327_15382"/>
81
+ <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_4327_15382" result="shape"/>
82
+ </filter>
83
+ </defs>
84
+ </svg>
85
+ `;
86
+
87
+ playProgress.appendChild(span);
88
+ }
89
+
90
+ playerRef.current.on("play", () => {
91
+ if (bigPlayButton) bigPlayButton.style.display = "none";
92
+
93
+ if(controlPlayBtn){
94
+ controlPlayBtn.innerHTML = `
95
+ <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32" fill="none">
96
+ <path d="M27 6V26C27 26.5304 26.7893 27.0391 26.4142 27.4142C26.0391 27.7893 25.5304 28 25 28H20C19.4696 28 18.9609 27.7893 18.5858 27.4142C18.2107 27.0391 18 26.5304 18 26V6C18 5.46957 18.2107 4.96086 18.5858 4.58579C18.9609 4.21071 19.4696 4 20 4H25C25.5304 4 26.0391 4.21071 26.4142 4.58579C26.7893 4.96086 27 5.46957 27 6ZM12 4H7C6.46957 4 5.96086 4.21071 5.58579 4.58579C5.21071 4.96086 5 5.46957 5 6V26C5 26.5304 5.21071 27.0391 5.58579 27.4142C5.96086 27.7893 6.46957 28 7 28H12C12.5304 28 13.0391 27.7893 13.4142 27.4142C13.7893 27.0391 14 26.5304 14 26V6C14 5.46957 13.7893 4.96086 13.4142 4.58579C13.0391 4.21071 12.5304 4 12 4Z" fill="currentColor"/>
97
+ </svg>
98
+ `;
99
+ }
100
+
101
+ });
102
+
103
+ playerRef.current.on("pause", () => {
104
+ if (bigPlayButton) bigPlayButton.style.display = "flex";
105
+
106
+ if(controlPlayBtn){
107
+ controlPlayBtn.innerHTML = `
108
+ <svg xmlns="http://www.w3.org/2000/svg" width="26" height="32" viewBox="0 0 26 32" fill="none">
109
+ <path d="M0 1.30896V30.691C0.00414171 30.9255 0.0670014 31.1547 0.18224 31.3554C0.297479 31.5562 0.461023 31.7215 0.656383 31.8346C0.851742 31.9477 1.07201 32.0047 1.29498 31.9997C1.51794 31.9947 1.73573 31.9281 1.92637 31.8064L24.7701 17.1153C24.9525 16.9992 25.1034 16.8355 25.2081 16.6401C25.3129 16.4448 25.3679 16.2243 25.3679 16C25.3679 15.7757 25.3129 15.5552 25.2081 15.3599C25.1034 15.1645 24.9525 15.0008 24.7701 14.8847L1.92637 0.193629C1.73573 0.0719391 1.51794 0.00525422 1.29498 0.000297978C1.07201 -0.00465826 0.851742 0.0522898 0.656383 0.1654C0.461023 0.278509 0.297479 0.443782 0.18224 0.644553C0.0670014 0.845324 0.00414171 1.0745 0 1.30896Z" fill="currentColor"/>
110
+ </svg>
111
+ `;
112
+ }
113
+
114
+ });
115
+
116
+ playerRef.current.on("ended", () => {
117
+ if (bigPlayButton) bigPlayButton.style.display = "flex";
118
+
119
+ });
120
+ });
121
+
122
+ }
123
+
124
+
125
+ if (playerRef.current && videoSrc) {
126
+ playerRef.current.src({ src: videoSrc, type: "video/mp4" });
127
+ }
128
+
129
+ return () => {
130
+ if (playerRef.current) {
131
+ playerRef.current.dispose();
132
+ playerRef.current = null;
133
+ }
134
+ };
135
+ }, [imageSrc, videoSrc, thumbnail]);
136
+
137
+ return <div className={`${pillar}`}>
138
+ {imageSrc ? (
139
+ <div className={styles.media}>
140
+ <div className={`${styles.imgWrapper}`}>
141
+ <img src={imageSrc} alt="" className="media-image" />
142
+ </div>
143
+ </div>
144
+ ) : (
145
+ <div className="video-container">
146
+ <div data-vjs-player>
147
+ <video
148
+ ref={videoRef}
149
+ className="video-js vjs-big-play-centered"
150
+ playsInline
151
+ />
152
+ </div>
153
+ </div>
154
+ )}
155
+ </div>
156
+ };
157
+
158
+ export default Media;
@@ -0,0 +1,8 @@
1
+ interface MediaProps {
2
+ imageSrc?: string
3
+ videoSrc?: string
4
+ thumbnail?:string
5
+ pillar?: 'live' | 'visit' | 'taste' | 'business' | 'participate'
6
+ }
7
+
8
+ export default MediaProps
@@ -0,0 +1,16 @@
1
+ .media {
2
+ .imgWrapper {
3
+ position: relative;
4
+ width: 100%;
5
+ padding-top: 45.25%;
6
+
7
+ img {
8
+ position: absolute;
9
+ top: 0;
10
+ left: 0;
11
+ width: 100%;
12
+ height: 100%;
13
+ object-fit: cover;
14
+ }
15
+ }
16
+ }
@@ -0,0 +1,88 @@
1
+
2
+
3
+ .video-container{
4
+ .vjs-big-play-button{
5
+ background: var(--color-block-bg) !important;
6
+ color: var(--color-block-text);
7
+ height: 114px;
8
+ width: 114px;
9
+ border-radius: 100%;
10
+ border: none;
11
+ display: flex;
12
+ align-items: center;
13
+ justify-content: center;
14
+ }
15
+
16
+ .vjs_video_4320-dimensions.vjs-fluid:not(.vjs-audio-only-mode) {
17
+ padding-top: 56.25%;
18
+ }
19
+
20
+ .vjs-control-bar{
21
+ bottom: 44px;
22
+ background: transparent;
23
+ padding: 0 48px;
24
+ }
25
+
26
+ .vjs-play-control .vjs-icon-placeholder{
27
+
28
+ color: var(--color-block-text);
29
+
30
+ &:before{
31
+ content: unset !important;
32
+ }
33
+
34
+ }
35
+
36
+ .vjs-has-started.vjs-user-inactive.vjs-playing .vjs-control-bar{
37
+ opacity: 1 !important;
38
+ pointer-events: auto;
39
+ }
40
+
41
+ .video-js .vjs-progress-holder{
42
+ height: 17px;
43
+ border-radius: 16px;
44
+ }
45
+
46
+ .video-js .vjs-slider{
47
+ background: var(--color-block-bg) !important;
48
+ }
49
+
50
+ .video-js .vjs-play-progress {
51
+ background-color: var(--color-block-text);
52
+ height: 9px;
53
+ top: 50%;
54
+ transform: translateY(-50%);
55
+ border-top-left-radius: 16px;
56
+ border-bottom-left-radius: 16px;
57
+ left: 4px;
58
+
59
+ .vjs-progress-indicator{
60
+ color: var(--color-block-text);
61
+ display: flex;
62
+ position: absolute;
63
+ right: -14px;
64
+ top: 6px;
65
+ transform: translateY(-50%);
66
+ }
67
+
68
+ &:before{
69
+ content: unset;
70
+ }
71
+
72
+ }
73
+
74
+
75
+ .video-js .vjs-load-progress{
76
+ height: 9px;
77
+ top: 50%;
78
+ transform: translateY(-50%);
79
+ border-top-left-radius: 16px;
80
+ border-bottom-left-radius: 16px;
81
+ left: 4px;
82
+ }
83
+
84
+ .vjs_video_1857-dimensions.vjs-fluid:not(.vjs-audio-only-mode) {
85
+ padding-top: 56.25%;
86
+ }
87
+
88
+ }
@@ -0,0 +1,89 @@
1
+ import React, { useContext } from "react";
2
+ import { Meta, StoryObj } from "@storybook/react-vite";
3
+
4
+ import Modal from "./Modal.tsx";
5
+ import ModalHeader from "./ModalHeader.tsx";
6
+ import ModalBody from "./ModalBody.tsx";
7
+ import ModalActions from "./ModalActions.tsx";
8
+ import ModalActionsLeft from "./ModalActionsLeft.tsx";
9
+ import ModalActionsRight from "./ModalActionsRight.tsx";
10
+ import FormFieldHolder from "../../Form/FormFieldHolder/FormFieldHolder.tsx";
11
+ import TextField from "../../Form/TextField/TextField.tsx";
12
+ import Button from "../../Form/Button/Button.tsx";
13
+ import {SelwynUIContext, SelwynUIProvider} from "../../SelwynUIProvider";
14
+
15
+ const meta: Meta = {
16
+ title: "Data Display/Modal",
17
+ component: Modal,
18
+ tags: ["autodocs"],
19
+ };
20
+
21
+ export default meta;
22
+
23
+ type Story = StoryObj<typeof meta>;
24
+
25
+ const ModalStoryContent = () => {
26
+ const context = useContext(SelwynUIContext);
27
+
28
+ const innerModal = (
29
+ <Modal>
30
+ <ModalHeader title="Inner Modal" canClose={true} canGoBack={false} />
31
+ <ModalBody>
32
+ <FormFieldHolder label="Inner Input">
33
+ <TextField />
34
+ </FormFieldHolder>
35
+ </ModalBody>
36
+ <ModalActions>
37
+ <ModalActionsRight>
38
+ <Button label="Close" size="large"
39
+ extraClass="btn-white-border" onClick={context.closeModal} />
40
+ </ModalActionsRight>
41
+ </ModalActions>
42
+ </Modal>
43
+ );
44
+
45
+ const outerModal = (
46
+ <Modal>
47
+ <ModalHeader title="Outer Modal" canClose={true} canGoBack={false} />
48
+ <ModalBody>
49
+ <FormFieldHolder label="Outer Input">
50
+ <TextField />
51
+ </FormFieldHolder>
52
+ </ModalBody>
53
+ <ModalActions>
54
+ <ModalActionsLeft></ModalActionsLeft>
55
+ <ModalActionsRight>
56
+ <div>
57
+ <Button label="Close" size="large"
58
+ extraClass="btn-white-border" onClick={context.closeModal} />
59
+ </div>
60
+ <div>
61
+ <Button label="Open Inner Modal" size="large" onClick={() => context.openModal(innerModal)} />
62
+ </div>
63
+
64
+ </ModalActionsRight>
65
+ </ModalActions>
66
+ </Modal>
67
+ );
68
+
69
+ return (
70
+ <Button
71
+ label="Open Modal"
72
+ onClick={() => {
73
+ context.openModal(outerModal);
74
+ }}
75
+ />
76
+ );
77
+ };
78
+
79
+ const ModalTemplate: Story = {
80
+ render: () => (
81
+ <SelwynUIProvider>
82
+ <ModalStoryContent />
83
+ </SelwynUIProvider>
84
+ ),
85
+ };
86
+
87
+ export const Example = {
88
+ ...ModalTemplate,
89
+ };
@@ -0,0 +1,16 @@
1
+ import ModalProps from "./ModalProps";
2
+ import styles from "./modal.module.scss";
3
+
4
+ const Modal = (props: ModalProps) => {
5
+ const { children, extraClass, pillar = 'taste' } = props;
6
+
7
+ return (
8
+ <div className={`${styles.holder} ${pillar} ${extraClass} modalHolder`}>
9
+ <div className={`${styles.modal} modal`}>
10
+ <div className={`${styles.wrapper} modalWrapper`}>{children}</div>
11
+ </div>
12
+ </div>
13
+ );
14
+ };
15
+
16
+ export default Modal;
@@ -0,0 +1,14 @@
1
+ import ModalActionsProps from "./ModalActionsProps.tsx";
2
+ import styles from "./modal.module.scss"
3
+
4
+ const ModalActions = (props: ModalActionsProps) => {
5
+
6
+ const {children, extraClass =''} =props
7
+
8
+ return<div className={`${styles.modalAction} modalAction ${extraClass}`}>
9
+ {children}
10
+ </div>
11
+
12
+ }
13
+
14
+ export default ModalActions;
@@ -0,0 +1,13 @@
1
+ import ModalActionsLeftProps from "./ModalActionsLeftProps.tsx";
2
+ import styles from './modal.module.scss'
3
+ const ModalActionsLeft = (props: ModalActionsLeftProps) => {
4
+
5
+ const {children, extraClass ='' } =props
6
+
7
+ return <div className={`${styles.modalActionLeft} modalActionLeft ${extraClass}`}>
8
+ {children}
9
+ </div>
10
+
11
+ }
12
+
13
+ export default ModalActionsLeft;
@@ -0,0 +1,8 @@
1
+ import {ReactNode} from "react";
2
+
3
+ interface ModalActionsLeftProps {
4
+ children?: ReactNode;
5
+ extraClass?:string;
6
+ }
7
+
8
+ export default ModalActionsLeftProps;
@@ -0,0 +1,8 @@
1
+ import {ReactNode} from "react";
2
+
3
+ interface ModalActionsProps {
4
+ children?: ReactNode;
5
+ extraClass?:string;
6
+ }
7
+
8
+ export default ModalActionsProps ;
@@ -0,0 +1,14 @@
1
+ import ModalActionsRightProps from "./ModalActionsRightProps.tsx";
2
+ import styles from "./modal.module.scss"
3
+
4
+ const ModalActionsRight = (props:ModalActionsRightProps) => {
5
+
6
+ const {children, extraClass ='' } =props
7
+
8
+ return<div className={`${styles.modalActionRight} modalActionRight ${extraClass}`}>
9
+ {children}
10
+ </div>
11
+
12
+ }
13
+
14
+ export default ModalActionsRight;
@@ -0,0 +1,8 @@
1
+ import {ReactNode} from "react";
2
+
3
+ interface ModalActionsRightProps {
4
+ children?: ReactNode;
5
+ extraClass?:string;
6
+ }
7
+
8
+ export default ModalActionsRightProps;
@@ -0,0 +1,14 @@
1
+ import ModalBodyProps from "./ModalBodyProps";
2
+ import styles from "./modal.module.scss";
3
+
4
+ const ModalBody = (props: ModalBodyProps) => {
5
+ const { children,extraClass =''} = props;
6
+
7
+ return (
8
+ <div className={`${styles.modalBody} ${extraClass} modalBody`}>
9
+ <div className={`${styles.modalBodyWrapper} modalBodyWrapper`}>{children}</div>
10
+ </div>
11
+ );
12
+ };
13
+
14
+ export default ModalBody;
@@ -0,0 +1,8 @@
1
+ import { ReactNode } from "react";
2
+
3
+ interface ModalBodyProps {
4
+ children?: ReactNode;
5
+ extraClass?:string;
6
+ }
7
+
8
+ export default ModalBodyProps;
@@ -0,0 +1,6 @@
1
+ import styles from './modal.module.scss'
2
+ const ModalCurtain = () => {
3
+ return <div className={styles.curtain} />
4
+ }
5
+
6
+ export default ModalCurtain;
@@ -0,0 +1,55 @@
1
+ import CaretLeft from "../../Icons/Arrows/CaretLeft/CaretLeft";
2
+ import XIcon from "../../Icons/MathsAndFinance/XIcon/XIcon";
3
+ import ModalHeaderProps from "./ModalHeaderProps";
4
+ import styles from "./modal.module.scss";
5
+
6
+ import {useContext} from "react";
7
+ import SelwynUIContext from "../../SelwynUIProvider/SelwynUIContext.tsx";
8
+
9
+ const ModalHeader = (props: ModalHeaderProps) => {
10
+ const {closeOnclick, canGoBackOnclick ,canGoBack, canClose, title, extraClass ='',} = props;
11
+
12
+ const context = useContext(SelwynUIContext);
13
+
14
+ const closeOnclickHandler = (e:any) => {
15
+ if (canClose) {
16
+ if (closeOnclick) {
17
+ closeOnclick(e);
18
+ }
19
+ context.closeModal();
20
+ }
21
+ };
22
+
23
+ const goBackOnclickHandler = (e:any) => {
24
+ if (canGoBack) {
25
+ if (canGoBackOnclick) {
26
+ canGoBackOnclick(e);
27
+ }
28
+ }
29
+ };
30
+
31
+ return (
32
+ <div className={`${styles.modalHeader} ${extraClass}`}>
33
+ <div className={styles.modalHeaderWrapper}>
34
+ {!!canGoBack && (
35
+ <div onClick={goBackOnclickHandler} className={`${styles.caretLeft} ${styles.icon}`}>
36
+ <CaretLeft type="bold"/>
37
+ </div>
38
+ )}
39
+ <div className={`${styles.heading} modalHeading`}>
40
+ {!!title && (
41
+ <h4>{title}</h4>
42
+ )}
43
+ </div>
44
+ {!!canClose && (
45
+ <span className={`${styles.close} ${styles.icon}`}
46
+ onClick={closeOnclickHandler}>
47
+ <XIcon type="bold"/>
48
+ </span>
49
+ )}
50
+ </div>
51
+ </div>
52
+ );
53
+ };
54
+
55
+ export default ModalHeader;
@@ -0,0 +1,10 @@
1
+ interface ModalHeaderProps {
2
+ title?: string;
3
+ extraClass?: string;
4
+ canClose?: boolean;
5
+ canGoBack?: boolean;
6
+ closeOnclick?: (e:any) => void;
7
+ canGoBackOnclick?: (e:any) => void;
8
+ }
9
+
10
+ export default ModalHeaderProps;
@@ -0,0 +1,9 @@
1
+ import { ReactNode } from "react";
2
+
3
+ interface ModalProps {
4
+ children?: ReactNode;
5
+ extraClass?: string;
6
+ pillar?: 'main' | 'live' | 'visit' | 'taste' | 'business' | 'participate'
7
+ }
8
+
9
+ export default ModalProps;