Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .changeset/fix-main-import-reference.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
"vue-pivottable": patch
---

Fix main.ts import reference issue and optimize memory usage

Fixed undefined SimpleApp reference to use App component in main.ts entry point. This resolves runtime errors and improves application startup reliability.
14 changes: 14 additions & 0 deletions .changeset/fix-vue-pivottable-props-issue.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
---
"vue-pivottable": patch
---

Fix VuePivottable component props and type issues

- Fix "Cannot read properties of undefined" error when using VuePivottable without VuePivottableUi
- Remove unnecessary composables export from main index to prevent VuePivottableUi code execution
- Make aggregatorName, renderers, rendererName optional in DefaultPropsType with proper defaults
- Add proper default values in VPivottable component
- Fix TSVExportRenderers to handle undefined aggregatorName
- Resolve Vue warning messages for missing required props

This ensures VuePivottable can be used independently without requiring VuePivottableUi-specific props.
2 changes: 1 addition & 1 deletion .github/workflows/integrate-develop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ jobs:
echo "- **Auto-generated**: This PR was automatically created by the integration workflow"
echo ""
echo "### πŸ“ Recent Commits"
echo "${{ steps.commit-info.outputs.commits }}"
echo "${{ steps.commit-info.outputs.commits }}" | sed 's/%0A/\n/g; s/%0D//g; s/%25/%/g'
echo ""
echo "### πŸ” What happens next?"
echo "1. Review the changes in this PR"
Expand Down
Loading