diff --git a/apps/www/app/examples/tasks/components/data-table-faceted-filter.tsx b/apps/www/app/examples/tasks/components/data-table-faceted-filter.tsx index 105ca00497c..b1a975fd7a9 100644 --- a/apps/www/app/examples/tasks/components/data-table-faceted-filter.tsx +++ b/apps/www/app/examples/tasks/components/data-table-faceted-filter.tsx @@ -21,7 +21,7 @@ import { } from "@/registry/new-york/ui/popover" import { Separator } from "@/registry/new-york/ui/separator" -interface DataTableFacetedFilter { +interface DataTableFacetedFilterProps { column?: Column title?: string options: { @@ -35,7 +35,7 @@ export function DataTableFacetedFilter({ column, title, options, -}: DataTableFacetedFilter) { +}: DataTableFacetedFilterProps) { const facets = column?.getFacetedUniqueValues() const selectedValues = new Set(column?.getFilterValue() as string[]) diff --git a/apps/www/content/docs/cli.mdx b/apps/www/content/docs/cli.mdx index 31d344a0ab3..464a03c6a26 100644 --- a/apps/www/content/docs/cli.mdx +++ b/apps/www/content/docs/cli.mdx @@ -51,7 +51,8 @@ npx shadcn-ui@latest add [component] You will be presented with a list of components to choose from: ```txt -Which components would you like to add? › Space to select. Return to submit. +Which components would you like to add? › Space to select. A to toggle all. +Enter to submit. ◯ accordion ◯ alert diff --git a/apps/www/content/docs/dark-mode/next.mdx b/apps/www/content/docs/dark-mode/next.mdx index 84bccb97403..175014c4ec8 100644 --- a/apps/www/content/docs/dark-mode/next.mdx +++ b/apps/www/content/docs/dark-mode/next.mdx @@ -42,7 +42,12 @@ export default function RootLayout({ children }: RootLayoutProps) { - + {children} diff --git a/apps/www/content/docs/installation/manual.mdx b/apps/www/content/docs/installation/manual.mdx index f5058a25980..efc5dd1fc7f 100644 --- a/apps/www/content/docs/installation/manual.mdx +++ b/apps/www/content/docs/installation/manual.mdx @@ -139,7 +139,7 @@ module.exports = { Add the following to your styles/globals.css file. You can learn more about using CSS variables for theming in the [theming section](/docs/theming). -```css title="styles.css" +```css title="globals.css" @tailwind base; @tailwind components; @tailwind utilities;