mirror of
https://github.com/supabase/supabase.git
synced 2026-09-07 02:20:52 +08:00
## Problem The `_Shadcn_` suffix isn't needed anymore on `Select` components ## Solution Remove it. No other changes <!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit * **Refactor** * Updated internal component architecture to standardize and simplify the codebase. These changes improve code maintainability and consistency across the application without affecting existing functionality or user experience. <!-- review_stack_entry_start --> [](https://app.coderabbit.ai/change-stack/supabase/supabase/pull/45988) <!-- review_stack_entry_end --> <!-- end of auto-generated comment: release notes by coderabbit.ai -->
64 lines
2.8 KiB
TypeScript
64 lines
2.8 KiB
TypeScript
import {
|
|
Select,
|
|
SelectContent,
|
|
SelectGroup,
|
|
SelectItem,
|
|
SelectLabel,
|
|
SelectTrigger,
|
|
SelectValue,
|
|
} from 'ui'
|
|
|
|
export default function SelectScrollable() {
|
|
return (
|
|
<Select>
|
|
<SelectTrigger className="w-[280px]">
|
|
<SelectValue placeholder="Select a timezone" />
|
|
</SelectTrigger>
|
|
<SelectContent>
|
|
<SelectGroup>
|
|
<SelectLabel>North America</SelectLabel>
|
|
<SelectItem value="est">Eastern Standard Time (EST)</SelectItem>
|
|
<SelectItem value="cst">Central Standard Time (CST)</SelectItem>
|
|
<SelectItem value="mst">Mountain Standard Time (MST)</SelectItem>
|
|
<SelectItem value="pst">Pacific Standard Time (PST)</SelectItem>
|
|
<SelectItem value="akst">Alaska Standard Time (AKST)</SelectItem>
|
|
<SelectItem value="hst">Hawaii Standard Time (HST)</SelectItem>
|
|
</SelectGroup>
|
|
<SelectGroup>
|
|
<SelectLabel>Europe & Africa</SelectLabel>
|
|
<SelectItem value="gmt">Greenwich Mean Time (GMT)</SelectItem>
|
|
<SelectItem value="cet">Central European Time (CET)</SelectItem>
|
|
<SelectItem value="eet">Eastern European Time (EET)</SelectItem>
|
|
<SelectItem value="west">Western European Summer Time (WEST)</SelectItem>
|
|
<SelectItem value="cat">Central Africa Time (CAT)</SelectItem>
|
|
<SelectItem value="eat">East Africa Time (EAT)</SelectItem>
|
|
</SelectGroup>
|
|
<SelectGroup>
|
|
<SelectLabel>Asia</SelectLabel>
|
|
<SelectItem value="msk">Moscow Time (MSK)</SelectItem>
|
|
<SelectItem value="ist">India Standard Time (IST)</SelectItem>
|
|
<SelectItem value="cst_china">China Standard Time (CST)</SelectItem>
|
|
<SelectItem value="jst">Japan Standard Time (JST)</SelectItem>
|
|
<SelectItem value="kst">Korea Standard Time (KST)</SelectItem>
|
|
<SelectItem value="ist_indonesia">Indonesia Central Standard Time (WITA)</SelectItem>
|
|
</SelectGroup>
|
|
<SelectGroup>
|
|
<SelectLabel>Australia & Pacific</SelectLabel>
|
|
<SelectItem value="awst">Australian Western Standard Time (AWST)</SelectItem>
|
|
<SelectItem value="acst">Australian Central Standard Time (ACST)</SelectItem>
|
|
<SelectItem value="aest">Australian Eastern Standard Time (AEST)</SelectItem>
|
|
<SelectItem value="nzst">New Zealand Standard Time (NZST)</SelectItem>
|
|
<SelectItem value="fjt">Fiji Time (FJT)</SelectItem>
|
|
</SelectGroup>
|
|
<SelectGroup>
|
|
<SelectLabel>South America</SelectLabel>
|
|
<SelectItem value="art">Argentina Time (ART)</SelectItem>
|
|
<SelectItem value="bot">Bolivia Time (BOT)</SelectItem>
|
|
<SelectItem value="brt">Brasilia Time (BRT)</SelectItem>
|
|
<SelectItem value="clt">Chile Standard Time (CLT)</SelectItem>
|
|
</SelectGroup>
|
|
</SelectContent>
|
|
</Select>
|
|
)
|
|
}
|