@rango-dev/ui 0.1.14-next.10 → 0.1.14-next.12

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 (125) hide show
  1. package/dist/components/Alert/Alert.stories.d.ts +4 -4
  2. package/dist/components/BestRoute/BestRoute.stories.d.ts +5 -4
  3. package/dist/components/BlockchainsList/BlockchainsList.stories.d.ts +2 -3
  4. package/dist/components/Button/Button.stories.d.ts +5 -4
  5. package/dist/components/Checkbox/Checkbox.stories.d.ts +5 -4
  6. package/dist/components/Chip/Chip.stories.d.ts +2 -3
  7. package/dist/components/ColorPicker/ColorPicker.stories.d.ts +2 -3
  8. package/dist/components/Divider/Divider.d.ts +1 -1
  9. package/dist/components/Drawer/Drawer.stories.d.ts +2 -3
  10. package/dist/components/Icon/Icons.stories.d.ts +2 -3
  11. package/dist/components/LiquiditySourceList/LiquiditySource.stories.d.ts +2 -3
  12. package/dist/components/Modal/Modal.stories.d.ts +2 -3
  13. package/dist/components/Radio/Radio.stories.d.ts +2 -3
  14. package/dist/components/SecondaryPage/SecondaryPage.stories.d.ts +4 -3
  15. package/dist/components/SelectableWalletList/SelectableWalletList.stories.d.ts +5 -4
  16. package/dist/components/Skeleton/Skeleton.stories.d.ts +2 -3
  17. package/dist/components/Spinner/Spinner.stories.d.ts +2 -3
  18. package/dist/components/StatusDrawer/StatusDrawer.stories.d.ts +2 -3
  19. package/dist/components/StepDetail/StepDetail.stories.d.ts +5 -4
  20. package/dist/components/SwapDetail/SwapDetail.stories.d.ts +5 -4
  21. package/dist/components/Switch/Switch.stories.d.ts +2 -3
  22. package/dist/components/TextField/TextField.stories.d.ts +1 -2
  23. package/dist/components/TokenList/TokenList.stories.d.ts +2 -3
  24. package/dist/components/Tooltip/Tooltip.stories.d.ts +5 -4
  25. package/dist/components/Typography/Typography.stories.d.ts +5 -4
  26. package/dist/components/Wallet/Wallet.stories.d.ts +4 -3
  27. package/dist/components/index.d.ts +0 -6
  28. package/dist/containers/BlockchainSelector/BlockchainSelector.stories.d.ts +5 -0
  29. package/dist/containers/ConfirmSwap/ConfirmSwap.stories.d.ts +5 -4
  30. package/dist/containers/ConnectWalletsModal/ConnectWallets.stories.d.ts +5 -0
  31. package/dist/containers/History/History.stories.d.ts +7 -4
  32. package/dist/containers/LiquiditySourcesSelector/LiquiditySourcesSelector.stories.d.ts +5 -0
  33. package/dist/containers/Settings/Settings.stories.d.ts +5 -0
  34. package/dist/containers/SwapHistory/SwapHistory.stories.d.ts +12 -4
  35. package/dist/{components → containers}/TokenSelector/TokenSelector.d.ts +1 -1
  36. package/dist/containers/TokenSelector/TokenSelector.stories.d.ts +5 -0
  37. package/dist/containers/index.d.ts +5 -0
  38. package/dist/index.js +6 -6
  39. package/dist/index.js.map +4 -4
  40. package/package.json +12 -7
  41. package/src/components/Alert/Alert.stories.tsx +19 -6
  42. package/src/components/Alert/Alert.tsx +3 -3
  43. package/src/components/BestRoute/BestRoute.stories.tsx +15 -5
  44. package/src/components/BestRoute/mock.ts +1 -1
  45. package/src/components/BlockchainsList/BlockchainsList.stories.tsx +9 -3
  46. package/src/components/BlockchainsList/mockData.ts +603 -108
  47. package/src/components/Button/Button.stories.tsx +8 -3
  48. package/src/components/Checkbox/Checkbox.stories.tsx +6 -2
  49. package/src/components/Chip/Chip.stories.tsx +23 -7
  50. package/src/components/ColorPicker/ColorPicker.stories.tsx +6 -3
  51. package/src/components/Divider/Divider.tsx +113 -11
  52. package/src/components/Drawer/Drawer.stories.tsx +8 -11
  53. package/src/components/Icon/Icons.stories.tsx +8 -4
  54. package/src/components/LiquiditySourceList/LiquiditySource.stories.tsx +6 -3
  55. package/src/components/LiquiditySourceList/LiquiditySourceList.tsx +3 -3
  56. package/src/components/Modal/Modal.stories.tsx +9 -10
  57. package/src/components/Radio/Radio.stories.tsx +12 -7
  58. package/src/components/SecondaryPage/SecondaryPage.stories.tsx +12 -3
  59. package/src/components/SelectableWalletList/SelectableWalletList.stories.tsx +2 -2
  60. package/src/components/Skeleton/Skeleton.stories.tsx +6 -2
  61. package/src/components/Spinner/Spinner.stories.tsx +6 -2
  62. package/src/components/StatusDrawer/StatusDrawer.stories.tsx +7 -2
  63. package/src/components/StatusDrawer/StatusDrawer.tsx +2 -2
  64. package/src/components/StepDetail/StepDetail.stories.tsx +9 -2
  65. package/src/components/SwapDetail/SwapDetail.stories.tsx +5 -2
  66. package/src/components/SwapDetail/SwapDetail.tsx +3 -3
  67. package/src/components/SwapDetail/Token.tsx +4 -4
  68. package/src/components/Switch/Switch.stories.tsx +2 -2
  69. package/src/components/TextField/TextField.stories.tsx +3 -2
  70. package/src/components/TokenList/TokenList.stories.tsx +3 -3
  71. package/src/components/Tooltip/Tooltip.stories.tsx +7 -2
  72. package/src/components/Typography/Typography.stories.tsx +2 -2
  73. package/src/components/Wallet/Wallet.stories.tsx +7 -13
  74. package/src/components/index.ts +0 -6
  75. package/src/containers/BlockchainSelector/BlockchainSelector.stories.tsx +41 -0
  76. package/src/{components → containers}/BlockchainSelector/BlockchainSelector.tsx +5 -5
  77. package/src/containers/ConfirmSwap/ConfirmSwap.stories.tsx +223 -10
  78. package/src/containers/ConfirmSwap/ConfirmSwap.tsx +21 -12
  79. package/src/containers/ConnectWalletsModal/ConnectWallets.stories.tsx +24 -0
  80. package/src/{components → containers}/ConnectWalletsModal/ConnectWalletsModal.tsx +3 -3
  81. package/src/containers/History/History.stories.tsx +2 -2
  82. package/src/containers/History/History.tsx +1 -1
  83. package/src/containers/History/mock.ts +3 -3
  84. package/src/{components → containers}/LiquiditySourcesSelector/LiquiditySourcesSelector.stories.tsx +7 -4
  85. package/src/{components → containers}/LiquiditySourcesSelector/LiquiditySourcesSelector.tsx +2 -3
  86. package/src/containers/Settings/Settings.stories.tsx +27 -0
  87. package/src/{components → containers}/Settings/Settings.tsx +11 -8
  88. package/src/containers/SwapHistory/SwapHistory.stories.tsx +3 -3
  89. package/src/containers/SwapHistory/SwapHistory.tsx +4 -5
  90. package/src/containers/SwapHistory/mock.ts +2 -2
  91. package/src/{components → containers}/TokenSelector/TokenSelector.stories.tsx +7 -8
  92. package/src/{components → containers}/TokenSelector/TokenSelector.tsx +7 -6
  93. package/src/containers/index.ts +5 -0
  94. package/dist/components/BlockchainSelector/BlockchainSelector.stories.d.ts +0 -6
  95. package/dist/components/ConnectWalletsModal/ConnectWallets.stories.d.ts +0 -6
  96. package/dist/components/LiquiditySourcesSelector/LiquiditySourcesSelector.stories.d.ts +0 -6
  97. package/dist/components/Settings/Settings.stories.d.ts +0 -6
  98. package/dist/components/Spacer/Spacer.d.ts +0 -6
  99. package/dist/components/Spacer/Spacer.stories.d.ts +0 -6
  100. package/dist/components/Spacer/index.d.ts +0 -1
  101. package/dist/components/SwapContainer/SwapContainer.stories.d.ts +0 -6
  102. package/dist/components/TokenSelector/TokenSelector.stories.d.ts +0 -6
  103. package/src/components/BlockchainSelector/BlockchainSelector.stories.tsx +0 -25
  104. package/src/components/ConnectWalletsModal/ConnectWallets.stories.tsx +0 -13
  105. package/src/components/Settings/Settings.stories.tsx +0 -34
  106. package/src/components/Spacer/Spacer.stories.tsx +0 -31
  107. package/src/components/Spacer/Spacer.tsx +0 -128
  108. package/src/components/Spacer/index.ts +0 -1
  109. package/src/components/SwapContainer/SwapContainer.stories.tsx +0 -13
  110. /package/dist/{components → containers}/BlockchainSelector/BlockchainSelector.d.ts +0 -0
  111. /package/dist/{components → containers}/BlockchainSelector/index.d.ts +0 -0
  112. /package/dist/{components → containers}/ConnectWalletsModal/ConnectWalletsModal.d.ts +0 -0
  113. /package/dist/{components → containers}/ConnectWalletsModal/index.d.ts +0 -0
  114. /package/dist/{components → containers}/ConnectWalletsModal/mockData.d.ts +0 -0
  115. /package/dist/{components → containers}/LiquiditySourcesSelector/LiquiditySourcesSelector.d.ts +0 -0
  116. /package/dist/{components → containers}/LiquiditySourcesSelector/index.d.ts +0 -0
  117. /package/dist/{components → containers}/Settings/Settings.d.ts +0 -0
  118. /package/dist/{components → containers}/Settings/index.d.ts +0 -0
  119. /package/dist/{components → containers}/TokenSelector/index.d.ts +0 -0
  120. /package/src/{components → containers}/BlockchainSelector/index.ts +0 -0
  121. /package/src/{components → containers}/ConnectWalletsModal/index.ts +0 -0
  122. /package/src/{components → containers}/ConnectWalletsModal/mockData.ts +0 -0
  123. /package/src/{components → containers}/LiquiditySourcesSelector/index.ts +0 -0
  124. /package/src/{components → containers}/Settings/index.ts +0 -0
  125. /package/src/{components → containers}/TokenSelector/index.ts +0 -0
@@ -1,5 +1,5 @@
1
1
  import React from 'react';
2
- import { ComponentMeta } from '@storybook/react';
2
+ import { Meta } from '@storybook/react';
3
3
 
4
4
  import { Button, PropTypes } from './Button';
5
5
  import { AddWalletIcon } from '../Icon';
@@ -7,6 +7,11 @@ import { AddWalletIcon } from '../Icon';
7
7
  export default {
8
8
  title: 'Components/Button',
9
9
  component: Button,
10
+ args: {
11
+ variant: 'contained',
12
+ size: 'medium',
13
+ type: 'primary',
14
+ },
10
15
  argTypes: {
11
16
  variant: {
12
17
  name: 'variant',
@@ -26,7 +31,7 @@ export default {
26
31
  },
27
32
  size: {
28
33
  name: 'size',
29
- control: { type: 'radio' },
34
+ control: { type: 'select' },
30
35
  options: ['small', 'medium', 'large', 'compact'],
31
36
  defaultValue: 'medium',
32
37
  },
@@ -35,7 +40,7 @@ export default {
35
40
  control: { type: 'boolean' },
36
41
  },
37
42
  },
38
- } as ComponentMeta<typeof Button>;
43
+ } as Meta<typeof Button>;
39
44
 
40
45
  export const Main = (props: PropTypes) => (
41
46
  <Button {...props}>I'm a button</Button>
@@ -1,10 +1,14 @@
1
1
  import React from 'react';
2
- import { ComponentMeta } from '@storybook/react';
2
+ import { Meta } from '@storybook/react';
3
3
  import { Checkbox, PropTypes } from './Checkbox';
4
4
 
5
5
  export default {
6
6
  title: 'Components/Checkbox',
7
7
  component: Checkbox,
8
+ args: {
9
+ label: 'I am a checkbox',
10
+ defaultChecked: true,
11
+ },
8
12
  argTypes: {
9
13
  label: {
10
14
  name: 'label',
@@ -17,6 +21,6 @@ export default {
17
21
  defaultValue: true,
18
22
  },
19
23
  },
20
- } as ComponentMeta<typeof Checkbox>;
24
+ } as Meta<typeof Checkbox>;
21
25
 
22
26
  export const Main = (props: PropTypes) => <Checkbox {...props} id="test" />;
@@ -1,22 +1,39 @@
1
1
  import React from 'react';
2
- import { ComponentMeta } from '@storybook/react';
2
+ import { Meta } from '@storybook/react';
3
3
 
4
4
  import { Chip, PropTypes } from './Chip';
5
5
 
6
6
  export default {
7
- title: 'Chip',
7
+ title: 'Components/Chip',
8
8
  component: Chip,
9
- } as ComponentMeta<typeof Chip>;
9
+ args: {
10
+ label: 'chip',
11
+ selected: true,
12
+ },
13
+ argTypes: {
14
+ label: {
15
+ name: 'label',
16
+ defaultValue: 'chip',
17
+ control: {
18
+ type: 'text',
19
+ },
20
+ },
21
+ selected: {
22
+ name: 'selected',
23
+ control: { type: 'boolean' },
24
+ defaultValue: true,
25
+ },
26
+ },
27
+ } as Meta<typeof Chip>;
10
28
 
11
- export const Main = (args: PropTypes) => <Chip {...args} label="chip" />;
29
+ export const Main = (args: PropTypes) => <Chip {...args} />;
12
30
 
13
31
  export const ChipWithPrefix = (args: PropTypes) => (
14
32
  <Chip
15
33
  {...args}
16
- label="chip"
17
34
  prefix={
18
35
  <img
19
- src=" https://api.rango.exchange/blockchains/binance.svg"
36
+ src="https://api.rango.exchange/blockchains/binance.svg"
20
37
  style={{ width: '20px' }}
21
38
  />
22
39
  }
@@ -26,7 +43,6 @@ export const ChipWithPrefix = (args: PropTypes) => (
26
43
  export const ChipWithSuffix = (args: PropTypes) => (
27
44
  <Chip
28
45
  {...args}
29
- label="chip"
30
46
  suffix={
31
47
  <img
32
48
  src=" https://api.rango.exchange/blockchains/binance.svg"
@@ -1,10 +1,13 @@
1
1
  import React, { useState } from 'react';
2
- import { ComponentMeta } from '@storybook/react';
2
+ import { Meta } from '@storybook/react';
3
3
  import { ColorPicker, PropTypes } from './ColorPicker';
4
4
 
5
5
  export default {
6
6
  title: 'Components/ColorPicker',
7
7
  component: ColorPicker,
8
+ args: {
9
+ place: 'left',
10
+ },
8
11
  argTypes: {
9
12
  place: {
10
13
  name: 'place',
@@ -18,14 +21,14 @@ export default {
18
21
  defaultValue: 'Choose a color',
19
22
  },
20
23
  },
21
- } as ComponentMeta<typeof ColorPicker>;
24
+ } as Meta<typeof ColorPicker>;
22
25
 
23
26
  export const Main = (args: PropTypes) => {
24
27
  const [color, setColor] = useState<string | undefined>('#5FA425');
25
28
  return (
26
29
  <div
27
30
  style={{
28
- height: 600,
31
+ height: 400,
29
32
  display: 'flex',
30
33
  justifyContent: 'center',
31
34
  alignItems: 'center',
@@ -4,38 +4,140 @@ import { styled } from '../../theme';
4
4
  const DividerContainer = styled('div', {
5
5
  variants: {
6
6
  size: {
7
- 4: {
7
+ 4: {},
8
+ 8: {},
9
+ 12: {},
10
+ 16: {},
11
+ 18: {},
12
+ 20: {},
13
+ 24: {},
14
+ 32: {},
15
+ },
16
+ direction: {
17
+ vertical: {},
18
+ horizontal: {},
19
+ },
20
+ },
21
+ compoundVariants: [
22
+ {
23
+ size: 4,
24
+ direction: 'horizontal',
25
+ css: {
26
+ width: '$4',
27
+ },
28
+ },
29
+ {
30
+ size: 4,
31
+ direction: 'vertical',
32
+ css: {
8
33
  height: '$4',
9
34
  },
10
- 8: {
35
+ },
36
+ {
37
+ size: 8,
38
+ direction: 'horizontal',
39
+ css: {
40
+ width: '$8',
41
+ },
42
+ },
43
+ {
44
+ size: 8,
45
+ direction: 'vertical',
46
+ css: {
11
47
  height: '$8',
12
48
  },
13
- 12: {
49
+ },
50
+ {
51
+ size: 12,
52
+ direction: 'horizontal',
53
+ css: {
54
+ width: '$12',
55
+ },
56
+ },
57
+ {
58
+ size: 12,
59
+ direction: 'vertical',
60
+ css: {
14
61
  height: '$12',
15
62
  },
16
- 16: {
63
+ },
64
+ {
65
+ size: 16,
66
+ direction: 'horizontal',
67
+ css: {
68
+ width: '$16',
69
+ },
70
+ },
71
+ {
72
+ size: 16,
73
+ direction: 'vertical',
74
+ css: {
17
75
  height: '$16',
18
76
  },
19
- 18: {
77
+ },
78
+ {
79
+ size: 18,
80
+ direction: 'horizontal',
81
+ css: {
82
+ width: '$18',
83
+ },
84
+ },
85
+ {
86
+ size: 18,
87
+ direction: 'vertical',
88
+ css: {
20
89
  height: '$18',
21
90
  },
22
- 20: {
91
+ },
92
+ {
93
+ size: 20,
94
+ direction: 'horizontal',
95
+ css: {
96
+ width: '$20',
97
+ },
98
+ },
99
+ {
100
+ size: 20,
101
+ direction: 'vertical',
102
+ css: {
23
103
  height: '$20',
24
104
  },
25
- 24: {
105
+ },
106
+ {
107
+ size: 24,
108
+ direction: 'horizontal',
109
+ css: {
110
+ width: '$24',
111
+ },
112
+ },
113
+ {
114
+ size: 24,
115
+ direction: 'vertical',
116
+ css: {
26
117
  height: '$24',
27
118
  },
28
- 32: {
119
+ },
120
+ {
121
+ size: 32,
122
+ direction: 'horizontal',
123
+ css: {
124
+ width: '$32',
125
+ },
126
+ },
127
+ {
128
+ size: 32,
129
+ direction: 'vertical',
130
+ css: {
29
131
  height: '$32',
30
132
  },
31
133
  },
32
- },
134
+ ],
33
135
  });
34
136
  export interface PropTypes {
35
137
  size?: 4 | 8 | 12 | 16 | 18 | 20 | 24 | 32;
36
138
  direction?: 'vertical' | 'horizontal';
37
139
  }
38
140
 
39
- export function Divider({ size = 12 }: PropTypes) {
40
- return <DividerContainer size={size} />;
141
+ export function Divider({ size = 12, direction = 'vertical' }: PropTypes) {
142
+ return <DividerContainer size={size} direction={direction} />;
41
143
  }
@@ -1,10 +1,15 @@
1
1
  import React, { useState } from 'react';
2
- import { ComponentMeta } from '@storybook/react';
2
+ import { Meta } from '@storybook/react';
3
3
  import { Drawer, PropTypes } from './Drawer';
4
4
 
5
5
  export default {
6
6
  name: 'Components/Drawer',
7
7
  component: Drawer,
8
+ args: {
9
+ anchor: 'bottom',
10
+ title: 'I`m Drawer',
11
+ container: document.body,
12
+ },
8
13
  argTypes: {
9
14
  anchor: {
10
15
  name: 'anchor',
@@ -13,19 +18,14 @@ export default {
13
18
  defaultValue: 'bottom',
14
19
  },
15
20
  },
16
- } as ComponentMeta<typeof Drawer>;
21
+ } as Meta<typeof Drawer>;
17
22
 
18
23
  export const Main = (args: PropTypes) => {
19
24
  const [open, setOpen] = useState<boolean>(false);
20
25
  return (
21
26
  <div>
22
27
  <button onClick={() => setOpen(true)}>Open Drawer</button>
23
- <Drawer
24
- {...args}
25
- open={open}
26
- title="I'm Drawer"
27
- onClose={() => setOpen(false)}
28
- />
28
+ <Drawer {...args} open={open} onClose={() => setOpen(false)} />
29
29
  </div>
30
30
  );
31
31
  };
@@ -47,9 +47,7 @@ export const BottomAnchor = (args: PropTypes) => {
47
47
  <Drawer
48
48
  {...args}
49
49
  open={open}
50
- title="I'm Drawer"
51
50
  onClose={() => setOpen(false)}
52
- anchor="bottom"
53
51
  content={
54
52
  <div>
55
53
  {Array.from({ length: 50 }, (_, index) => (
@@ -70,7 +68,6 @@ export const LeftAnchor = (args: PropTypes) => {
70
68
  <Drawer
71
69
  {...args}
72
70
  open={open}
73
- title="I'm Drawer"
74
71
  onClose={() => setOpen(false)}
75
72
  anchor="left"
76
73
  content={
@@ -1,12 +1,16 @@
1
1
  import React from 'react';
2
2
  import { Icon, IconProps } from './types';
3
3
  import * as Icons from '.';
4
- import { ComponentMeta } from '@storybook/react';
4
+ import { Meta } from '@storybook/react';
5
5
  import { styled } from '../../theme';
6
6
 
7
7
  export default {
8
8
  title: 'Components/Icons',
9
9
  component: Icons.AngleRightIcon,
10
+ args: {
11
+ size: 16,
12
+ color: 'black',
13
+ },
10
14
  argTypes: {
11
15
  color: {
12
16
  name: 'color',
@@ -16,12 +20,12 @@ export default {
16
20
 
17
21
  size: {
18
22
  name: 'size',
19
- control: { type: 'radio' },
23
+ control: { type: 'select' },
20
24
  options: [16, 18, 20, 24, 28, 32, 36, 40],
21
25
  defaultValue: 16,
22
26
  },
23
27
  },
24
- } as ComponentMeta<typeof Icons.AngleRightIcon>;
28
+ } as Meta<typeof Icons.AngleRightIcon>;
25
29
 
26
30
  const Container = styled('div', {
27
31
  display: 'grid',
@@ -31,7 +35,7 @@ const Container = styled('div', {
31
35
 
32
36
  export const Main = (props: IconProps) => (
33
37
  <Container>
34
- {Object.keys(Icons).map(icon => {
38
+ {Object.keys(Icons).map((icon) => {
35
39
  const Component = Icons[icon as Icon];
36
40
  return (
37
41
  <div>
@@ -1,12 +1,15 @@
1
1
  import React from 'react';
2
- import { ComponentMeta } from '@storybook/react';
2
+ import { Meta } from '@storybook/react';
3
3
  import { LiquiditySourceList, PropTypes } from './LiquiditySourceList';
4
4
  import { liquiditySources } from './mockData';
5
5
 
6
6
  export default {
7
- title: 'Liquidity Source List',
7
+ title: 'Components/Liquidity Source List',
8
8
  component: LiquiditySourceList,
9
- } as ComponentMeta<typeof LiquiditySourceList>;
9
+ args: {
10
+ loadingStatus: 'success',
11
+ },
12
+ } as Meta<typeof LiquiditySourceList>;
10
13
 
11
14
  export const Main = (args: PropTypes) => (
12
15
  <LiquiditySourceList {...args} list={liquiditySources} />
@@ -3,7 +3,7 @@ import React, { useEffect, useState } from 'react';
3
3
  import { styled } from '../../theme';
4
4
  import { LiquiditySource, LoadingStatus } from '../../types/meta';
5
5
  import { Button } from '../Button/Button';
6
- import { Spacer } from '../Spacer';
6
+ import { Divider } from '../Divider';
7
7
  import { Switch } from '../Switch';
8
8
  import { Typography } from '../Typography';
9
9
  import { Spinner } from '../Spinner';
@@ -111,7 +111,7 @@ export function LiquiditySourceList(props: PropTypes) {
111
111
  : `${totalSelectedBridges} / ${totalBridges}`}
112
112
  </Typography>
113
113
  </LiquiditySourceType>
114
- <Spacer size={12} direction="vertical" />
114
+ <Divider size={12} />
115
115
  {loadingStatus === 'loading' && (
116
116
  <LoaderContainer>
117
117
  <Spinner size={24} />
@@ -144,7 +144,7 @@ export function LiquiditySourceList(props: PropTypes) {
144
144
  : `${totalSelectedExchanges} / ${totalExchanges}`}
145
145
  </Typography>
146
146
  </LiquiditySourceType>
147
- <Spacer size={12} direction="vertical" />
147
+ <Divider size={12} />
148
148
  {loadingStatus === 'loading' && (
149
149
  <LoaderContainer>
150
150
  <Spinner size={24} />
@@ -1,22 +1,21 @@
1
1
  import React, { useState } from 'react';
2
- import { ComponentMeta } from '@storybook/react';
2
+ import { Meta } from '@storybook/react';
3
3
  import { Modal, PropTypes } from './Modal';
4
4
 
5
- export default { name: 'Modal', component: Modal } as ComponentMeta<
6
- typeof Modal
7
- >;
5
+ export default {
6
+ name: 'Modal',
7
+ component: Modal,
8
+ args: {
9
+ title: 'I`m a modal',
10
+ },
11
+ } as Meta<typeof Modal>;
8
12
 
9
13
  export const Main = (args: PropTypes) => {
10
14
  const [open, setOpen] = useState<boolean>(false);
11
15
  return (
12
16
  <div>
13
17
  <button onClick={() => setOpen(true)}>Open Modal</button>
14
- <Modal
15
- {...args}
16
- open={open}
17
- title="I'm modal"
18
- onClose={() => setOpen(false)}
19
- />
18
+ <Modal {...args} open={open} onClose={() => setOpen(false)} />
20
19
  </div>
21
20
  );
22
21
  };
@@ -1,10 +1,19 @@
1
1
  import React from 'react';
2
- import { ComponentMeta } from '@storybook/react';
2
+ import { Meta } from '@storybook/react';
3
3
  import { PropTypes, Radio } from './Radio';
4
4
 
5
5
  export default {
6
- title: 'Radio',
6
+ title: 'Components/Radio',
7
7
  component: Radio,
8
+ args: {
9
+ options: [
10
+ { value: 'one', label: 'One' },
11
+ { value: 'two', label: 'Two' },
12
+ { value: 'three', label: 'Three' },
13
+ ],
14
+ direction: 'horizontal',
15
+ defaultValue: 'one',
16
+ },
8
17
  argTypes: {
9
18
  options: {
10
19
  defaultValue: [
@@ -13,11 +22,7 @@ export default {
13
22
  { value: 'three', label: 'Three' },
14
23
  ],
15
24
  },
16
- defaultValue: { defaultValue: 'one' },
17
- direction: {
18
- defaultValue: 'horizontal',
19
- },
20
25
  },
21
- } as ComponentMeta<typeof Radio>;
26
+ } as Meta<typeof Radio>;
22
27
 
23
28
  export const Main = (args: PropTypes) => <Radio {...args} />;
@@ -1,7 +1,16 @@
1
- import { ComponentMeta } from '@storybook/react';
2
- import { SecondaryPage } from './SecondaryPage';
1
+ import { Meta } from '@storybook/react';
2
+ import { PropTypes, SecondaryPage } from './SecondaryPage';
3
+ import React from 'react';
3
4
 
4
5
  export default {
5
6
  title: 'Components/Secondary Page',
6
7
  component: SecondaryPage,
7
- } as ComponentMeta<typeof SecondaryPage>;
8
+ args:{
9
+ textField:true,
10
+ textFieldPlaceholder:'Search',
11
+ title:'Secondary Page'
12
+ }
13
+ } as Meta<typeof SecondaryPage>;
14
+
15
+
16
+ export const Main = (args: PropTypes) => <SecondaryPage {...args} />;
@@ -1,5 +1,5 @@
1
1
  import React from 'react';
2
- import { ComponentMeta } from '@storybook/react';
2
+ import { Meta } from '@storybook/react';
3
3
 
4
4
  import { SelectableWalletList, PropTypes } from './SelectableWalletList';
5
5
  import { data } from './mock';
@@ -7,7 +7,7 @@ import { data } from './mock';
7
7
  export default {
8
8
  title: 'Components/SelectableWalletList',
9
9
  component: SelectableWalletList,
10
- } as ComponentMeta<typeof SelectableWalletList>;
10
+ } as Meta<typeof SelectableWalletList>;
11
11
 
12
12
  export const Main = (props: PropTypes) => (
13
13
  <SelectableWalletList {...props} list={data} />
@@ -1,10 +1,14 @@
1
- import { ComponentMeta } from '@storybook/react';
1
+ import { Meta } from '@storybook/react';
2
2
  import React from 'react';
3
3
  import { Skeleton, PropTypes } from './Skeleton';
4
4
 
5
5
  export default {
6
6
  title: 'Components/Skeleton',
7
7
  component: Skeleton,
8
+ args: {
9
+ width: 20,
10
+ height: 20,
11
+ },
8
12
  argTypes: {
9
13
  width: {
10
14
  name: 'width',
@@ -19,6 +23,6 @@ export default {
19
23
  defaultValue: 20,
20
24
  },
21
25
  },
22
- } as ComponentMeta<typeof Skeleton>;
26
+ } as Meta<typeof Skeleton>;
23
27
 
24
28
  export const Main = (props: PropTypes) => <Skeleton {...props} />;
@@ -1,10 +1,14 @@
1
- import { ComponentMeta } from '@storybook/react';
1
+ import { Meta } from '@storybook/react';
2
2
  import React from 'react';
3
3
  import { Spinner, PropTypes } from './Spinner';
4
4
 
5
5
  export default {
6
6
  title: 'Components/Spinner',
7
7
  component: Spinner,
8
+ args: {
9
+ color: 'primary',
10
+ size: 16,
11
+ },
8
12
  argTypes: {
9
13
  color: {
10
14
  name: 'color',
@@ -20,6 +24,6 @@ export default {
20
24
  defaultValue: 16,
21
25
  },
22
26
  },
23
- } as ComponentMeta<typeof Spinner>;
27
+ } as Meta<typeof Spinner>;
24
28
 
25
29
  export const Main = (props: PropTypes) => <Spinner {...props} />;
@@ -1,11 +1,16 @@
1
1
  import React, { useState } from 'react';
2
- import { ComponentMeta } from '@storybook/react';
2
+ import { Meta } from '@storybook/react';
3
3
  import { StatusDrawer, PropTypes } from './StatusDrawer';
4
4
  import { SwapContainer } from '../SwapContainer';
5
5
 
6
6
  export default {
7
7
  name: 'Components/StatusDrawer',
8
8
  component: StatusDrawer,
9
+ args: {
10
+ status: 'success',
11
+ title: 'Swap successful',
12
+ subtitle: 'There are now 0.0493 BNB in 0x542...C2Df wallet on BSC chain.',
13
+ },
9
14
  argTypes: {
10
15
  status: {
11
16
  name: 'status',
@@ -25,7 +30,7 @@ export default {
25
30
  'There are now 0.0493 BNB in 0x542...C2Df wallet on BSC chain.',
26
31
  },
27
32
  },
28
- } as ComponentMeta<typeof StatusDrawer>;
33
+ } as Meta<typeof StatusDrawer>;
29
34
 
30
35
  export const Main = (args: PropTypes) => {
31
36
  const [open, setOpen] = useState<boolean>(false);
@@ -3,7 +3,7 @@ import { styled } from '../../theme';
3
3
  import { Button } from '../Button';
4
4
  import { Drawer } from '../Drawer';
5
5
  import { CheckCircleIcon, InfoCircleIcon, WarningIcon } from '../Icon';
6
- import { Spacer } from '../Spacer';
6
+ import { Divider } from '../Divider';
7
7
  import { Typography } from '../Typography';
8
8
 
9
9
  export interface PropTypes {
@@ -60,7 +60,7 @@ export function StatusDrawer({
60
60
  {status === 'success' ? 'Cancel' : 'See detailes'}
61
61
  </Button>
62
62
  )}
63
- <Spacer size={16} />
63
+ <Divider size={16} direction='horizontal' />
64
64
  <Button
65
65
  fullWidth
66
66
  onClick={onSubmit}
@@ -1,10 +1,17 @@
1
1
  import React from 'react';
2
- import { ComponentMeta } from '@storybook/react';
2
+ import { Meta } from '@storybook/react';
3
3
  import { StepDetail, PropTypes } from './StepDetail';
4
4
 
5
5
  export default {
6
6
  title: 'Components/StepDetail',
7
7
  component: StepDetail,
8
+ args: {
9
+ logo: 'https://api.rango.exchange/tokens/COSMOS/JUNO.png',
10
+ chainLogo: 'https://api.rango.exchange/swappers/osmosis.png',
11
+ amount: '1',
12
+ symbol: 'JUNO',
13
+ blockchain: 'OSMOSIS',
14
+ },
8
15
  argTypes: {
9
16
  logo: {
10
17
  name: 'logo',
@@ -32,6 +39,6 @@ export default {
32
39
  defaultValue: 'OSMOSIS',
33
40
  },
34
41
  },
35
- } as ComponentMeta<typeof StepDetail>;
42
+ } as Meta<typeof StepDetail>;
36
43
 
37
44
  export const Main = (props: PropTypes) => <StepDetail {...props} />;