+
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris diff --git a/apps/v4/examples/base/drawer-with-sides.tsx b/apps/v4/examples/base/drawer-sides.tsx similarity index 93% rename from apps/v4/examples/base/drawer-with-sides.tsx rename to apps/v4/examples/base/drawer-sides.tsx index 374ff8aad5..dcd2bfe4f4 100644 --- a/apps/v4/examples/base/drawer-with-sides.tsx +++ b/apps/v4/examples/base/drawer-sides.tsx @@ -36,10 +36,7 @@ export function DrawerWithSides() {
+
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco diff --git a/apps/v4/examples/base/default-item-group.tsx b/apps/v4/examples/base/item-group-default.tsx similarity index 100% rename from apps/v4/examples/base/default-item-group.tsx rename to apps/v4/examples/base/item-group-default.tsx diff --git a/apps/v4/examples/radix/dialog-chat-settings.tsx b/apps/v4/examples/radix/dialog-chat-settings.tsx deleted file mode 100644 index a55e461ee9..0000000000 --- a/apps/v4/examples/radix/dialog-chat-settings.tsx +++ /dev/null @@ -1,396 +0,0 @@ -"use client" - -import * as React from "react" -import { Button } from "@/examples/radix/ui/button" -import { Checkbox } from "@/examples/radix/ui/checkbox" -import { - Dialog, - DialogContent, - DialogDescription, - DialogHeader, - DialogTitle, - DialogTrigger, -} from "@/examples/radix/ui/dialog" -import { - Field, - FieldContent, - FieldDescription, - FieldGroup, - FieldLabel, - FieldSeparator, - FieldSet, - FieldTitle, -} from "@/examples/radix/ui/field" -import { Input } from "@/examples/radix/ui/input" -import { - InputGroup, - InputGroupAddon, - InputGroupButton, - InputGroupInput, -} from "@/examples/radix/ui/input-group" -import { Kbd } from "@/examples/radix/ui/kbd" -import { - NativeSelect, - NativeSelectOption, -} from "@/examples/radix/ui/native-select" -import { - Select, - SelectContent, - SelectItem, - SelectSeparator, - SelectTrigger, - SelectValue, -} from "@/examples/radix/ui/select" -import { Switch } from "@/examples/radix/ui/switch" -import { - Tabs, - TabsContent, - TabsList, - TabsTrigger, -} from "@/examples/radix/ui/tabs" -import { Textarea } from "@/examples/radix/ui/textarea" -import { - Tooltip, - TooltipContent, - TooltipTrigger, -} from "@/examples/radix/ui/tooltip" -import { InfoIcon } from "lucide-react" - -const spokenLanguages = [ - { label: "English", value: "en" }, - { label: "Spanish", value: "es" }, - { label: "French", value: "fr" }, - { label: "German", value: "de" }, - { label: "Italian", value: "it" }, - { label: "Portuguese", value: "pt" }, - { label: "Russian", value: "ru" }, - { label: "Chinese", value: "zh" }, - { label: "Japanese", value: "ja" }, - { label: "Korean", value: "ko" }, - { label: "Arabic", value: "ar" }, - { label: "Hindi", value: "hi" }, - { label: "Bengali", value: "bn" }, - { label: "Telugu", value: "te" }, - { label: "Marathi", value: "mr" }, - { label: "Kannada", value: "kn" }, - { label: "Malayalam", value: "ml" }, -] - -const voices = [ - { label: "Samantha", value: "samantha" }, - { label: "Alex", value: "alex" }, - { label: "Fred", value: "fred" }, - { label: "Victoria", value: "victoria" }, - { label: "Tom", value: "tom" }, - { label: "Karen", value: "karen" }, - { label: "Sam", value: "sam" }, - { label: "Daniel", value: "daniel" }, -] - -export function DialogChatSettings() { - const [tab, setTab] = React.useState("general") - const [theme, setTheme] = React.useState("system") - const [accentColor, setAccentColor] = React.useState("default") - const [spokenLanguage, setSpokenLanguage] = React.useState("en") - const [voice, setVoice] = React.useState("samantha") - - return ( - - ) -} diff --git a/apps/v4/examples/radix/dialog-close-button.tsx b/apps/v4/examples/radix/dialog-close-button.tsx index 7c1f20adea..1b0ad948fa 100644 --- a/apps/v4/examples/radix/dialog-close-button.tsx +++ b/apps/v4/examples/radix/dialog-close-button.tsx @@ -39,9 +39,7 @@ export function DialogCloseButton() {
+
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris diff --git a/apps/v4/examples/radix/dialog-with-sticky-footer.tsx b/apps/v4/examples/radix/dialog-sticky-footer.tsx similarity index 71% rename from apps/v4/examples/radix/dialog-with-sticky-footer.tsx rename to apps/v4/examples/radix/dialog-sticky-footer.tsx index 5d6e88e7fb..14e714bd11 100644 --- a/apps/v4/examples/radix/dialog-with-sticky-footer.tsx +++ b/apps/v4/examples/radix/dialog-sticky-footer.tsx @@ -10,7 +10,7 @@ import { DialogTrigger, } from "@/examples/radix/ui/dialog" -export function DialogWithStickyFooter() { +export function DialogStickyFooter() { return (