Skip to content

Commit e1008ba

Browse files
committed
docs: fix API index, anchor link, and import paths
- Add missing components to API index (Checkbox, Radio, Scrim, Tabs) - Add missing composables to API index (createNested, useDate, useLazy, useStack) - Fix broken anchor link in styling.md (#tailwind → #tailwind-css-v4) - Fix internal import paths in browser-support.md (#v0/ → @vuetify/v0)
1 parent 223d120 commit e1008ba

File tree

3 files changed

+11
-4
lines changed

3 files changed

+11
-4
lines changed

apps/docs/src/pages/api/index.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,14 +28,18 @@ Detailed API reference for each component including props, events, and slots.
2828
| - | - |
2929
| [Atom](/api/atom) | Polymorphic element base component |
3030
| [Avatar](/api/avatar) | Image with fallback support |
31+
| [Checkbox](/api/checkbox) | Checkbox with indeterminate support |
3132
| [Dialog](/api/dialog) | Modal dialog with focus management |
3233
| [ExpansionPanel](/api/expansion-panel) | Collapsible accordion panels |
3334
| [Group](/api/group) | Multi-selection with tri-state |
3435
| [Pagination](/api/pagination) | Page navigation component |
3536
| [Popover](/api/popover) | Anchor-positioned popups |
37+
| [Radio](/api/radio) | Radio button group |
38+
| [Scrim](/api/scrim) | Overlay backdrop |
3639
| [Selection](/api/selection) | Multi-selection state provider |
3740
| [Single](/api/single) | Single-selection provider |
3841
| [Step](/api/step) | Sequential navigation provider |
42+
| [Tabs](/api/tabs) | Tabbed navigation |
3943

4044
## Composables
4145

@@ -65,6 +69,7 @@ Detailed API reference for each composable including options, properties, and me
6569
| [createSelection](/api/create-selection) | General selection state |
6670
| [createSingle](/api/create-single) | Single-selection with auto-deselection |
6771
| [createGroup](/api/create-group) | Multi-selection with tri-state |
72+
| [createNested](/api/create-nested) | Hierarchical tree management |
6873
| [createStep](/api/create-step) | Sequential navigation |
6974

7075
### Forms
@@ -88,6 +93,7 @@ Detailed API reference for each composable including options, properties, and me
8893
| [useHotkey](/api/use-hotkey) | Hotkey combinations |
8994
| [useClickOutside](/api/use-click-outside) | Click outside detection |
9095
| [useIntersectionObserver](/api/use-intersection-observer) | Visibility detection |
96+
| [useLazy](/api/use-lazy) | Deferred content rendering |
9197
| [useMutationObserver](/api/use-mutation-observer) | DOM change detection |
9298
| [useResizeObserver](/api/use-resize-observer) | Element size changes |
9399
| [useMediaQuery](/api/use-media-query) | CSS media query matching |
@@ -98,11 +104,13 @@ Detailed API reference for each composable including options, properties, and me
98104
| Composable | Description |
99105
| - | - |
100106
| [useBreakpoints](/api/use-breakpoints) | Responsive breakpoints |
107+
| [useDate](/api/use-date) | Date manipulation with adapters |
101108
| [useFeatures](/api/use-features) | Feature flags |
102109
| [useHydration](/api/use-hydration) | SSR hydration |
103110
| [useLocale](/api/use-locale) | Internationalization |
104111
| [useLogger](/api/use-logger) | Logging with adapters |
105112
| [usePermissions](/api/use-permissions) | Role-based access |
113+
| [useStack](/api/use-stack) | Overlay z-index stacking |
106114
| [useStorage](/api/use-storage) | Reactive browser storage |
107115
| [useTheme](/api/use-theme) | Theme management |
108116

apps/docs/src/pages/guide/fundamentals/styling.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ All v0 components expose state via `data-*` attributes in the `attrs` object:
5656
5757
## Styling with Data Attributes
5858

59-
Data attribute selectors let you style based on state purely in CSS. This works with [Tailwind](/introduction/getting-started#tailwind), [UnoCSS](/introduction/getting-started#unocss), plain CSS, or any framework supporting attribute selectors.
59+
Data attribute selectors let you style based on state purely in CSS. This works with [Tailwind](/introduction/getting-started#tailwind-css-v4), [UnoCSS](/introduction/getting-started#unocss), plain CSS, or any framework supporting attribute selectors.
6060

6161
### Tailwind / UnoCSS
6262

apps/docs/src/pages/introduction/browser-support.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -70,8 +70,7 @@ These features have broad browser support with proper feature detection:
7070
All composables use the `IN_BROWSER` constant and `useHydration` composable to ensure safe server-side rendering:
7171

7272
```ts
73-
import { IN_BROWSER } from '#v0/constants/globals'
74-
import { useHydration } from '#v0/composables'
73+
import { IN_BROWSER, useHydration } from '@vuetify/v0'
7574

7675
const { isHydrated } = useHydration()
7776

@@ -93,7 +92,7 @@ import {
9392
SUPPORTS_OBSERVER,
9493
SUPPORTS_INTERSECTION_OBSERVER,
9594
SUPPORTS_MUTATION_OBSERVER,
96-
} from '#v0/constants/globals'
95+
} from '@vuetify/v0'
9796
```
9897

9998
## Documentation Site

0 commit comments

Comments
 (0)