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.
- package/components/Accordion/Accordion.js +4 -1
- package/components/Accordion/AccordionSB.js +4 -0
- package/components/Accordion/AccordionSBfooter.js +4 -0
- package/components/ArrowBar/ArrowBar.js +1 -1
- package/components/Avatar/AvatarSBfooter.js +40 -6
- package/components/Breadcrumb/Breadcrumb.js +18 -0
- package/components/Button/PrimaryButton.js +8 -0
- package/components/Button/SecondaryButton.js +7 -0
- package/components/Button/TinyButton.js +8 -2
- package/components/DesignComponent/StyledComponent/StyledComponent.js +21 -7
- package/components/Form/FormComponent.js +9 -11
- package/components/Inputs/CheckBoxInput.js +1 -0
- package/components/Inputs/ColorInput.js +144 -0
- package/components/Inputs/DropdownSelect.js +57 -13
- package/components/Inputs/DropzoneInput.js +7 -0
- package/components/Inputs/NumericInput.js +7 -0
- package/components/Inputs/PasswordInput.js +21 -5
- package/components/Inputs/RadioInput.js +22 -3
- package/components/Inputs/SearchInput.js +2 -1
- package/components/Inputs/Signature.js +8 -0
- package/components/Inputs/TextArea.js +7 -0
- package/components/Inputs/TextInput.js +10 -3
- package/components/Inputs/TimeInput.js +7 -1
- package/components/Inputs/ToggleSwitch.js +6 -0
- package/components/Inputs/index.js +10 -9
- package/components/Modal/ModalComp.js +1 -1
- package/components/Tooltip/Tooltip.js +394 -285
- package/components/constants/defaultStyle.js +32 -0
- package/dist/index.es.js +1377 -1307
- package/dist/index.js +1389 -1319
- package/index.js +39 -39
- 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;
|