@rango-dev/ui 0.35.1-next.1 → 0.35.1-next.10

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 (69) hide show
  1. package/dist/index.js +1 -1
  2. package/dist/index.js.map +4 -4
  3. package/dist/ui.build.json +1 -1
  4. package/dist/widget/ui/src/components/FullExpandedQuote/FullExpandedQuote.d.ts.map +1 -1
  5. package/dist/widget/ui/src/components/FullExpandedQuote/FullExpandedQuote.helpers.d.ts +3 -0
  6. package/dist/widget/ui/src/components/FullExpandedQuote/FullExpandedQuote.helpers.d.ts.map +1 -1
  7. package/dist/widget/ui/src/components/FullExpandedQuote/FullExpandedQuote.types.d.ts +2 -2
  8. package/dist/widget/ui/src/components/FullExpandedQuote/FullExpandedQuote.types.d.ts.map +1 -1
  9. package/dist/widget/ui/src/components/PriceImpact/PriceImpact.d.ts.map +1 -1
  10. package/dist/widget/ui/src/components/PriceImpact/PriceImpact.styles.d.ts +4 -2
  11. package/dist/widget/ui/src/components/PriceImpact/PriceImpact.styles.d.ts.map +1 -1
  12. package/dist/widget/ui/src/components/SwapListItem/SwapToken.d.ts.map +1 -1
  13. package/dist/widget/ui/src/components/TextField/TextField.d.ts.map +1 -1
  14. package/dist/widget/ui/src/components/TokenAmount/TokenAmount.d.ts.map +1 -1
  15. package/dist/widget/ui/src/components/Tooltip/NumericTooltip.d.ts +5 -0
  16. package/dist/widget/ui/src/components/Tooltip/NumericTooltip.d.ts.map +1 -0
  17. package/dist/widget/ui/src/components/Tooltip/NumericTooltip.types.d.ts +6 -0
  18. package/dist/widget/ui/src/components/Tooltip/NumericTooltip.types.d.ts.map +1 -0
  19. package/dist/widget/ui/src/components/Tooltip/index.d.ts +2 -0
  20. package/dist/widget/ui/src/components/Tooltip/index.d.ts.map +1 -1
  21. package/dist/widget/ui/src/containers/Notifications/NotificationNotFound.d.ts +3 -0
  22. package/dist/widget/ui/src/containers/Notifications/NotificationNotFound.d.ts.map +1 -0
  23. package/dist/widget/ui/src/containers/Notifications/Notifications.d.ts +4 -0
  24. package/dist/widget/ui/src/containers/Notifications/Notifications.d.ts.map +1 -0
  25. package/dist/widget/ui/src/containers/Notifications/Notifications.styles.d.ts +1561 -0
  26. package/dist/widget/ui/src/containers/Notifications/Notifications.styles.d.ts.map +1 -0
  27. package/dist/widget/ui/src/containers/Notifications/Notifications.types.d.ts +23 -0
  28. package/dist/widget/ui/src/containers/Notifications/Notifications.types.d.ts.map +1 -0
  29. package/dist/widget/ui/src/containers/Notifications/index.d.ts +2 -0
  30. package/dist/widget/ui/src/containers/Notifications/index.d.ts.map +1 -0
  31. package/dist/widget/ui/src/containers/SwapInput/SwapInput.d.ts.map +1 -1
  32. package/dist/widget/ui/src/containers/index.d.ts +1 -0
  33. package/dist/widget/ui/src/containers/index.d.ts.map +1 -1
  34. package/dist/widget/ui/src/icons/CreditCard.d.ts +5 -0
  35. package/dist/widget/ui/src/icons/CreditCard.d.ts.map +1 -0
  36. package/dist/widget/ui/src/icons/Disconnect.d.ts +5 -0
  37. package/dist/widget/ui/src/icons/Disconnect.d.ts.map +1 -0
  38. package/dist/widget/ui/src/icons/Swap.d.ts.map +1 -1
  39. package/dist/widget/ui/src/icons/index.d.ts +2 -0
  40. package/dist/widget/ui/src/icons/index.d.ts.map +1 -1
  41. package/dist/widget/ui/src/theme.d.ts +2 -0
  42. package/dist/widget/ui/src/theme.d.ts.map +1 -1
  43. package/package.json +2 -2
  44. package/src/components/FullExpandedQuote/FullExpandedQuote.TokenSection.tsx +3 -3
  45. package/src/components/FullExpandedQuote/FullExpandedQuote.helpers.ts +15 -0
  46. package/src/components/FullExpandedQuote/FullExpandedQuote.tsx +11 -5
  47. package/src/components/FullExpandedQuote/FullExpandedQuote.types.ts +2 -2
  48. package/src/components/PriceImpact/PriceImpact.styles.ts +27 -4
  49. package/src/components/PriceImpact/PriceImpact.tsx +14 -20
  50. package/src/components/StepDetails/StepDetails.tsx +5 -5
  51. package/src/components/SwapListItem/SwapToken.tsx +7 -5
  52. package/src/components/TextField/TextField.tsx +11 -0
  53. package/src/components/TokenAmount/TokenAmount.tsx +9 -8
  54. package/src/components/Tooltip/NumericTooltip.tsx +16 -0
  55. package/src/components/Tooltip/NumericTooltip.types.tsx +6 -0
  56. package/src/components/Tooltip/index.ts +2 -0
  57. package/src/components/Wallet/Wallet.helpers.ts +1 -1
  58. package/src/containers/Notifications/NotificationNotFound.tsx +19 -0
  59. package/src/containers/Notifications/Notifications.styles.ts +82 -0
  60. package/src/containers/Notifications/Notifications.tsx +108 -0
  61. package/src/containers/Notifications/Notifications.types.ts +17 -0
  62. package/src/containers/Notifications/index.ts +1 -0
  63. package/src/containers/SwapInput/SwapInput.tsx +7 -5
  64. package/src/containers/index.ts +1 -0
  65. package/src/icons/CreditCard.tsx +23 -0
  66. package/src/icons/Disconnect.tsx +26 -0
  67. package/src/icons/Swap.tsx +47 -6
  68. package/src/icons/index.ts +2 -0
  69. package/src/theme.ts +2 -0

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.