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
8 changes: 4 additions & 4 deletions .cursor/rules/specify-rules.mdc
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# VChart3 Development Guidelines

Auto-generated from all feature plans. Last updated: 2026-01-13
Auto-generated from all feature plans. Last updated: 2026-01-15

## Active Technologies

- TypeScript 4.x (001-fix-subtitle-layout-bug)
- TypeScript 4.9.5 + @visactor/vchart, @visactor/vrender-components (~1.0.37), @visactor/vutils (001-scrollbar-wheel-step)

## Project Structure

Expand All @@ -19,11 +19,11 @@ npm test && npm run lint

## Code Style

TypeScript 4.x: Follow standard conventions
TypeScript 4.9.5: Follow standard conventions

## Recent Changes

- 001-fix-subtitle-layout-bug: Added TypeScript 4.x
- 001-scrollbar-wheel-step: Added TypeScript 4.9.5 + @visactor/vchart, @visactor/vrender-components (~1.0.37), @visactor/vutils

<!-- MANUAL ADDITIONS START -->
<!-- MANUAL ADDITIONS END -->
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"changes": [
{
"packageName": "@visactor/vchart",
"comment": "feat: support fixed pixel step scrolling on wheel event and minimum scrollbar slider height",
"type": "minor"
}
],
"packageName": "@visactor/vchart",
"email": "trae@example.com"
}
116 changes: 58 additions & 58 deletions common/config/rush/pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@
"@visactor/vchart-theme": "~1.6.6",
"@visactor/vmind": "1.2.4-alpha.5",
"@visactor/vutils": "~1.0.12",
"@visactor/vrender": "~1.0.38",
"@visactor/vrender-kits": "~1.0.38",
"@visactor/vrender": "~1.0.39",
"@visactor/vrender-kits": "~1.0.39",
"@visactor/vtable": "1.19.0-alpha.0",
"@visactor/vtable-editors": "1.19.0-alpha.0",
"@visactor/vtable-gantt": "1.19.0-alpha.0",
Expand Down
4 changes: 2 additions & 2 deletions packages/openinula-vchart/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@
"dependencies": {
"@visactor/vchart": "workspace:2.0.13",
"@visactor/vutils": "~1.0.12",
"@visactor/vrender-core": "~1.0.38",
"@visactor/vrender-kits": "~1.0.38",
"@visactor/vrender-core": "~1.0.39",
"@visactor/vrender-kits": "~1.0.39",
"react-is": "^18.2.0"
},
"devDependencies": {
Expand Down
4 changes: 2 additions & 2 deletions packages/react-vchart/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@
"@visactor/vchart": "workspace:2.0.13",
"@visactor/vchart-extension": "workspace:2.0.13",
"@visactor/vutils": "~1.0.12",
"@visactor/vrender-core": "~1.0.38",
"@visactor/vrender-kits": "~1.0.38",
"@visactor/vrender-core": "~1.0.39",
"@visactor/vrender-kits": "~1.0.39",
"react-is": "^18.2.0"
},
"devDependencies": {
Expand Down
8 changes: 4 additions & 4 deletions packages/vchart-extension/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@
"start": "ts-node __tests__/runtime/browser/scripts/initVite.ts && vite serve __tests__/runtime/browser"
},
"dependencies": {
"@visactor/vrender-core": "~1.0.38",
"@visactor/vrender-kits": "~1.0.38",
"@visactor/vrender-components": "~1.0.38",
"@visactor/vrender-animate": "~1.0.38",
"@visactor/vrender-core": "~1.0.39",
"@visactor/vrender-kits": "~1.0.39",
"@visactor/vrender-components": "~1.0.39",
"@visactor/vrender-animate": "~1.0.39",
"@visactor/vchart": "workspace:2.0.13",
"@visactor/vutils": "~1.0.12",
"@visactor/vdataset": "~1.0.12",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ export interface IScrollBarSpec extends IDataFilterComponentSpec, IScrollBarStyl
innerPadding?: number | number[] | IPadding;
range?: [number, number];
limitRange?: [number, number];
scrollStep?: number;
minSliderSize?: number;
}
export type IScrollBarCommonTheme = ILayoutItemSpec & IScrollBarStyle & {
orient?: IScrollBarSpec['orient'];
Expand Down
Loading
Loading