@flozy/editor 9.9.6 → 9.9.7
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/dist/Editor/Elements/EmbedScript/Code.js +14 -2
- package/dist/Editor/Elements/EmbedScript/EmbedScriptPopup.js +57 -28
- package/dist/Editor/Elements/EmbedScript/styles.js +89 -0
- package/dist/Editor/Elements/Form/Form.js +179 -168
- package/dist/Editor/Elements/Form/FormField.js +10 -4
- package/dist/Editor/Elements/FreeGrid/FreeGrid.js +5 -1
- package/dist/Editor/Elements/FreeGrid/Options/More.js +1 -1
- package/dist/Editor/Elements/FreeGrid/styles.js +58 -7
- package/dist/Editor/assets/svg/SettingsIcon.js +1 -0
- package/dist/Editor/common/LinkSettings/NavComponents.js +34 -8
- package/dist/Editor/common/LinkSettings/index.js +84 -68
- package/dist/Editor/common/LinkSettings/style.js +245 -30
- package/dist/Editor/common/RnD/ElementOptions/Actions.js +13 -14
- package/dist/Editor/common/RnD/ElementOptions/Icons/LinkIcon.js +1 -0
- package/dist/Editor/common/RnD/ElementOptions/index.js +2 -2
- package/dist/Editor/common/RnD/ElementOptions/styles.js +28 -1
- package/dist/Editor/common/RnD/ElementSettings/OtherSettings/Settings.js +4 -4
- package/dist/Editor/common/RnD/ElementSettings/styles.js +147 -12
- package/dist/Editor/common/RnD/OptionsPopup/index.js +8 -5
- package/dist/Editor/common/RnD/OptionsPopup/style.js +121 -19
- package/dist/Editor/common/Select/index.js +2 -0
- package/dist/Editor/common/StyleBuilder/fieldTypes/menusArray.js +13 -6
- package/dist/Editor/common/iconListV2.js +101 -6
- package/dist/Editor/common/iconslist.js +3 -0
- package/dist/Editor/commonStyle.js +78 -0
- package/package.json +1 -1
@@ -631,6 +631,84 @@ const useCommonStyle = theme => ({
|
|
631
631
|
stroke: `${theme?.palette?.editor?.closeButtonSvgStroke} !important`
|
632
632
|
}
|
633
633
|
}
|
634
|
+
},
|
635
|
+
formStyles: {
|
636
|
+
"& input": {
|
637
|
+
background: theme?.palette?.editor?.inputFieldBgColor,
|
638
|
+
border: `1px solid ${theme?.palette?.editor?.inputFieldBorder}`,
|
639
|
+
borderRadius: "8px",
|
640
|
+
height: "44px",
|
641
|
+
fontSize: "14px",
|
642
|
+
color: theme?.palette?.editor?.textColor
|
643
|
+
},
|
644
|
+
"& .form-btn-wrpr": {
|
645
|
+
"& button": {
|
646
|
+
background: "#2563EB",
|
647
|
+
fontSize: "14px",
|
648
|
+
fontWeight: 500,
|
649
|
+
padding: "4px 24px",
|
650
|
+
textTransform: "none",
|
651
|
+
color: "#FFFFFF",
|
652
|
+
height: "44px",
|
653
|
+
borderRadius: "8px",
|
654
|
+
border: "unset",
|
655
|
+
fontFamily: "Inter, sans-serif"
|
656
|
+
}
|
657
|
+
}
|
658
|
+
},
|
659
|
+
formMenuStyle: {
|
660
|
+
"& .MuiPaper-root": {
|
661
|
+
background: "transparent",
|
662
|
+
boxShadow: "none"
|
663
|
+
},
|
664
|
+
"& .MuiList-root": {
|
665
|
+
padding: "2px 0px 0px 16px"
|
666
|
+
},
|
667
|
+
"& .MuiButtonBase-root": {
|
668
|
+
padding: "2px"
|
669
|
+
},
|
670
|
+
"& li": {
|
671
|
+
marginLeft: "5px",
|
672
|
+
"&:hover": {
|
673
|
+
background: "transparent"
|
674
|
+
},
|
675
|
+
"& button": {
|
676
|
+
height: "28px",
|
677
|
+
width: "28px",
|
678
|
+
borderRadius: "50%",
|
679
|
+
background: theme?.palette?.editor?.signatureFontBtnBg,
|
680
|
+
border: `1px solid ${theme?.palette?.editor?.buttonBorder1} !important`,
|
681
|
+
boxShadow: "0px 0px 4px 0px #00000024",
|
682
|
+
"&:hover": {
|
683
|
+
background: theme?.palette?.editor?.signatureFontBtnBg
|
684
|
+
},
|
685
|
+
"& svg": {
|
686
|
+
height: "20px",
|
687
|
+
width: "20px"
|
688
|
+
},
|
689
|
+
"& .uploadIcon": {
|
690
|
+
height: "17px",
|
691
|
+
width: "17px"
|
692
|
+
},
|
693
|
+
"& .commonSvgStyle path": {
|
694
|
+
stroke: theme?.palette?.editor?.closeButtonSvgStroke
|
695
|
+
}
|
696
|
+
}
|
697
|
+
}
|
698
|
+
},
|
699
|
+
fieldBtnSettings: {
|
700
|
+
"& .MuiButtonBase-root": {
|
701
|
+
height: "28px",
|
702
|
+
width: "28px",
|
703
|
+
padding: "4px",
|
704
|
+
"& svg": {
|
705
|
+
width: "20px",
|
706
|
+
height: "20px",
|
707
|
+
"& path": {
|
708
|
+
stroke: theme?.palette?.editor?.closeButtonSvgStroke
|
709
|
+
}
|
710
|
+
}
|
711
|
+
}
|
634
712
|
}
|
635
713
|
});
|
636
714
|
export default useCommonStyle;
|