-
Notifications
You must be signed in to change notification settings - Fork 43
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
feat: Add missing features to Search component #197
Conversation
Signed-off-by: Moiz Masud <[email protected]>
Signed-off-by: Moiz Masud <[email protected]>
✅ Deploy Preview for carbon-components-builder ready!
To edit notification comments on pull requests, go to your Netlify site settings. |
Signed-off-by: Moiz Masud <[email protected]>
Signed-off-by: Moiz Masud <[email protected]>
Co-authored-by: Akshat Patel <[email protected]>
Co-authored-by: Akshat Patel <[email protected]>
Co-authored-by: Akshat Patel <[email protected]>
Co-authored-by: Akshat Patel <[email protected]>
Co-authored-by: Akshat Patel <[email protected]>
Co-authored-by: Akshat Patel <[email protected]>
Co-authored-by: Akshat Patel <[email protected]>
Co-authored-by: Akshat Patel <[email protected]>
Co-authored-by: Akshat Patel <[email protected]>
Signed-off-by: Moiz Masud <[email protected]>
light: checked | ||
})} /> | ||
<Checkbox | ||
labelText='AutoComplete' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
labelText='AutoComplete' | |
labelText='Autocomplete' |
<Checkbox | ||
labelText='AutoComplete' | ||
id='autoComplete' | ||
checked={selectedComponent.autoComplete === 'on'} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
checked={selectedComponent.autoComplete === 'on'} | |
checked={selectedComponent.autocomplete === 'on'} |
checked={selectedComponent.autoComplete === 'on'} | ||
onChange={(checked: any) => setComponent({ | ||
...selectedComponent, | ||
autoComplete: checked ? 'on' : 'off' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
autoComplete: checked ? 'on' : 'off' | |
autocomplete: checked ? 'on' : 'off' |
})} /> | ||
<Checkbox | ||
labelText='Auto complete' | ||
id='autoComplete' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
id='autoComplete' | |
id='autocomplete' |
* Add missing properties to search component Signed-off-by: Moiz Masud <[email protected]> * Add props to ui-search preview file Signed-off-by: Moiz Masud <[email protected]> * Lint fix Signed-off-by: Moiz Masud <[email protected]> * Lint fix Signed-off-by: Moiz Masud <[email protected]> * Update src/ui-fragment/src/components/ui-serach-input.tsx Co-authored-by: Akshat Patel <[email protected]> * Update src/fragment-components/a-searchinput.tsx Co-authored-by: Akshat Patel <[email protected]> * Update src/fragment-components/a-searchinput.tsx Co-authored-by: Akshat Patel <[email protected]> * Update src/fragment-components/a-searchinput.tsx Co-authored-by: Akshat Patel <[email protected]> * Update src/fragment-components/a-searchinput.tsx Co-authored-by: Akshat Patel <[email protected]> * Update src/fragment-components/a-searchinput.tsx Co-authored-by: Akshat Patel <[email protected]> * Update src/fragment-components/a-searchinput.tsx Co-authored-by: Akshat Patel <[email protected]> * Update src/fragment-components/a-searchinput.tsx Co-authored-by: Akshat Patel <[email protected]> * Update src/ui-fragment/src/components/ui-serach-input.tsx Co-authored-by: Akshat Patel <[email protected]> * Change auto complete naming convention Signed-off-by: Moiz Masud <[email protected]> * Update src/fragment-components/a-searchinput.tsx Signed-off-by: Moiz Masud <[email protected]> Co-authored-by: Akshat Patel <[email protected]> Signed-off-by: Moiz Masud <[email protected]>
* Add missing properties to search component Signed-off-by: Moiz Masud <[email protected]> * Add props to ui-search preview file Signed-off-by: Moiz Masud <[email protected]> * Lint fix Signed-off-by: Moiz Masud <[email protected]> * Lint fix Signed-off-by: Moiz Masud <[email protected]> * Update src/ui-fragment/src/components/ui-serach-input.tsx Co-authored-by: Akshat Patel <[email protected]> * Update src/fragment-components/a-searchinput.tsx Co-authored-by: Akshat Patel <[email protected]> * Update src/fragment-components/a-searchinput.tsx Co-authored-by: Akshat Patel <[email protected]> * Update src/fragment-components/a-searchinput.tsx Co-authored-by: Akshat Patel <[email protected]> * Update src/fragment-components/a-searchinput.tsx Co-authored-by: Akshat Patel <[email protected]> * Update src/fragment-components/a-searchinput.tsx Co-authored-by: Akshat Patel <[email protected]> * Update src/fragment-components/a-searchinput.tsx Co-authored-by: Akshat Patel <[email protected]> * Update src/fragment-components/a-searchinput.tsx Co-authored-by: Akshat Patel <[email protected]> * Update src/ui-fragment/src/components/ui-serach-input.tsx Co-authored-by: Akshat Patel <[email protected]> * Change auto complete naming convention Signed-off-by: Moiz Masud <[email protected]> * Update src/fragment-components/a-searchinput.tsx Signed-off-by: Moiz Masud <[email protected]> Co-authored-by: Akshat Patel <[email protected]> Signed-off-by: Connor-Ahearn <[email protected]>
Signed-off-by: Moiz Masud [email protected]
closes #19
check off Search here: #134