@nativescript-community/ui-image 4.3.25 → 4.3.26
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +4 -0
- package/index.ios.js +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
@@ -3,6 +3,10 @@
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
5
5
|
|
6
|
+
## [4.3.26](https://github.com/nativescript-community/ui-image/compare/v4.3.25...v4.3.26) (2023-11-24)
|
7
|
+
|
8
|
+
**Note:** Version bump only for package @nativescript-community/ui-image
|
9
|
+
|
6
10
|
## [4.3.25](https://github.com/nativescript-community/ui-image/compare/v4.3.24...v4.3.25) (2023-11-23)
|
7
11
|
|
8
12
|
**Note:** Version bump only for package @nativescript-community/ui-image
|
package/index.ios.js
CHANGED
@@ -410,7 +410,7 @@ export class Img extends ImageBase {
|
|
410
410
|
transformers.push(NSImageRoundAsCircleTransformer.transformer());
|
411
411
|
}
|
412
412
|
if (this.imageRotation !== 0 && !isNaN(this.imageRotation)) {
|
413
|
-
transformers.push(SDImageRotationTransformer.transformerWithAngleFitSize(this.imageRotation * (Math.PI / 180), true));
|
413
|
+
transformers.push(SDImageRotationTransformer.transformerWithAngleFitSize(-this.imageRotation * (Math.PI / 180), true));
|
414
414
|
}
|
415
415
|
if (this.roundBottomLeftRadius || this.roundBottomRightRadius || this.roundTopLeftRadius || this.roundTopRightRadius) {
|
416
416
|
transformers.push(
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@nativescript-community/ui-image",
|
3
|
-
"version": "4.3.
|
3
|
+
"version": "4.3.26",
|
4
4
|
"description": "Advanced and efficient image display plugin which uses Fresco (Android) and SDWebImage (iOS) to implement caching, placeholders, image effects, and much more.",
|
5
5
|
"main": "./index",
|
6
6
|
"sideEffects": false,
|
@@ -44,5 +44,5 @@
|
|
44
44
|
},
|
45
45
|
"license": "Apache-2.0",
|
46
46
|
"readmeFilename": "README.md",
|
47
|
-
"gitHead": "
|
47
|
+
"gitHead": "2830ed62627e85464ad0c79fdb2bc1b20cae0255"
|
48
48
|
}
|