@rango-dev/ui 0.27.1-next.0 → 0.27.1-next.2

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 (60) hide show
  1. package/dist/index.js +6 -6
  2. package/dist/index.js.map +4 -4
  3. package/dist/translations/en.d.ts.map +1 -1
  4. package/dist/translations/es.d.ts.map +1 -1
  5. package/dist/translations/fr.d.ts.map +1 -1
  6. package/dist/translations/ja.d.ts.map +1 -1
  7. package/dist/widget/ui/src/components/ChainToken/ChainToken.d.ts.map +1 -1
  8. package/dist/widget/ui/src/components/ChainToken/ChainToken.types.d.ts +1 -0
  9. package/dist/widget/ui/src/components/ChainToken/ChainToken.types.d.ts.map +1 -1
  10. package/dist/widget/ui/src/components/Modal/Modal.d.ts.map +1 -1
  11. package/dist/widget/ui/src/components/Modal/Modal.styles.d.ts +2 -2
  12. package/dist/widget/ui/src/components/Modal/Modal.styles.d.ts.map +1 -1
  13. package/dist/widget/ui/src/components/Modal/Modal.types.d.ts +1 -0
  14. package/dist/widget/ui/src/components/Modal/Modal.types.d.ts.map +1 -1
  15. package/dist/widget/ui/src/components/TextField/TextField.d.ts +1 -1
  16. package/dist/widget/ui/src/components/TextField/TextField.stories.d.ts +1 -1
  17. package/dist/widget/ui/src/components/Typography/index.d.ts +1 -0
  18. package/dist/widget/ui/src/components/Typography/index.d.ts.map +1 -1
  19. package/dist/widget/ui/src/components/common/Image.d.ts +1 -0
  20. package/dist/widget/ui/src/components/common/Image.d.ts.map +1 -1
  21. package/dist/widget/ui/src/constants/index.d.ts +7 -0
  22. package/dist/widget/ui/src/constants/index.d.ts.map +1 -0
  23. package/dist/widget/ui/src/containers/SwapInput/SwapInput.d.ts.map +1 -1
  24. package/dist/widget/ui/src/containers/SwapInput/SwapInput.styles.d.ts +1 -1
  25. package/dist/widget/ui/src/containers/SwapInput/TokenSection.d.ts.map +1 -1
  26. package/dist/widget/ui/src/containers/SwapInput/TokenSection.types.d.ts +1 -0
  27. package/dist/widget/ui/src/containers/SwapInput/TokenSection.types.d.ts.map +1 -1
  28. package/dist/widget/ui/src/icons/Discord.d.ts +5 -0
  29. package/dist/widget/ui/src/icons/Discord.d.ts.map +1 -0
  30. package/dist/widget/ui/src/icons/Medium.d.ts +5 -0
  31. package/dist/widget/ui/src/icons/Medium.d.ts.map +1 -0
  32. package/dist/widget/ui/src/icons/Menu.d.ts +5 -0
  33. package/dist/widget/ui/src/icons/Menu.d.ts.map +1 -0
  34. package/dist/widget/ui/src/icons/Telegram.d.ts +5 -0
  35. package/dist/widget/ui/src/icons/Telegram.d.ts.map +1 -0
  36. package/dist/widget/ui/src/icons/X.d.ts +5 -0
  37. package/dist/widget/ui/src/icons/X.d.ts.map +1 -0
  38. package/dist/widget/ui/src/icons/index.d.ts +5 -0
  39. package/dist/widget/ui/src/icons/index.d.ts.map +1 -1
  40. package/dist/widget/ui/src/index.d.ts +1 -0
  41. package/dist/widget/ui/src/index.d.ts.map +1 -1
  42. package/package.json +1 -1
  43. package/src/components/ChainToken/ChainToken.tsx +9 -1
  44. package/src/components/ChainToken/ChainToken.types.ts +1 -0
  45. package/src/components/Modal/Modal.styles.ts +21 -0
  46. package/src/components/Modal/Modal.tsx +3 -2
  47. package/src/components/Modal/Modal.types.ts +1 -0
  48. package/src/components/Typography/index.ts +1 -0
  49. package/src/components/common/Image.tsx +1 -0
  50. package/src/constants/index.ts +6 -0
  51. package/src/containers/SwapInput/SwapInput.tsx +13 -1
  52. package/src/containers/SwapInput/TokenSection.tsx +2 -0
  53. package/src/containers/SwapInput/TokenSection.types.ts +1 -0
  54. package/src/icons/Discord.tsx +20 -0
  55. package/src/icons/Medium.tsx +20 -0
  56. package/src/icons/Menu.tsx +36 -0
  57. package/src/icons/Telegram.tsx +20 -0
  58. package/src/icons/X.tsx +20 -0
  59. package/src/icons/index.ts +5 -0
  60. package/src/index.ts +1 -0
@@ -0,0 +1,20 @@
1
+ import type { SvgIconPropsWithChildren } from '../components/SvgIcon';
2
+
3
+ import React, { createElement } from 'react';
4
+
5
+ import { SvgIcon } from '../components/SvgIcon';
6
+
7
+ function SvgX(props: SvgIconPropsWithChildren) {
8
+ return createElement(
9
+ SvgIcon,
10
+ props,
11
+ <svg viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg">
12
+ <path
13
+ fillRule="evenodd"
14
+ d="M18.0955 14.3165L26.2864 5H24.3456L17.2303 13.0877L11.5514 5H5L13.5895 17.2311L5 27H6.94072L14.4501 18.4571L20.4486 27H27L18.0955 14.3165ZM15.4365 17.3385L14.5649 16.1198L7.64059 6.43161H10.6219L16.2117 14.2532L17.0797 15.4719L24.3447 25.6381H21.3634L15.4365 17.3385Z"
15
+ fill="currentColor"
16
+ />
17
+ </svg>
18
+ );
19
+ }
20
+ export default SvgX;
@@ -28,6 +28,7 @@ export { default as LightModeIcon } from './LightMode';
28
28
  export { default as LinkIcon } from './Link';
29
29
  export { default as LoadingIcon } from './Loading';
30
30
  export { default as LogoWithTextIcon } from './LogoWithText';
31
+ export { default as MenuIcon } from './Menu';
31
32
  export { default as NoRouteIcon } from './NoRoute';
32
33
  export { default as NextIcon } from './Next';
33
34
  export { default as NoNotificationIcon } from './NoNotification';
@@ -48,6 +49,10 @@ export { default as WarningIcon } from './Warning';
48
49
  export { default as WidthIcon } from './Width';
49
50
  export { default as ChainsIcon } from './Chains';
50
51
  export { default as ColorsIcon } from './Colors';
52
+ export { default as DiscordIcon } from './Discord';
51
53
  export { default as KeyIcon } from './Key';
54
+ export { default as MediumIcon } from './Medium';
52
55
  export { default as SettingsIcon } from './Settings';
53
56
  export { default as StyleIcon } from './Style';
57
+ export { default as TelegramIcon } from './Telegram';
58
+ export { default as XIcon } from './X';
package/src/index.ts CHANGED
@@ -4,3 +4,4 @@ export * from './theme';
4
4
  export * from './types';
5
5
  export * from './hooks';
6
6
  export * from './icons';
7
+ export * from './constants';