@thecb/components 6.3.0 → 6.3.1-beta.4

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 (1065) hide show
  1. package/README.md +39 -0
  2. package/dist/.storybook/page.d.ts +13 -0
  3. package/dist/.storybook/page.js +41 -0
  4. package/dist/.storybook/themes/apc.theme.d.ts +79 -0
  5. package/dist/.storybook/themes/apc.theme.js +1 -0
  6. package/dist/.storybook/themes/index.d.ts +2 -0
  7. package/dist/.storybook/themes/index.js +2 -0
  8. package/dist/.storybook/themes/sf.theme.d.ts +231 -0
  9. package/dist/.storybook/themes/sf.theme.js +1 -0
  10. package/dist/button-with-action/ButtonWithActionProps.js +0 -0
  11. package/dist/button-with-link/ButtonWithLinkProps.js +1 -0
  12. package/dist/index.cjs.js +12030 -11801
  13. package/dist/index.cjs.js.map +1 -1
  14. package/dist/index.d.ts +306 -0
  15. package/dist/index.d.ts.map +1 -0
  16. package/dist/index.esm.js +7225 -6999
  17. package/dist/index.esm.js.map +1 -1
  18. package/dist/nav-tabs/TabConfig.js +0 -0
  19. package/dist/src/components/atoms/add-obligation/AddObligation.d.ts +5 -0
  20. package/dist/src/components/atoms/add-obligation/AddObligation.js +21 -0
  21. package/dist/src/components/atoms/add-obligation/AddObligation.stories.d.ts +7 -0
  22. package/dist/src/components/atoms/add-obligation/AddObligation.stories.js +10 -0
  23. package/dist/src/components/atoms/add-obligation/AddObligation.theme.d.ts +9 -0
  24. package/dist/src/components/atoms/add-obligation/AddObligation.theme.js +8 -0
  25. package/dist/src/components/atoms/add-obligation/index.d.ts +2 -0
  26. package/dist/src/components/atoms/add-obligation/index.js +2 -0
  27. package/dist/src/components/atoms/alert/Alert.d.ts +5 -0
  28. package/dist/src/components/atoms/alert/Alert.js +26 -0
  29. package/dist/src/components/atoms/alert/Alert.stories.d.ts +7 -0
  30. package/dist/src/components/atoms/alert/Alert.stories.js +19 -0
  31. package/dist/src/components/atoms/alert/Alert.theme.d.ts +65 -0
  32. package/dist/src/components/atoms/alert/Alert.theme.js +45 -0
  33. package/dist/src/components/atoms/alert/index.d.ts +2 -0
  34. package/dist/src/components/atoms/alert/index.js +2 -0
  35. package/dist/src/components/atoms/amount-callout/AmountCallout.d.ts +5 -0
  36. package/dist/src/components/atoms/amount-callout/AmountCallout.js +12 -0
  37. package/dist/src/components/atoms/amount-callout/AmountCallout.stories.d.ts +7 -0
  38. package/dist/src/components/atoms/amount-callout/AmountCallout.stories.js +18 -0
  39. package/dist/src/components/atoms/amount-callout/AmountCallout.theme.d.ts +5 -0
  40. package/dist/src/components/atoms/amount-callout/AmountCallout.theme.js +4 -0
  41. package/dist/src/components/atoms/amount-callout/index.d.ts +2 -0
  42. package/dist/src/components/atoms/amount-callout/index.js +2 -0
  43. package/dist/src/components/atoms/box-with-shadow/BoxWithShadow.d.ts +5 -0
  44. package/dist/src/components/atoms/box-with-shadow/BoxWithShadow.js +43 -0
  45. package/dist/src/components/atoms/box-with-shadow/BoxWithShadow.theme.d.ts +5 -0
  46. package/dist/src/components/atoms/box-with-shadow/BoxWithShadow.theme.js +5 -0
  47. package/dist/src/components/atoms/box-with-shadow/index.d.ts +2 -0
  48. package/dist/src/components/atoms/box-with-shadow/index.js +2 -0
  49. package/dist/src/components/atoms/breadcrumb/Breadcrumb.d.ts +4 -0
  50. package/dist/src/components/atoms/breadcrumb/Breadcrumb.js +22 -0
  51. package/dist/src/components/atoms/breadcrumb/Breadcrumb.stories.d.ts +7 -0
  52. package/dist/src/components/atoms/breadcrumb/Breadcrumb.stories.js +37 -0
  53. package/dist/src/components/atoms/breadcrumb/Breadcrumb.theme.d.ts +19 -0
  54. package/dist/src/components/atoms/breadcrumb/Breadcrumb.theme.js +24 -0
  55. package/dist/src/components/atoms/breadcrumb/index.d.ts +2 -0
  56. package/dist/src/components/atoms/breadcrumb/index.js +2 -0
  57. package/dist/src/components/atoms/button-with-action/ButtonWithAction.d.ts +15 -0
  58. package/dist/src/components/atoms/button-with-action/ButtonWithAction.js +86 -0
  59. package/dist/src/components/atoms/button-with-action/ButtonWithAction.stories.d.ts +7 -0
  60. package/dist/src/components/atoms/button-with-action/ButtonWithAction.stories.js +24 -0
  61. package/dist/src/components/atoms/button-with-action/ButtonWithAction.theme.d.ts +342 -0
  62. package/dist/src/components/atoms/button-with-action/ButtonWithAction.theme.js +202 -0
  63. package/dist/src/components/atoms/button-with-action/ButtonWithActionProps.d.ts +14 -0
  64. package/dist/src/components/atoms/button-with-action/ButtonWithActionProps.js +1 -0
  65. package/dist/src/components/atoms/button-with-action/index.d.ts +2 -0
  66. package/dist/src/components/atoms/button-with-action/index.js +2 -0
  67. package/dist/src/components/atoms/button-with-link/ButtonWithLink.d.ts +11 -0
  68. package/dist/src/components/atoms/button-with-link/ButtonWithLink.js +41 -0
  69. package/dist/src/components/atoms/button-with-link/ButtonWithLink.stories.d.ts +7 -0
  70. package/dist/src/components/atoms/button-with-link/ButtonWithLink.stories.js +21 -0
  71. package/dist/src/components/atoms/button-with-link/ButtonWithLinkProps.d.ts +10 -0
  72. package/dist/src/components/atoms/button-with-link/ButtonWithLinkProps.js +2 -0
  73. package/dist/src/components/atoms/button-with-link/index.d.ts +2 -0
  74. package/dist/src/components/atoms/button-with-link/index.js +2 -0
  75. package/dist/src/components/atoms/card/Card.d.ts +5 -0
  76. package/dist/src/components/atoms/card/Card.js +18 -0
  77. package/dist/src/components/atoms/card/Card.theme.d.ts +5 -0
  78. package/dist/src/components/atoms/card/Card.theme.js +5 -0
  79. package/dist/src/components/atoms/card/index.d.ts +2 -0
  80. package/dist/src/components/atoms/card/index.js +2 -0
  81. package/dist/src/components/atoms/checkbox/Checkbox.d.ts +5 -0
  82. package/dist/src/components/atoms/checkbox/Checkbox.js +52 -0
  83. package/dist/src/components/atoms/checkbox/Checkbox.stories.d.ts +7 -0
  84. package/dist/src/components/atoms/checkbox/Checkbox.stories.js +16 -0
  85. package/dist/src/components/atoms/checkbox/Checkbox.theme.d.ts +68 -0
  86. package/dist/src/components/atoms/checkbox/Checkbox.theme.js +39 -0
  87. package/dist/src/components/atoms/checkbox/index.d.ts +2 -0
  88. package/dist/src/components/atoms/checkbox/index.js +2 -0
  89. package/dist/src/components/atoms/checkbox-list/CheckboxList.d.ts +6 -0
  90. package/dist/src/components/atoms/checkbox-list/CheckboxList.js +40 -0
  91. package/dist/src/components/atoms/checkbox-list/CheckboxList.stories.d.ts +7 -0
  92. package/dist/src/components/atoms/checkbox-list/CheckboxList.stories.js +41 -0
  93. package/dist/src/components/atoms/checkbox-list/CheckboxList.theme.d.ts +44 -0
  94. package/dist/src/components/atoms/checkbox-list/CheckboxList.theme.js +33 -0
  95. package/dist/src/components/atoms/checkbox-list/index.d.ts +2 -0
  96. package/dist/src/components/atoms/checkbox-list/index.js +2 -0
  97. package/dist/src/components/atoms/country-dropdown/CountryDropdown.d.ts +9 -0
  98. package/dist/src/components/atoms/country-dropdown/CountryDropdown.js +8 -0
  99. package/dist/src/components/atoms/country-dropdown/CountryDropdown.stories.d.ts +7 -0
  100. package/dist/src/components/atoms/country-dropdown/CountryDropdown.stories.js +31 -0
  101. package/dist/src/components/atoms/country-dropdown/index.d.ts +1 -0
  102. package/dist/src/components/atoms/country-dropdown/index.js +1 -0
  103. package/dist/src/components/atoms/country-dropdown/options.d.ts +4 -0
  104. package/dist/src/components/atoms/country-dropdown/options.js +249 -0
  105. package/dist/src/components/atoms/detail/Detail.d.ts +5 -0
  106. package/dist/src/components/atoms/detail/Detail.js +63 -0
  107. package/dist/src/components/atoms/detail/Detail.styled.d.ts +1 -0
  108. package/dist/src/components/atoms/detail/Detail.styled.js +28 -0
  109. package/dist/src/components/atoms/detail/Detail.theme.d.ts +36 -0
  110. package/dist/src/components/atoms/detail/Detail.theme.js +28 -0
  111. package/dist/src/components/atoms/detail/index.d.ts +2 -0
  112. package/dist/src/components/atoms/detail/index.js +2 -0
  113. package/dist/src/components/atoms/display-box/DisplayBox.d.ts +5 -0
  114. package/dist/src/components/atoms/display-box/DisplayBox.js +11 -0
  115. package/dist/src/components/atoms/display-box/DisplayBox.stories.d.ts +7 -0
  116. package/dist/src/components/atoms/display-box/DisplayBox.stories.js +12 -0
  117. package/dist/src/components/atoms/display-box/DisplayBox.theme.d.ts +7 -0
  118. package/dist/src/components/atoms/display-box/DisplayBox.theme.js +7 -0
  119. package/dist/src/components/atoms/display-box/index.d.ts +2 -0
  120. package/dist/src/components/atoms/display-box/index.js +2 -0
  121. package/dist/src/components/atoms/display-card/DisplayCard.d.ts +9 -0
  122. package/dist/src/components/atoms/display-card/DisplayCard.js +22 -0
  123. package/dist/src/components/atoms/display-card/DisplayCard.stories.d.ts +7 -0
  124. package/dist/src/components/atoms/display-card/DisplayCard.stories.js +10 -0
  125. package/dist/src/components/atoms/display-card/index.d.ts +2 -0
  126. package/dist/src/components/atoms/display-card/index.js +2 -0
  127. package/dist/src/components/atoms/dropdown/Dropdown.d.ts +5 -0
  128. package/dist/src/components/atoms/dropdown/Dropdown.js +258 -0
  129. package/dist/src/components/atoms/dropdown/Dropdown.stories.d.ts +7 -0
  130. package/dist/src/components/atoms/dropdown/Dropdown.stories.js +30 -0
  131. package/dist/src/components/atoms/dropdown/Dropdown.theme.d.ts +7 -0
  132. package/dist/src/components/atoms/dropdown/Dropdown.theme.js +7 -0
  133. package/dist/src/components/atoms/dropdown/DropdownIcon.d.ts +2 -0
  134. package/dist/src/components/atoms/dropdown/DropdownIcon.js +7 -0
  135. package/dist/src/components/atoms/dropdown/index.d.ts +2 -0
  136. package/dist/src/components/atoms/dropdown/index.js +2 -0
  137. package/dist/src/components/atoms/form-layouts/FormContainer.d.ts +5 -0
  138. package/dist/src/components/atoms/form-layouts/FormContainer.js +34 -0
  139. package/dist/src/components/atoms/form-layouts/FormFooterPanel.d.ts +5 -0
  140. package/dist/src/components/atoms/form-layouts/FormFooterPanel.js +15 -0
  141. package/dist/src/components/atoms/form-layouts/FormInput.d.ts +5 -0
  142. package/dist/src/components/atoms/form-layouts/FormInput.js +116 -0
  143. package/dist/src/components/atoms/form-layouts/FormInputColumn.d.ts +7 -0
  144. package/dist/src/components/atoms/form-layouts/FormInputColumn.js +29 -0
  145. package/dist/src/components/atoms/form-layouts/FormInputRow.d.ts +9 -0
  146. package/dist/src/components/atoms/form-layouts/FormInputRow.js +30 -0
  147. package/dist/src/components/atoms/form-layouts/FormLayouts.stories.d.ts +7 -0
  148. package/dist/src/components/atoms/form-layouts/FormLayouts.stories.js +38 -0
  149. package/dist/src/components/atoms/form-layouts/FormLayouts.theme.d.ts +86 -0
  150. package/dist/src/components/atoms/form-layouts/FormLayouts.theme.js +44 -0
  151. package/dist/src/components/atoms/form-layouts/index.d.ts +6 -0
  152. package/dist/src/components/atoms/form-layouts/index.js +6 -0
  153. package/dist/src/components/atoms/form-select/FormSelect.d.ts +5 -0
  154. package/dist/src/components/atoms/form-select/FormSelect.js +36 -0
  155. package/dist/src/components/atoms/form-select/FormSelect.stories.d.ts +7 -0
  156. package/dist/src/components/atoms/form-select/FormSelect.stories.js +36 -0
  157. package/dist/src/components/atoms/form-select/FormSelect.styled.d.ts +3 -0
  158. package/dist/src/components/atoms/form-select/FormSelect.styled.js +22 -0
  159. package/dist/src/components/atoms/form-select/FormSelect.theme.d.ts +81 -0
  160. package/dist/src/components/atoms/form-select/FormSelect.theme.js +40 -0
  161. package/dist/src/components/atoms/form-select/index.d.ts +2 -0
  162. package/dist/src/components/atoms/form-select/index.js +2 -0
  163. package/dist/src/components/atoms/formatted-address/FormattedAddress.d.ts +5 -0
  164. package/dist/src/components/atoms/formatted-address/FormattedAddress.js +22 -0
  165. package/dist/src/components/atoms/formatted-address/FormattedAddress.stories.d.ts +7 -0
  166. package/dist/src/components/atoms/formatted-address/FormattedAddress.stories.js +18 -0
  167. package/dist/src/components/atoms/formatted-address/FormattedAddress.theme.d.ts +23 -0
  168. package/dist/src/components/atoms/formatted-address/FormattedAddress.theme.js +9 -0
  169. package/dist/src/components/atoms/formatted-address/index.d.ts +2 -0
  170. package/dist/src/components/atoms/formatted-address/index.js +2 -0
  171. package/dist/src/components/atoms/formatted-credit-card/FormattedCreditCard.d.ts +7 -0
  172. package/dist/src/components/atoms/formatted-credit-card/FormattedCreditCard.js +47 -0
  173. package/dist/src/components/atoms/formatted-credit-card/FormattedCreditCard.theme.d.ts +7 -0
  174. package/dist/src/components/atoms/formatted-credit-card/FormattedCreditCard.theme.js +7 -0
  175. package/dist/src/components/atoms/formatted-credit-card/index.d.ts +2 -0
  176. package/dist/src/components/atoms/formatted-credit-card/index.js +2 -0
  177. package/dist/src/components/atoms/hamburger-button/HamburgerButton.d.ts +8 -0
  178. package/dist/src/components/atoms/hamburger-button/HamburgerButton.js +27 -0
  179. package/dist/src/components/atoms/hamburger-button/HamburgerButton.stories.d.ts +7 -0
  180. package/dist/src/components/atoms/hamburger-button/HamburgerButton.stories.js +11 -0
  181. package/dist/src/components/atoms/hamburger-button/index.d.ts +2 -0
  182. package/dist/src/components/atoms/hamburger-button/index.js +2 -0
  183. package/dist/src/components/atoms/heading/Heading.d.ts +5 -0
  184. package/dist/src/components/atoms/heading/Heading.js +40 -0
  185. package/dist/src/components/atoms/heading/Heading.stories.d.ts +7 -0
  186. package/dist/src/components/atoms/heading/Heading.stories.js +10 -0
  187. package/dist/src/components/atoms/heading/Heading.styled.d.ts +1 -0
  188. package/dist/src/components/atoms/heading/Heading.styled.js +28 -0
  189. package/dist/src/components/atoms/heading/Heading.theme.d.ts +17 -0
  190. package/dist/src/components/atoms/heading/Heading.theme.js +16 -0
  191. package/dist/src/components/atoms/heading/index.d.ts +2 -0
  192. package/dist/src/components/atoms/heading/index.js +2 -0
  193. package/dist/src/components/atoms/icons/AccountNumberImage.d.ts +2 -0
  194. package/dist/src/components/atoms/icons/AccountNumberImage.js +20 -0
  195. package/dist/src/components/atoms/icons/AccountsAddIcon.d.ts +5 -0
  196. package/dist/src/components/atoms/icons/AccountsAddIcon.js +16 -0
  197. package/dist/src/components/atoms/icons/AccountsIcon.d.ts +5 -0
  198. package/dist/src/components/atoms/icons/AccountsIcon.js +15 -0
  199. package/dist/src/components/atoms/icons/AccountsIconSmall.d.ts +5 -0
  200. package/dist/src/components/atoms/icons/AccountsIconSmall.js +20 -0
  201. package/dist/src/components/atoms/icons/AchReturnIcon.d.ts +2 -0
  202. package/dist/src/components/atoms/icons/AchReturnIcon.js +6 -0
  203. package/dist/src/components/atoms/icons/AllocatedIcon.d.ts +2 -0
  204. package/dist/src/components/atoms/icons/AllocatedIcon.js +6 -0
  205. package/dist/src/components/atoms/icons/AutopayOnIcon.d.ts +2 -0
  206. package/dist/src/components/atoms/icons/AutopayOnIcon.js +6 -0
  207. package/dist/src/components/atoms/icons/BankIcon.d.ts +2 -0
  208. package/dist/src/components/atoms/icons/BankIcon.js +7 -0
  209. package/dist/src/components/atoms/icons/CalendarIcon.d.ts +2 -0
  210. package/dist/src/components/atoms/icons/CalendarIcon.js +6 -0
  211. package/dist/src/components/atoms/icons/CarrotIcon.d.ts +5 -0
  212. package/dist/src/components/atoms/icons/CarrotIcon.js +20 -0
  213. package/dist/src/components/atoms/icons/CashIcon.d.ts +2 -0
  214. package/dist/src/components/atoms/icons/CashIcon.js +7 -0
  215. package/dist/src/components/atoms/icons/ChargebackIcon.d.ts +2 -0
  216. package/dist/src/components/atoms/icons/ChargebackIcon.js +6 -0
  217. package/dist/src/components/atoms/icons/ChargebackReversalIcon.d.ts +2 -0
  218. package/dist/src/components/atoms/icons/ChargebackReversalIcon.js +6 -0
  219. package/dist/src/components/atoms/icons/CheckIcon.d.ts +2 -0
  220. package/dist/src/components/atoms/icons/CheckIcon.js +12 -0
  221. package/dist/src/components/atoms/icons/CheckmarkIcon.d.ts +2 -0
  222. package/dist/src/components/atoms/icons/CheckmarkIcon.js +12 -0
  223. package/dist/src/components/atoms/icons/ChevronIcon.d.ts +5 -0
  224. package/dist/src/components/atoms/icons/ChevronIcon.js +16 -0
  225. package/dist/src/components/atoms/icons/CustomerSearchIcon.d.ts +2 -0
  226. package/dist/src/components/atoms/icons/CustomerSearchIcon.js +22 -0
  227. package/dist/src/components/atoms/icons/DuplicateIcon.d.ts +2 -0
  228. package/dist/src/components/atoms/icons/DuplicateIcon.js +6 -0
  229. package/dist/src/components/atoms/icons/EmptyCartIcon.d.ts +5 -0
  230. package/dist/src/components/atoms/icons/EmptyCartIcon.js +13 -0
  231. package/dist/src/components/atoms/icons/ErroredIcon.d.ts +2 -0
  232. package/dist/src/components/atoms/icons/ErroredIcon.js +6 -0
  233. package/dist/src/components/atoms/icons/ExternalLinkIcon.d.ts +5 -0
  234. package/dist/src/components/atoms/icons/ExternalLinkIcon.js +11 -0
  235. package/dist/src/components/atoms/icons/FailedIcon.d.ts +2 -0
  236. package/dist/src/components/atoms/icons/FailedIcon.js +6 -0
  237. package/dist/src/components/atoms/icons/ForgotPasswordIcon.d.ts +5 -0
  238. package/dist/src/components/atoms/icons/ForgotPasswordIcon.js +17 -0
  239. package/dist/src/components/atoms/icons/GenericCard.d.ts +2 -0
  240. package/dist/src/components/atoms/icons/GenericCard.js +6 -0
  241. package/dist/src/components/atoms/icons/GenericCardLarge.d.ts +2 -0
  242. package/dist/src/components/atoms/icons/GenericCardLarge.js +8 -0
  243. package/dist/src/components/atoms/icons/GoToEmailIcon.d.ts +5 -0
  244. package/dist/src/components/atoms/icons/GoToEmailIcon.js +16 -0
  245. package/dist/src/components/atoms/icons/IconAdd.d.ts +2 -0
  246. package/dist/src/components/atoms/icons/IconAdd.js +14 -0
  247. package/dist/src/components/atoms/icons/IconQuitLarge.d.ts +4 -0
  248. package/dist/src/components/atoms/icons/IconQuitLarge.js +19 -0
  249. package/dist/src/components/atoms/icons/Icons.theme.d.ts +33 -0
  250. package/dist/src/components/atoms/icons/Icons.theme.js +27 -0
  251. package/dist/src/components/atoms/icons/NoCustomerResultsIcon.d.ts +2 -0
  252. package/dist/src/components/atoms/icons/NoCustomerResultsIcon.js +15 -0
  253. package/dist/src/components/atoms/icons/NoPaymentResultsIcon.d.ts +2 -0
  254. package/dist/src/components/atoms/icons/NoPaymentResultsIcon.js +16 -0
  255. package/dist/src/components/atoms/icons/NotFoundIcon.d.ts +2 -0
  256. package/dist/src/components/atoms/icons/NotFoundIcon.js +56 -0
  257. package/dist/src/components/atoms/icons/PaymentIcon.d.ts +8 -0
  258. package/dist/src/components/atoms/icons/PaymentIcon.js +30 -0
  259. package/dist/src/components/atoms/icons/PaymentMethodAddIcon.d.ts +5 -0
  260. package/dist/src/components/atoms/icons/PaymentMethodAddIcon.js +28 -0
  261. package/dist/src/components/atoms/icons/PaymentMethodIcon.d.ts +5 -0
  262. package/dist/src/components/atoms/icons/PaymentMethodIcon.js +15 -0
  263. package/dist/src/components/atoms/icons/PaymentSearchIcon.d.ts +2 -0
  264. package/dist/src/components/atoms/icons/PaymentSearchIcon.js +23 -0
  265. package/dist/src/components/atoms/icons/PaymentsIconSmall.d.ts +5 -0
  266. package/dist/src/components/atoms/icons/PaymentsIconSmall.js +20 -0
  267. package/dist/src/components/atoms/icons/PendingIcon.d.ts +2 -0
  268. package/dist/src/components/atoms/icons/PendingIcon.js +6 -0
  269. package/dist/src/components/atoms/icons/PeriscopeFailedIcon.d.ts +2 -0
  270. package/dist/src/components/atoms/icons/PeriscopeFailedIcon.js +56 -0
  271. package/dist/src/components/atoms/icons/ProfileIcon.d.ts +5 -0
  272. package/dist/src/components/atoms/icons/ProfileIcon.js +16 -0
  273. package/dist/src/components/atoms/icons/ProfileIconSmall.d.ts +5 -0
  274. package/dist/src/components/atoms/icons/ProfileIconSmall.js +12 -0
  275. package/dist/src/components/atoms/icons/PropertiesAddIcon.d.ts +5 -0
  276. package/dist/src/components/atoms/icons/PropertiesAddIcon.js +31 -0
  277. package/dist/src/components/atoms/icons/PropertiesIconSmall.d.ts +5 -0
  278. package/dist/src/components/atoms/icons/PropertiesIconSmall.js +10 -0
  279. package/dist/src/components/atoms/icons/RefundIcon.d.ts +2 -0
  280. package/dist/src/components/atoms/icons/RefundIcon.js +6 -0
  281. package/dist/src/components/atoms/icons/RejectedIcon.d.ts +2 -0
  282. package/dist/src/components/atoms/icons/RejectedIcon.js +6 -0
  283. package/dist/src/components/atoms/icons/RejectedVelocityIcon.d.ts +2 -0
  284. package/dist/src/components/atoms/icons/RejectedVelocityIcon.js +6 -0
  285. package/dist/src/components/atoms/icons/ResetPasswordIcon.d.ts +2 -0
  286. package/dist/src/components/atoms/icons/ResetPasswordIcon.js +16 -0
  287. package/dist/src/components/atoms/icons/RoutingNumberImage.d.ts +2 -0
  288. package/dist/src/components/atoms/icons/RoutingNumberImage.js +20 -0
  289. package/dist/src/components/atoms/icons/SearchIcon.d.ts +2 -0
  290. package/dist/src/components/atoms/icons/SearchIcon.js +10 -0
  291. package/dist/src/components/atoms/icons/SettingsIconSmall.d.ts +5 -0
  292. package/dist/src/components/atoms/icons/SettingsIconSmall.js +20 -0
  293. package/dist/src/components/atoms/icons/ShoppingCartIcon.d.ts +2 -0
  294. package/dist/src/components/atoms/icons/ShoppingCartIcon.js +11 -0
  295. package/dist/src/components/atoms/icons/StatusUnknownIcon.d.ts +2 -0
  296. package/dist/src/components/atoms/icons/StatusUnknownIcon.js +6 -0
  297. package/dist/src/components/atoms/icons/SuccessfulIcon.d.ts +2 -0
  298. package/dist/src/components/atoms/icons/SuccessfulIcon.js +6 -0
  299. package/dist/src/components/atoms/icons/TimeoutImage.d.ts +2 -0
  300. package/dist/src/components/atoms/icons/TimeoutImage.js +38 -0
  301. package/dist/src/components/atoms/icons/TrashIcon.d.ts +5 -0
  302. package/dist/src/components/atoms/icons/TrashIcon.js +15 -0
  303. package/dist/src/components/atoms/icons/VerifiedEmailIcon.d.ts +5 -0
  304. package/dist/src/components/atoms/icons/VerifiedEmailIcon.js +19 -0
  305. package/dist/src/components/atoms/icons/VoidedIcon.d.ts +2 -0
  306. package/dist/src/components/atoms/icons/VoidedIcon.js +6 -0
  307. package/dist/src/components/atoms/icons/WalletIcon.d.ts +5 -0
  308. package/dist/src/components/atoms/icons/WalletIcon.js +16 -0
  309. package/dist/src/components/atoms/icons/WarningIconXS.d.ts +2 -0
  310. package/dist/src/components/atoms/icons/WarningIconXS.js +13 -0
  311. package/dist/src/components/atoms/icons/icons.stories.d.ts +42 -0
  312. package/dist/src/components/atoms/icons/icons.stories.js +44 -0
  313. package/dist/src/components/atoms/icons/index.d.ts +59 -0
  314. package/dist/src/components/atoms/icons/index.js +59 -0
  315. package/dist/src/components/atoms/index.d.ts +45 -0
  316. package/dist/src/components/atoms/index.js +45 -0
  317. package/dist/src/components/atoms/jumbo/Jumbo.d.ts +4 -0
  318. package/dist/src/components/atoms/jumbo/Jumbo.js +25 -0
  319. package/dist/src/components/atoms/jumbo/index.d.ts +2 -0
  320. package/dist/src/components/atoms/jumbo/index.js +2 -0
  321. package/dist/src/components/atoms/labeled-amount/LabeledAmount.d.ts +5 -0
  322. package/dist/src/components/atoms/labeled-amount/LabeledAmount.js +16 -0
  323. package/dist/src/components/atoms/labeled-amount/LabeledAmount.stories.d.ts +7 -0
  324. package/dist/src/components/atoms/labeled-amount/LabeledAmount.stories.js +20 -0
  325. package/dist/src/components/atoms/labeled-amount/LabeledAmount.theme.d.ts +12 -0
  326. package/dist/src/components/atoms/labeled-amount/LabeledAmount.theme.js +10 -0
  327. package/dist/src/components/atoms/labeled-amount/index.d.ts +2 -0
  328. package/dist/src/components/atoms/labeled-amount/index.js +2 -0
  329. package/dist/src/components/atoms/layouts/Box.d.ts +3 -0
  330. package/dist/src/components/atoms/layouts/Box.js +37 -0
  331. package/dist/src/components/atoms/layouts/Box.styled.d.ts +1 -0
  332. package/dist/src/components/atoms/layouts/Box.styled.js +107 -0
  333. package/dist/src/components/atoms/layouts/Center.d.ts +8 -0
  334. package/dist/src/components/atoms/layouts/Center.js +35 -0
  335. package/dist/src/components/atoms/layouts/Center.styled.d.ts +1 -0
  336. package/dist/src/components/atoms/layouts/Center.styled.js +21 -0
  337. package/dist/src/components/atoms/layouts/Cluster.d.ts +16 -0
  338. package/dist/src/components/atoms/layouts/Cluster.js +39 -0
  339. package/dist/src/components/atoms/layouts/Cluster.styled.d.ts +2 -0
  340. package/dist/src/components/atoms/layouts/Cluster.styled.js +71 -0
  341. package/dist/src/components/atoms/layouts/Cover.d.ts +11 -0
  342. package/dist/src/components/atoms/layouts/Cover.js +52 -0
  343. package/dist/src/components/atoms/layouts/Cover.styled.d.ts +1 -0
  344. package/dist/src/components/atoms/layouts/Cover.styled.js +30 -0
  345. package/dist/src/components/atoms/layouts/Frame.d.ts +7 -0
  346. package/dist/src/components/atoms/layouts/Frame.js +42 -0
  347. package/dist/src/components/atoms/layouts/Frame.styled.d.ts +1 -0
  348. package/dist/src/components/atoms/layouts/Frame.styled.js +10 -0
  349. package/dist/src/components/atoms/layouts/Grid.d.ts +8 -0
  350. package/dist/src/components/atoms/layouts/Grid.js +38 -0
  351. package/dist/src/components/atoms/layouts/Grid.styled.d.ts +1 -0
  352. package/dist/src/components/atoms/layouts/Grid.styled.js +24 -0
  353. package/dist/src/components/atoms/layouts/Imposter.d.ts +13 -0
  354. package/dist/src/components/atoms/layouts/Imposter.js +49 -0
  355. package/dist/src/components/atoms/layouts/Imposter.styled.d.ts +1 -0
  356. package/dist/src/components/atoms/layouts/Imposter.styled.js +30 -0
  357. package/dist/src/components/atoms/layouts/Motion.d.ts +7 -0
  358. package/dist/src/components/atoms/layouts/Motion.js +64 -0
  359. package/dist/src/components/atoms/layouts/Motion.styled.d.ts +1 -0
  360. package/dist/src/components/atoms/layouts/Motion.styled.js +71 -0
  361. package/dist/src/components/atoms/layouts/Reel.d.ts +13 -0
  362. package/dist/src/components/atoms/layouts/Reel.js +36 -0
  363. package/dist/src/components/atoms/layouts/Reel.styled.d.ts +1 -0
  364. package/dist/src/components/atoms/layouts/Reel.styled.js +30 -0
  365. package/dist/src/components/atoms/layouts/Sidebar.d.ts +11 -0
  366. package/dist/src/components/atoms/layouts/Sidebar.js +43 -0
  367. package/dist/src/components/atoms/layouts/Sidebar.styled.d.ts +2 -0
  368. package/dist/src/components/atoms/layouts/Sidebar.styled.js +59 -0
  369. package/dist/src/components/atoms/layouts/Stack.d.ts +10 -0
  370. package/dist/src/components/atoms/layouts/Stack.js +39 -0
  371. package/dist/src/components/atoms/layouts/Stack.styled.d.ts +1 -0
  372. package/dist/src/components/atoms/layouts/Stack.styled.js +26 -0
  373. package/dist/src/components/atoms/layouts/Switcher.d.ts +14 -0
  374. package/dist/src/components/atoms/layouts/Switcher.js +62 -0
  375. package/dist/src/components/atoms/layouts/Switcher.styled.d.ts +2 -0
  376. package/dist/src/components/atoms/layouts/Switcher.styled.js +42 -0
  377. package/dist/src/components/atoms/layouts/examples/FixedSizeContainer.d.ts +9 -0
  378. package/dist/src/components/atoms/layouts/examples/FixedSizeContainer.js +12 -0
  379. package/dist/src/components/atoms/layouts/examples/FixedSizeContainer.styled.d.ts +2 -0
  380. package/dist/src/components/atoms/layouts/examples/FixedSizeContainer.styled.js +21 -0
  381. package/dist/src/components/atoms/layouts/examples/LayoutContentBlock.d.ts +11 -0
  382. package/dist/src/components/atoms/layouts/examples/LayoutContentBlock.js +9 -0
  383. package/dist/src/components/atoms/layouts/examples/LayoutContentBlock.styled.d.ts +1 -0
  384. package/dist/src/components/atoms/layouts/examples/LayoutContentBlock.styled.js +25 -0
  385. package/dist/src/components/atoms/layouts/examples/ResizingContainer.d.ts +9 -0
  386. package/dist/src/components/atoms/layouts/examples/ResizingContainer.js +26 -0
  387. package/dist/src/components/atoms/layouts/examples/ResizingContainer.styled.d.ts +2 -0
  388. package/dist/src/components/atoms/layouts/examples/ResizingContainer.styled.js +23 -0
  389. package/dist/src/components/atoms/layouts/examples/box-example/BoxExample.stories.d.ts +7 -0
  390. package/dist/src/components/atoms/layouts/examples/box-example/BoxExample.stories.js +19 -0
  391. package/dist/src/components/atoms/layouts/examples/center-example/CenterExample.stories.d.ts +7 -0
  392. package/dist/src/components/atoms/layouts/examples/center-example/CenterExample.stories.js +13 -0
  393. package/dist/src/components/atoms/layouts/examples/cluster-example/ClusterExample.d.ts +6 -0
  394. package/dist/src/components/atoms/layouts/examples/cluster-example/ClusterExample.js +7 -0
  395. package/dist/src/components/atoms/layouts/examples/cluster-example/ClusterExample.stories.d.ts +21 -0
  396. package/dist/src/components/atoms/layouts/examples/cluster-example/ClusterExample.stories.js +43 -0
  397. package/dist/src/components/atoms/layouts/examples/cover-example/CoverExample.stories.d.ts +15 -0
  398. package/dist/src/components/atoms/layouts/examples/cover-example/CoverExample.stories.js +18 -0
  399. package/dist/src/components/atoms/layouts/examples/frame-example/FrameExample.stories.d.ts +7 -0
  400. package/dist/src/components/atoms/layouts/examples/frame-example/FrameExample.stories.js +12 -0
  401. package/dist/src/components/atoms/layouts/examples/grid-example/GridExample.d.ts +7 -0
  402. package/dist/src/components/atoms/layouts/examples/grid-example/GridExample.js +32 -0
  403. package/dist/src/components/atoms/layouts/examples/grid-example/GridExample.stories.d.ts +11 -0
  404. package/dist/src/components/atoms/layouts/examples/grid-example/GridExample.stories.js +26 -0
  405. package/dist/src/components/atoms/layouts/examples/imposter-example/ImposterExample.stories.d.ts +7 -0
  406. package/dist/src/components/atoms/layouts/examples/imposter-example/ImposterExample.stories.js +14 -0
  407. package/dist/src/components/atoms/layouts/examples/motion-example/MotionExample.stories.d.ts +7 -0
  408. package/dist/src/components/atoms/layouts/examples/motion-example/MotionExample.stories.js +41 -0
  409. package/dist/src/components/atoms/layouts/examples/reel-example/ReelExample.stories.d.ts +7 -0
  410. package/dist/src/components/atoms/layouts/examples/reel-example/ReelExample.stories.js +21 -0
  411. package/dist/src/components/atoms/layouts/examples/sidebar-example/SidebarExample.d.ts +7 -0
  412. package/dist/src/components/atoms/layouts/examples/sidebar-example/SidebarExample.js +7 -0
  413. package/dist/src/components/atoms/layouts/examples/sidebar-example/SidebarExample.stories.d.ts +11 -0
  414. package/dist/src/components/atoms/layouts/examples/sidebar-example/SidebarExample.stories.js +41 -0
  415. package/dist/src/components/atoms/layouts/examples/stack-example/StackExample.d.ts +7 -0
  416. package/dist/src/components/atoms/layouts/examples/stack-example/StackExample.js +26 -0
  417. package/dist/src/components/atoms/layouts/examples/stack-example/StackExample.stories.d.ts +21 -0
  418. package/dist/src/components/atoms/layouts/examples/stack-example/StackExample.stories.js +26 -0
  419. package/dist/src/components/atoms/layouts/examples/switcher-example/SwitcherExample.d.ts +8 -0
  420. package/dist/src/components/atoms/layouts/examples/switcher-example/SwitcherExample.js +26 -0
  421. package/dist/src/components/atoms/layouts/examples/switcher-example/SwitcherExample.stories.d.ts +16 -0
  422. package/dist/src/components/atoms/layouts/examples/switcher-example/SwitcherExample.stories.js +30 -0
  423. package/dist/src/components/atoms/layouts/index.d.ts +13 -0
  424. package/dist/src/components/atoms/layouts/index.js +13 -0
  425. package/dist/src/components/atoms/line-item/LineItem.d.ts +5 -0
  426. package/dist/src/components/atoms/line-item/LineItem.js +14 -0
  427. package/dist/src/components/atoms/line-item/LineItem.stories.d.ts +7 -0
  428. package/dist/src/components/atoms/line-item/LineItem.stories.js +10 -0
  429. package/dist/src/components/atoms/line-item/LineItem.theme.d.ts +16 -0
  430. package/dist/src/components/atoms/line-item/LineItem.theme.js +6 -0
  431. package/dist/src/components/atoms/line-item/index.d.ts +2 -0
  432. package/dist/src/components/atoms/line-item/index.js +2 -0
  433. package/dist/src/components/atoms/link/ExternalLink.d.ts +14 -0
  434. package/dist/src/components/atoms/link/ExternalLink.js +14 -0
  435. package/dist/src/components/atoms/link/ExternalLink.styled.d.ts +1 -0
  436. package/dist/src/components/atoms/link/ExternalLink.styled.js +64 -0
  437. package/dist/src/components/atoms/link/InternalLink.d.ts +15 -0
  438. package/dist/src/components/atoms/link/InternalLink.js +13 -0
  439. package/dist/src/components/atoms/link/InternalLink.styled.d.ts +1 -0
  440. package/dist/src/components/atoms/link/InternalLink.styled.js +68 -0
  441. package/dist/src/components/atoms/link/Link.stories.d.ts +8 -0
  442. package/dist/src/components/atoms/link/Link.stories.js +26 -0
  443. package/dist/src/components/atoms/link/Link.theme.d.ts +14 -0
  444. package/dist/src/components/atoms/link/Link.theme.js +13 -0
  445. package/dist/src/components/atoms/link/index.d.ts +3 -0
  446. package/dist/src/components/atoms/link/index.js +3 -0
  447. package/dist/src/components/atoms/loading/Loading.d.ts +2 -0
  448. package/dist/src/components/atoms/loading/Loading.js +9 -0
  449. package/dist/src/components/atoms/loading/index.d.ts +2 -0
  450. package/dist/src/components/atoms/loading/index.js +2 -0
  451. package/dist/src/components/atoms/nav-footer/NavFooter.d.ts +13 -0
  452. package/dist/src/components/atoms/nav-footer/NavFooter.js +38 -0
  453. package/dist/src/components/atoms/nav-footer/NavFooter.stories.d.ts +7 -0
  454. package/dist/src/components/atoms/nav-footer/NavFooter.stories.js +13 -0
  455. package/dist/src/components/atoms/nav-footer/index.d.ts +2 -0
  456. package/dist/src/components/atoms/nav-footer/index.js +2 -0
  457. package/dist/src/components/atoms/nav-header/NavHeader.d.ts +10 -0
  458. package/dist/src/components/atoms/nav-header/NavHeader.js +37 -0
  459. package/dist/src/components/atoms/nav-header/NavHeader.stories.d.ts +7 -0
  460. package/dist/src/components/atoms/nav-header/NavHeader.stories.js +13 -0
  461. package/dist/src/components/atoms/nav-header/index.d.ts +2 -0
  462. package/dist/src/components/atoms/nav-header/index.js +2 -0
  463. package/dist/src/components/atoms/nav-tabs/NavTab.d.ts +5 -0
  464. package/dist/src/components/atoms/nav-tabs/NavTab.js +20 -0
  465. package/dist/src/components/atoms/nav-tabs/NavTab.theme.d.ts +9 -0
  466. package/dist/src/components/atoms/nav-tabs/NavTab.theme.js +9 -0
  467. package/dist/src/components/atoms/nav-tabs/NavTabs.d.ts +4 -0
  468. package/dist/src/components/atoms/nav-tabs/NavTabs.js +27 -0
  469. package/dist/src/components/atoms/nav-tabs/TabConfig.d.ts +4 -0
  470. package/dist/src/components/atoms/nav-tabs/TabConfig.js +1 -0
  471. package/dist/src/components/atoms/nav-tabs/index.d.ts +1 -0
  472. package/dist/src/components/atoms/nav-tabs/index.js +2 -0
  473. package/dist/src/components/atoms/paragraph/Paragraph.d.ts +5 -0
  474. package/dist/src/components/atoms/paragraph/Paragraph.js +40 -0
  475. package/dist/src/components/atoms/paragraph/Paragraph.stories.d.ts +7 -0
  476. package/dist/src/components/atoms/paragraph/Paragraph.stories.js +17 -0
  477. package/dist/src/components/atoms/paragraph/Paragraph.styled.d.ts +1 -0
  478. package/dist/src/components/atoms/paragraph/Paragraph.styled.js +25 -0
  479. package/dist/src/components/atoms/paragraph/Paragraph.theme.d.ts +27 -0
  480. package/dist/src/components/atoms/paragraph/Paragraph.theme.js +21 -0
  481. package/dist/src/components/atoms/paragraph/index.d.ts +2 -0
  482. package/dist/src/components/atoms/paragraph/index.js +2 -0
  483. package/dist/src/components/atoms/password-requirements/PasswordRequirements.d.ts +5 -0
  484. package/dist/src/components/atoms/password-requirements/PasswordRequirements.js +59 -0
  485. package/dist/src/components/atoms/password-requirements/PasswordRequirements.stories.d.ts +7 -0
  486. package/dist/src/components/atoms/password-requirements/PasswordRequirements.stories.js +46 -0
  487. package/dist/src/components/atoms/password-requirements/index.d.ts +2 -0
  488. package/dist/src/components/atoms/password-requirements/index.js +2 -0
  489. package/dist/src/components/atoms/placeholder/Placeholder.d.ts +5 -0
  490. package/dist/src/components/atoms/placeholder/Placeholder.js +33 -0
  491. package/dist/src/components/atoms/placeholder/Placeholder.stories.d.ts +7 -0
  492. package/dist/src/components/atoms/placeholder/Placeholder.stories.js +23 -0
  493. package/dist/src/components/atoms/placeholder/Placeholder.theme.d.ts +16 -0
  494. package/dist/src/components/atoms/placeholder/Placeholder.theme.js +7 -0
  495. package/dist/src/components/atoms/placeholder/index.d.ts +2 -0
  496. package/dist/src/components/atoms/placeholder/index.js +2 -0
  497. package/dist/src/components/atoms/processing-fee/ProcessingFee.d.ts +5 -0
  498. package/dist/src/components/atoms/processing-fee/ProcessingFee.js +15 -0
  499. package/dist/src/components/atoms/processing-fee/ProcessingFee.stories.d.ts +7 -0
  500. package/dist/src/components/atoms/processing-fee/ProcessingFee.stories.js +17 -0
  501. package/dist/src/components/atoms/processing-fee/ProcessingFee.theme.d.ts +8 -0
  502. package/dist/src/components/atoms/processing-fee/ProcessingFee.theme.js +5 -0
  503. package/dist/src/components/atoms/processing-fee/index.d.ts +2 -0
  504. package/dist/src/components/atoms/processing-fee/index.js +2 -0
  505. package/dist/src/components/atoms/radio-button/RadioButton.d.ts +5 -0
  506. package/dist/src/components/atoms/radio-button/RadioButton.js +68 -0
  507. package/dist/src/components/atoms/radio-button/RadioButton.stories.d.ts +7 -0
  508. package/dist/src/components/atoms/radio-button/RadioButton.stories.js +16 -0
  509. package/dist/src/components/atoms/radio-button/RadioButton.theme.d.ts +7 -0
  510. package/dist/src/components/atoms/radio-button/RadioButton.theme.js +7 -0
  511. package/dist/src/components/atoms/radio-button/index.d.ts +2 -0
  512. package/dist/src/components/atoms/radio-button/index.js +2 -0
  513. package/dist/src/components/atoms/searchable-select/SearchableSelect.d.ts +5 -0
  514. package/dist/src/components/atoms/searchable-select/SearchableSelect.js +37 -0
  515. package/dist/src/components/atoms/searchable-select/SearchableSelect.theme.d.ts +8 -0
  516. package/dist/src/components/atoms/searchable-select/SearchableSelect.theme.js +6 -0
  517. package/dist/src/components/atoms/searchable-select/index.d.ts +2 -0
  518. package/dist/src/components/atoms/searchable-select/index.js +2 -0
  519. package/dist/src/components/atoms/solid-divider/SolidDivider.d.ts +5 -0
  520. package/dist/src/components/atoms/solid-divider/SolidDivider.js +9 -0
  521. package/dist/src/components/atoms/solid-divider/SolidDivider.stories.d.ts +7 -0
  522. package/dist/src/components/atoms/solid-divider/SolidDivider.stories.js +9 -0
  523. package/dist/src/components/atoms/solid-divider/SolidDivider.theme.d.ts +13 -0
  524. package/dist/src/components/atoms/solid-divider/SolidDivider.theme.js +7 -0
  525. package/dist/src/components/atoms/solid-divider/index.d.ts +2 -0
  526. package/dist/src/components/atoms/solid-divider/index.js +2 -0
  527. package/dist/src/components/atoms/spinner/Spinner.d.ts +6 -0
  528. package/dist/src/components/atoms/spinner/Spinner.js +27 -0
  529. package/dist/src/components/atoms/spinner/Spinner.stories.d.ts +7 -0
  530. package/dist/src/components/atoms/spinner/Spinner.stories.js +12 -0
  531. package/dist/src/components/atoms/spinner/Spinner.theme.d.ts +5 -0
  532. package/dist/src/components/atoms/spinner/Spinner.theme.js +4 -0
  533. package/dist/src/components/atoms/spinner/index.d.ts +2 -0
  534. package/dist/src/components/atoms/spinner/index.js +2 -0
  535. package/dist/src/components/atoms/state-province-dropdown/StateProvinceDropdown.d.ts +10 -0
  536. package/dist/src/components/atoms/state-province-dropdown/StateProvinceDropdown.js +19 -0
  537. package/dist/src/components/atoms/state-province-dropdown/StateProvinceDropdown.stories.d.ts +7 -0
  538. package/dist/src/components/atoms/state-province-dropdown/StateProvinceDropdown.stories.js +30 -0
  539. package/dist/src/components/atoms/state-province-dropdown/index.d.ts +2 -0
  540. package/dist/src/components/atoms/state-province-dropdown/index.js +2 -0
  541. package/dist/src/components/atoms/state-province-dropdown/options.d.ts +11 -0
  542. package/dist/src/components/atoms/state-province-dropdown/options.js +3837 -0
  543. package/dist/src/components/atoms/tab/Tab.d.ts +6 -0
  544. package/dist/src/components/atoms/tab/Tab.js +17 -0
  545. package/dist/src/components/atoms/tab/Tab.stories.d.ts +7 -0
  546. package/dist/src/components/atoms/tab/Tab.stories.js +9 -0
  547. package/dist/src/components/atoms/tab/Tab.theme.d.ts +27 -0
  548. package/dist/src/components/atoms/tab/Tab.theme.js +23 -0
  549. package/dist/src/components/atoms/tab/index.d.ts +2 -0
  550. package/dist/src/components/atoms/tab/index.js +2 -0
  551. package/dist/src/components/atoms/text/Text.d.ts +5 -0
  552. package/dist/src/components/atoms/text/Text.js +34 -0
  553. package/dist/src/components/atoms/text/Text.stories.d.ts +7 -0
  554. package/dist/src/components/atoms/text/Text.stories.js +17 -0
  555. package/dist/src/components/atoms/text/Text.styled.d.ts +1 -0
  556. package/dist/src/components/atoms/text/Text.styled.js +32 -0
  557. package/dist/src/components/atoms/text/Text.theme.d.ts +27 -0
  558. package/dist/src/components/atoms/text/Text.theme.js +24 -0
  559. package/dist/src/components/atoms/text/index.d.ts +2 -0
  560. package/dist/src/components/atoms/text/index.js +2 -0
  561. package/dist/src/components/atoms/title/Title.d.ts +5 -0
  562. package/dist/src/components/atoms/title/Title.js +60 -0
  563. package/dist/src/components/atoms/title/Title.styled.d.ts +1 -0
  564. package/dist/src/components/atoms/title/Title.styled.js +28 -0
  565. package/dist/src/components/atoms/title/Title.theme.d.ts +26 -0
  566. package/dist/src/components/atoms/title/Title.theme.js +22 -0
  567. package/dist/src/components/atoms/title/index.d.ts +2 -0
  568. package/dist/src/components/atoms/title/index.js +2 -0
  569. package/dist/src/components/atoms/toggle-switch/ToggleSwitch.d.ts +5 -0
  570. package/dist/src/components/atoms/toggle-switch/ToggleSwitch.js +126 -0
  571. package/dist/src/components/atoms/toggle-switch/ToggleSwitch.stories.d.ts +7 -0
  572. package/dist/src/components/atoms/toggle-switch/ToggleSwitch.stories.js +15 -0
  573. package/dist/src/components/atoms/toggle-switch/ToggleSwitch.theme.d.ts +15 -0
  574. package/dist/src/components/atoms/toggle-switch/ToggleSwitch.theme.js +16 -0
  575. package/dist/src/components/atoms/toggle-switch/index.d.ts +2 -0
  576. package/dist/src/components/atoms/toggle-switch/index.js +2 -0
  577. package/dist/src/components/atoms/typeahead-input/TypeaheadIinput.stories.d.ts +7 -0
  578. package/dist/src/components/atoms/typeahead-input/TypeaheadIinput.stories.js +9 -0
  579. package/dist/src/components/atoms/typeahead-input/TypeaheadInput.d.ts +8 -0
  580. package/dist/src/components/atoms/typeahead-input/TypeaheadInput.js +22 -0
  581. package/dist/src/components/atoms/typeahead-input/TypeaheadInput.theme.d.ts +11 -0
  582. package/dist/src/components/atoms/typeahead-input/TypeaheadInput.theme.js +11 -0
  583. package/dist/src/components/atoms/typeahead-input/index.d.ts +2 -0
  584. package/dist/src/components/atoms/typeahead-input/index.js +2 -0
  585. package/dist/src/components/atoms/welcome-card/Card.d.ts +5 -0
  586. package/dist/src/components/atoms/welcome-card/Card.js +52 -0
  587. package/dist/src/components/atoms/welcome-card/Card.theme.d.ts +7 -0
  588. package/dist/src/components/atoms/welcome-card/Card.theme.js +7 -0
  589. package/dist/src/components/atoms/welcome-card/index.d.ts +8 -0
  590. package/dist/src/components/atoms/welcome-card/index.js +20 -0
  591. package/dist/src/components/index.d.ts +4 -0
  592. package/dist/src/components/index.js +4 -0
  593. package/dist/src/components/molecules/account-and-routing-modal/AccountAndRoutingModal.d.ts +5 -0
  594. package/dist/src/components/molecules/account-and-routing-modal/AccountAndRoutingModal.js +22 -0
  595. package/dist/src/components/molecules/account-and-routing-modal/AccountAndRoutingModal.theme.d.ts +28 -0
  596. package/dist/src/components/molecules/account-and-routing-modal/AccountAndRoutingModal.theme.js +17 -0
  597. package/dist/src/components/molecules/account-and-routing-modal/index.d.ts +2 -0
  598. package/dist/src/components/molecules/account-and-routing-modal/index.js +2 -0
  599. package/dist/src/components/molecules/address-form/AddressForm.d.ts +12 -0
  600. package/dist/src/components/molecules/address-form/AddressForm.js +52 -0
  601. package/dist/src/components/molecules/address-form/AddressForm.state.d.ts +3 -0
  602. package/dist/src/components/molecules/address-form/AddressForm.state.js +33 -0
  603. package/dist/src/components/molecules/address-form/AddressForm.stories.d.ts +7 -0
  604. package/dist/src/components/molecules/address-form/AddressForm.stories.js +15 -0
  605. package/dist/src/components/molecules/address-form/index.d.ts +2 -0
  606. package/dist/src/components/molecules/address-form/index.js +6 -0
  607. package/dist/src/components/molecules/change-password-form/ChangePasswordForm.d.ts +13 -0
  608. package/dist/src/components/molecules/change-password-form/ChangePasswordForm.js +55 -0
  609. package/dist/src/components/molecules/change-password-form/ChangePasswordForm.state.d.ts +3 -0
  610. package/dist/src/components/molecules/change-password-form/ChangePasswordForm.state.js +21 -0
  611. package/dist/src/components/molecules/change-password-form/ChangePasswordForm.stories.d.ts +7 -0
  612. package/dist/src/components/molecules/change-password-form/ChangePasswordForm.stories.js +14 -0
  613. package/dist/src/components/molecules/change-password-form/index.d.ts +2 -0
  614. package/dist/src/components/molecules/change-password-form/index.js +6 -0
  615. package/dist/src/components/molecules/collapsible-section/CollapsibleSection.d.ts +5 -0
  616. package/dist/src/components/molecules/collapsible-section/CollapsibleSection.js +60 -0
  617. package/dist/src/components/molecules/collapsible-section/CollapsibleSection.stories.d.ts +7 -0
  618. package/dist/src/components/molecules/collapsible-section/CollapsibleSection.stories.js +30 -0
  619. package/dist/src/components/molecules/collapsible-section/CollapsibleSection.theme.d.ts +9 -0
  620. package/dist/src/components/molecules/collapsible-section/CollapsibleSection.theme.js +8 -0
  621. package/dist/src/components/molecules/collapsible-section/index.d.ts +2 -0
  622. package/dist/src/components/molecules/collapsible-section/index.js +2 -0
  623. package/dist/src/components/molecules/edit-name-form/EdidNameForm.stories.d.ts +7 -0
  624. package/dist/src/components/molecules/edit-name-form/EdidNameForm.stories.js +16 -0
  625. package/dist/src/components/molecules/edit-name-form/EditNameForm.d.ts +8 -0
  626. package/dist/src/components/molecules/edit-name-form/EditNameForm.js +22 -0
  627. package/dist/src/components/molecules/edit-name-form/EditNameForm.state.d.ts +3 -0
  628. package/dist/src/components/molecules/edit-name-form/EditNameForm.state.js +11 -0
  629. package/dist/src/components/molecules/edit-name-form/index.d.ts +2 -0
  630. package/dist/src/components/molecules/edit-name-form/index.js +6 -0
  631. package/dist/src/components/molecules/editable-list/EditableList.d.ts +23 -0
  632. package/dist/src/components/molecules/editable-list/EditableList.js +49 -0
  633. package/dist/src/components/molecules/editable-list/EditableList.styled.d.ts +2 -0
  634. package/dist/src/components/molecules/editable-list/EditableList.styled.js +15 -0
  635. package/dist/src/components/molecules/editable-list/index.d.ts +2 -0
  636. package/dist/src/components/molecules/editable-list/index.js +2 -0
  637. package/dist/src/components/molecules/editable-table/EditableTable.d.ts +7 -0
  638. package/dist/src/components/molecules/editable-table/EditableTable.js +16 -0
  639. package/dist/src/components/molecules/editable-table/EditableTable.styled.d.ts +9 -0
  640. package/dist/src/components/molecules/editable-table/EditableTable.styled.js +61 -0
  641. package/dist/src/components/molecules/editable-table/TableListItem.d.ts +9 -0
  642. package/dist/src/components/molecules/editable-table/TableListItem.js +21 -0
  643. package/dist/src/components/molecules/editable-table/index.d.ts +3 -0
  644. package/dist/src/components/molecules/editable-table/index.js +3 -0
  645. package/dist/src/components/molecules/email-form/EmailForm.d.ts +13 -0
  646. package/dist/src/components/molecules/email-form/EmailForm.js +23 -0
  647. package/dist/src/components/molecules/email-form/EmailForm.state.d.ts +3 -0
  648. package/dist/src/components/molecules/email-form/EmailForm.state.js +8 -0
  649. package/dist/src/components/molecules/email-form/EmailForm.stories.d.ts +7 -0
  650. package/dist/src/components/molecules/email-form/EmailForm.stories.js +16 -0
  651. package/dist/src/components/molecules/email-form/index.d.ts +2 -0
  652. package/dist/src/components/molecules/email-form/index.js +6 -0
  653. package/dist/src/components/molecules/forgot-password-form/ForgotPasswordForm.d.ts +8 -0
  654. package/dist/src/components/molecules/forgot-password-form/ForgotPasswordForm.js +17 -0
  655. package/dist/src/components/molecules/forgot-password-form/ForgotPasswordForm.state.d.ts +3 -0
  656. package/dist/src/components/molecules/forgot-password-form/ForgotPasswordForm.state.js +8 -0
  657. package/dist/src/components/molecules/forgot-password-form/ForgotPasswordForm.stories.d.ts +7 -0
  658. package/dist/src/components/molecules/forgot-password-form/ForgotPasswordForm.stories.js +16 -0
  659. package/dist/src/components/molecules/forgot-password-form/index.d.ts +2 -0
  660. package/dist/src/components/molecules/forgot-password-form/index.js +6 -0
  661. package/dist/src/components/molecules/highlight-tab-row/HighlightTabRow.d.ts +6 -0
  662. package/dist/src/components/molecules/highlight-tab-row/HighlightTabRow.js +29 -0
  663. package/dist/src/components/molecules/highlight-tab-row/HighlightTabRow.stories.d.ts +7 -0
  664. package/dist/src/components/molecules/highlight-tab-row/HighlightTabRow.stories.js +17 -0
  665. package/dist/src/components/molecules/highlight-tab-row/HighlightTabRow.theme.d.ts +7 -0
  666. package/dist/src/components/molecules/highlight-tab-row/HighlightTabRow.theme.js +6 -0
  667. package/dist/src/components/molecules/highlight-tab-row/index.d.ts +2 -0
  668. package/dist/src/components/molecules/highlight-tab-row/index.js +2 -0
  669. package/dist/src/components/molecules/index.d.ts +36 -0
  670. package/dist/src/components/molecules/index.js +36 -0
  671. package/dist/src/components/molecules/internal-user-info-form/InternalUserInfoForm.d.ts +25 -0
  672. package/dist/src/components/molecules/internal-user-info-form/InternalUserInfoForm.js +108 -0
  673. package/dist/src/components/molecules/internal-user-info-form/InternalUserInfoForm.state.d.ts +3 -0
  674. package/dist/src/components/molecules/internal-user-info-form/InternalUserInfoForm.state.js +23 -0
  675. package/dist/src/components/molecules/internal-user-info-form/index.d.ts +2 -0
  676. package/dist/src/components/molecules/internal-user-info-form/index.js +6 -0
  677. package/dist/src/components/molecules/login-form/LoginForm.d.ts +8 -0
  678. package/dist/src/components/molecules/login-form/LoginForm.js +22 -0
  679. package/dist/src/components/molecules/login-form/LoginForm.state.d.ts +3 -0
  680. package/dist/src/components/molecules/login-form/LoginForm.state.js +11 -0
  681. package/dist/src/components/molecules/login-form/LoginForm.stories.d.ts +7 -0
  682. package/dist/src/components/molecules/login-form/LoginForm.stories.js +16 -0
  683. package/dist/src/components/molecules/login-form/index.d.ts +2 -0
  684. package/dist/src/components/molecules/login-form/index.js +6 -0
  685. package/dist/src/components/molecules/modal/Modal.d.ts +27 -0
  686. package/dist/src/components/molecules/modal/Modal.js +51 -0
  687. package/dist/src/components/molecules/modal/Modal.stories.d.ts +15 -0
  688. package/dist/src/components/molecules/modal/Modal.stories.js +28 -0
  689. package/dist/src/components/molecules/modal/index.d.ts +2 -0
  690. package/dist/src/components/molecules/modal/index.js +2 -0
  691. package/dist/src/components/molecules/module/Module.d.ts +6 -0
  692. package/dist/src/components/molecules/module/Module.js +31 -0
  693. package/dist/src/components/molecules/module/Module.stories.d.ts +7 -0
  694. package/dist/src/components/molecules/module/Module.stories.js +18 -0
  695. package/dist/src/components/molecules/module/Module.theme.d.ts +87 -0
  696. package/dist/src/components/molecules/module/Module.theme.js +43 -0
  697. package/dist/src/components/molecules/module/index.d.ts +2 -0
  698. package/dist/src/components/molecules/module/index.js +2 -0
  699. package/dist/src/components/molecules/nav-menu/NavMenu.theme.d.ts +15 -0
  700. package/dist/src/components/molecules/nav-menu/NavMenu.theme.js +12 -0
  701. package/dist/src/components/molecules/nav-menu/NavMenuDesktop.d.ts +5 -0
  702. package/dist/src/components/molecules/nav-menu/NavMenuDesktop.js +11 -0
  703. package/dist/src/components/molecules/nav-menu/NavMenuMobile.d.ts +5 -0
  704. package/dist/src/components/molecules/nav-menu/NavMenuMobile.js +49 -0
  705. package/dist/src/components/molecules/nav-menu/index.d.ts +3 -0
  706. package/dist/src/components/molecules/nav-menu/index.js +3 -0
  707. package/dist/src/components/molecules/obligation/Obligation.d.ts +23 -0
  708. package/dist/src/components/molecules/obligation/Obligation.js +44 -0
  709. package/dist/src/components/molecules/obligation/icons/AccountBillIcon.d.ts +2 -0
  710. package/dist/src/components/molecules/obligation/icons/AccountBillIcon.js +20 -0
  711. package/dist/src/components/molecules/obligation/icons/AccountConstructionIcon.d.ts +2 -0
  712. package/dist/src/components/molecules/obligation/icons/AccountConstructionIcon.js +21 -0
  713. package/dist/src/components/molecules/obligation/icons/AccountDentalIcon.d.ts +2 -0
  714. package/dist/src/components/molecules/obligation/icons/AccountDentalIcon.js +21 -0
  715. package/dist/src/components/molecules/obligation/icons/AccountElectricIcon.d.ts +2 -0
  716. package/dist/src/components/molecules/obligation/icons/AccountElectricIcon.js +21 -0
  717. package/dist/src/components/molecules/obligation/icons/AccountGarbageIcon.d.ts +2 -0
  718. package/dist/src/components/molecules/obligation/icons/AccountGarbageIcon.js +21 -0
  719. package/dist/src/components/molecules/obligation/icons/AccountGasIcon.d.ts +2 -0
  720. package/dist/src/components/molecules/obligation/icons/AccountGasIcon.js +21 -0
  721. package/dist/src/components/molecules/obligation/icons/AccountGenericIcon.d.ts +2 -0
  722. package/dist/src/components/molecules/obligation/icons/AccountGenericIcon.js +20 -0
  723. package/dist/src/components/molecules/obligation/icons/AccountMedicalIcon.d.ts +2 -0
  724. package/dist/src/components/molecules/obligation/icons/AccountMedicalIcon.js +21 -0
  725. package/dist/src/components/molecules/obligation/icons/AccountWaterIcon.d.ts +2 -0
  726. package/dist/src/components/molecules/obligation/icons/AccountWaterIcon.js +21 -0
  727. package/dist/src/components/molecules/obligation/icons/PropertyApartmentIcon.d.ts +2 -0
  728. package/dist/src/components/molecules/obligation/icons/PropertyApartmentIcon.js +22 -0
  729. package/dist/src/components/molecules/obligation/icons/PropertyBusinessIcon.d.ts +2 -0
  730. package/dist/src/components/molecules/obligation/icons/PropertyBusinessIcon.js +20 -0
  731. package/dist/src/components/molecules/obligation/icons/PropertyCarIcon.d.ts +2 -0
  732. package/dist/src/components/molecules/obligation/icons/PropertyCarIcon.js +22 -0
  733. package/dist/src/components/molecules/obligation/icons/PropertyCommercialVehicleIcon.d.ts +2 -0
  734. package/dist/src/components/molecules/obligation/icons/PropertyCommercialVehicleIcon.js +23 -0
  735. package/dist/src/components/molecules/obligation/icons/PropertyGarageIcon.d.ts +2 -0
  736. package/dist/src/components/molecules/obligation/icons/PropertyGarageIcon.js +22 -0
  737. package/dist/src/components/molecules/obligation/icons/PropertyLandIcon.d.ts +2 -0
  738. package/dist/src/components/molecules/obligation/icons/PropertyLandIcon.js +22 -0
  739. package/dist/src/components/molecules/obligation/icons/PropertyMotorcycleIcon.d.ts +2 -0
  740. package/dist/src/components/molecules/obligation/icons/PropertyMotorcycleIcon.js +22 -0
  741. package/dist/src/components/molecules/obligation/icons/PropertyPersonalIcon.d.ts +2 -0
  742. package/dist/src/components/molecules/obligation/icons/PropertyPersonalIcon.js +20 -0
  743. package/dist/src/components/molecules/obligation/icons/PropertyStorefrontIcon.d.ts +2 -0
  744. package/dist/src/components/molecules/obligation/icons/PropertyStorefrontIcon.js +23 -0
  745. package/dist/src/components/molecules/obligation/icons/index.d.ts +38 -0
  746. package/dist/src/components/molecules/obligation/icons/index.js +57 -0
  747. package/dist/src/components/molecules/obligation/index.d.ts +2 -0
  748. package/dist/src/components/molecules/obligation/index.js +2 -0
  749. package/dist/src/components/molecules/obligation/modules/AmountModule.d.ts +12 -0
  750. package/dist/src/components/molecules/obligation/modules/AmountModule.js +17 -0
  751. package/dist/src/components/molecules/obligation/modules/AmountModule.stories.d.ts +7 -0
  752. package/dist/src/components/molecules/obligation/modules/AmountModule.stories.js +12 -0
  753. package/dist/src/components/molecules/obligation/modules/AutopayModalModule.d.ts +4 -0
  754. package/dist/src/components/molecules/obligation/modules/AutopayModalModule.js +76 -0
  755. package/dist/src/components/molecules/obligation/modules/AutopayModalModule.theme.d.ts +15 -0
  756. package/dist/src/components/molecules/obligation/modules/AutopayModalModule.theme.js +15 -0
  757. package/dist/src/components/molecules/obligation/modules/IconModule.d.ts +8 -0
  758. package/dist/src/components/molecules/obligation/modules/IconModule.js +20 -0
  759. package/dist/src/components/molecules/obligation/modules/InactiveControlsModule.d.ts +16 -0
  760. package/dist/src/components/molecules/obligation/modules/InactiveControlsModule.js +18 -0
  761. package/dist/src/components/molecules/obligation/modules/InactiveTitleModule.d.ts +6 -0
  762. package/dist/src/components/molecules/obligation/modules/InactiveTitleModule.js +18 -0
  763. package/dist/src/components/molecules/obligation/modules/PaymentDetailsActions.d.ts +18 -0
  764. package/dist/src/components/molecules/obligation/modules/PaymentDetailsActions.js +44 -0
  765. package/dist/src/components/molecules/obligation/modules/RemoveAccountModalModule.d.ts +8 -0
  766. package/dist/src/components/molecules/obligation/modules/RemoveAccountModalModule.js +39 -0
  767. package/dist/src/components/molecules/obligation/modules/TitleModule.d.ts +7 -0
  768. package/dist/src/components/molecules/obligation/modules/TitleModule.js +13 -0
  769. package/dist/src/components/molecules/obligation/modules/index.d.ts +8 -0
  770. package/dist/src/components/molecules/obligation/modules/index.js +8 -0
  771. package/dist/src/components/molecules/pagination/Pagination.d.ts +14 -0
  772. package/dist/src/components/molecules/pagination/Pagination.js +56 -0
  773. package/dist/src/components/molecules/pagination/index.d.ts +2 -0
  774. package/dist/src/components/molecules/pagination/index.js +2 -0
  775. package/dist/src/components/molecules/partial-amount-form/PartialAmountForm.d.ts +11 -0
  776. package/dist/src/components/molecules/partial-amount-form/PartialAmountForm.js +27 -0
  777. package/dist/src/components/molecules/partial-amount-form/PartialAmountForm.state.d.ts +5 -0
  778. package/dist/src/components/molecules/partial-amount-form/PartialAmountForm.state.js +49 -0
  779. package/dist/src/components/molecules/partial-amount-form/index.d.ts +3 -0
  780. package/dist/src/components/molecules/partial-amount-form/index.js +3 -0
  781. package/dist/src/components/molecules/payment-button-bar/PaymentButtonBar.d.ts +15 -0
  782. package/dist/src/components/molecules/payment-button-bar/PaymentButtonBar.js +24 -0
  783. package/dist/src/components/molecules/payment-button-bar/PaymentButtonBar.stories.d.ts +7 -0
  784. package/dist/src/components/molecules/payment-button-bar/PaymentButtonBar.stories.js +10 -0
  785. package/dist/src/components/molecules/payment-button-bar/index.d.ts +2 -0
  786. package/dist/src/components/molecules/payment-button-bar/index.js +2 -0
  787. package/dist/src/components/molecules/payment-details/PaymentDetails.d.ts +5 -0
  788. package/dist/src/components/molecules/payment-details/PaymentDetails.js +143 -0
  789. package/dist/src/components/molecules/payment-details/PaymentDetails.stories.d.ts +11 -0
  790. package/dist/src/components/molecules/payment-details/PaymentDetails.stories.js +126 -0
  791. package/dist/src/components/molecules/payment-details/PaymentDetails.theme.d.ts +30 -0
  792. package/dist/src/components/molecules/payment-details/PaymentDetails.theme.js +10 -0
  793. package/dist/src/components/molecules/payment-details/index.d.ts +1 -0
  794. package/dist/src/components/molecules/payment-details/index.js +1 -0
  795. package/dist/src/components/molecules/payment-form-ach/PaymentFormACH.d.ts +16 -0
  796. package/dist/src/components/molecules/payment-form-ach/PaymentFormACH.js +52 -0
  797. package/dist/src/components/molecules/payment-form-ach/PaymentFormACH.state.d.ts +3 -0
  798. package/dist/src/components/molecules/payment-form-ach/PaymentFormACH.state.js +28 -0
  799. package/dist/src/components/molecules/payment-form-ach/PaymentFormACH.stories.d.ts +7 -0
  800. package/dist/src/components/molecules/payment-form-ach/PaymentFormACH.stories.js +16 -0
  801. package/dist/src/components/molecules/payment-form-ach/index.d.ts +2 -0
  802. package/dist/src/components/molecules/payment-form-ach/index.js +6 -0
  803. package/dist/src/components/molecules/payment-form-card/PaymentFormCard.d.ts +4 -0
  804. package/dist/src/components/molecules/payment-form-card/PaymentFormCard.js +74 -0
  805. package/dist/src/components/molecules/payment-form-card/PaymentFormCard.state.d.ts +3 -0
  806. package/dist/src/components/molecules/payment-form-card/PaymentFormCard.state.js +41 -0
  807. package/dist/src/components/molecules/payment-form-card/PaymentFormCard.stories.d.ts +7 -0
  808. package/dist/src/components/molecules/payment-form-card/PaymentFormCard.stories.js +16 -0
  809. package/dist/src/components/molecules/payment-form-card/index.d.ts +2 -0
  810. package/dist/src/components/molecules/payment-form-card/index.js +6 -0
  811. package/dist/src/components/molecules/periscope-dashboard-iframe/PeriscopeDashBoardIframe.stories.d.ts +7 -0
  812. package/dist/src/components/molecules/periscope-dashboard-iframe/PeriscopeDashBoardIframe.stories.js +10 -0
  813. package/dist/src/components/molecules/periscope-dashboard-iframe/PeriscopeDashboardIframe.d.ts +11 -0
  814. package/dist/src/components/molecules/periscope-dashboard-iframe/PeriscopeDashboardIframe.js +70 -0
  815. package/dist/src/components/molecules/periscope-dashboard-iframe/PeriscopeDashboardIframe.styled.d.ts +1 -0
  816. package/dist/src/components/molecules/periscope-dashboard-iframe/PeriscopeDashboardIframe.styled.js +8 -0
  817. package/dist/src/components/molecules/periscope-dashboard-iframe/index.d.ts +2 -0
  818. package/dist/src/components/molecules/periscope-dashboard-iframe/index.js +2 -0
  819. package/dist/src/components/molecules/phone-form/PhoneForm.d.ts +12 -0
  820. package/dist/src/components/molecules/phone-form/PhoneForm.js +23 -0
  821. package/dist/src/components/molecules/phone-form/PhoneForm.state.d.ts +3 -0
  822. package/dist/src/components/molecules/phone-form/PhoneForm.state.js +9 -0
  823. package/dist/src/components/molecules/phone-form/PhoneForm.stories.d.ts +7 -0
  824. package/dist/src/components/molecules/phone-form/PhoneForm.stories.js +16 -0
  825. package/dist/src/components/molecules/phone-form/index.d.ts +2 -0
  826. package/dist/src/components/molecules/phone-form/index.js +6 -0
  827. package/dist/src/components/molecules/radio-section/RadioSection.d.ts +5 -0
  828. package/dist/src/components/molecules/radio-section/RadioSection.js +126 -0
  829. package/dist/src/components/molecules/radio-section/RadioSection.stories.d.ts +7 -0
  830. package/dist/src/components/molecules/radio-section/RadioSection.stories.js +18 -0
  831. package/dist/src/components/molecules/radio-section/RadioSection.theme.d.ts +13 -0
  832. package/dist/src/components/molecules/radio-section/RadioSection.theme.js +13 -0
  833. package/dist/src/components/molecules/radio-section/index.d.ts +2 -0
  834. package/dist/src/components/molecules/radio-section/index.js +2 -0
  835. package/dist/src/components/molecules/registration-form/RegistrationForm.d.ts +9 -0
  836. package/dist/src/components/molecules/registration-form/RegistrationForm.js +43 -0
  837. package/dist/src/components/molecules/registration-form/RegistrationForm.state.d.ts +3 -0
  838. package/dist/src/components/molecules/registration-form/RegistrationForm.state.js +27 -0
  839. package/dist/src/components/molecules/registration-form/RegistrationForm.stories.d.ts +7 -0
  840. package/dist/src/components/molecules/registration-form/RegistrationForm.stories.js +16 -0
  841. package/dist/src/components/molecules/registration-form/index.d.ts +2 -0
  842. package/dist/src/components/molecules/registration-form/index.js +6 -0
  843. package/dist/src/components/molecules/reset-confirmation-form/ResetConfirmationForm.d.ts +4 -0
  844. package/dist/src/components/molecules/reset-confirmation-form/ResetConfirmationForm.js +27 -0
  845. package/dist/src/components/molecules/reset-confirmation-form/ResetConfirmationForm.stories.d.ts +7 -0
  846. package/dist/src/components/molecules/reset-confirmation-form/ResetConfirmationForm.stories.js +9 -0
  847. package/dist/src/components/molecules/reset-confirmation-form/index.d.ts +2 -0
  848. package/dist/src/components/molecules/reset-confirmation-form/index.js +2 -0
  849. package/dist/src/components/molecules/reset-password-form/ResetPasswordForm.d.ts +9 -0
  850. package/dist/src/components/molecules/reset-password-form/ResetPasswordForm.js +30 -0
  851. package/dist/src/components/molecules/reset-password-form/ResetPasswordForm.state.d.ts +3 -0
  852. package/dist/src/components/molecules/reset-password-form/ResetPasswordForm.state.js +18 -0
  853. package/dist/src/components/molecules/reset-password-form/ResetPasswordForm.stories.d.ts +7 -0
  854. package/dist/src/components/molecules/reset-password-form/ResetPasswordForm.stories.js +16 -0
  855. package/dist/src/components/molecules/reset-password-form/index.d.ts +2 -0
  856. package/dist/src/components/molecules/reset-password-form/index.js +6 -0
  857. package/dist/src/components/molecules/reset-password-success/ResetPasswordSuccess.d.ts +4 -0
  858. package/dist/src/components/molecules/reset-password-success/ResetPasswordSuccess.js +27 -0
  859. package/dist/src/components/molecules/reset-password-success/ResetPasswordSuccess.stories.d.ts +7 -0
  860. package/dist/src/components/molecules/reset-password-success/ResetPasswordSuccess.stories.js +9 -0
  861. package/dist/src/components/molecules/reset-password-success/index.d.ts +2 -0
  862. package/dist/src/components/molecules/reset-password-success/index.js +2 -0
  863. package/dist/src/components/molecules/tab-sidebar/TabSidebar.d.ts +5 -0
  864. package/dist/src/components/molecules/tab-sidebar/TabSidebar.js +28 -0
  865. package/dist/src/components/molecules/tab-sidebar/TabSidebar.stories.d.ts +7 -0
  866. package/dist/src/components/molecules/tab-sidebar/TabSidebar.stories.js +52 -0
  867. package/dist/src/components/molecules/tab-sidebar/TabSidebar.theme.d.ts +9 -0
  868. package/dist/src/components/molecules/tab-sidebar/TabSidebar.theme.js +8 -0
  869. package/dist/src/components/molecules/tab-sidebar/index.d.ts +2 -0
  870. package/dist/src/components/molecules/tab-sidebar/index.js +2 -0
  871. package/dist/src/components/molecules/tabs/Tabs.d.ts +5 -0
  872. package/dist/src/components/molecules/tabs/Tabs.js +33 -0
  873. package/dist/src/components/molecules/tabs/Tabs.stories.d.ts +7 -0
  874. package/dist/src/components/molecules/tabs/Tabs.stories.js +186 -0
  875. package/dist/src/components/molecules/tabs/Tabs.theme.d.ts +9 -0
  876. package/dist/src/components/molecules/tabs/Tabs.theme.js +8 -0
  877. package/dist/src/components/molecules/tabs/index.d.ts +2 -0
  878. package/dist/src/components/molecules/tabs/index.js +2 -0
  879. package/dist/src/components/molecules/terms-and-conditions/TermsAndConditions.d.ts +8 -0
  880. package/dist/src/components/molecules/terms-and-conditions/TermsAndConditions.js +17 -0
  881. package/dist/src/components/molecules/terms-and-conditions/TermsAndConditions.stories.d.ts +7 -0
  882. package/dist/src/components/molecules/terms-and-conditions/TermsAndConditions.stories.js +12 -0
  883. package/dist/src/components/molecules/terms-and-conditions/index.d.ts +2 -0
  884. package/dist/src/components/molecules/terms-and-conditions/index.js +2 -0
  885. package/dist/src/components/molecules/terms-and-conditions-modal/TermsAndConditionsModal.d.ts +5 -0
  886. package/dist/src/components/molecules/terms-and-conditions-modal/TermsAndConditionsModal.js +16 -0
  887. package/dist/src/components/molecules/terms-and-conditions-modal/TermsAndConditionsModal.stories.d.ts +7 -0
  888. package/dist/src/components/molecules/terms-and-conditions-modal/TermsAndConditionsModal.stories.js +19 -0
  889. package/dist/src/components/molecules/terms-and-conditions-modal/TermsAndConditionsModal.theme.d.ts +50 -0
  890. package/dist/src/components/molecules/terms-and-conditions-modal/TermsAndConditionsModal.theme.js +24 -0
  891. package/dist/src/components/molecules/terms-and-conditions-modal/index.d.ts +2 -0
  892. package/dist/src/components/molecules/terms-and-conditions-modal/index.js +2 -0
  893. package/dist/src/components/molecules/timeout/Timeout.d.ts +4 -0
  894. package/dist/src/components/molecules/timeout/Timeout.js +26 -0
  895. package/dist/src/components/molecules/timeout/index.d.ts +2 -0
  896. package/dist/src/components/molecules/timeout/index.js +2 -0
  897. package/dist/src/components/molecules/welcome-module/WelcomeModule.d.ts +6 -0
  898. package/dist/src/components/molecules/welcome-module/WelcomeModule.js +27 -0
  899. package/dist/src/components/molecules/welcome-module/WelcomeModule.theme.d.ts +13 -0
  900. package/dist/src/components/molecules/welcome-module/WelcomeModule.theme.js +13 -0
  901. package/dist/src/components/molecules/welcome-module/index.d.ts +2 -0
  902. package/dist/src/components/molecules/welcome-module/index.js +2 -0
  903. package/dist/src/components/molecules/workflow-tile/WorkflowTile.d.ts +7 -0
  904. package/dist/src/components/molecules/workflow-tile/WorkflowTile.js +19 -0
  905. package/dist/src/components/molecules/workflow-tile/WorkflowTile.stories.d.ts +7 -0
  906. package/dist/src/components/molecules/workflow-tile/WorkflowTile.stories.js +11 -0
  907. package/dist/src/components/molecules/workflow-tile/index.d.ts +2 -0
  908. package/dist/src/components/molecules/workflow-tile/index.js +2 -0
  909. package/dist/src/components/templates/center-single/CenterSingle.d.ts +4 -0
  910. package/dist/src/components/templates/center-single/CenterSingle.js +20 -0
  911. package/dist/src/components/templates/center-single/index.d.ts +2 -0
  912. package/dist/src/components/templates/center-single/index.js +2 -0
  913. package/dist/src/components/templates/center-stack/CenterStack.d.ts +4 -0
  914. package/dist/src/components/templates/center-stack/CenterStack.js +22 -0
  915. package/dist/src/components/templates/center-stack/index.d.ts +2 -0
  916. package/dist/src/components/templates/center-stack/index.js +2 -0
  917. package/dist/src/components/templates/default-page-template/DefaultPageTemplate.d.ts +4 -0
  918. package/dist/src/components/templates/default-page-template/DefaultPageTemplate.js +20 -0
  919. package/dist/src/components/templates/default-page-template/index.d.ts +2 -0
  920. package/dist/src/components/templates/default-page-template/index.js +2 -0
  921. package/dist/src/components/templates/index.d.ts +5 -0
  922. package/dist/src/components/templates/index.js +5 -0
  923. package/dist/src/components/templates/sidebar-single-content/SidebarSingleContent.d.ts +4 -0
  924. package/dist/src/components/templates/sidebar-single-content/SidebarSingleContent.js +25 -0
  925. package/dist/src/components/templates/sidebar-single-content/index.d.ts +2 -0
  926. package/dist/src/components/templates/sidebar-single-content/index.js +2 -0
  927. package/dist/src/components/templates/sidebar-stack-content/SidebarStackContent.d.ts +4 -0
  928. package/dist/src/components/templates/sidebar-stack-content/SidebarStackContent.js +25 -0
  929. package/dist/src/components/templates/sidebar-stack-content/index.d.ts +2 -0
  930. package/dist/src/components/templates/sidebar-stack-content/index.js +2 -0
  931. package/dist/src/components/templates/templates.theme.d.ts +5 -0
  932. package/dist/src/components/templates/templates.theme.js +4 -0
  933. package/dist/src/components/withWindowSize.d.ts +4 -0
  934. package/dist/src/components/withWindowSize.js +70 -0
  935. package/dist/src/constants/colors.d.ts +97 -0
  936. package/dist/src/constants/colors.js +113 -0
  937. package/dist/src/constants/index.d.ts +3 -0
  938. package/dist/src/constants/index.js +3 -0
  939. package/dist/src/constants/regex_constants.d.ts +1 -0
  940. package/dist/src/constants/regex_constants.js +1 -0
  941. package/dist/src/constants/style_constants.d.ts +8 -0
  942. package/dist/src/constants/style_constants.js +10 -0
  943. package/dist/src/deprecated/colors.d.ts +81 -0
  944. package/dist/src/deprecated/colors.js +97 -0
  945. package/dist/src/deprecated/components/radio-button/index.d.ts +2 -0
  946. package/dist/src/deprecated/components/radio-button/index.js +2 -0
  947. package/dist/src/deprecated/components/radio-button/radio-button.d.ts +5 -0
  948. package/dist/src/deprecated/components/radio-button/radio-button.js +29 -0
  949. package/dist/src/deprecated/icons/AlertErrorIcon.d.ts +1 -0
  950. package/dist/src/deprecated/icons/AlertErrorIcon.js +10 -0
  951. package/dist/src/deprecated/icons/AlertInfoIcon.d.ts +1 -0
  952. package/dist/src/deprecated/icons/AlertInfoIcon.js +10 -0
  953. package/dist/src/deprecated/icons/AlertSuccessIcon.d.ts +1 -0
  954. package/dist/src/deprecated/icons/AlertSuccessIcon.js +10 -0
  955. package/dist/src/deprecated/icons/AlertWarningIcon.d.ts +1 -0
  956. package/dist/src/deprecated/icons/AlertWarningIcon.js +6 -0
  957. package/dist/src/deprecated/icons/BankIcon.d.ts +2 -0
  958. package/dist/src/deprecated/icons/BankIcon.js +19 -0
  959. package/dist/src/deprecated/icons/GenericCard.d.ts +2 -0
  960. package/dist/src/deprecated/icons/GenericCard.js +9 -0
  961. package/dist/src/deprecated/icons/IconCheck.d.ts +5 -0
  962. package/dist/src/deprecated/icons/IconCheck.js +10 -0
  963. package/dist/src/deprecated/icons/IconCheckEmail.d.ts +4 -0
  964. package/dist/src/deprecated/icons/IconCheckEmail.js +14 -0
  965. package/dist/src/deprecated/icons/IconChevron.d.ts +3 -0
  966. package/dist/src/deprecated/icons/IconChevron.js +14 -0
  967. package/dist/src/deprecated/icons/IconEmailVerified.d.ts +4 -0
  968. package/dist/src/deprecated/icons/IconEmailVerified.js +22 -0
  969. package/dist/src/deprecated/icons/IconEye.d.ts +3 -0
  970. package/dist/src/deprecated/icons/IconEye.js +15 -0
  971. package/dist/src/deprecated/icons/IconEyeSlash.d.ts +3 -0
  972. package/dist/src/deprecated/icons/IconEyeSlash.js +19 -0
  973. package/dist/src/deprecated/icons/IconInvalid.d.ts +7 -0
  974. package/dist/src/deprecated/icons/IconInvalid.js +14 -0
  975. package/dist/src/deprecated/icons/IconNeutral.d.ts +6 -0
  976. package/dist/src/deprecated/icons/IconNeutral.js +10 -0
  977. package/dist/src/deprecated/icons/IconQuit.d.ts +5 -0
  978. package/dist/src/deprecated/icons/IconQuit.js +14 -0
  979. package/dist/src/deprecated/icons/IconValid.d.ts +7 -0
  980. package/dist/src/deprecated/icons/IconValid.js +15 -0
  981. package/dist/src/deprecated/icons/IconWarn.d.ts +3 -0
  982. package/dist/src/deprecated/icons/IconWarn.js +13 -0
  983. package/dist/src/deprecated/icons/index.d.ts +22 -0
  984. package/dist/src/deprecated/icons/index.js +22 -0
  985. package/dist/src/deprecated/index.d.ts +1 -0
  986. package/dist/src/deprecated/index.js +1 -0
  987. package/dist/src/deprecated/spinner/Spinner.d.ts +7 -0
  988. package/dist/src/deprecated/spinner/Spinner.js +46 -0
  989. package/dist/src/deprecated/spinner/index.d.ts +1 -0
  990. package/dist/src/deprecated/spinner/index.js +1 -0
  991. package/dist/src/deprecated/utility/__tests__/safeConcat.spec.d.ts +1 -0
  992. package/dist/src/deprecated/utility/__tests__/safeConcat.spec.js +47 -0
  993. package/dist/src/deprecated/utility/__tests__/validateKeyType.spec.d.ts +1 -0
  994. package/dist/src/deprecated/utility/__tests__/validateKeyType.spec.js +100 -0
  995. package/dist/src/deprecated/utility/index.d.ts +2 -0
  996. package/dist/src/deprecated/utility/index.js +2 -0
  997. package/dist/src/deprecated/utility/safeConcat.d.ts +1 -0
  998. package/dist/src/deprecated/utility/safeConcat.js +8 -0
  999. package/dist/src/deprecated/utility/validateKeyType.d.ts +1 -0
  1000. package/dist/src/deprecated/utility/validateKeyType.js +13 -0
  1001. package/dist/src/index.d.ts +4 -0
  1002. package/dist/src/index.js +4 -0
  1003. package/dist/src/util/focusFirstInvalidInputHook.d.ts +2 -0
  1004. package/dist/src/util/focusFirstInvalidInputHook.js +17 -0
  1005. package/dist/src/util/formats.d.ts +9 -0
  1006. package/dist/src/util/formats.js +70 -0
  1007. package/dist/src/util/general.d.ts +13 -0
  1008. package/dist/src/util/general.js +101 -0
  1009. package/dist/src/util/index.d.ts +5 -0
  1010. package/dist/src/util/index.js +5 -0
  1011. package/dist/src/util/inputValidationUtils.d.ts +43 -0
  1012. package/dist/src/util/inputValidationUtils.js +92 -0
  1013. package/dist/src/util/themeUtils.d.ts +5 -0
  1014. package/dist/src/util/themeUtils.js +129 -0
  1015. package/package.json +6 -2
  1016. package/src/components/atoms/button-with-action/index.d.ts +17 -0
  1017. package/src/components/atoms/button-with-link/index.d.ts +14 -0
  1018. package/src/components/atoms/card/Card.js +81 -0
  1019. package/src/components/atoms/card/Card.theme.js +14 -0
  1020. package/src/components/atoms/card/CardHeader.js +27 -0
  1021. package/src/components/atoms/card/CardImage.styled.js +9 -0
  1022. package/src/components/atoms/card/CardText.js +41 -0
  1023. package/src/components/atoms/card/CardText.theme.js +12 -0
  1024. package/src/components/atoms/card/index.d.ts +30 -0
  1025. package/src/components/atoms/card/index.js +3 -0
  1026. package/src/components/atoms/{welcome-card/Card.theme.js → card-registry/CardRegistry.theme.js} +0 -0
  1027. package/src/components/atoms/{welcome-card/Card.js → card-registry/CardRegistryCard.js} +7 -3
  1028. package/src/components/atoms/{welcome-card → card-registry}/index.js +4 -4
  1029. package/src/components/atoms/display-card/DisplayCard.js +1 -1
  1030. package/src/components/atoms/icons/{ExternalLinkicon.js → ExternalLinkIcon.js} +0 -0
  1031. package/src/components/atoms/index.d.ts +11 -0
  1032. package/src/components/atoms/index.js +3 -1
  1033. package/src/components/atoms/layouts/Box.d.ts +32 -0
  1034. package/src/components/atoms/layouts/Center.d.ts +11 -0
  1035. package/src/components/atoms/layouts/Cluster.d.ts +19 -0
  1036. package/src/components/atoms/layouts/Cover.d.ts +14 -0
  1037. package/src/components/atoms/layouts/Stack.d.ts +27 -0
  1038. package/src/components/atoms/layouts/Switcher.d.ts +17 -0
  1039. package/src/components/atoms/layouts/index.d.ts +6 -0
  1040. package/src/components/atoms/link/ExternalLink.d.ts +18 -0
  1041. package/src/components/atoms/link/InternalLink.d.ts +19 -0
  1042. package/src/components/atoms/link/index.d.ts +2 -0
  1043. package/src/components/atoms/nav-footer/index.d.ts +17 -0
  1044. package/src/components/atoms/nav-header/index.d.ts +16 -0
  1045. package/src/components/atoms/nav-tabs/NavTab.js +47 -0
  1046. package/src/components/atoms/nav-tabs/NavTab.theme.js +11 -0
  1047. package/src/components/atoms/nav-tabs/NavTabs.js +24 -0
  1048. package/src/components/atoms/nav-tabs/index.d.ts +10 -0
  1049. package/src/components/atoms/nav-tabs/index.js +3 -0
  1050. package/src/components/atoms/paragraph/index.d.ts +15 -0
  1051. package/src/components/atoms/text/index.d.ts +16 -0
  1052. package/src/components/atoms/title/index.d.ts +17 -0
  1053. package/src/components/index.d.ts +3 -0
  1054. package/src/components/molecules/footer-with-subfooter/FooterWithSubfooter.js +42 -0
  1055. package/src/components/molecules/footer-with-subfooter/FooterWithSubfooter.theme.js +8 -0
  1056. package/src/components/molecules/footer-with-subfooter/index.d.ts +14 -0
  1057. package/src/components/molecules/footer-with-subfooter/index.js +3 -0
  1058. package/src/components/molecules/index.d.ts +1 -0
  1059. package/src/components/molecules/index.js +1 -0
  1060. package/src/components/templates/default-page-template/DefaultPageTemplate.js +7 -2
  1061. package/src/components/templates/default-page-template/index.d.ts +16 -0
  1062. package/src/components/templates/index.d.ts +1 -0
  1063. package/src/index.d.ts +1 -0
  1064. package/src/util/expand.d.ts +3 -0
  1065. package/src/.DS_Store +0 -0
@@ -0,0 +1,14 @@
1
+ import { INFO_BLUE, STORM_GREY, WHITE } from "../../../constants/colors";
2
+
3
+ const backgroundColor = WHITE;
4
+ const imageBackgroundColor = INFO_BLUE;
5
+
6
+ const headerBackgroundColor = STORM_GREY;
7
+ const headerColor = WHITE;
8
+
9
+ export const fallbackValues = {
10
+ backgroundColor,
11
+ imageBackgroundColor,
12
+ headerBackgroundColor,
13
+ headerColor
14
+ };
@@ -0,0 +1,27 @@
1
+ import React from "react";
2
+
3
+ import Box from "../layouts/Box";
4
+ import Title from "../title";
5
+
6
+ export const CardHeader = ({
7
+ headerText,
8
+ headerColor,
9
+ headerVariant,
10
+ backgroundColor,
11
+ padding,
12
+ borderRadius
13
+ }) => {
14
+ return (
15
+ <Box
16
+ padding={padding}
17
+ background={backgroundColor}
18
+ borderRadius={`${borderRadius} ${borderRadius} 0 0`}
19
+ >
20
+ <Title variant={headerVariant} color={headerColor}>
21
+ {headerText}
22
+ </Title>
23
+ </Box>
24
+ );
25
+ };
26
+
27
+ export default CardHeader;
@@ -0,0 +1,9 @@
1
+ import styled from "styled-components";
2
+
3
+ const CardImage = styled.img`
4
+ background: ${({ backgroundColor }) => backgroundColor};
5
+ object-fit: ${({ objectFit }) => objectFit};
6
+ height: ${({ height }) => height};
7
+ `;
8
+
9
+ export default CardImage;
@@ -0,0 +1,41 @@
1
+ import React from "react";
2
+
3
+ import { themeComponent } from "../../../util/themeUtils";
4
+ import withWindowSize from "../../withWindowSize";
5
+
6
+ import { fallbackValues } from "./CardText.theme";
7
+
8
+ import Cover from "../layouts/Cover";
9
+ import Paragraph from "../paragraph";
10
+ import Stack from "../layouts/Stack";
11
+ import Title from "../title";
12
+
13
+ export const CardText = ({
14
+ text,
15
+ titleText,
16
+ titleVariant = "small",
17
+ themeValues
18
+ }) => {
19
+ return (
20
+ <Cover>
21
+ <Stack>
22
+ {titleText && (
23
+ <Title
24
+ variant={titleVariant}
25
+ color={themeValues.titleColor}
26
+ weight={themeValues?.titleWeight}
27
+ >
28
+ {titleText}
29
+ </Title>
30
+ )}
31
+ <Paragraph color={themeValues.textColor}>{text}</Paragraph>
32
+ </Stack>
33
+ </Cover>
34
+ );
35
+ };
36
+
37
+ export default themeComponent(
38
+ withWindowSize(CardText),
39
+ "CardText",
40
+ fallbackValues
41
+ );
@@ -0,0 +1,12 @@
1
+ import { BRIGHT_GREY } from "../../../constants/colors";
2
+
3
+ import { FONT_WEIGHT_BOLD } from "../../../constants/style_constants";
4
+ const titleColor = BRIGHT_GREY;
5
+ const titleWeight = FONT_WEIGHT_BOLD;
6
+ const textColor = BRIGHT_GREY;
7
+
8
+ export const fallbackValues = {
9
+ titleColor,
10
+ titleWeight,
11
+ titleWeight
12
+ };
@@ -0,0 +1,30 @@
1
+ import React from "react";
2
+ import Expand from "../../../util/expand";
3
+
4
+ export interface CardProps {
5
+ text?: string;
6
+ titleText?: string;
7
+ titleVariant?: string;
8
+ extraStyles?: string;
9
+ imgSrc?: string;
10
+ imgHeight?: string;
11
+ imgObjectFit?:
12
+ | "contain"
13
+ | "cover"
14
+ | "fill"
15
+ | "none"
16
+ | "scale-down"
17
+ | "inherit"
18
+ | "initial"
19
+ | "revert"
20
+ | "revert-layer"
21
+ | "unset";
22
+ headerText?: string;
23
+ headerVariant?: string;
24
+ borderRadius?: string;
25
+ width?: string;
26
+ padding?: string;
27
+ }
28
+
29
+ export const Card: React.FC<Expand<CardProps> &
30
+ React.HTMLAttributes<HTMLElement>>;
@@ -0,0 +1,3 @@
1
+ import Card from "./Card";
2
+
3
+ export default Card;
@@ -5,7 +5,7 @@ import { Box, Stack, Cover } from "../layouts";
5
5
  import Text from "../text";
6
6
  import Paragraph from "../paragraph";
7
7
  import ButtonWithAction from "../button-with-action";
8
- import { fallbackValues } from "./Card.theme";
8
+ import { fallbackValues } from "./CardRegistry.theme";
9
9
  import { themeComponent } from "../../../util/themeUtils";
10
10
  import {
11
11
  AccountsAddIcon,
@@ -26,7 +26,7 @@ const CardVariantSwitcher = ({ variant, children }) => {
26
26
  );
27
27
  };
28
28
 
29
- const Card = ({
29
+ const CardRegistryCard = ({
30
30
  themeValues,
31
31
  icon,
32
32
  heading,
@@ -123,4 +123,8 @@ const Card = ({
123
123
  );
124
124
  };
125
125
 
126
- export default themeComponent(withWindowSize(Card), "Card", fallbackValues);
126
+ export default themeComponent(
127
+ withWindowSize(CardRegistryCard),
128
+ "CardRegistryCard",
129
+ fallbackValues
130
+ );
@@ -1,9 +1,9 @@
1
1
  import React from "react";
2
- import Card from "./Card";
2
+ import CardRegistryCard from "./CardRegistryCard";
3
3
 
4
4
  export const cardRegistry = {
5
5
  accounts: props => (
6
- <Card
6
+ <CardRegistryCard
7
7
  icon="accounts"
8
8
  heading="Find Your Account"
9
9
  buttonText="Find Account"
@@ -13,7 +13,7 @@ export const cardRegistry = {
13
13
  />
14
14
  ),
15
15
  properties: props => (
16
- <Card
16
+ <CardRegistryCard
17
17
  icon="properties"
18
18
  heading="Find Your Property"
19
19
  buttonText="Find Property"
@@ -23,7 +23,7 @@ export const cardRegistry = {
23
23
  />
24
24
  ),
25
25
  payment: props => (
26
- <Card
26
+ <CardRegistryCard
27
27
  icon="payment"
28
28
  heading="Manage Your Wallet"
29
29
  buttonText="Go to Wallet"
@@ -7,7 +7,7 @@ import Cluster from "../layouts/Cluster";
7
7
  import ButtonWithAction from "../button-with-action";
8
8
  import ButtonWithLink from "../button-with-link";
9
9
  import { WHITE, CHARADE_GREY, STORM_GREY } from "../../../constants/colors";
10
- import { Popover } from "../../molecules";
10
+ import Popover from "../../molecules/popover";
11
11
 
12
12
  const DisplayCard = ({
13
13
  title,
@@ -0,0 +1,11 @@
1
+ export * from "./card";
2
+ export * from "./button-with-action";
3
+ export * from "./button-with-link";
4
+ export * from "./layouts";
5
+ export * from "./link";
6
+ export * from "./nav-footer";
7
+ export * from "./nav-header";
8
+ export * from "./nav-tabs";
9
+ export * from "./paragraph";
10
+ export * from "./text";
11
+ export * from "./title";
@@ -5,7 +5,7 @@ export { default as BoxWithShadow } from "./box-with-shadow";
5
5
  export { default as Breadcrumb } from "./breadcrumb";
6
6
  export { default as ButtonWithAction } from "./button-with-action";
7
7
  export { default as ButtonWithLink } from "./button-with-link";
8
- export { default as cardRegistry } from "./welcome-card";
8
+ export { default as cardRegistry } from "./card-registry";
9
9
  export { default as Checkbox } from "./checkbox";
10
10
  export { default as CheckboxList } from "./checkbox-list";
11
11
  export { default as CountryDropdown } from "./country-dropdown";
@@ -41,3 +41,5 @@ export { default as Text } from "./text";
41
41
  export { default as Title } from "./title";
42
42
  export { default as ToggleSwitch } from "./toggle-switch";
43
43
  export { default as TypeaheadInput } from "./typeahead-input";
44
+ export { default as Card } from "./card";
45
+ export { default as NavTabs } from "./nav-tabs";
@@ -0,0 +1,32 @@
1
+ import React from "react";
2
+ import Expand from "../../../util/expand";
3
+
4
+ export interface BoxProps {
5
+ padding?: string;
6
+ borderSize?: string;
7
+ borderColor?: string;
8
+ borderRadius?: string;
9
+ boxShadow?: string;
10
+ background?: string;
11
+ color?: string;
12
+ minHeight?: string;
13
+ width?: string;
14
+ minWidth?: string;
15
+ maxWidth?: string;
16
+ borderWidthOverride?: string;
17
+ border?: string;
18
+ textAlign?: string;
19
+ hoverStyles?: string;
20
+ activeStyles?: string;
21
+ disabledStyles?: string;
22
+ variant?: string;
23
+ as?: string;
24
+ theme?: string;
25
+ hiddenStyles?: string;
26
+ extraStyles?: string;
27
+ srOnly?: boolean;
28
+ dataQa?: string;
29
+ }
30
+
31
+ export const Box: React.FC<Expand<BoxProps> &
32
+ React.HTMLAttributes<HTMLElement>>;
@@ -0,0 +1,11 @@
1
+ import React from "react";
2
+ import Expand from "../../../util/expand";
3
+
4
+ export interface CenterProps {
5
+ maxWidth?: string;
6
+ gutters?: string;
7
+ intrinsic?: boolean;
8
+ }
9
+
10
+ export const Center: React.FC<Expand<CenterProps> &
11
+ React.HTMLAttributes<HTMLElement>>;
@@ -0,0 +1,19 @@
1
+ import React from "react";
2
+ import Expand from "../../../util/expand";
3
+
4
+ export interface ClusterProps {
5
+ childGap?: string;
6
+ extraStyles?: string;
7
+ align?: string;
8
+ justify?: string;
9
+ minHeight?: string;
10
+ minWidth?: string;
11
+ nowrap?: boolean;
12
+ overflow?: boolean;
13
+ justifySelf?: string;
14
+ alignSelf?: string;
15
+ flexGrow?: string;
16
+ }
17
+
18
+ export const Cluster: React.FC<Expand<ClusterProps> &
19
+ React.HTMLAttributes<HTMLElement>>;
@@ -0,0 +1,14 @@
1
+ import React from "react";
2
+ import Expand from "../../../util/expand";
3
+
4
+ export interface CoverProps {
5
+ minHeight?: string;
6
+ childGap?: string;
7
+ padding?: string;
8
+ fillCenter?: boolean;
9
+ singleChild?: boolean;
10
+ centerOverride?: boolean;
11
+ }
12
+
13
+ export const Cover: React.FC<Expand<CoverProps> &
14
+ React.HTMLAttributes<HTMLElement>>;
@@ -0,0 +1,27 @@
1
+ import React from "react";
2
+ import Expand from "../../../util/expand";
3
+
4
+ export interface StackProps {
5
+ childGap?: string;
6
+ bottomItem?: number;
7
+ fullHeight?: boolean;
8
+ direction?:
9
+ | "row"
10
+ | "row-reverse"
11
+ | "column"
12
+ | "column-reverse"
13
+ | "initial"
14
+ | "inherit";
15
+ justify?:
16
+ | "flex-start"
17
+ | "flex-end"
18
+ | "center"
19
+ | "space-between"
20
+ | "space-around"
21
+ | "space-evenly"
22
+ | "initial"
23
+ | "inherit";
24
+ }
25
+
26
+ export const Stack: React.FC<Expand<StackProps> &
27
+ React.HTMLAttributes<HTMLElement>>;
@@ -0,0 +1,17 @@
1
+ import React from "react";
2
+ import Expand from "../../../util/expand";
3
+
4
+ export interface SwitcherProps {
5
+ breakpoint?: string;
6
+ childGap?: string;
7
+ largeChild?: string;
8
+ largeChildSize?: string;
9
+ maxChildren?: string;
10
+ maxChildrenOnly?: boolean;
11
+ padding?: string;
12
+ extraStyles?: string;
13
+ constrainMobile?: boolean;
14
+ }
15
+
16
+ export const Switcher: React.FC<Expand<SwitcherProps> &
17
+ React.HTMLAttributes<HTMLElement>>;
@@ -0,0 +1,6 @@
1
+ export * from "./Box";
2
+ export * from "./Center";
3
+ export * from "./Cluster";
4
+ export * from "./Cover";
5
+ export * from "./Stack";
6
+ export * from "./Switcher";
@@ -0,0 +1,18 @@
1
+ import React from "react";
2
+ import Expand from "../../../util/expand";
3
+
4
+ export interface ExternalLinkProps {
5
+ href: string;
6
+ newTab?: boolean;
7
+ size?: string;
8
+ lineHeight?: string;
9
+ weight?: string;
10
+ extraStyles?: string;
11
+ variant?: string;
12
+ tabIndex?: string;
13
+ dataQa?: string;
14
+ ariaLabel?: string;
15
+ }
16
+
17
+ export const ExternalLink: React.FC<Expand<ExternalLinkProps> &
18
+ React.HTMLAttributes<HTMLElement>>;
@@ -0,0 +1,19 @@
1
+ import React from "react";
2
+ import Expand from "../../../util/expand";
3
+
4
+ export interface InternalLinkProps {
5
+ to: string;
6
+ color?: string;
7
+ active?: boolean;
8
+ fontSize?: string;
9
+ lineheight?: string;
10
+ fontWeight?: string;
11
+ variant?: string;
12
+ margin?: string;
13
+ tabIndex?: string;
14
+ dataQa?: string;
15
+ extraStyles?: string;
16
+ }
17
+
18
+ export const InternalLink: React.FC<Expand<InternalLinkProps> &
19
+ React.HTMLAttributes<HTMLElement>>;
@@ -0,0 +1,2 @@
1
+ export * from "./ExternalLink";
2
+ export * from "./InternalLink";
@@ -0,0 +1,17 @@
1
+ import React from "react";
2
+ import Expand from "../../../util/expand";
3
+
4
+ export interface NavFooterProps {
5
+ leftContent?: JSX.Element;
6
+ rightContent?: JSX.Element;
7
+ footerMinHeight?: string;
8
+ backgroundColor?: string;
9
+ largeSide?: "left" | "right";
10
+ largeSideSize?: string;
11
+ footerPadding?: string;
12
+ isMobile?: boolean;
13
+ footerWidth?: string;
14
+ }
15
+
16
+ export const NavFooter: React.FC<Expand<NavFooterProps> &
17
+ React.HTMLAttributes<HTMLElement>>;
@@ -0,0 +1,16 @@
1
+ import React from "react";
2
+ import Expand from "../../../util/expand";
3
+
4
+ export interface NavHeaderProps {
5
+ headerHeight?: string;
6
+ headerWith?: string;
7
+ backgroundColor?: string;
8
+ leftContent?: JSX.Element;
9
+ rightContent?: JSX.Element;
10
+ margin?: string;
11
+ extraStyles?: string;
12
+ isMobile?: boolean;
13
+ }
14
+
15
+ export const NavHeader: React.FC<Expand<NavHeaderProps> &
16
+ React.HTMLAttributes<HTMLElement>>;
@@ -0,0 +1,47 @@
1
+ import React, { useContext, useState, useEffect } from "react";
2
+ import { useLocation } from "react-router-dom";
3
+ import { ThemeContext } from "styled-components";
4
+
5
+ import { themeComponent } from "../../../util/themeUtils";
6
+ import { fallbackValues } from "./NavTab.theme";
7
+
8
+ import InternalLink from "../link/InternalLink";
9
+ import Box from "../layouts/Box";
10
+
11
+ const NavTab = ({ path, label, themeValues }) => {
12
+ const { isMobile } = useContext(ThemeContext);
13
+
14
+ const [isActive, setIsActive] = useState(false);
15
+ const location = useLocation();
16
+
17
+ useEffect(() => {
18
+ setIsActive(location.pathname.includes(path));
19
+ }, [location.pathname]);
20
+
21
+ const border = `border-bottom: 3px solid ${themeValues.activeColor}`;
22
+
23
+ return (
24
+ <Box padding={0}>
25
+ <InternalLink
26
+ color={isActive ? themeValues.activeColor : themeValues.linkColor}
27
+ to={path}
28
+ extraStyles={`
29
+ border-bottom: 3px solid transparent;
30
+ font-family: ${themeValues.fontFamily};
31
+ text-decoration: none;
32
+ ${isActive && !isMobile ? border : "none"};
33
+ &:hover {
34
+ text-decoration: none;
35
+ color: ${themeValues.activeColor};
36
+ ${isMobile ? "" : `${border}`}
37
+ };
38
+ padding: 1.25rem 0.1rem;
39
+ `}
40
+ >
41
+ {label}
42
+ </InternalLink>
43
+ </Box>
44
+ );
45
+ };
46
+
47
+ export default themeComponent(NavTab, "NavTab", fallbackValues);
@@ -0,0 +1,11 @@
1
+ import { MATISSE_BLUE, CHARADE_GREY } from "../../../constants/colors";
2
+
3
+ const fontFamily = "Public Sans, sans-serif";
4
+ const activeColor = MATISSE_BLUE;
5
+ const linkColor = CHARADE_GREY;
6
+
7
+ export const fallbackValues = {
8
+ fontFamily,
9
+ activeColor,
10
+ linkColor
11
+ };
@@ -0,0 +1,24 @@
1
+ import React, { useContext } from "react";
2
+ import { ThemeContext } from "styled-components";
3
+
4
+ import BoxWithShadow from "../box-with-shadow";
5
+ import Center from "../layouts/Center";
6
+ import Cluster from "../layouts/Cluster";
7
+ import NavTab from "./NavTab";
8
+
9
+ const NavTabs = ({ tabsConfig, tabGap }) => {
10
+ const { isMobile } = useContext(ThemeContext);
11
+
12
+ const tabs = tabsConfig.map(tabConfig => {
13
+ return <NavTab key={tabConfig.path} {...tabConfig} />;
14
+ });
15
+ return (
16
+ <BoxWithShadow variant="insetStandard" extraStyles="padding: 0">
17
+ <Center intrinsic>
18
+ {isMobile ? tabs : <Cluster childGap={tabGap}>{tabs}</Cluster>}
19
+ </Center>
20
+ </BoxWithShadow>
21
+ );
22
+ };
23
+
24
+ export default NavTabs;
@@ -0,0 +1,10 @@
1
+ import React from "react";
2
+ import Expand from "../../../util/expand";
3
+
4
+ export interface NavTabsProps {
5
+ tabsConfig: Array<{ path: string; label: string }>;
6
+ tabGap?: string;
7
+ }
8
+
9
+ export const NavTabs: React.FC<Expand<NavTabsProps> &
10
+ React.HTMLAttributes<HTMLElement>>;
@@ -0,0 +1,3 @@
1
+ import NavTabs from "./NavTabs";
2
+
3
+ export default NavTabs;
@@ -0,0 +1,15 @@
1
+ import React from "react";
2
+ import Expand from "../../../util/expand";
3
+
4
+ export interface ParagraphProps {
5
+ color?: string;
6
+ themeValues?: string;
7
+ weight?: string;
8
+ margin?: string;
9
+ extraStyles?: string;
10
+ dataQa?: string;
11
+ as?: string;
12
+ }
13
+
14
+ export const Paragraph: React.FC<Expand<ParagraphProps> &
15
+ React.HTMLAttributes<HTMLElement>>;
@@ -0,0 +1,16 @@
1
+ import React from "react";
2
+ import Expand from "../../../util/expand";
3
+
4
+ export interface TextProps {
5
+ weight?: string;
6
+ color?: string;
7
+ textWrap?: boolean;
8
+ extraStyles?: string;
9
+ hoverStyles?: string;
10
+ as?: string;
11
+ dataQa?: string;
12
+ variant?: string;
13
+ }
14
+
15
+ export const Text: React.FC<Expand<TextProps> &
16
+ React.HTMLAttributes<HTMLElement>>;
@@ -0,0 +1,17 @@
1
+ import React from "react";
2
+ import Expand from "../../../util/expand";
3
+
4
+ export interface TitleProps {
5
+ variant?: string;
6
+ color?: string;
7
+ margin?: string;
8
+ extraStyles?: string;
9
+ weight?: string;
10
+ textAlign?: string;
11
+ className?: string;
12
+ as?: string;
13
+ dataQa?: string;
14
+ }
15
+
16
+ export const Title: React.FC<Expand<TitleProps> &
17
+ React.HTMLAttributes<HTMLElement>>;
@@ -0,0 +1,3 @@
1
+ export * from "./atoms";
2
+ export * from "./molecules";
3
+ export * from "./templates";
@@ -0,0 +1,42 @@
1
+ import React from "react";
2
+
3
+ import { themeComponent } from "../../../util/themeUtils";
4
+ import { fallbackValues } from "./FooterWithSubfooter.theme";
5
+ import NavFooter from "../../atoms/nav-footer";
6
+
7
+ const FooterWithSubfooter = ({
8
+ footerLargeSide = "right",
9
+ footerLargeSideSize = "2",
10
+ leftFooterContent,
11
+ rightFooterContent,
12
+ leftSubfooterContent,
13
+ rightSubfooterContent,
14
+ themeValues
15
+ }) => {
16
+ return (
17
+ <>
18
+ <NavFooter
19
+ largeSide={footerLargeSide}
20
+ largeSideSize={footerLargeSideSize}
21
+ rightContent={rightFooterContent}
22
+ leftContent={leftFooterContent}
23
+ aria-label="footer"
24
+ backgroundColor={themeValues.footerBackgroundColor}
25
+ />
26
+ <NavFooter
27
+ backgroundColor={themeValues.subfooterBackgroundColor}
28
+ footerMinHeight="45px"
29
+ footerPadding="0 1rem"
30
+ aria-label="subfooter"
31
+ leftContent={leftSubfooterContent}
32
+ rightContent={rightSubfooterContent}
33
+ ></NavFooter>
34
+ </>
35
+ );
36
+ };
37
+
38
+ export default themeComponent(
39
+ FooterWithSubfooter,
40
+ "FooterWithSubfooter",
41
+ fallbackValues
42
+ );