@hero-design/rn 8.139.3 → 8.141.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 +12 -0
- package/assets/fonts/hero-icons-mobile.ttf +0 -0
- package/es/index.js +397 -125
- package/lib/assets/fonts/hero-icons-mobile.ttf +0 -0
- package/lib/index.js +395 -122
- package/package.json +1 -1
- package/src/components/Confetti/Confetti.tsx +239 -0
- package/src/components/Confetti/ConfettiProvider.tsx +61 -0
- package/src/components/Confetti/computeXKeyframes.ts +38 -0
- package/src/components/Confetti/index.tsx +12 -0
- package/src/components/Confetti/useConfetti.ts +13 -0
- package/src/components/Icon/HeroIcon/glyphMap.json +1 -1
- package/src/components/Icon/IconList.ts +2 -0
- package/src/components/Icon/index.tsx +4 -0
- package/src/components/Illustration/assets/Confetti.tsx +2 -0
- package/src/index.ts +4 -0
- package/types/components/Confetti/Confetti.d.ts +22 -0
- package/types/components/Confetti/ConfettiProvider.d.ts +9 -0
- package/types/components/Confetti/computeXKeyframes.d.ts +9 -0
- package/types/components/Confetti/index.d.ts +8 -0
- package/types/components/Confetti/useConfetti.d.ts +4 -0
- package/types/components/Icon/IconList.d.ts +1 -1
- package/types/components/Icon/index.d.ts +1 -1
- package/types/components/Illustration/assets/Confetti.d.ts +4 -1
- package/types/components/Illustration/illustrations.d.ts +4 -1
- package/types/components/TextInput/index.d.ts +1 -1
- package/types/index.d.ts +3 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @hero-design/rn
|
|
2
2
|
|
|
3
|
+
## 8.141.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#5569](https://github.com/Thinkei/hero-design/pull/5569) [`08e26bb`](https://github.com/Thinkei/hero-design/commit/08e26bb64cb2de40cda008482afc9992e5de1e29) Thanks [@dathuynh-eh](https://github.com/dathuynh-eh)! - [Confetti] Add Confetti component with ConfettiProvider and useConfetti hook for celebratory burst animations
|
|
8
|
+
|
|
9
|
+
## 8.140.0
|
|
10
|
+
|
|
11
|
+
### Minor Changes
|
|
12
|
+
|
|
13
|
+
- [#5576](https://github.com/Thinkei/hero-design/pull/5576) [`ecc34d4`](https://github.com/Thinkei/hero-design/commit/ecc34d4e2d3249673ea308ba22559a4bcdab853e) Thanks [@vinhphan-eh](https://github.com/vinhphan-eh)! - [Icon] Add mobile-outlined and tablet-outlined icons; deprecate charging-station-outlined
|
|
14
|
+
|
|
3
15
|
## 8.139.3
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|
|
Binary file
|