groundfloor-react-ui 1.0.21 → 1.2.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 (32) hide show
  1. package/components/Accordion/Accordion.js +4 -1
  2. package/components/Accordion/AccordionSB.js +4 -0
  3. package/components/Accordion/AccordionSBfooter.js +4 -0
  4. package/components/ArrowBar/ArrowBar.js +1 -1
  5. package/components/Avatar/AvatarSBfooter.js +40 -6
  6. package/components/Breadcrumb/Breadcrumb.js +18 -0
  7. package/components/Button/PrimaryButton.js +8 -0
  8. package/components/Button/SecondaryButton.js +7 -0
  9. package/components/Button/TinyButton.js +8 -2
  10. package/components/DesignComponent/StyledComponent/StyledComponent.js +21 -7
  11. package/components/Form/FormComponent.js +9 -11
  12. package/components/Inputs/CheckBoxInput.js +1 -0
  13. package/components/Inputs/ColorInput.js +144 -0
  14. package/components/Inputs/DropdownSelect.js +57 -13
  15. package/components/Inputs/DropzoneInput.js +7 -0
  16. package/components/Inputs/NumericInput.js +7 -0
  17. package/components/Inputs/PasswordInput.js +21 -5
  18. package/components/Inputs/RadioInput.js +22 -3
  19. package/components/Inputs/SearchInput.js +2 -1
  20. package/components/Inputs/Signature.js +8 -0
  21. package/components/Inputs/TextArea.js +7 -0
  22. package/components/Inputs/TextInput.js +10 -3
  23. package/components/Inputs/TimeInput.js +7 -1
  24. package/components/Inputs/ToggleSwitch.js +6 -0
  25. package/components/Inputs/index.js +10 -9
  26. package/components/Modal/ModalComp.js +1 -1
  27. package/components/Tooltip/Tooltip.js +394 -285
  28. package/components/constants/defaultStyle.js +32 -0
  29. package/dist/index.es.js +1377 -1307
  30. package/dist/index.js +1389 -1319
  31. package/index.js +39 -39
  32. package/package.json +1 -1
@@ -771,6 +771,38 @@ const defaultStyles = {
771
771
  width: '25vw',
772
772
  },
773
773
  },
774
+
775
+ 'popOver-Content':{
776
+ padding: '16px',
777
+ color: 'white',
778
+ width: '226px',
779
+ borderRadius: '3.6px'
780
+ },
781
+ 'popOver-header':{
782
+ marginBottom: '8px',
783
+ fontWeight: '600'
784
+ },
785
+ 'popOver-body':{
786
+ marginBottom: '11.5px'
787
+ },
788
+
789
+ /**
790
+ * Default style of the ColorInput
791
+ */
792
+ 'ColorWrapper':{
793
+
794
+ borderRadius: '4.87px' ,
795
+
796
+ padding:'8px 21px',
797
+ display: 'flex',
798
+ },
799
+
800
+ 'input-color': {
801
+
802
+ borderRadius: '4px',
803
+ width: '24px',
804
+ height: '24px',
805
+ }
774
806
  };
775
807
 
776
808
  export default defaultStyles;