Skip to content

Commit 7d79795

Browse files
authored
Merge pull request #298 from vue-pivottable/staging
🚀 Release: Beta versions ready for production
2 parents 78e5113 + c915d8a commit 7d79795

File tree

3 files changed

+14
-1
lines changed

3 files changed

+14
-1
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# Changelog
22

3+
## 1.2.2
4+
5+
### Patch Changes
6+
7+
- 6f72c8d: Export all composables for external packages to enable custom renderer development
8+
- Added `export * from './composables'` to main index.ts
9+
- Resolves import errors for `useProvidePivotData` and `providePivotData` in external packages
10+
- Enables plotly-renderer and lazy-table-renderer to properly import required functions
11+
- No circular dependency issues detected after thorough analysis
12+
- Maintains backward compatibility while improving extensibility
13+
314
## 1.2.1
415

516
### Patch Changes

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "vue-pivottable",
3-
"version": "1.2.1",
3+
"version": "1.2.2-beta.1755136946",
44
"type": "module",
55
"description": "",
66
"exports": {

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)