@@ -16,6 +16,7 @@ import { PDFDocument } from "pdf-lib";
16
16
import axios from "axios" ;
17
17
import { isEnableSubscription , submitBtn } from "../constant/const" ;
18
18
import ModalUi from "../primitives/ModalUi" ;
19
+ import { Tooltip } from "react-tooltip" ;
19
20
20
21
// `Form` render all type of Form on this basis of their provided in path
21
22
function Form ( ) {
@@ -708,11 +709,11 @@ const Forms = (props) => {
708
709
/>
709
710
</ div >
710
711
{ props . title !== "New Template" && (
711
- < SelectFolder
712
- onSuccess = { handleFolder }
713
- folderCls = { props . Cls }
714
- isReset = { isReset }
715
- />
712
+ < SelectFolder
713
+ onSuccess = { handleFolder }
714
+ folderCls = { props . Cls }
715
+ isReset = { isReset }
716
+ />
716
717
) }
717
718
{ props . title === "Request Signatures" && (
718
719
< div className = "text-xs mt-2" >
@@ -732,7 +733,66 @@ const Forms = (props) => {
732
733
) }
733
734
{ props . title !== "Sign Yourself" && (
734
735
< div className = "text-xs mt-2" >
735
- < label className = "block" > Send In Order</ label >
736
+ < label className = "block" >
737
+ Send In Order
738
+ < a data-tooltip-id = "sendInOrder-tooltip" className = "ml-1" >
739
+ < sup >
740
+ < i
741
+ className = "fa-solid fa-question rounded-full"
742
+ style = { {
743
+ borderColor : "#33bbff" ,
744
+ color : "#33bbff" ,
745
+ fontSize : 13 ,
746
+ borderWidth : 1.5 ,
747
+ padding : "1.5px 4px"
748
+ } }
749
+ > </ i >
750
+ </ sup >
751
+ </ a >
752
+ < Tooltip id = "sendInOrder-tooltip" className = "z-50" >
753
+ < div className = "max-w-[200px] md:max-w-[450px]" >
754
+ < p className = "font-bold" > Send in Order</ p >
755
+ < p >
756
+ Choose how you want the signing requests to be sent to
757
+ the document signers:
758
+ </ p >
759
+ < p className = "p-[5px]" >
760
+ < ol className = "list-disc" >
761
+ < li >
762
+ < span className = "font-bold" > Yes:</ span >
763
+ < span >
764
+ { " " }
765
+ Selecting this option will send the signing
766
+ request to the first signer initially. Once the
767
+ first signer completes their part, the next signer
768
+ in the sequence will receive the request. This
769
+ process continues until all signers have signed
770
+ the document. This method ensures that the
771
+ document is signed in a specific order.
772
+ </ span >
773
+ </ li >
774
+ < li >
775
+ < span className = "font-bold" > No: </ span >
776
+ < span >
777
+ Selecting this option will send the signing links
778
+ to all signers simultaneously. Every signer can
779
+ sign the document at their convenience, regardless
780
+ of whether other signers have completed their
781
+ signatures. This method is faster but does not
782
+ enforce any signing order among the participants.
783
+ </ span >
784
+ </ li >
785
+ </ ol >
786
+ </ p >
787
+
788
+ < p >
789
+ Select the option that best suits the needs of your
790
+ document processing.
791
+ </ p >
792
+ </ div >
793
+ </ Tooltip >
794
+ </ label >
795
+
736
796
< div className = "flex items-center gap-2 ml-2 mb-1" >
737
797
< input
738
798
type = "radio"
0 commit comments