@rango-dev/ui 0.27.0 → 0.27.1-next.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.
Files changed (31) hide show
  1. package/CHANGELOG.md +25 -0
  2. package/dist/index.js +2 -2
  3. package/dist/index.js.map +4 -4
  4. package/dist/widget/ui/src/components/Alert/Alert.styles.d.ts +1 -0
  5. package/dist/widget/ui/src/components/Alert/Alert.styles.d.ts.map +1 -1
  6. package/dist/widget/ui/src/components/Toast/Toast.Provider.d.ts +6 -0
  7. package/dist/widget/ui/src/components/Toast/Toast.Provider.d.ts.map +1 -0
  8. package/dist/widget/ui/src/components/Toast/Toast.d.ts +4 -0
  9. package/dist/widget/ui/src/components/Toast/Toast.d.ts.map +1 -0
  10. package/dist/widget/ui/src/components/Toast/Toast.helpers.d.ts +2 -0
  11. package/dist/widget/ui/src/components/Toast/Toast.helpers.d.ts.map +1 -0
  12. package/dist/widget/ui/src/components/Toast/Toast.stories.d.ts +7 -0
  13. package/dist/widget/ui/src/components/Toast/Toast.stories.d.ts.map +1 -0
  14. package/dist/widget/ui/src/components/Toast/Toast.styles.d.ts +977 -0
  15. package/dist/widget/ui/src/components/Toast/Toast.styles.d.ts.map +1 -0
  16. package/dist/widget/ui/src/components/Toast/Toast.types.d.ts +31 -0
  17. package/dist/widget/ui/src/components/Toast/Toast.types.d.ts.map +1 -0
  18. package/dist/widget/ui/src/components/Toast/index.d.ts +3 -0
  19. package/dist/widget/ui/src/components/Toast/index.d.ts.map +1 -0
  20. package/dist/widget/ui/src/components/index.d.ts +1 -0
  21. package/dist/widget/ui/src/components/index.d.ts.map +1 -1
  22. package/package.json +2 -2
  23. package/src/components/Alert/Alert.styles.ts +5 -0
  24. package/src/components/Toast/Toast.Provider.tsx +87 -0
  25. package/src/components/Toast/Toast.helpers.ts +7 -0
  26. package/src/components/Toast/Toast.stories.tsx +71 -0
  27. package/src/components/Toast/Toast.styles.ts +113 -0
  28. package/src/components/Toast/Toast.tsx +59 -0
  29. package/src/components/Toast/Toast.types.ts +31 -0
  30. package/src/components/Toast/index.ts +2 -0
  31. package/src/components/index.ts +1 -0
package/CHANGELOG.md CHANGED
@@ -1,3 +1,28 @@
1
+ # [0.27.0](https://github.com/rango-exchange/rango-client/compare/ui@0.26.0...ui@0.27.0) (2024-01-22)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * address some minor bugs in swapHistory & wallet page loading ([1d4488e](https://github.com/rango-exchange/rango-client/commit/1d4488eee5926c2368bb9ba281ebf9fbc5c433e5))
7
+ * apply some of playground feedbacks ([c3d6711](https://github.com/rango-exchange/rango-client/commit/c3d671158d5deea377538eef09f90e527f7d1b4e))
8
+ * correct refresh icon style on firefox ([a788ecd](https://github.com/rango-exchange/rango-client/commit/a788ecd36aa91b369f7024ad6f9f3b5cc656c477))
9
+ * correct token data type in storybook ([177f9fa](https://github.com/rango-exchange/rango-client/commit/177f9fa3b13d957f13004bfdb0de1d761f413742))
10
+ * fix swap detail styles issue ([e74bb0c](https://github.com/rango-exchange/rango-client/commit/e74bb0cbbdd714f07a3128e1487200eeff25d8ba))
11
+ * resolve issues for prices and dates, and add tooltips for prices ([7515215](https://github.com/rango-exchange/rango-client/commit/751521513aab2c108cecb150b81e0f921d1b603a))
12
+ * styling issues on layout ([7f0e1bd](https://github.com/rango-exchange/rango-client/commit/7f0e1bd883045d6f0a398eeb353cf5280ac09455))
13
+
14
+
15
+ ### Features
16
+
17
+ * add transition for tabs in playground ([067f782](https://github.com/rango-exchange/rango-client/commit/067f78287cd61de0f9ffba0bde6a9815ddd7613c))
18
+ * adding a modal for fee on quote component ([d314516](https://github.com/rango-exchange/rango-client/commit/d314516b0af26ca71abf071462f19c9efef407e7))
19
+ * export notifications from useWidget ([fc50baf](https://github.com/rango-exchange/rango-client/commit/fc50baf1b4043755162a54bcdd07f10fab94da39))
20
+ * for long routes, we should show a shorter version and hide the rest in a button. ([378b3e4](https://github.com/rango-exchange/rango-client/commit/378b3e4508c8d9a32c0b7ba0b4c5f2a5ba32e193))
21
+ * handle active tab in widget-embedded ([427a3bb](https://github.com/rango-exchange/rango-client/commit/427a3bb42dcaf899c4241aa5bd60c15a3475882a))
22
+ * implement auto-refresh for routes ([9dfe80c](https://github.com/rango-exchange/rango-client/commit/9dfe80c00d01078bfd3f693c6a98ceb4038e58fb))
23
+
24
+
25
+
1
26
  # [0.26.0](https://github.com/rango-exchange/rango-client/compare/ui@0.24.0...ui@0.26.0) (2023-12-24)
2
27
 
3
28