Skip to content

Commit 300c69f

Browse files
Merge pull request #296 from vue-pivottable/develop
πŸ”„ Integrate develop β†’ staging (4 commits)
2 parents 78e5113 + ec95a6b commit 300c69f

File tree

2 files changed

+13
-0
lines changed

2 files changed

+13
-0
lines changed
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
---
2+
"vue-pivottable": patch
3+
---
4+
5+
Export all composables for external packages to enable custom renderer development
6+
7+
- Added `export * from './composables'` to main index.ts
8+
- Resolves import errors for `useProvidePivotData` and `providePivotData` in external packages
9+
- Enables plotly-renderer and lazy-table-renderer to properly import required functions
10+
- No circular dependency issues detected after thorough analysis
11+
- Maintains backward compatibility while improving extensibility

β€Žsrc/index.tsβ€Ž

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,7 @@ const Renderer: Record<string, Component> = {
77
...TableRenderer
88
}
99

10+
export * from './composables'
11+
1012
export { VuePivottable, VuePivottableUi, PivotUtilities, Renderer }
1113
export default { VuePivottable, VuePivottableUi, PivotUtilities, Renderer }

0 commit comments

Comments
Β (0)