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

feat(components): add disbaled state #36

Merged
merged 1 commit into from
Sep 7, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export const SingleComboboxInput = ({
placeholder={placeholder}
displayValue={() => displayValue}
onChange={onChange}
className="paragraph-100 flex h-8 w-full items-center rounded border border-neutral-400 py-2 pl-3 pr-8 focus-visible:border-primary-400 focus-visible:ring-2 focus-visible:ring-primary-200"
className="paragraph-100 flex h-8 w-full items-center rounded border border-neutral-400 py-2 pl-3 pr-8 focus-visible:border-primary-400 focus-visible:ring-2 focus-visible:ring-primary-200 disabled:bg-neutral-100 disabled:text-neutral-600 disabled:border-neutral-300"
/>
{showButton ? (
<HeadlessCombobox.Button className="absolute inset-y-0 right-0 flex items-center px-1.5">
Expand Down
10 changes: 8 additions & 2 deletions src/components/form-field/single-combobox/single-combobox.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,17 @@ export interface SingleComboboxProps<TValue> {
value: TValue;
onChange: (value: TValue) => void;
children: React.ReactNode;
disabled?: boolean;
}

const SingleCombobox = <TValue,>({ value, onChange, children }: SingleComboboxProps<TValue>) => {
const SingleCombobox = <TValue,>({
value,
onChange,
children,
disabled,
}: SingleComboboxProps<TValue>) => {
return (
<HeadlessCombobox value={value} onChange={onChange}>
<HeadlessCombobox value={value} onChange={onChange} disabled={disabled}>
<div className="relative">{children}</div>
</HeadlessCombobox>
);
Expand Down