Skip to content

Commit f5020cf

Browse files
committed
chore/update docs again
1 parent 1b45e16 commit f5020cf

29 files changed

+27
-27
lines changed

docs/astro.config.mjs

+3-3
Original file line numberDiff line numberDiff line change
@@ -36,17 +36,17 @@ export default defineConfig({
3636
{ label: 'Getting started', link: '' },
3737
{
3838
label: 'Theme',
39-
autogenerate: { directory: 'shadcn-ui/Theme' },
39+
autogenerate: { directory: 'Theme' },
4040
collapsed: false,
4141
},
4242
{
4343
label: 'Components',
44-
autogenerate: { directory: 'shadcn-ui/Components' },
44+
autogenerate: { directory: 'Components' },
4545
collapsed: false,
4646
},
4747
{
4848
label: 'Utils',
49-
autogenerate: { directory: 'shadcn-ui/Utils' },
49+
autogenerate: { directory: 'Utils' },
5050
collapsed: false,
5151
},
5252
],

docs/src/content/docs/shadcn-ui/Components/accordion.mdx docs/src/content/docs/Components/accordion.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Accordion
33
sidebar:
44
order: 4
55
---
6-
import Preview from '../../../../components/Preview.astro';
6+
import Preview from '../../../components/Preview.astro';
77

88
A vertically stacked set of interactive headings that each reveal a section of content.
99

docs/src/content/docs/shadcn-ui/Components/alert.mdx docs/src/content/docs/Components/alert.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Alert
33
sidebar:
44
order: 4
55
---
6-
import Preview from '../../../../components/Preview.astro';
6+
import Preview from '../../../components/Preview.astro';
77

88
Displays a callout for user attention.
99

docs/src/content/docs/shadcn-ui/Components/avatar.mdx docs/src/content/docs/Components/avatar.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Avatar
33
sidebar:
44
order: 4
55
---
6-
import Preview from '../../../../components/Preview.astro';
6+
import Preview from '../../../components/Preview.astro';
77

88
An image element with a placeholder for representing the user.
99

docs/src/content/docs/shadcn-ui/Components/badge.mdx docs/src/content/docs/Components/badge.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Badge
33
sidebar:
44
order: 4
55
---
6-
import Preview from '../../../../components/Preview.astro';
6+
import Preview from '../../../components/Preview.astro';
77

88
Displays a badge or a component that looks like a badge.
99

docs/src/content/docs/shadcn-ui/Components/button.mdx docs/src/content/docs/Components/button.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Button
33
sidebar:
44
order: 4
55
---
6-
import Preview from '../../../../components/Preview.astro';
6+
import Preview from '../../../components/Preview.astro';
77

88
Displays a button or a component that looks like a button.
99

docs/src/content/docs/shadcn-ui/Components/card.mdx docs/src/content/docs/Components/card.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Card
33
sidebar:
44
order: 4
55
---
6-
import Preview from '../../../../components/Preview.astro';
6+
import Preview from '../../../components/Preview.astro';
77

88
Displays a card with header, content, and footer.
99

docs/src/content/docs/shadcn-ui/Components/checkbox.mdx docs/src/content/docs/Components/checkbox.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Checkbox
33
sidebar:
44
order: 4
55
---
6-
import Preview from '../../../../components/Preview.astro';
6+
import Preview from '../../../components/Preview.astro';
77

88
A control that allows the user to toggle between checked and not checked.
99

docs/src/content/docs/shadcn-ui/Components/context-menu.mdx docs/src/content/docs/Components/context-menu.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Context Menu
33
sidebar:
44
order: 4
55
---
6-
import Preview from '../../../../components/Preview.astro';
6+
import Preview from '../../../components/Preview.astro';
77

88
Displays a menu to the user — such as a set of actions or functions — triggered by a mouse right-click.
99

docs/src/content/docs/shadcn-ui/Components/dialog.mdx docs/src/content/docs/Components/dialog.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Dialog
33
sidebar:
44
order: 4
55
---
6-
import Preview from '../../../../components/Preview.astro';
6+
import Preview from '../../../components/Preview.astro';
77

88
A modal dialog that interrupts the user.
99

docs/src/content/docs/shadcn-ui/Components/form.mdx docs/src/content/docs/Components/form.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Form
33
sidebar:
44
order: 4
55
---
6-
import Preview from '../../../../components/Preview.astro';
6+
import Preview from '../../../components/Preview.astro';
77

88
Builds a form with validation and easy access to form fields values.
99

docs/src/content/docs/shadcn-ui/Components/image.mdx docs/src/content/docs/Components/image.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Image
33
sidebar:
44
order: 4
55
---
6-
import Preview from '../../../../components/Preview.astro';
6+
import Preview from '../../../components/Preview.astro';
77

88
Displays an image, many formats supported (_.png_, _.jpg_, _.jpeg_, _.svg_, _.svg.vec_) and more.
99

docs/src/content/docs/shadcn-ui/Components/input.mdx docs/src/content/docs/Components/input.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ sidebar:
44
order: 4
55
---
66

7-
import Preview from '../../../../components/Preview.astro';
7+
import Preview from '../../../components/Preview.astro';
88

99
Displays a form input field or a component that looks like an input field.
1010

docs/src/content/docs/shadcn-ui/Components/popover.mdx docs/src/content/docs/Components/popover.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ sidebar:
44
order: 4
55
---
66

7-
import Preview from '../../../../components/Preview.astro';
7+
import Preview from '../../../components/Preview.astro';
88

99
Displays rich content in a portal, triggered by a button.
1010

docs/src/content/docs/shadcn-ui/Components/progress.mdx docs/src/content/docs/Components/progress.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Progress
33
sidebar:
44
order: 4
55
---
6-
import Preview from '../../../../components/Preview.astro';
6+
import Preview from '../../../components/Preview.astro';
77

88
Displays an indicator showing the completion progress of a task, typically displayed as a progress bar.
99

docs/src/content/docs/shadcn-ui/Components/radio-group.mdx docs/src/content/docs/Components/radio-group.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: RadioGroup
33
sidebar:
44
order: 4
55
---
6-
import Preview from '../../../../components/Preview.astro';
6+
import Preview from '../../../components/Preview.astro';
77

88
A set of checkable buttons—known as radio buttons—where no more than one of the buttons can be checked at a time.
99

docs/src/content/docs/shadcn-ui/Components/resizable.mdx docs/src/content/docs/Components/resizable.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Resizable
33
sidebar:
44
order: 4
55
---
6-
import Preview from '../../../../components/Preview.astro';
6+
import Preview from '../../../components/Preview.astro';
77

88
Resizable panel groups and layouts.
99

docs/src/content/docs/shadcn-ui/Components/select.mdx docs/src/content/docs/Components/select.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Select
33
sidebar:
44
order: 4
55
---
6-
import Preview from '../../../../components/Preview.astro';
6+
import Preview from '../../../components/Preview.astro';
77

88
Displays a list of options for the user to pick from—triggered by a button.
99

docs/src/content/docs/shadcn-ui/Components/sheet.mdx docs/src/content/docs/Components/sheet.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Sheet
33
sidebar:
44
order: 4
55
---
6-
import Preview from '../../../../components/Preview.astro';
6+
import Preview from '../../../components/Preview.astro';
77

88
Extends the Dialog component to display content that complements the main content of the screen.
99

docs/src/content/docs/shadcn-ui/Components/slider.mdx docs/src/content/docs/Components/slider.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Slider
33
sidebar:
44
order: 4
55
---
6-
import Preview from '../../../../components/Preview.astro';
6+
import Preview from '../../../components/Preview.astro';
77

88
An input where the user selects a value from within a given range.
99

docs/src/content/docs/shadcn-ui/Components/switch.mdx docs/src/content/docs/Components/switch.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Switch
33
sidebar:
44
order: 4
55
---
6-
import Preview from '../../../../components/Preview.astro';
6+
import Preview from '../../../components/Preview.astro';
77

88
A control that allows the user to toggle between checked and not checked.
99

docs/src/content/docs/shadcn-ui/Components/table.mdx docs/src/content/docs/Components/table.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Table
33
sidebar:
44
order: 4
55
---
6-
import Preview from '../../../../components/Preview.astro';
6+
import Preview from '../../../components/Preview.astro';
77

88
A responsive table component.
99

docs/src/content/docs/shadcn-ui/Components/tabs.mdx docs/src/content/docs/Components/tabs.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Tabs
33
sidebar:
44
order: 4
55
---
6-
import Preview from '../../../../components/Preview.astro';
6+
import Preview from '../../../components/Preview.astro';
77

88
A set of layered sections of content—known as tab panels—that are displayed one at a time.
99

docs/src/content/docs/shadcn-ui/Components/toast.mdx docs/src/content/docs/Components/toast.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Toast
33
sidebar:
44
order: 4
55
---
6-
import Preview from '../../../../components/Preview.astro';
6+
import Preview from '../../../components/Preview.astro';
77

88
A succinct message that is displayed temporarily.
99

docs/src/content/docs/shadcn-ui/Components/tooltip.mdx docs/src/content/docs/Components/tooltip.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Tooltip
33
sidebar:
44
order: 4
55
---
6-
import Preview from '../../../../components/Preview.astro';
6+
import Preview from '../../../components/Preview.astro';
77

88
A popup that displays information related to an element when the element receives keyboard focus or the mouse hovers over it.
99

0 commit comments

Comments
 (0)