- Add headless PropertySection and accessible SegmentedControl anatomy - Make PropertyList controlled and exactly typed with an undo-aware editor adapter - Consolidate SDK metadata loaders and link untranslated docs to canonical pages
13 lines
594 B
TypeScript
13 lines
594 B
TypeScript
import { defineComponentMetaLoader } from '#docs/sdk/component-meta'
|
|
|
|
const sources = [
|
|
'packages/vue/src/primitives/PropertySection/PropertySectionRoot.vue',
|
|
'packages/vue/src/primitives/PropertySection/PropertySectionHeader.vue',
|
|
'packages/vue/src/primitives/PropertySection/PropertySectionTitle.vue',
|
|
'packages/vue/src/primitives/PropertySection/PropertySectionActions.vue',
|
|
'packages/vue/src/primitives/PropertySection/PropertySectionContent.vue',
|
|
'packages/vue/src/primitives/PropertySection/PropertySectionEmptyAction.vue'
|
|
]
|
|
|
|
export default defineComponentMetaLoader(sources)
|