@transferwise/components 0.0.0-experimental-5a23a43 → 0.0.0-experimental-9add5b4

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 (63) hide show
  1. package/build/i18n/ja.json +1 -1
  2. package/build/i18n/ja.json.js +1 -1
  3. package/build/i18n/ja.json.mjs +1 -1
  4. package/build/index.js +1 -0
  5. package/build/index.js.map +1 -1
  6. package/build/index.mjs +1 -1
  7. package/build/main.css +188 -0
  8. package/build/styles/listItem/ListItem.css +188 -0
  9. package/build/styles/main.css +188 -0
  10. package/build/test-utils/assets/apple-pay-logo.svg +84 -0
  11. package/build/types/index.d.ts +2 -0
  12. package/build/types/index.d.ts.map +1 -1
  13. package/build/types/listItem/ListItem.d.ts +44 -0
  14. package/build/types/listItem/ListItem.d.ts.map +1 -0
  15. package/build/types/listItem/ListItemAdditionalInfo.d.ts +9 -0
  16. package/build/types/listItem/ListItemAdditionalInfo.d.ts.map +1 -0
  17. package/build/types/listItem/ListItemButton.d.ts +6 -0
  18. package/build/types/listItem/ListItemButton.d.ts.map +1 -0
  19. package/build/types/listItem/ListItemCheckbox.d.ts +4 -0
  20. package/build/types/listItem/ListItemCheckbox.d.ts.map +1 -0
  21. package/build/types/listItem/ListItemIconButton.d.ts +9 -0
  22. package/build/types/listItem/ListItemIconButton.d.ts.map +1 -0
  23. package/build/types/listItem/ListItemMedia.d.ts +19 -0
  24. package/build/types/listItem/ListItemMedia.d.ts.map +1 -0
  25. package/build/types/listItem/ListItemNavigation.d.ts +4 -0
  26. package/build/types/listItem/ListItemNavigation.d.ts.map +1 -0
  27. package/build/types/listItem/ListItemSwitch.d.ts +3 -0
  28. package/build/types/listItem/ListItemSwitch.d.ts.map +1 -0
  29. package/build/types/listItem/index.d.ts +6 -0
  30. package/build/types/listItem/index.d.ts.map +1 -0
  31. package/build/types/listItem/prompt/Prompt.d.ts +12 -0
  32. package/build/types/listItem/prompt/Prompt.d.ts.map +1 -0
  33. package/build/types/listItem/useListItemControl.d.ts +12 -0
  34. package/build/types/listItem/useListItemControl.d.ts.map +1 -0
  35. package/build/types/test-utils/fake-data.d.ts +2 -0
  36. package/build/types/test-utils/fake-data.d.ts.map +1 -1
  37. package/package.json +1 -1
  38. package/src/i18n/ja.json +1 -1
  39. package/src/index.ts +2 -0
  40. package/src/legacylistItem/LegacyListItem.story.tsx +5 -5
  41. package/src/legacylistItem/LegacyListItem.tests.story.tsx +6 -6
  42. package/src/listItem/ListItem.css +188 -0
  43. package/src/listItem/ListItem.less +180 -0
  44. package/src/listItem/ListItem.spec.tsx +35 -0
  45. package/src/listItem/ListItem.story.tsx +332 -0
  46. package/src/listItem/ListItem.tsx +213 -0
  47. package/src/listItem/ListItemAdditionalInfo.tsx +31 -0
  48. package/src/listItem/ListItemButton.spec.tsx +90 -0
  49. package/src/listItem/ListItemButton.tsx +24 -0
  50. package/src/listItem/ListItemCheckbox.tsx +14 -0
  51. package/src/listItem/ListItemIconButton.tsx +16 -0
  52. package/src/listItem/ListItemMedia.tsx +52 -0
  53. package/src/listItem/ListItemNavigation.tsx +11 -0
  54. package/src/listItem/ListItemSwitch.tsx +8 -0
  55. package/src/listItem/index.ts +10 -0
  56. package/src/listItem/prompt/Prompt.spec.tsx +77 -0
  57. package/src/listItem/prompt/Prompt.story.tsx +170 -0
  58. package/src/listItem/prompt/Prompt.tsx +44 -0
  59. package/src/listItem/useListItemControl.tsx +16 -0
  60. package/src/main.css +188 -0
  61. package/src/main.less +1 -0
  62. package/src/test-utils/assets/apple-pay-logo.svg +84 -0
  63. package/src/test-utils/fake-data.ts +5 -0
@@ -0,0 +1,188 @@
1
+ .wds-list-item {
2
+ padding: 16px;
3
+ padding: var(--size-16);
4
+ border-radius: 16px;
5
+ border-radius: var(--radius-medium);
6
+ background-color: #ffffff;
7
+ background-color: var(--color-background-screen);
8
+ gap: 16px;
9
+ gap: var(--size-16);
10
+ }
11
+ .wds-list-item-interactive {
12
+ cursor: pointer;
13
+ }
14
+ .wds-list-item-interactive:hover {
15
+ background-color: var(--color-background-screen-hover);
16
+ }
17
+ .wds-list-item-interactive:active {
18
+ background-color: var(--color-background-screen-active);
19
+ }
20
+ .wds-list-item-media-image {
21
+ width: var(--item-media-image-size);
22
+ height: var(--item-media-image-size);
23
+ }
24
+ .wds-list-item-body {
25
+ width: 100%;
26
+ }
27
+ .wds-list-item-title {
28
+ color: #37517e;
29
+ color: var(--color-content-primary);
30
+ }
31
+ .wds-list-item-additional-info {
32
+ color: #768e9c;
33
+ color: var(--color-content-tertiary);
34
+ }
35
+ .wds-list-item-value {
36
+ flex: 0 0 auto;
37
+ }
38
+ .wds-list-item-control {
39
+ flex: 0 0 auto;
40
+ }
41
+ .wds-list-item-spotlight-active {
42
+ background-color: rgba(134,167,189,0.10196);
43
+ background-color: var(--color-background-neutral);
44
+ }
45
+ .wds-list-item-spotlight-active:not(.disabled):not(:disabled):hover {
46
+ background-color: var(--color-background-neutral-hover);
47
+ }
48
+ .wds-list-item-spotlight-active:not(.disabled):not(:disabled):active {
49
+ background-color: var(--color-background-neutral-active);
50
+ }
51
+ .wds-list-item-spotlight-inactive {
52
+ background-color: rgba(134, 167, 189, 0.025);
53
+ border: 1px dashed rgba(0,0,0,0.10196);
54
+ border: 1px dashed var(--color-border-neutral);
55
+ }
56
+ @supports (color: color-mix(in lch, red, blue)) {
57
+ .wds-list-item-spotlight-inactive {
58
+ background-color: color-mix(in srgb, var(--color-background-neutral) 25%, transparent);
59
+ }
60
+ }
61
+ .wds-list-item-spotlight-inactive:not(.disabled):not(:disabled):hover {
62
+ background-color: color-mix(in srgb, var(--color-background-neutral-hover) 25%, transparent);
63
+ }
64
+ .wds-list-item-spotlight-inactive:not(.disabled):not(:disabled):active {
65
+ background-color: color-mix(in srgb, var(--color-background-neutral-active) 25%, transparent);
66
+ }
67
+ .wds-list-item-prompt {
68
+ display: inline-flex;
69
+ padding-top: calc(8px / 2);
70
+ padding-top: calc(var(--padding-x-small) / 2);
71
+ padding-bottom: calc(8px / 2);
72
+ padding-bottom: calc(var(--padding-x-small) / 2);
73
+ padding-left: calc(8px - 1px);
74
+ padding-left: calc(var(--padding-x-small) - 1px);
75
+ padding-right: 8px;
76
+ padding-right: var(--padding-x-small);
77
+ border-radius: 10px;
78
+ border-radius: var(--radius-small);
79
+ word-break: break-word;
80
+ word-wrap: break-word;
81
+ }
82
+ .wds-list-item-prompt .np-prompt-icon {
83
+ padding-right: calc(12px / 2);
84
+ padding-right: calc(var(--size-12) / 2);
85
+ padding-top: calc(4px - 1px);
86
+ padding-top: calc(var(--size-4) - 1px);
87
+ padding-bottom: calc(4px - 1px);
88
+ padding-bottom: calc(var(--size-4) - 1px);
89
+ }
90
+ .wds-list-item-prompt .np-prompt-icon .tw-icon-tags,
91
+ .wds-list-item-prompt .np-prompt-icon .tw-icon-confetti {
92
+ color: var(--color-sentiment-positive-primary);
93
+ }
94
+ .wds-list-item-prompt a {
95
+ text-underline-offset: calc(4px / 2);
96
+ text-underline-offset: calc(var(--size-4) / 2);
97
+ }
98
+ .wds-list-item-prompt.np-prompt-interactive {
99
+ -webkit-text-decoration: none;
100
+ text-decoration: none;
101
+ cursor: pointer;
102
+ border: none;
103
+ }
104
+ .wds-list-item-prompt.negative {
105
+ background-color: var(--color-sentiment-negative-secondary);
106
+ color: var(--color-sentiment-negative-primary);
107
+ }
108
+ .wds-list-item-prompt.negative a {
109
+ color: var(--color-sentiment-negative-primary);
110
+ }
111
+ .wds-list-item-prompt.negative a:hover {
112
+ color: var(--color-sentiment-negative-primary-hover);
113
+ }
114
+ .wds-list-item-prompt.negative a:active {
115
+ color: var(--color-sentiment-negative-primary-active);
116
+ }
117
+ .np-prompt-interactive.wds-list-item-prompt.negative:hover {
118
+ background-color: color-mix(in srgb, var(--color-sentiment-negative-secondary) 95%, var(--color-sentiment-negative-primary));
119
+ }
120
+ .np-prompt-interactive.wds-list-item-prompt.negative:active {
121
+ background-color: color-mix(in srgb, var(--color-sentiment-negative-secondary) 90%, var(--color-sentiment-negative-primary));
122
+ }
123
+ .wds-list-item-prompt.positive,
124
+ .wds-list-item-prompt.discount,
125
+ .wds-list-item-prompt.savings {
126
+ background-color: var(--color-sentiment-positive-secondary);
127
+ color: var(--color-sentiment-positive-primary);
128
+ }
129
+ .wds-list-item-prompt.positive a,
130
+ .wds-list-item-prompt.discount a,
131
+ .wds-list-item-prompt.savings a {
132
+ color: var(--color-sentiment-positive-primary);
133
+ }
134
+ .wds-list-item-prompt.positive a:hover,
135
+ .wds-list-item-prompt.discount a:hover,
136
+ .wds-list-item-prompt.savings a:hover {
137
+ color: var(--color-sentiment-positive-primary-hover);
138
+ }
139
+ .wds-list-item-prompt.positive a:active,
140
+ .wds-list-item-prompt.discount a:active,
141
+ .wds-list-item-prompt.savings a:active {
142
+ color: var(--color-sentiment-positive-primary-active);
143
+ }
144
+ .np-prompt-interactive.wds-list-item-prompt.positive:hover,
145
+ .np-prompt-interactive.wds-list-item-prompt.discount:hover,
146
+ .np-prompt-interactive.wds-list-item-prompt.savings:hover {
147
+ background-color: color-mix(in srgb, var(--color-sentiment-positive-secondary) 95%, var(--color-sentiment-positive-primary));
148
+ }
149
+ .np-prompt-interactive.wds-list-item-prompt.positive:active,
150
+ .np-prompt-interactive.wds-list-item-prompt.discount:active,
151
+ .np-prompt-interactive.wds-list-item-prompt.savings:active {
152
+ background-color: color-mix(in srgb, var(--color-sentiment-positive-secondary) 90%, var(--color-sentiment-positive-primary));
153
+ }
154
+ .wds-list-item-prompt.neutral {
155
+ background-color: rgba(134,167,189,0.10196);
156
+ background-color: var(--color-background-neutral);
157
+ color: #37517e;
158
+ color: var(--color-content-primary);
159
+ }
160
+ .wds-list-item-prompt.neutral a {
161
+ color: #37517e;
162
+ color: var(--color-content-primary);
163
+ }
164
+ .np-prompt-interactive.wds-list-item-prompt.neutral:hover {
165
+ background-color: var(--color-background-neutral-hover);
166
+ }
167
+ .np-prompt-interactive.wds-list-item-prompt.neutral:active {
168
+ background-color: var(--color-background-neutral-active);
169
+ }
170
+ .wds-list-item-prompt.warning {
171
+ background-color: var(--color-sentiment-warning-secondary);
172
+ color: var(--color-sentiment-warning-content);
173
+ }
174
+ .wds-list-item-prompt.warning a {
175
+ color: var(--color-sentiment-warning-content);
176
+ }
177
+ .wds-list-item-prompt.warning a:hover {
178
+ color: var(--color-sentiment-warning-content-hover);
179
+ }
180
+ .wds-list-item-prompt.warning a:active {
181
+ color: var(--color-sentiment-warning-content-active);
182
+ }
183
+ .np-prompt-interactive.wds-list-item-prompt.warning:hover {
184
+ background-color: color-mix(in srgb, var(--color-sentiment-warning-secondary) 90%, var(--color-sentiment-warning-primary));
185
+ }
186
+ .np-prompt-interactive.wds-list-item-prompt.warning:active {
187
+ background-color: color-mix(in srgb, var(--color-sentiment-warning-secondary) 80%, var(--color-sentiment-warning-primary));
188
+ }
@@ -0,0 +1,180 @@
1
+ .wds-list-item {
2
+ padding: var(--size-16);
3
+ border-radius: var(--radius-medium);
4
+ background-color: var(--color-background-screen);
5
+ gap: var(--size-16);
6
+
7
+ &-interactive {
8
+ cursor: pointer;
9
+ &:hover {
10
+ background-color: var(--color-background-screen-hover);
11
+ }
12
+ &:active {
13
+ background-color: var(--color-background-screen-active);
14
+ }
15
+ }
16
+
17
+ &-media {
18
+
19
+ &-image {
20
+ width: var(--item-media-image-size);
21
+ height: var(--item-media-image-size);
22
+ }
23
+ }
24
+
25
+ &-body {
26
+ width: 100%;
27
+ }
28
+
29
+ &-title {
30
+ color: var(--color-content-primary);
31
+ }
32
+
33
+ &-additional-info {
34
+ color: var(--color-content-tertiary);
35
+ }
36
+
37
+ &-value {
38
+ flex: 0 0 auto;
39
+ }
40
+
41
+ &-control {
42
+ flex: 0 0 auto;
43
+ }
44
+
45
+ &-spotlight {
46
+ &-active {
47
+ background-color: var(--color-background-neutral);
48
+ &:not(.disabled, :disabled):hover {
49
+ background-color: var(--color-background-neutral-hover);
50
+ }
51
+ &:not(.disabled, :disabled):active {
52
+ background-color: var(--color-background-neutral-active);
53
+ }
54
+ }
55
+
56
+ &-inactive {
57
+ background-color: color-mix(in srgb, var(--color-background-neutral) 25%, transparent);
58
+ border: 1px dashed var(--color-border-neutral);
59
+ &:not(.disabled, :disabled):hover {
60
+ background-color: color-mix(in srgb, var(--color-background-neutral-hover) 25%, transparent);
61
+ }
62
+ &:not(.disabled, :disabled):active {
63
+ background-color: color-mix(in srgb, var(--color-background-neutral-active) 25%, transparent);
64
+ }
65
+ }
66
+ }
67
+
68
+ &-prompt {
69
+ display: inline-flex;
70
+ padding-top: calc(var(--padding-x-small) / 2);
71
+ padding-bottom: calc(var(--padding-x-small) / 2);
72
+ padding-left: calc(var(--padding-x-small) - 1px);
73
+ padding-right: var(--padding-x-small);
74
+ border-radius: var(--radius-small);
75
+ word-break: break-word;
76
+ overflow-wrap: break-word;
77
+
78
+ .np-prompt-icon {
79
+ padding-right: calc(var(--size-12) / 2);
80
+ padding-top: calc(var(--size-4) - 1px);
81
+ padding-bottom: calc(var(--size-4) - 1px);
82
+
83
+ .tw-icon-tags,
84
+ .tw-icon-confetti {
85
+ color: var(--color-sentiment-positive-primary);
86
+ }
87
+ }
88
+
89
+ a {
90
+ text-underline-offset: calc(var(--size-4) / 2);
91
+ }
92
+
93
+ &.np-prompt-interactive {
94
+ text-decoration: none;
95
+ cursor: pointer;
96
+ border: none;
97
+ }
98
+
99
+ &.negative {
100
+ background-color: var(--color-sentiment-negative-secondary);
101
+ color: var(--color-sentiment-negative-primary);
102
+ a {
103
+ color: var(--color-sentiment-negative-primary);
104
+ &:hover {
105
+ color: var(--color-sentiment-negative-primary-hover);
106
+ }
107
+ &:active {
108
+ color: var(--color-sentiment-negative-primary-active);
109
+ }
110
+ }
111
+ .np-prompt-interactive& {
112
+ &:hover {
113
+ background-color: color-mix(in srgb, var(--color-sentiment-negative-secondary) 95%, var(--color-sentiment-negative-primary));
114
+ }
115
+ &:active {
116
+ background-color: color-mix(in srgb, var(--color-sentiment-negative-secondary) 90%, var(--color-sentiment-negative-primary));
117
+ }
118
+ }
119
+ }
120
+ &.positive,
121
+ &.discount,
122
+ &.savings {
123
+ background-color: var(--color-sentiment-positive-secondary);
124
+ color: var(--color-sentiment-positive-primary);
125
+ a {
126
+ color: var(--color-sentiment-positive-primary);
127
+ &:hover {
128
+ color: var(--color-sentiment-positive-primary-hover);
129
+ }
130
+ &:active {
131
+ color: var(--color-sentiment-positive-primary-active);
132
+ }
133
+ }
134
+ .np-prompt-interactive& {
135
+ &:hover {
136
+ background-color: color-mix(in srgb, var(--color-sentiment-positive-secondary) 95%, var(--color-sentiment-positive-primary));
137
+ }
138
+ &:active {
139
+ background-color: color-mix(in srgb, var(--color-sentiment-positive-secondary) 90%, var(--color-sentiment-positive-primary));
140
+ }
141
+ }
142
+ }
143
+ &.neutral {
144
+ background-color: var(--color-background-neutral);
145
+ color: var(--color-content-primary);
146
+ a {
147
+ color: var(--color-content-primary);
148
+ }
149
+ .np-prompt-interactive& {
150
+ &:hover {
151
+ background-color: var(--color-background-neutral-hover);
152
+ }
153
+ &:active {
154
+ background-color: var(--color-background-neutral-active);
155
+ }
156
+ }
157
+ }
158
+ &.warning {
159
+ background-color: var(--color-sentiment-warning-secondary);
160
+ color: var(--color-sentiment-warning-content);
161
+ a {
162
+ color: var(--color-sentiment-warning-content);
163
+ &:hover {
164
+ color: var(--color-sentiment-warning-content-hover);
165
+ }
166
+ &:active {
167
+ color: var(--color-sentiment-warning-content-active);
168
+ }
169
+ }
170
+ .np-prompt-interactive& {
171
+ &:hover {
172
+ background-color: color-mix(in srgb, var(--color-sentiment-warning-secondary) 90%, var(--color-sentiment-warning-primary));
173
+ }
174
+ &:active {
175
+ background-color: color-mix(in srgb, var(--color-sentiment-warning-secondary) 80%, var(--color-sentiment-warning-primary));
176
+ }
177
+ }
178
+ }
179
+ }
180
+ }
@@ -0,0 +1,35 @@
1
+ import { render, screen } from '../test-utils';
2
+ import ListItem from './ListItem';
3
+
4
+ describe('ListItem', () => {
5
+ describe('spotlight', () => {
6
+ it('only fully interactive variant can have spotlight:active', () => {
7
+ render(<ListItem title="Test Title" spotlight="active" control={<ListItem.Navigation />} />);
8
+ const listItem = screen.getByRole('listitem');
9
+ expect(listItem).toHaveClass('wds-list-item-interactive');
10
+ expect(listItem).toHaveClass('wds-list-item-spotlight-active');
11
+ });
12
+
13
+ it('only fully interactive variant can have spotlight:inactive', () => {
14
+ render(
15
+ <ListItem
16
+ title="Test Title"
17
+ spotlight="inactive"
18
+ control={<ListItem.Switch onClick={() => {}} />}
19
+ />,
20
+ );
21
+ const listItem = screen.getByRole('listitem');
22
+ expect(listItem).toHaveClass('wds-list-item-interactive');
23
+ expect(listItem).toHaveClass('wds-list-item-spotlight-inactive');
24
+ });
25
+
26
+ it('non interactive variant can have spotlight', () => {
27
+ render(<ListItem title="Test Title" spotlight="inactive" />);
28
+ const listItem = screen.getByRole('listitem');
29
+ expect(listItem).toHaveClass('wds-list-item-non-interactive');
30
+ expect(listItem).not.toHaveClass('wds-list-item-interactive');
31
+ expect(listItem).not.toHaveClass('wds-list-item-spotlight-inactive');
32
+ expect(listItem).not.toHaveClass('wds-list-item-spotlight-active');
33
+ });
34
+ });
35
+ });