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

docs: Fixing examples / themes #699

Closed
wants to merge 6 commits into from
Closed
Show file tree
Hide file tree
Changes from 5 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 @@ -26,8 +26,8 @@
</div>
</div>
<Popover.Root>
<Popover.Trigger asChild>
<Button variant="outline" size="sm" class="ml-auto">
<Popover.Trigger asChild let:builder>
<Button builders={[builder]} variant="outline" size="sm" class="ml-auto">
Owner{" "}
<ChevronDownIcon class="ml-2 h-4 w-4 text-muted-foreground" />
</Button>
Expand Down Expand Up @@ -88,8 +88,8 @@
</div>
</div>
<Popover.Root>
<Popover.Trigger asChild>
<Button variant="outline" size="sm" class="ml-auto">
<Popover.Trigger asChild let:builder>
<Button builders={[builder]} variant="outline" size="sm" class="ml-auto">
Member{" "}
<ChevronDownIcon class="ml-2 h-4 w-4 text-muted-foreground" />
</Button>
Expand Down Expand Up @@ -150,8 +150,8 @@
</div>
</div>
<Popover.Root>
<Popover.Trigger asChild>
<Button variant="outline" size="sm" class="ml-auto">
<Popover.Trigger asChild let:builder>
<Button builders={[builder]} variant="outline" size="sm" class="ml-auto">
Member{" "}
<ChevronDownIcon class="ml-2 h-4 w-4 text-muted-foreground" />
</Button>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@
</div>
</div>
<Popover.Root>
<Popover.Trigger asChild>
<Button variant="outline" size="sm" class="ml-auto">
<Popover.Trigger asChild let:builder>
<Button builders={[builder]} variant="outline" size="sm" class="ml-auto">
Owner{" "}
<ChevronDown class="ml-2 h-4 w-4 text-muted-foreground" />
</Button>
Expand Down Expand Up @@ -88,8 +88,8 @@
</div>
</div>
<Popover.Root>
<Popover.Trigger asChild>
<Button variant="outline" size="sm" class="ml-auto">
<Popover.Trigger asChild let:builder>
<Button builders={[builder]} variant="outline" size="sm" class="ml-auto">
Member{" "}
<ChevronDown class="ml-2 h-4 w-4 text-muted-foreground" />
</Button>
Expand Down Expand Up @@ -150,8 +150,8 @@
</div>
</div>
<Popover.Root>
<Popover.Trigger asChild>
<Button variant="outline" size="sm" class="ml-auto">
<Popover.Trigger asChild let:builder>
<Button builders={[builder]} variant="outline" size="sm" class="ml-auto">
Member{" "}
<ChevronDown class="ml-2 h-4 w-4 text-muted-foreground" />
</Button>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@
</Menubar.RadioGroup>
</Menubar.Group>
<Menubar.Separator />
<Menubar.Item inset>Manage Famliy...</Menubar.Item>
<Menubar.Item inset>Manage Family...</Menubar.Item>
<Menubar.Separator />
<Menubar.Item inset>Add Account...</Menubar.Item>
</Menubar.Content>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -108,8 +108,8 @@
<Command.Item
value={model.name}
class="aria-selected:bg-primary aria-selected:text-primary-foreground"
onSelect={(currentValue) => {
value = currentValue;
onSelect={() => {
value = model.id;
closeAndFocusTrigger(ids.trigger);
}}
>
Expand Down
Loading