@ornikar/kitt-universal 29.1.0 → 29.2.0

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 CHANGED
@@ -3,6 +3,16 @@
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
+ ## [29.2.0](https://github.com/ornikar/kitt/compare/@ornikar/kitt-universal@29.1.0...@ornikar/kitt-universal@29.2.0) (2025-10-16)
7
+
8
+
9
+ ### Features
10
+
11
+ * add map-pin-area icon OSE-19915 ([#2723](https://github.com/ornikar/kitt/issues/2723)) ([23ec232](https://github.com/ornikar/kitt/commit/23ec2320bc64dd3b14c046f3a0ee55197ee5f7ec))
12
+ * init kitt 2 package [no issue] ([#2709](https://github.com/ornikar/kitt/issues/2709)) ([ffe4260](https://github.com/ornikar/kitt/commit/ffe42601333d6623c9ce80553824b3471937a0b7))
13
+
14
+
15
+
6
16
  ## [29.1.0](https://github.com/ornikar/kitt/compare/@ornikar/kitt-universal@29.0.0...@ornikar/kitt-universal@29.1.0) (2025-10-14)
7
17
 
8
18
 
@@ -11777,7 +11777,7 @@ function AnimatedLoaderCircle({
11777
11777
  return {
11778
11778
  strokeDashoffset: circlePerimeter - circlePerimeter * progress.value
11779
11779
  };
11780
- });
11780
+ }, [progress, circlePerimeter]);
11781
11781
  return /*#__PURE__*/jsx(AnimatedCircle, {
11782
11782
  "transform-origin": "center center",
11783
11783
  strokeWidth: strokeWidth,
@@ -11848,7 +11848,7 @@ function AnimatedFillCircleContainer({
11848
11848
  rotate: `${360 * progress.value}deg`
11849
11849
  }]
11850
11850
  };
11851
- });
11851
+ }, [progress]);
11852
11852
  return /*#__PURE__*/jsx(Animated.View, {
11853
11853
  style: [StyleSheet.absoluteFill, rotationStyles],
11854
11854
  children: children