Skip to content

Commit

Permalink
fix: upgrade vrender to 0.20.14
Browse files Browse the repository at this point in the history
  • Loading branch information
xile611 committed Nov 13, 2024
1 parent cac5cbb commit 1b273eb
Show file tree
Hide file tree
Showing 12 changed files with 84 additions and 83 deletions.
118 changes: 59 additions & 59 deletions common/config/rush/pnpm-lock.yaml

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

6 changes: 3 additions & 3 deletions docs/dev-demos/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@
"@visactor/vgrammar-wordcloud": "workspace:0.14.13",
"@visactor/vgrammar-wordcloud-shape": "workspace:0.14.13",
"@visactor/vgrammar-plot": "workspace:0.14.13",
"@visactor/vrender-core": "0.20.12",
"@visactor/vrender-kits": "0.20.12",
"@visactor/vrender": "0.20.12",
"@visactor/vrender-core": "0.20.14",
"@visactor/vrender-kits": "0.20.14",
"@visactor/vrender": "0.20.14",
"d3-scale-chromatic": "^3.0.0",
"lodash": "4.17.21",
"typescript": "4.9.5",
Expand Down
6 changes: 3 additions & 3 deletions docs/site/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@
"@visactor/vgrammar-util": "workspace:0.14.13",
"@visactor/vgrammar-coordinate": "workspace:0.14.13",
"@visactor/vgrammar-venn": "workspace:0.14.13",
"@visactor/vrender-core": "0.20.12",
"@visactor/vrender-kits": "0.20.12",
"@visactor/vrender": "0.20.12",
"@visactor/vrender-core": "0.20.14",
"@visactor/vrender-kits": "0.20.14",
"@visactor/vrender": "0.20.14",
"markdown-it": "^13.0.0",
"highlight.js": "^11.8.0",
"axios": "^1.4.0",
Expand Down
6 changes: 3 additions & 3 deletions packages/vgrammar-core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,9 @@
"@visactor/vgrammar-coordinate": "workspace:0.14.13",
"@visactor/vgrammar-util": "workspace:0.14.13",
"@visactor/vscale": "~0.18.18",
"@visactor/vrender-core": "0.20.12",
"@visactor/vrender-kits": "0.20.12",
"@visactor/vrender-components": "0.20.12"
"@visactor/vrender-core": "0.20.14",
"@visactor/vrender-kits": "0.20.14",
"@visactor/vrender-components": "0.20.14"
},
"devDependencies": {
"@internal/bundler": "workspace:*",
Expand Down
3 changes: 2 additions & 1 deletion packages/vgrammar-core/src/types/view.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ import type { IAxis, IDatazoom, IGrid, ILabel, ILegend, IPlayer, IScrollbar, ISl
import type { CoordinateSpec } from './coordinate';
import type { ITheme } from './theme';
import type { IInteraction, InteractionSpec } from './interaction';
import type { GestureConfig } from '@visactor/vrender-kits';

export interface IViewThemeConfig {
labelMonospace?: boolean;
Expand Down Expand Up @@ -81,7 +82,7 @@ export interface IViewEventConfig {
/** disable all the events */
disable?: boolean;
/** use gesture events or not */
gesture?: boolean;
gesture?: boolean | GestureConfig;
/** use drag events or not */
drag?: boolean;
}
Expand Down
4 changes: 2 additions & 2 deletions packages/vgrammar-hierarchy/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@
"@visactor/vutils": "~0.18.18",
"@visactor/vgrammar-core": "workspace:0.14.13",
"@visactor/vgrammar-util": "workspace:0.14.13",
"@visactor/vrender-core": "0.20.12",
"@visactor/vrender-kits": "0.20.12"
"@visactor/vrender-core": "0.20.14",
"@visactor/vrender-kits": "0.20.14"
},
"devDependencies": {
"@internal/bundler": "workspace:*",
Expand Down
6 changes: 3 additions & 3 deletions packages/vgrammar-plot/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,9 @@
"@visactor/vgrammar-util": "workspace:0.14.13",
"@visactor/vgrammar-coordinate": "workspace:0.14.13",
"@visactor/vgrammar-core": "workspace:0.14.13",
"@visactor/vrender-components": "0.20.12",
"@visactor/vrender-core": "0.20.12",
"@visactor/vrender-kits": "0.20.12"
"@visactor/vrender-components": "0.20.14",
"@visactor/vrender-core": "0.20.14",
"@visactor/vrender-kits": "0.20.14"
},
"devDependencies": {
"d3-array": "1.x",
Expand Down
4 changes: 2 additions & 2 deletions packages/vgrammar-sankey/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@
"@visactor/vutils": "~0.18.18",
"@visactor/vgrammar-core": "workspace:0.14.13",
"@visactor/vgrammar-util": "workspace:0.14.13",
"@visactor/vrender-core": "0.20.12",
"@visactor/vrender-kits": "0.20.12"
"@visactor/vrender-core": "0.20.14",
"@visactor/vrender-kits": "0.20.14"
},
"devDependencies": {
"@internal/bundler": "workspace:*",
Expand Down
2 changes: 1 addition & 1 deletion packages/vgrammar-util/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
},
"dependencies": {
"@visactor/vutils": "~0.18.18",
"@visactor/vrender-core": "0.20.12"
"@visactor/vrender-core": "0.20.14"
},
"devDependencies": {
"@internal/bundler": "workspace:*",
Expand Down
4 changes: 2 additions & 2 deletions packages/vgrammar-venn/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@
"dependencies": {
"@visactor/vgrammar-core": "workspace:0.14.13",
"@visactor/vgrammar-util": "workspace:0.14.13",
"@visactor/vrender-core": "0.20.12",
"@visactor/vrender-kits": "0.20.12",
"@visactor/vrender-core": "0.20.14",
"@visactor/vrender-kits": "0.20.14",
"@visactor/vutils": "~0.18.18"
},
"devDependencies": {
Expand Down
Loading

0 comments on commit 1b273eb

Please # to comment.