Skip to content

Commit

Permalink
chore: release v2.41.1
Browse files Browse the repository at this point in the history
  • Loading branch information
robertjcolley committed Mar 6, 2024
1 parent 07dc283 commit e37df8f
Show file tree
Hide file tree
Showing 7 changed files with 18 additions and 9 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,16 @@
# CHANGELOG

## v2.41.0 - 24 February 2024
## v2.41.1 - 6 March 2024

- fix(ViroBase): fix onClick not working for <ViroText /> components [`#277`](https://github.com/NativeVision/viro/pull/277)
- fix(react): remove unnecessary debug logging [`#276`](https://github.com/NativeVision/viro/pull/276)
- fix(ViroBase): fix onClick not working for <ViroText /> components (#277) [`#272`](https://github.com/NativeVision/viro/issues/272)

## v2.41.0 - 23 February 2024

- Bump ip from 1.1.8 to 1.1.9 [`#270`](https://github.com/NativeVision/viro/pull/270)
- chore: Update android [`#261`](https://github.com/NativeVision/viro/pull/261)
- chore: release v2.41.0 [`fefff31`](https://github.com/NativeVision/viro/commit/fefff31be858404ef83c81282d2322ff338e8157)

## v2.40.1 - 19 February 2024

Expand Down
2 changes: 1 addition & 1 deletion components/Utilities/ViroVersion.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const VIRO_VERSION = "2.41.0";
export const VIRO_VERSION = "2.41.1";
2 changes: 1 addition & 1 deletion dist/components/Utilities/ViroVersion.d.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export declare const VIRO_VERSION = "2.41.0";
export declare const VIRO_VERSION = "2.41.1";
2 changes: 1 addition & 1 deletion dist/components/Utilities/ViroVersion.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.VIRO_VERSION = void 0;
exports.VIRO_VERSION = "2.41.0";
exports.VIRO_VERSION = "2.41.1";
4 changes: 3 additions & 1 deletion dist/components/ViroText.js
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,9 @@ class ViroText extends ViroBase_1.ViroBase {
this._component = component;
}} onNativeTransformDelegateViro={transformDelegate} hasTransformDelegate={this.props.onTransformUpdate != undefined} style={[this.props.style]} canHover={this.props.onHover != undefined} canClick={this.props.onClick != undefined ||
this.props.onClickState != undefined} canTouch={this.props.onTouch != undefined} canScroll={this.props.onScroll != undefined} canSwipe={this.props.onSwipe != undefined} canDrag={this.props.onDrag != undefined} canPinch={this.props.onPinch != undefined} canRotate={this.props.onRotate != undefined} canFuse={this.props.onFuse != undefined} onHoverViro={this._onHover} onClickViro={this._onClickState}
// Fixes #272. this.props
// Fixes #272. for some reason, onClick was making it
// to the native code. Other incorrect props don't make it
// to the native code.
// https://github.com/NativeVision/viro/issues/272
onClick={undefined} onTouchViro={this._onTouch} onScrollViro={this._onScroll} onSwipeViro={this._onSwipe} onDragViro={this._onDrag} onPinchViro={this._onPinch} onRotateViro={this._onRotate} onFuseViro={this._onFuse} onAnimationStartViro={this._onAnimationStart} onAnimationFinishViro={this._onAnimationFinish} materials={materials} transformBehaviors={transformBehaviors} outerStroke={outerStroke} canCollide={this.props.onCollision != undefined} onCollisionViro={this._onCollision} timeToFuse={timeToFuse}/>);
}
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

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

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"version": "2.41.0",
"version": "2.41.1",
"license": "MIT",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
Expand Down Expand Up @@ -67,4 +67,4 @@
"ts-node": "^10.9.2",
"typescript": "^4.6.3"
}
}
}

0 comments on commit e37df8f

Please sign in to comment.