Skip to content
This repository has been archived by the owner on Sep 8, 2024. It is now read-only.

Commit

Permalink
release: v1.0.0-beta.5
Browse files Browse the repository at this point in the history
  • Loading branch information
sheepbox8646 committed May 14, 2024
1 parent 26f262f commit 991af6b
Show file tree
Hide file tree
Showing 9 changed files with 4,195 additions and 5,452 deletions.
2 changes: 1 addition & 1 deletion examples/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"@types/luxon": "^3.4.2",
"canvaskit-wasm": "0.39.1",
"luxon": "^3.4.4",
"newcar": "workspace:1.0.0-beta.4",
"newcar": "workspace:1.0.0-beta.5",
"vite-plugin-node-polyfills": "^0.21.0"
}
}
6 changes: 3 additions & 3 deletions mods/mod-math/src/widgets/mathFunction.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export interface MathFunctionOptions extends WidgetOptions {
divisionX?: number
lineWidth?: number
style?: MathFunctionStyle
range?: Range
numberRange?: Range
}

export interface MathFunctionStyle extends WidgetStyle {
Expand All @@ -24,7 +24,7 @@ export class MathFunction extends Widget {
declare style: MathFunctionStyle
private path: Path
private paint: Paint
range: Range
numberRange: Range
lineWidth: number
divisionX: number
divisionY: number
Expand All @@ -36,7 +36,7 @@ export class MathFunction extends Widget {
) {
options ??= {}
super(options)
this.range = options.range ?? [
this.numberRange = options.numberRange ?? [
Number.NEGATIVE_INFINITY,
Number.POSITIVE_INFINITY,
]
Expand Down
2 changes: 1 addition & 1 deletion packages/basic/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@newcar/basic",
"version": "1.0.0-beta.4",
"version": "1.0.0-beta.5",
"description": "The basic objects, animations and interpolators of newcar.",
"author": "BugDuck Team",
"license": "Apache-2.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@newcar/core",
"version": "1.0.0-beta.4",
"version": "1.0.0-beta.5",
"description": "The core of newcar.",
"author": "BugDuck Team",
"license": "Apache-2.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/newcar/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "newcar",
"type": "module",
"version": "1.0.0-beta.4",
"version": "1.0.0-beta.5",
"description": "A Highly configurable universal advanced engine, Born for creating animation rapidly.",
"author": "BugDuck Team",
"license": "Apache-2.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/recorder/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@newcar/recorder",
"version": "1.0.0-beta.4",
"version": "1.0.0-beta.5",
"description": "The utils of newcar",
"author": "BugDuck Team",
"license": "Apache-2.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/utils/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@newcar/utils",
"version": "1.0.0-beta.4",
"version": "1.0.0-beta.5",
"description": "The utils of newcar",
"author": "BugDuck Team",
"license": "Apache-2.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/vue/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@newcar/vue",
"type": "module",
"version": "1.0.0-beta.4",
"version": "1.0.0-beta.5",
"description": "The components and hooks of newcar",
"author": "BugDuck Team",
"license": "Apache-2.0",
Expand Down
Loading

0 comments on commit 991af6b

Please sign in to comment.