Skip to content

Commit

Permalink
fix: missing export for inject
Browse files Browse the repository at this point in the history
  • Loading branch information
zernonia committed Dec 10, 2024
1 parent 07afc27 commit 5e901e3
Show file tree
Hide file tree
Showing 11 changed files with 85 additions and 15 deletions.
1 change: 1 addition & 0 deletions packages/core/src/Accordion/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ export {
} from './AccordionHeader.vue'
export {
default as AccordionItem,
injectAccordionItemContext,
type AccordionItemProps,
} from './AccordionItem.vue'
export {
Expand Down
1 change: 1 addition & 0 deletions packages/core/src/AlertDialog/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ export {
type AlertDialogPortalProps,
} from './AlertDialogPortal.vue'
export {
injectAlertDialogContentContext,
default as AlertDialogContent,
type AlertDialogContentProps,
type AlertDialogContentEmits,
Expand Down
2 changes: 2 additions & 0 deletions packages/core/src/Combobox/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ export {
type ComboboxCancelProps,
} from './ComboboxCancel.vue'
export {
injectComboboxGroupContext,
default as ComboboxGroup,
type ComboboxGroupProps,
} from './ComboboxGroup.vue'
Expand All @@ -46,6 +47,7 @@ export {
type ComboboxVirtualizerProps,
} from './ComboboxVirtualizer.vue'
export {
injectComboboxItemContext,
default as ComboboxItem,
type ComboboxItemProps,
type ComboboxItemEmits,
Expand Down
2 changes: 2 additions & 0 deletions packages/core/src/Listbox/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ export {
type ListboxFilterEmits,
} from './ListboxFilter.vue'
export {
injectListboxItemContext,
default as ListboxItem,
type ListboxItemProps,
type ListboxItemEmits,
Expand All @@ -28,6 +29,7 @@ export {
type ListboxVirtualizerProps,
} from './ListboxVirtualizer.vue'
export {
injectListboxGroupContext,
default as ListboxGroup,
type ListboxGroupProps,
} from './ListboxGroup.vue'
Expand Down
1 change: 1 addition & 0 deletions packages/core/src/Menubar/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ export {
type MenubarSubTriggerProps,
} from './MenubarSubTrigger.vue'
export {
injectMenubarMenuContext,
default as MenubarMenu,
type MenubarMenuProps,
} from './MenubarMenu.vue'
1 change: 1 addition & 0 deletions packages/core/src/NavigationMenu/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ export {
type NavigationMenuIndicatorProps,
} from './NavigationMenuIndicator.vue'
export {
injectNavigationMenuItemContext,
default as NavigationMenuItem,
type NavigationMenuItemProps,
} from './NavigationMenuItem.vue'
Expand Down
1 change: 1 addition & 0 deletions packages/core/src/RadioGroup/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ export {
type RadioGroupRootEmits,
} from './RadioGroupRoot.vue'
export {
injectRadioGroupItemContext,
default as RadioGroupItem,
type RadioGroupItemProps,
} from './RadioGroupItem.vue'
Expand Down
1 change: 1 addition & 0 deletions packages/core/src/ScrollArea/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ export {
type ScrollAreaViewportProps,
} from './ScrollAreaViewport.vue'
export {
injectScrollAreaScrollbarContext,
default as ScrollAreaScrollbar,
type ScrollAreaScrollbarProps,
} from './ScrollAreaScrollbar.vue'
Expand Down
6 changes: 5 additions & 1 deletion packages/core/src/Select/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,11 @@ export {
default as SelectGroup,
type SelectGroupProps,
} from './SelectGroup.vue'
export { default as SelectItem, type SelectItemProps } from './SelectItem.vue'
export {
injectSelectItemContext,
default as SelectItem,
type SelectItemProps,
} from './SelectItem.vue'
export {
default as SelectItemText,
type SelectItemTextProps,
Expand Down
45 changes: 37 additions & 8 deletions packages/core/src/Stepper/index.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,37 @@
export { injectStepperRootContext, default as StepperRoot, type StepperRootProps, type StepperRootEmits } from './StepperRoot.vue'

export { default as StepperItem, type StepperItemProps } from './StepperItem.vue'
export { default as StepperTrigger, type StepperTriggerProps } from './StepperTrigger.vue'
export { default as StepperDescription, type StepperDescriptionProps } from './StepperDescription.vue'
export { default as StepperTitle, type StepperTitleProps } from './StepperTitle.vue'
export { default as StepperIndicator, type StepperIndicatorProps } from './StepperIndicator.vue'
export { default as StepperSeparator, type StepperSeparatorProps } from './StepperSeparator.vue'
export {
injectStepperRootContext,
default as StepperRoot,
type StepperRootProps,
type StepperRootEmits,
} from './StepperRoot.vue'

export {
injectStepperItemContext,
default as StepperItem,
type StepperItemProps,
} from './StepperItem.vue'

export {
default as StepperTrigger,
type StepperTriggerProps,
} from './StepperTrigger.vue'

export {
default as StepperDescription,
type StepperDescriptionProps,
} from './StepperDescription.vue'

export {
default as StepperTitle,
type StepperTitleProps,
} from './StepperTitle.vue'

export {
default as StepperIndicator,
type StepperIndicatorProps,
} from './StepperIndicator.vue'

export {
default as StepperSeparator,
type StepperSeparatorProps,
} from './StepperSeparator.vue'
39 changes: 33 additions & 6 deletions packages/core/src/TagsInput/index.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,33 @@
export { injectTagsInputRootContext, default as TagsInputRoot, type TagsInputRootProps, type TagsInputRootEmits, type AcceptableInputValue } from './TagsInputRoot.vue'
export { default as TagsInputInput, type TagsInputInputProps } from './TagsInputInput.vue'
export { default as TagsInputItem, type TagsInputItemProps } from './TagsInputItem.vue'
export { default as TagsInputItemText, type TagsInputItemTextProps } from './TagsInputItemText.vue'
export { default as TagsInputItemDelete, type TagsInputItemDeleteProps } from './TagsInputItemDelete.vue'
export { default as TagsInputClear, type TagsInputClearProps } from './TagsInputClear.vue'
export {
injectTagsInputRootContext,
default as TagsInputRoot,
type TagsInputRootProps,
type TagsInputRootEmits,
type AcceptableInputValue,
} from './TagsInputRoot.vue'

export {
default as TagsInputInput,
type TagsInputInputProps,
} from './TagsInputInput.vue'

export {
injectTagsInputItemContext,
default as TagsInputItem,
type TagsInputItemProps,
} from './TagsInputItem.vue'

export {
default as TagsInputItemText,
type TagsInputItemTextProps,
} from './TagsInputItemText.vue'

export {
default as TagsInputItemDelete,
type TagsInputItemDeleteProps,
} from './TagsInputItemDelete.vue'

export {
default as TagsInputClear,
type TagsInputClearProps,
} from './TagsInputClear.vue'

0 comments on commit 5e901e3

Please sign in to comment.