Skip to content

Commit

Permalink
fix: fix vrender export module
Browse files Browse the repository at this point in the history
  • Loading branch information
Rui-Sun committed Jun 25, 2024
1 parent 48ea96d commit 75b9522
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"changes": [
{
"packageName": "@visactor/vtable",
"comment": "fix: fix vrender export module",
"type": "none"
}
],
"packageName": "@visactor/vtable"
}
6 changes: 4 additions & 2 deletions packages/vtable/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,8 @@ export { getDataCellPath } from './tools/get-data-path';
export * from './render/jsx';
export { getTargetCell } from './event/util';

export * as VRender from './vrender';
// export * as VRender from './vrender';
import * as VRender from './vrender';

export const version = __VERSION__;
/**
Expand Down Expand Up @@ -98,7 +99,8 @@ export {
renderChart,
graphicUtil,
setCustomAlphabetCharSet,
restoreMeasureText
restoreMeasureText,
VRender
};

/** @private */
Expand Down

0 comments on commit 75b9522

Please sign in to comment.