Skip to content

Commit

Permalink
fix(*): add missing tree view context
Browse files Browse the repository at this point in the history
  • Loading branch information
cschroeter committed Nov 18, 2024
1 parent 56055e2 commit ec3e0ec
Show file tree
Hide file tree
Showing 6 changed files with 29 additions and 14 deletions.
4 changes: 4 additions & 0 deletions packages/react/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ description: All notable changes will be documented in this file.

## [Unreleased]

### Fixed

- **TreeView**: Exported missing `TreeViewContext`.

## [4.4.3] - 2024-11-14

### Fixed
Expand Down
1 change: 1 addition & 0 deletions packages/react/src/components/tree-view/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ export {
type TreeViewBranchTriggerBaseProps,
type TreeViewBranchTriggerProps,
} from './tree-view-branch-trigger'
export { TreeViewContext, type TreeViewContextProps } from './tree-view-context'
export {
TreeViewItem,
type TreeViewItemBaseProps,
Expand Down
4 changes: 4 additions & 0 deletions packages/solid/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ description: All notable changes will be documented in this file.

## [Unreleased]

### Fixed

- **TreeView**: Exported missing `TreeViewContext`.

## [4.5.0] - 2024-11-11

### Added
Expand Down
1 change: 1 addition & 0 deletions packages/solid/src/components/tree-view/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ export {
type TreeViewBranchTriggerBaseProps,
type TreeViewBranchTriggerProps,
} from './tree-view-branch-trigger'
export { TreeViewContext, type TreeViewContextProps } from './tree-view-context'
export {
TreeViewItem,
type TreeViewItemBaseProps,
Expand Down
4 changes: 4 additions & 0 deletions packages/vue/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ description: All notable changes will be documented in this file.

## [Unreleased]

### Fixed

- **TreeView**: Exported missing `TreeViewContext`.

## [4.4.1] - 2024-11-14

### Fixed
Expand Down
29 changes: 15 additions & 14 deletions packages/vue/src/components/tree-view/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,6 @@ export type {
SelectionChangeDetails as TreeViewSelectionChangeDetails,
} from '@zag-js/tree-view'
export { createTreeCollection, type TreeNode } from '../collection'
export {
default as TreeViewBranch,
type TreeViewBranchBaseProps,
type TreeViewBranchProps,
} from './tree-view-branch.vue'
export {
default as TreeViewBranchContent,
type TreeViewBranchContentBaseProps,
Expand Down Expand Up @@ -40,10 +35,11 @@ export {
type TreeViewBranchTriggerProps,
} from './tree-view-branch-trigger.vue'
export {
default as TreeViewItem,
type TreeViewItemBaseProps,
type TreeViewItemProps,
} from './tree-view-item.vue'
default as TreeViewBranch,
type TreeViewBranchBaseProps,
type TreeViewBranchProps,
} from './tree-view-branch.vue'
export { default as TreeViewContext, type TreeViewContextProps } from './tree-view-context.vue'
export {
default as TreeViewItemIndicator,
type TreeViewItemIndicatorBaseProps,
Expand All @@ -54,6 +50,11 @@ export {
type TreeViewItemTextBaseProps,
type TreeViewItemTextProps,
} from './tree-view-item-text.vue'
export {
default as TreeViewItem,
type TreeViewItemBaseProps,
type TreeViewItemProps,
} from './tree-view-item.vue'
export {
default as TreeViewLabel,
type TreeViewLabelBaseProps,
Expand All @@ -68,16 +69,16 @@ export {
type TreeViewNodeProviderBaseProps,
type TreeViewNodeProviderProps,
} from './tree-view-node-provider.vue'
export {
default as TreeViewRoot,
type TreeViewRootBaseProps,
type TreeViewRootProps,
} from './tree-view-root.vue'
export {
default as TreeViewRootProvider,
type TreeViewRootProviderBaseProps,
type TreeViewRootProviderProps,
} from './tree-view-root-provider.vue'
export {
default as TreeViewRoot,
type TreeViewRootBaseProps,
type TreeViewRootProps,
} from './tree-view-root.vue'
export {
default as TreeViewTree,
type TreeViewTreeBaseProps,
Expand Down

0 comments on commit ec3e0ec

Please sign in to comment.