Skip to content

Commit

Permalink
feat: export dynamic texture tools
Browse files Browse the repository at this point in the history
  • Loading branch information
neuqzxy committed Feb 28, 2025
1 parent 32aafb9 commit ffb201f
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 1 deletion.
5 changes: 4 additions & 1 deletion common/config/rush/pnpm-config.json
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,9 @@
* PNPM documentation: https://pnpm.io/package_json#pnpmoverrides
*/
"globalOverrides": {
"@visactor/vrender-core": "0.22.4",
"@visactor/vrender-kits": "0.22.4",
"@visactor/vrender-components": "0.22.4"
// "@visactor/vutils": "~0.18.15",
// "@visactor/vscale": "~0.18.15",
// "@visactor/vdataset": "~0.18.15"
Expand Down Expand Up @@ -198,4 +201,4 @@
// },
// "pnpm": { "futurePnpmFeature": true }
}
}
}
1 change: 1 addition & 0 deletions packages/vchart/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,4 @@ export * from './plugin/chart';
export * from './plugin/components/tooltip-handler';
export * from './plugin/components/axis-sync';
export * from './plugin/other';
export * from './vrender-tools';
22 changes: 22 additions & 0 deletions packages/vchart/src/vrender-tools.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
export {
randomOpacity,
columnLeftToRight,
columnRightToLeft,
rowTopToBottom,
rowBottomToTop,
diagonalCenterToEdge,
diagonalTopLeftToBottomRight,
rotationScan,
rippleEffect,
snakeWave,
alternatingWave,
spiralEffect,
columnEdgeToCenter,
columnCenterToEdge,
rowEdgeToCenter,
rowCenterToEdge,
cornerToCenter,
centerToCorner,
pulseWave,
particleEffect
} from '@visactor/vrender-kits';

0 comments on commit ffb201f

Please sign in to comment.