@thecb/components 3.3.8-beta.0 → 3.3.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.tool-versions +1 -0
- package/dist/index.cjs.js +15792 -14182
- package/package.json +3 -3
- package/src/components/atoms/add-obligation/AddObligation.js +64 -0
- package/src/components/atoms/add-obligation/AddObligation.stories.js +18 -0
- package/src/components/atoms/add-obligation/AddObligation.theme.js +9 -0
- package/src/components/atoms/add-obligation/index.js +3 -0
- package/src/components/atoms/button-with-link/ButtonWithLink.js +1 -1
- package/src/components/atoms/form-layouts/FormInput.js +1 -0
- package/src/components/atoms/heading/Heading.js +2 -0
- package/src/components/atoms/icons/IconAdd.js +36 -0
- package/src/components/atoms/icons/index.js +3 -1
- package/src/components/atoms/index.js +1 -0
- package/src/components/atoms/layouts/Cover.js +1 -1
- package/src/components/atoms/layouts/Cover.styled.js +0 -1
- package/src/components/atoms/layouts/Imposter.styled.js +0 -1
- package/src/components/atoms/paragraph/Paragraph.js +2 -0
- package/src/components/atoms/placeholder/Placeholder.js +77 -60
- package/src/components/molecules/email-form/EmailForm.js +1 -14
- package/src/components/molecules/email-form/EmailForm.state.js +1 -9
- package/src/components/molecules/nav-menu/NavMenu.theme.js +3 -1
- package/src/components/molecules/nav-menu/NavMenuDesktop.js +1 -1
- package/src/components/molecules/obligation/icons/AccountBillIcon.js +2 -2
- package/src/components/molecules/obligation/icons/AccountConstructionIcon.js +2 -2
- package/src/components/molecules/obligation/icons/AccountDentalIcon.js +2 -2
- package/src/components/molecules/obligation/icons/AccountElectricIcon.js +2 -2
- package/src/components/molecules/obligation/icons/AccountGarbageIcon.js +2 -2
- package/src/components/molecules/obligation/icons/AccountGasIcon.js +2 -2
- package/src/components/molecules/obligation/icons/AccountGenericIcon.js +2 -2
- package/src/components/molecules/obligation/icons/AccountMedicalIcon.js +2 -2
- package/src/components/molecules/obligation/icons/AccountWaterIcon.js +2 -2
- package/src/components/molecules/obligation/icons/PropertyApartmentIcon.js +2 -2
- package/src/components/molecules/obligation/icons/PropertyBusinessIcon.js +2 -2
- package/src/components/molecules/obligation/icons/PropertyCarIcon.js +2 -2
- package/src/components/molecules/obligation/icons/PropertyCommercialVehicleIcon.js +2 -2
- package/src/components/molecules/obligation/icons/PropertyGarageIcon.js +2 -2
- package/src/components/molecules/obligation/icons/PropertyLandIcon.js +2 -2
- package/src/components/molecules/obligation/icons/PropertyMotorcycleIcon.js +2 -2
- package/src/components/molecules/obligation/icons/PropertyPersonalIcon.js +2 -2
- package/src/components/molecules/obligation/icons/PropertyStorefrontIcon.js +2 -2
- package/src/components/molecules/partial-amount-form/PartialAmountForm.state.js +2 -1
- package/src/components/molecules/radio-section/RadioSection.js +2 -1
- package/src/components/templates/center-single/CenterSingle.js +7 -5
- package/src/components/templates/center-stack/CenterStack.js +7 -2
- package/src/components/templates/default-page-template/DefaultPageTemplate.js +7 -2
- package/src/components/templates/sidebar-single-content/SidebarSingleContent.js +7 -2
- package/src/components/templates/sidebar-stack-content/SidebarStackContent.js +2 -5
- package/src/deprecated/icons/IconQuit.js +5 -5
- package/src/deprecated/icons/index.js +0 -2
- package/src/util/index.js +2 -1
- package/src/deprecated/icons/IconAdd.js +0 -44
package/.tool-versions
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
nodejs 10.13.0
|