@thecb/components 7.10.0-beta.0 → 7.10.0

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 (28) hide show
  1. package/dist/index.cjs.js +353 -257
  2. package/dist/index.cjs.js.map +1 -1
  3. package/dist/index.d.ts +1 -0
  4. package/dist/index.esm.js +353 -258
  5. package/dist/index.esm.js.map +1 -1
  6. package/package.json +1 -1
  7. package/src/components/atoms/button-with-action/ButtonWithAction.theme.js +101 -96
  8. package/src/components/atoms/icons/PencilIcon.js +22 -0
  9. package/src/components/atoms/icons/icons.stories.js +2 -0
  10. package/src/components/atoms/icons/index.js +2 -0
  11. package/src/components/atoms/layouts/Box.styled.js +2 -2
  12. package/src/components/atoms/layouts/Cluster.d.ts +1 -0
  13. package/src/components/atoms/layouts/Cluster.js +2 -0
  14. package/src/components/atoms/line-item/LineItem.js +15 -1
  15. package/src/components/atoms/line-item/LineItem.stories.js +9 -0
  16. package/src/components/molecules/nav-menu/NavMenuMobile.js +3 -1
  17. package/src/components/molecules/pagination/Pagination.js +44 -20
  18. package/src/components/molecules/pagination/index.d.ts +1 -0
  19. package/src/components/molecules/payment-form-ach/PaymentFormACH.js +35 -8
  20. package/src/components/molecules/payment-form-card/PaymentFormCard.js +37 -10
  21. package/src/components/molecules/terms-and-conditions/TermsAndConditions.js +3 -1
  22. package/src/components/molecules/terms-and-conditions-modal/TermsAndConditionsModal.js +3 -2
  23. package/src/components/molecules/terms-and-conditions-modal/TermsAndConditionsModal.stories.js +10 -0
  24. package/src/components/molecules/workflow-tile/WorkflowTile.js +14 -35
  25. package/src/constants/colors.js +6 -0
  26. package/src/.DS_Store +0 -0
  27. package/src/components/atoms/.DS_Store +0 -0
  28. /package/src/components/atoms/icons/{ExternalLinkicon.js → ExternalLinkIcon.js} +0 -0
package/dist/index.d.ts CHANGED
@@ -259,6 +259,7 @@ interface ClusterProps {
259
259
  justifySelf?: string;
260
260
  alignSelf?: string;
261
261
  flexGrow?: string;
262
+ innerWrapperAs?: string;
262
263
  }
263
264
 
264
265
  declare const Cluster: React.FC<Expand<ClusterProps> &