Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added Left/Right Element and Left/Right Addon Props to input control #155

Open
wants to merge 6 commits into
base: master
Choose a base branch
from

Conversation

ogheneovo12
Copy link

@ogheneovo12 ogheneovo12 commented Aug 16, 2022

usage


  <InputControl
        inputProps={{ type:"email"}}
        name="email"
        label="Email"
        leftChildren={<MailIcon width="30px" height="30px" />}
     />
     
  < InputControl
        inputProps={{ type: revealPassword ? 'text' : 'password', paddingLeft:"38px" }}
        name="password"
        label="password"
        leftChildren={<LockIcon {...iconProps} />}
        rightChildren={
        revealPassword ? (
            <EyeClose onClick={toggleReveal} {...iconProps} />
            ) : (
            <EyeOpen onClick={toggleReveal} {...iconProps} />
            )
         }
      />
      
    <InputControl
          name="website"
          placeholder="mysite"
          leftChildren={'https://'}
          rightChildren={'.com'}
          useAddon={{ left: true, right: true }}
      />
      

so if rightChildren or leftChildren props is passed to InputControl, the children will be rendered by default using the Chakra InputLeftElement or InputRightElement as their parent component, if addon is specified for either left/right via the useAddon props, InputLeftAddon or InputRightAddon will be used based on what was passed to useAddon.

@netlify
Copy link

netlify bot commented Aug 16, 2022

Deploy Preview for gregarious-marshmallow-00a41c ready!

Name Link
🔨 Latest commit 2a25e5a
🔍 Latest deploy log https://app.netlify.com/sites/gregarious-marshmallow-00a41c/deploys/62fbda6abe6898000830e45e
😎 Deploy Preview https://deploy-preview-155--gregarious-marshmallow-00a41c.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify site settings.

@ogheneovo12
Copy link
Author

ogheneovo12 commented Aug 16, 2022

Can't figure out the fix for the netlify error, if someone can assist in the meantime, will have to come back to this after

@ogheneovo12
Copy link
Author

hi @thekaganugur

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant